/* ============================================================
   FERO PC SOLUTIONS - Stiluri principale
   Font: Montserrat (display) + Source Sans Pro (body)
   Tema: Industrial Clean - Albastru profesional + Alb
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;600&display=swap');

/* ── CSS Variables ── */
:root {
  --blue-secondary: #4a3c20;
  --blue-primary: #C9973A;
  --blue-dark: #A67828;
  --blue-light: #E0B96A;
  --blue-accent: #F0D49A;
  --blue-pale: #161005;
  --blue-nav: rgba(45, 38, 27, 0.96);
  --white: #1E1A14;
  --off-white: #17140F;
  --gray-50: #13100C;
  --gray-100: #1E1A14;
  --gray-200: #2A2218;
  --gray-300: #3D3020;
  --gray-400: #6B5E4A;
  --gray-500: #8A7A62;
  --gray-600: #A89578;
  --gray-700: #C4B090;
  --gray-800: #DDD0B8;
  --gray-900: #F0E6D0;
  --danger: #EF4444;
  --success: #10B981;
  --warning: #F59E0B;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.40);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.50);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.60);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.70);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --nav-h: 62px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: #0D0B08;
  color: var(--gray-800);
  min-height: 100vh;
  padding-top: var(--nav-h);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--blue-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Hamburger */
#btn-menu {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
}

#btn-menu:hover {
  background: rgba(255, 255, 255, 0.15);
}

#btn-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

#btn-menu.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#btn-menu.open span:nth-child(2) {
  opacity: 0;
}

#btn-menu.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Logo + Home button */
#btn-home {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
}

#btn-home:hover {
  background: rgba(255, 255, 255, 0.12);
}

#btn-home img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

#btn-home .home-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: white;
  line-height: 1.2;
  display: none;
}

@media (min-width: 500px) {
  #btn-home .home-label {
    display: block;
  }
}

/* Search bar */
#nav-search-wrap {
  flex: 1;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

#nav-search {
  width: 100%;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 0 40px 0 16px;
  color: white;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

#nav-search::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

#nav-search:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}

.nav-search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  font-size: 16px;
}

/* Cart button */
#btn-cart {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--transition);
  flex-shrink: 0;
  color: white;
  font-size: 20px;
}

#btn-cart:hover {
  background: rgba(255, 255, 255, 0.22);
}

#cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--danger);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue-dark);
}

#cart-count.hidden {
  display: none;
}

/* ── SIDE MENU ── */
#side-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

#side-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

#side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

#side-menu.open {
  transform: translateX(0);
}

.side-menu-header {
  background: var(--blue-primary);
  padding: 20px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.side-menu-logo {
  height: 52px;
  width: auto;
}

.side-menu-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: background var(--transition);
}

.side-menu-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.side-menu-body {
  padding: 8px 0;
  flex: 1;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  border-bottom: 1px solid var(--gray-100);
}

.menu-item:hover {
  background: var(--blue-pale);
  color: var(--blue-primary);
}

.menu-item .menu-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.menu-item-badge {
  margin-left: auto;
  background: var(--blue-primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ── PAGES / VIEWS ── */
.page {
  display: none;
  min-height: calc(100vh - var(--nav-h) - 60px);
}

.page.active {
  display: block;
}

/* ── HOME PAGE ── */
/* Carousel */
.hero-carousel-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray-800);
}

@media (min-width: 640px) {
  .hero-carousel-wrap {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .hero-carousel-wrap {
    height: 380px;
  }
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 11, 8, 0.72) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: center;
  padding: 0 32px;
}

.carousel-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 4vw, 36px);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background var(--transition);
  cursor: pointer;
}

.carousel-dot.active {
  background: white;
  width: 20px;
  border-radius: 4px;
}

/* Quick cards on home */
.home-cards-section {
  padding: 24px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-cards-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 480px) {
  .home-cards-grid {
    grid-template-columns: 1fr;
  }
}

.home-quick-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
}

.home-quick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue-accent);
}

.home-quick-card .card-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.home-quick-card .card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.home-quick-card .card-sub {
  font-size: 12px;
  color: var(--gray-500);
}

/* ── PRODUCTS GRID ── */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px 24px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--gray-800);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-pale);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-accent);
}

.product-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  background: var(--gray-100);
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

.product-card-img-wrap {
  overflow: hidden;
}

.product-card-body {
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue-light);
  margin-bottom: 4px;
}

.product-card-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.4;
  flex: 1;
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

/* Qty + Add to cart */
.product-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 30px;
  height: 32px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  border: none;
  color: #e8c606;
}

.qty-btn:hover {
  background: var(--blue-pale);
  color: var(--blue-primary);
}

.qty-input {
  width: 36px;
  height: 32px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border: none;
  border-left: 1.5px solid var(--gray-200);
  border-right: 1.5px solid var(--gray-200);
  outline: none;
  background: var(--gray-100);
  color: #e8c606;
}

.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.btn-add-cart {
  flex: 1;
  height: 44px;
  background: var(--blue-primary);
  color: white;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background var(--transition), transform var(--transition);
}

.btn-add-cart:hover {
  background: var(--blue-dark);
  transform: scale(1.02);
}

.btn-add-cart:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .btn-add-cart {
    height: 52px;
    font-size: 14px;
    font-weight: 700;
  }
  .product-card-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
  }
  .qty-control {
    flex-shrink: 0;
  }
  .qty-btn {
    width: 36px;
    height: 52px;
    font-size: 20px;
  }
  .qty-input {
    width: 40px;
    height: 52px;
    font-size: 15px;
  }
}

/* ── CATALOG PAGE ── */
.catalog-header {
  background: var(--blue-secondary);
  color: white;
  padding: 20px 20px 16px;
}

.catalog-header-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 12px;
  opacity: 0.85;
}

.catalog-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
}

.catalog-header p {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 4px;
}

.catalog-categories-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow-x: auto;
  display: flex;
  gap: 0;
  scrollbar-width: none;
}

.catalog-categories-nav::-webkit-scrollbar {
  display: none;
}

.cat-nav-btn {
  padding: 12px 16px;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-500);
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.cat-nav-btn:hover {
  color: var(--blue-primary);
}

.cat-nav-btn.active {
  color: var(--blue-primary);
  border-color: var(--blue-primary);
}

.catalog-content {
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-section {
  margin-bottom: 40px;
}

.category-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-pale);
}

.category-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--blue-dark);
}

.category-section-count {
  font-size: 12px;
  background: var(--blue-pale);
  color: var(--blue-primary);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* ── PRODUCT DETAIL PAGE ── */
.product-detail-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
}

.product-detail-gallery {
  margin-bottom: 20px;
}

.product-main-img-wrap {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 10px;
  cursor: zoom-in;
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2.5px solid var(--gray-200);
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--gray-100);
}

.product-thumb.active {
  border-color: var(--blue-primary);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  padding: 4px 0;
}

.product-detail-cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue-light);
  margin-bottom: 6px;
}

.product-detail-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 12px;
}

.product-detail-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-specs-box {
  background: #0D0B08;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.product-specs-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.product-specs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-item {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
}

.spec-item::before {
  content: '▸';
  color: var(--blue-primary);
  flex-shrink: 0;
}

.product-detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.qty-control-lg {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn-lg {
  width: 40px;
  height: 44px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: #e8c606;

}

.qty-btn-lg:hover {
  background: var(--blue-pale);
  color: var(--blue-primary);
}

.qty-input-lg {
  width: 56px;
  height: 44px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-left: 2px solid var(--gray-200);
  border-right: 2px solid var(--gray-200);
  outline: none;
  background: var(--gray-100);
  color: #e8c606;
}

.qty-input-lg::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.btn-add-cart-lg {
  flex: 1;
  min-width: 180px;
  height: 48px;
  background: var(--blue-primary);
  color: white;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(201, 151, 58, 0.35);
}

.btn-add-cart-lg:hover {

  box-shadow: 0 6px 20px rgba(201, 151, 58, 0.45);
  transform: translateY(-1px);
}

/* ── CART PAGE ── */
.cart-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}

.cart-empty-icon {
  font-size: 64px;
  margin-bottom: 12px;
}

.cart-empty h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-500);
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--gray-100);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-800);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-cat {
  font-size: 12px;
  color: var(--blue-light);
  font-weight: 600;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: #e8c606;
}

.cart-qty-btn:hover {
  background: var(--blue-pale);
}

.cart-qty-val {
  width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  border-left: 1.5px solid var(--gray-200);
  border-right: 1.5px solid var(--gray-200);
  padding: 0;
  height: 28px;
  line-height: 28px;
  color: #e8c606;
}

.cart-remove-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--danger);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.cart-remove-btn:hover {
  background: #2A1212;
}

.cart-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.cart-summary-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--gray-700);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.cart-total-row.main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gray-900);
  border-bottom: none;
  padding-top: 12px;
}

.btn-order {
  width: 100%;
  height: 52px;
  background: var(--blue-primary);
  color: white;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(201, 151, 58, 0.3);
}

.btn-order:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(201, 151, 58, 0.4);
}

/* ── CONTACT PAGE ── */
.contact-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px 16px;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.contact-sub {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 16px;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.contact-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-person-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gray-900);
}

.contact-person-role {
  font-size: 13px;
  color: var(--gray-500);
}

.contact-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
}

.btn-phone {
  background: var(--blue-pale);
  color: var(--blue-primary);
}

.btn-phone:hover {
  background: var(--blue-primary);
  color: white;
}

.btn-email {
  background: var(--gray-100);
  color: var(--gray-700);
}

.btn-email:hover {
  background: var(--gray-200);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.contact-info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.contact-info-value {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-800);
}

/* ── ABOUT PAGE ── */
.about-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 16px;
}

.about-hero {
  background: linear-gradient(135deg, #1A1610 0%, #0D0B08 100%);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  color: white;
  margin-bottom: 24px;
  text-align: center;
}

.about-logo {
  height: 80px;
  margin: 0 auto 16px;
}

.about-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 8px;
}

.about-hero .tagline {
  font-style: italic;
  font-size: 16px;
  opacity: 0.9;
}

.about-text-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 16px;
}

.about-text-card p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-text-card p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  font-weight: 700;
  color: var(--blue-primary);
  font-style: italic;
}

/* ── REGISTER / LOGIN FORMS ── */
.auth-wrap {
  max-width: 460px;
  margin: 24px auto;
  padding: 0 16px;
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.auth-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--gray-900);
  margin-bottom: 4px;
  text-align: center;
}

.auth-sub {
  font-size: 14px;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 14px;
  color: var(--gray-800);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #0D0B08;
}

.form-input:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(201, 151, 58, 0.15);
  background: var(--gray-100);
}

.form-textarea {
  height: 80px;
  resize: vertical;
  padding: 10px 14px;
}

.btn-primary-full {
  width: 100%;
  height: 48px;
  background: var(--blue-primary);
  color: white;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(201, 151, 58, 0.3);
  margin-top: 8px;
}

.btn-primary-full:hover {
  background: var(--blue-dark);
}

.btn-secondary-full {
  width: 100%;
  height: 44px;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition);
  margin-top: 8px;
}

.btn-secondary-full:hover {
  background: var(--gray-200);
}

.auth-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-500);
}

.auth-switch a {
  color: var(--blue-primary);
  font-weight: 600;
  cursor: pointer;
}

.auth-switch a:hover {
  text-decoration: underline;
}

.form-error {
  background: #2A1212;
  color: var(--danger);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  display: none;
}

.form-success {
  background: #0F2A1C;
  color: #1D7A52;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  display: none;
}

/* ── ACCOUNT PAGE ── */
.account-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 16px;
}

.account-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
}

.account-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  border: 3px solid var(--blue-accent);
}

.account-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gray-900);
}

.account-email {
  font-size: 13px;
  color: var(--gray-500);
}

.btn-logout {
  margin-left: auto;
  padding: 8px 16px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  transition: background var(--transition);
}

.btn-logout:hover {
  background: #2A1212;
  color: var(--danger);
}

@media (max-width: 600px) {
  .account-header {
    flex-wrap: wrap;
  }

  .btn-logout {
    display: none;
  }
}

/* ── SEARCH RESULTS ── */
.search-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

.search-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-pale);
}

.search-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gray-800);
}

.search-header p {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ── POPUP / MODALS ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.popup-overlay.show {
  display: flex;
}

.popup-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  text-align: center;
  animation: popIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.popup-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.popup-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.popup-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-popup-ok {
  padding: 12px 28px;
  background: var(--blue-primary);
  color: white;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition);
}

/* === Order Button Animation === */
.btn-popup-ok {
  position: relative;
  overflow: visible !important;
}

.btn-line {
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: #C9973A;
  transform: scaleX(0);
  transform-origin: 0 100%;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.85s cubic-bezier(.22, 1, .36, 1), opacity 0.2s;
}

.bl-1 {
  bottom: calc(100% + 6px);
  left: 8%;
  width: 14%;
  transition-delay: 0s;
}

.bl-2 {
  bottom: calc(100% + 14px);
  left: 22%;
  width: 32%;
  transition-delay: 0.08s;
}

.bl-3 {
  bottom: calc(100% + 22px);
  left: 18%;
  width: 20%;
  transition-delay: 0.18s;
}

.bl-4 {
  bottom: calc(100% + 8px);
  left: 58%;
  width: 22%;
  transition-delay: 0.05s;
}

.bl-5 {
  bottom: calc(100% + 18px);
  left: 65%;
  width: 14%;
  transition-delay: 0.14s;
}

.btn-popup-ok.sending {
  animation: btnTilt 0.9s ease-in-out;
  pointer-events: none;
}

.btn-popup-ok.sending .btn-line {
  transform: scaleX(1);
  opacity: 1;
}

@keyframes btnTilt {

  8%,
  24% {
    transform: rotate(0deg);
  }

  35%,
  70% {
    transform: rotate(4deg);
  }

  85% {
    transform: rotate(-2deg);
  }

  95%,
  100% {
    transform: rotate(0deg);
  }
}

.btn-popup-ok.done {
  background: #0f6e56 !important;
  pointer-events: none;
}

.btn-popup-ok.done .btn-line {
  transform: scaleX(1);
  opacity: 1;
}

@keyframes dotsAnim {
  0% {
    content: '';
  }

  25% {
    content: '.';
  }

  50% {
    content: '..';
  }

  75% {
    content: '...';
  }
}

.sending-dots::after {
  content: '';
  animation: dotsAnim 1.2s steps(4, end) infinite;
}

.btn-popup-ok:hover {
  background: var(--blue-dark);
}

.btn-popup-cancel {
  padding: 12px 28px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition);
}

.btn-popup-cancel:hover {
  background: var(--gray-200);
}

/* ── BACK BUTTON ── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gray-100);
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
  margin-left: 16px;
  margin-top: 12px;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  color: #e8c606;
}

.back-btn:hover {
  background: var(--blue-pale);
  color: var(--blue-primary);
}

/* ── OFFERS PAGE ── */
.offers-wrap {
  max-width: 700px;
  margin: 60px auto;
  padding: 16px;
  text-align: center;
}

.offers-wrap .big-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.offers-wrap h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.offers-wrap p {
  font-size: 16px;
  color: var(--gray-500);
}

/* ── NOUTATI PAGE ── */
.noutati-wrap {
  max-width: 700px;
  margin: 60px auto;
  padding: 16px;
  text-align: center;
}

.noutati-wrap .big-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.noutati-wrap h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.noutati-wrap p {
  font-size: 16px;
  color: var(--gray-500);
}

/* ── ORDER SUCCESS PAGE ── */
.order-success-wrap {
  max-width: 640px;
  margin: 24px auto;
  padding: 16px;
  text-align: center;
}

.order-success-icon {
  font-size: 72px;
  margin-bottom: 16px;
}

.order-success-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--success);
  margin-bottom: 8px;
}

.order-items-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: left;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

.order-item-row:last-child {
  border-bottom: none;
}

.order-item-name {
  color: var(--gray-700);
  font-weight: 500;
}

.order-item-qty {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--blue-primary);
  background: var(--blue-pale);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 13px;
}

/* ── FOOTER ── */
#site-footer {
  background: #0D0B08;
  color: var(--gray-700);
  padding: 24px 20px 16px;
  margin-top: 40px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  opacity: 0.9;
}

.footer-brand-tagline {
  font-size: 12px;
  opacity: 0.65;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-badge a {
  color: white;
}

.footer-badge a:hover {
  opacity: 0.8;
}

.footer-badge img {
  height: 22px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  max-width: 1200px;
  margin: 16px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.65;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ── COOKIE CONSENT ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.96);
  color: white;
  padding: 16px 20px;
  z-index: 3000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--blue-accent);
}

.cookie-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  min-width: 200px;
}

.cookie-text a {
  color: var(--blue-accent);
  font-weight: 600;
}

.btn-accept-cookies {
  padding: 10px 24px;
  background: var(--blue-primary);
  color: white;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  transition: background var(--transition);
  flex-shrink: 0;
}

.btn-accept-cookies:hover {
  background: var(--blue-dark);
}

/* ── PWA INSTALL ── */
#pwa-install-banner {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--blue-accent);
  padding: 16px;
  max-width: 280px;
  z-index: 900;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pwa-banner-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.pwa-banner-text {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.pwa-banner-btns {
  display: flex;
  gap: 8px;
}

.btn-pwa-install {
  flex: 1;
  padding: 8px;
  background: var(--blue-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
  transition: background var(--transition);
}

.btn-pwa-install:hover {
  background: var(--blue-dark);
}

.btn-pwa-dismiss {
  padding: 8px;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: var(--radius-sm);
  font-size: 12px;
}

/* ── LOADING ── */
.spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--blue-pale);
  border-top-color: var(--blue-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── TOAST ── */
#toast-container {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: min(360px, calc(100vw - 32px));
}

.toast {
  background: var(--gray-900);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: all;
}

.toast.success {
  background: #1D7A52;
  border-left: 4px solid var(--success);
}

.toast.error {
  background: #4A1414;
  border-left: 4px solid var(--danger);
}

.toast.info {
  background: var(--blue-dark);
  border-left: 4px solid var(--blue-accent);
}

@keyframes toastIn {
  from {
    transform: translateY(16px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#lightbox.show {
  display: flex;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  animation: popIn 0.2s ease;
}

#lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition);
}

#lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ── UTILITIES ── */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mt-4 {
  margin-top: 16px;
}

.p-4 {
  padding: 16px;
}

.rounded {
  border-radius: var(--radius);
}

.shadow {
  box-shadow: var(--shadow);
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 400px) {
  .product-card-actions {
    flex-direction: row;
  }
  .btn-add-cart {
    flex: 1;
    height: 52px;
  }
}

/* ── SUBMENIU CONT ── */
.menu-item-expandable {
  cursor: pointer;
}
.menu-subitem {
  padding: 10px 16px 10px 12px !important;
  font-size: 13px !important;
  border-radius: 0 8px 8px 0;
}
.menu-subitem:hover {
  background: rgba(201, 168, 60, 0.1) !important;
  color: var(--gold, #C9A84C) !important;
}
