/* ─────────────────────────────────────────────────────────────────────────────
   Modaser Mobilya — Premium Stylesheet v2
   Design System: Red & White — Professional Furniture Store
   ───────────────────────────────────────────────────────────────────────────── */

/* ─── Google Fonts Import ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ─── Design Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --clr-brand-primary:  #B91C1C;
  --clr-brand-dark:     #991B1B;
  --clr-brand-light:    #FEE2E2;
  --clr-brand-muted:    #FECACA;
  --clr-brand-hover:    #7F1D1D;

  /* Neutrals */
  --clr-white:          #FFFFFF;
  --clr-bg:             #FAFAFA;
  --clr-bg-alt:         #F5F5F4;
  --clr-surface:        #FFFFFF;
  --clr-border:         #E7E5E4;
  --clr-border-strong:  #D6D3D1;

  /* Text */
  --clr-text-primary:   #1C1917;
  --clr-text-secondary: #57534E;
  --clr-text-muted:     #A8A29E;
  --clr-text-white:     #FFFFFF;

  /* Accent */
  --clr-success:        #059669;
  --clr-whatsapp:       #25D366;

  /* Typography */
  --font-sans:          'Inter', system-ui, -apple-system, sans-serif;
  --font-display:       'Playfair Display', Georgia, serif;

  /* Sizing */
  --container-max:      1320px;
  --radius-sm:          4px;
  --radius-md:          8px;
  --radius-lg:          16px;
  --radius-xl:          24px;
  --radius-full:        9999px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:   0 1px 4px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --shadow-brand:  0 8px 24px rgba(185,28,28,.25);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-med:  280ms;
  --duration-slow: 500ms;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--clr-bg);
  color: var(--clr-text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a {
  color: var(--clr-brand-primary);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}
a:hover { color: var(--clr-brand-hover); }

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

/* ─── Container ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER — 4-Tier Layout
   ───────────────────────────────────────────────────────────────────────────── */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-white);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--duration-slow) ease;
}
.header-main.header--compact {
  box-shadow: var(--shadow-md);
}
.header-main.header--compact .header-promo,
.header-main.header--compact .header-topbar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
  border-bottom-width: 0;
}
.header-main.header--compact .header-search {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
}
.header-main.header--compact .header-middle {
  padding: .5rem 0;
}
.header-main.header--compact .header-logo img {
  height: 36px;
}

/* 1. Promo Strip */
.header-promo {
  background: var(--clr-brand-primary);
  color: rgba(255,255,255,.95);
  font-size: .8rem;
  font-weight: 500;
  padding: .5rem 0;
  text-align: center;
  letter-spacing: .025em;
  max-height: 100px;
  overflow: hidden;
  transition: max-height var(--duration-slow) ease,
              padding var(--duration-slow) ease,
              opacity var(--duration-slow) ease;
}

/* 2. Topbar */
.header-topbar {
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
  font-size: .78rem;
  max-height: 100px;
  overflow: hidden;
  transition: max-height var(--duration-slow) ease,
              padding var(--duration-slow) ease,
              opacity var(--duration-slow) ease,
              border-bottom-width var(--duration-slow) ease;
}
.header-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem 3rem;
  max-width: 100%;
  margin: 0 auto;
}
.topbar-links-left {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
}
.topbar-links-left a {
  color: var(--clr-text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--duration-fast) ease;
}
.topbar-links-left a:hover { color: var(--clr-brand-primary); }
.topbar-links-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar-link {
  color: var(--clr-text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--duration-fast) ease;
}
.topbar-link:hover { color: var(--clr-brand-primary); }
.topbar-whatsapp {
  color: var(--clr-success);
  font-weight: 600;
}
.topbar-whatsapp:hover { color: #047857; }
.topbar-divider { color: var(--clr-border-strong); }
.lang-switcher-simple {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--clr-border);
}
.lang-btn {
  background: none;
  border: none;
  font-size: .78rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  cursor: pointer;
  padding: .1rem .2rem;
  letter-spacing: .04em;
  transition: color var(--duration-fast) ease;
}
.lang-btn.active,
.lang-btn:hover { color: var(--clr-brand-primary); }
.d-inline { display: inline; }

/* 3. Main Header */
.header-middle {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-white);
}
.header-middle__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 3rem;
  max-width: 100%;
  margin: 0 auto;
}

/* Logo */
.header-logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
}
.header-logo__wordmark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--clr-brand-primary);
  letter-spacing: -.01em;
  line-height: 1;
}
.header-logo__sub {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* Search */
.header-search {
  flex: 0 1 580px;
  max-width: 580px;
  display: flex;
  align-items: stretch;
  transition: max-height var(--duration-slow) ease,
              opacity var(--duration-slow) ease,
              margin var(--duration-slow) ease,
              padding var(--duration-slow) ease;
}
.search-input-wrapper {
  flex: 1;
  position: relative;
}
.search-input-wrapper input {
  width: 100%;
  padding: .72rem 1rem .72rem 2.75rem;
  border: 1.5px solid var(--clr-border-strong);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: .88rem;
  font-family: var(--font-sans);
  color: var(--clr-text-primary);
  background: var(--clr-bg);
  outline: none;
  transition: border-color var(--duration-fast) ease;
}
.search-input-wrapper input:focus {
  border-color: var(--clr-brand-primary);
  background: var(--clr-white);
}
.search-icon-wrap {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  pointer-events: none;
  display: flex;
}
.search-btn {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background: var(--clr-brand-primary);
  color: var(--clr-white);
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--duration-fast) ease;
}
.search-btn:hover { background: var(--clr-brand-dark); }

/* User actions */
.header-user-actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .25rem;
  margin-left: auto;
}
.user-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .45rem .65rem;
  color: var(--clr-text-secondary);
  font-size: .7rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) ease;
  white-space: nowrap;
  position: relative;
}
.user-action:hover {
  color: var(--clr-brand-primary);
  background: var(--clr-brand-light);
}
.user-action svg { flex-shrink: 0; }
.user-action--highlight { color: var(--clr-brand-primary); }
.cart-badge {
  position: absolute;
  top: .3rem;
  right: .3rem;
  width: 16px;
  height: 16px;
  background: var(--clr-brand-primary);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .5rem;
  border-radius: var(--radius-sm);
  margin-left: auto;
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text-primary);
  border-radius: 2px;
  transition: all var(--duration-med) var(--ease-out);
}

/* 4. Category Nav */
.header-nav {
  background: var(--clr-white);
  border-bottom: 2px solid var(--clr-brand-primary);
  overflow: hidden;
}
.nav-categories {
  display: flex;
  list-style: none;
  gap: 0;
  overflow-x: auto;
  white-space: nowrap;
  margin: 0 auto;
  padding: 0 3rem;
  max-width: 100%;
  scrollbar-width: none;
}
.nav-categories::-webkit-scrollbar { display: none; }
.nav-link {
  display: block;
  padding: .8rem 1.25rem;
  color: var(--clr-text-secondary);
  font-size: .83rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all var(--duration-fast) ease;
  letter-spacing: .02em;
}
.nav-link:hover {
  color: var(--clr-brand-primary);
  border-bottom-color: var(--clr-brand-primary);
}
.nav-link.nav-link--sale {
  color: var(--clr-brand-primary);
  background: var(--clr-brand-light);
  border-radius: 0;
  font-weight: 700;
}
.nav-link.nav-link--sale:hover { background: var(--clr-brand-muted); }

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SLIDER SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 800;
  height: auto;
  overflow: hidden;
  background: var(--clr-bg-alt);
}
.hero-slider__container {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow) ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 70%);
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--clr-white);
  padding-left: 2rem;
}
.hero-slide__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-slide__desc {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .hero-slider { aspect-ratio: 1920 / 800; height: auto; min-height: unset; max-height: unset; }
  .hero-slide__content { padding-left: 1rem; text-align: center; align-items: center; }
  .hero-slide__overlay { background: rgba(0,0,0,0.4); }
}

.hero-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.hero-slider__btn:hover {
  background: rgba(255, 255, 255, 0.4);
}
.hero-slider__btn--prev {
  left: 20px;
}
.hero-slider__btn--next {
  right: 20px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CIRCLE CATEGORIES
   ───────────────────────────────────────────────────────────────────────────── */
.circle-categories {
  background: var(--clr-white);
  overflow: hidden;
}
.circle-categories__scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}
.circle-categories__scroll::-webkit-scrollbar { display: none; }
.circle-categories__inner {
  display: inline-flex;
  gap: 2rem;
  padding: 0 1rem;
}
.circle-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  width: 100px;
  flex-shrink: 0;
}
.circle-category__img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 2px solid transparent;
  transition: all var(--duration-med) var(--ease-out);
}
.circle-category__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.circle-category:hover .circle-category__img-wrap {
  border-color: var(--clr-brand-primary);
  box-shadow: 0 6px 15px rgba(185,28,28,0.2);
}
.circle-category:hover .circle-category__img-wrap img {
  transform: scale(1.1);
}
.circle-category__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-primary);
  text-align: center;
  line-height: 1.2;
}
.circle-category:hover .circle-category__name {
  color: var(--clr-brand-primary);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--duration-med) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn--primary {
  background: var(--clr-white);
  color: var(--clr-brand-primary);
  border-color: var(--clr-white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--clr-brand-light);
  color: var(--clr-brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.4);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: var(--clr-white);
}

.btn--brand {
  background: var(--clr-brand-primary);
  color: var(--clr-white);
  border-color: var(--clr-brand-primary);
  box-shadow: var(--shadow-brand);
}
.btn--brand:hover {
  background: var(--clr-brand-dark);
  border-color: var(--clr-brand-dark);
  color: var(--clr-white);
  transform: translateY(-1px);
}

/* Keep old class name for compatibility */
.btn--red { background: var(--clr-brand-primary); color: var(--clr-white); border-color: var(--clr-brand-primary); box-shadow: var(--shadow-brand); }
.btn--red:hover { background: var(--clr-brand-dark); border-color: var(--clr-brand-dark); color: var(--clr-white); }

.btn--outline {
  background: transparent;
  color: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
}
.btn--outline:hover {
  background: var(--clr-brand-primary);
  color: var(--clr-white);
}

.btn--lg { padding: .95rem 2.25rem; font-size: .95rem; }
.btn--sm { padding: .5rem 1.1rem; font-size: .82rem; }

/* ─── Section Header ─────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--clr-brand-primary);
  margin-bottom: .85rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-brand-primary);
  opacity: .5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--clr-text-primary);
  line-height: 1.2;
  margin-bottom: .85rem;
  letter-spacing: -.02em;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--clr-text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── Trust/Features Bar ─────────────────────────────────────────────────── */
.features-bar {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.25rem 0;
}
.features-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 1.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .5rem 0;
}
.feature-item__icon {
  width: 40px;
  height: 40px;
  background: var(--clr-brand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-brand-primary);
  flex-shrink: 0;
}
.feature-item__text strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--clr-text-primary);
}
.feature-item__text span {
  font-size: .75rem;
  color: var(--clr-text-muted);
}

/* ─── Product Grid ───────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: none;
  transition: all var(--duration-med) var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.product-card__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--duration-slow) var(--ease-out);
}
.product-card:hover .product-card__image { transform: scale(1.05); }
.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-alt);
  color: var(--clr-border-strong);
}
.product-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--clr-brand-primary);
  color: var(--clr-white);
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: var(--radius-sm);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-card__out-of-stock {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--clr-text-secondary);
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .4rem;
}
.product-card__category {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-brand-primary);
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid var(--clr-border);
}
.product-card__price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-brand-primary);
  letter-spacing: -.01em;
}
.product-card__price span {
  font-size: .75rem;
  font-weight: 500;
  color: var(--clr-text-muted);
}

/* ─── Product Detail ─────────────────────────────────────────────────────── */
.product-detail { padding: 3rem 0 5rem; }
.product-detail__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: start;
}
.product-detail__gallery {
  position: static;
  top: auto;
}
.gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-bg-alt);
  margin-bottom: .85rem;
  box-shadow: var(--shadow-md);
}
.gallery__main img { width: 100%; height: auto; display: block; object-fit: contain; transition: opacity var(--duration-med) ease; }
.gallery__thumbs { display: flex; gap: .6rem; flex-wrap: wrap; }
.gallery__thumb {
  width: 76px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--duration-fast) ease;
}
.gallery__thumb.active, .gallery__thumb:hover { border-color: var(--clr-brand-primary); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__info { display: flex; flex-direction: column; gap: 1.5rem; }
.product-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--clr-text-muted);
}
.product-detail__breadcrumb a { color: var(--clr-text-muted); }
.product-detail__breadcrumb a:hover { color: var(--clr-brand-primary); }
.product-detail__category {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--clr-brand-primary);
}
.product-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-text-primary);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.product-detail__price-block {
  background: var(--clr-brand-light);
  border: 1px solid var(--clr-brand-muted);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--clr-brand-primary);
  letter-spacing: -.02em;
}
.product-detail__stock {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
}
.product-detail__stock--in { background: #D1FAE5; color: #065F46; }
.product-detail__stock--out { background: #FEE2E2; color: #991B1B; }
.product-detail__description { color: var(--clr-text-secondary); line-height: 1.85; font-size: .95rem; }
.product-detail__whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--duration-med) var(--ease-out);
  box-shadow: 0 6px 20px rgba(37,211,102,.30);
  text-decoration: none;
}
.product-detail__whatsapp-btn:hover {
  background: #1ebe5c;
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.40);
}

/* ─── Category Filter Bar ────────────────────────────────────────────────── */
.filter-bar { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; padding: 1.25rem 0; }
.filter-bar__label { font-size: .8rem; font-weight: 600; color: var(--clr-text-muted); margin-right: .35rem; }
.filter-btn {
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  border: 1.5px solid var(--clr-border-strong);
  background: var(--clr-surface);
  color: var(--clr-text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  text-decoration: none;
  white-space: nowrap;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  color: var(--clr-white);
}

/* ─── Search Bar ─────────────────────────────────────────────────────────── */
.search-form { display: flex; gap: .75rem; max-width: 380px; }
.search-input {
  flex: 1;
  padding: .6rem 1rem;
  border: 1.5px solid var(--clr-border-strong);
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-family: var(--font-sans);
  background: var(--clr-surface);
  color: var(--clr-text-primary);
  transition: border-color var(--duration-fast) ease;
  outline: none;
}
.search-input:focus {
  border-color: var(--clr-brand-primary);
  box-shadow: 0 0 0 3px rgba(185,28,28,.1);
}

/* ─── Order Tracking ─────────────────────────────────────────────────────── */
.tracking-hero {
  background: linear-gradient(135deg, var(--clr-text-primary) 0%, #292524 100%);
  padding: 2.5rem 0 6rem;
  text-align: center;
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}
.tracking-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(185,28,28,.25) 0%, transparent 55%);
}
.tracking-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 60px;
  background: var(--clr-bg);
  clip-path: ellipse(60% 60px at 50% 60px);
}
.tracking-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
}
.tracking-hero__subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.tracking-card {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.tracking-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: 1.75rem;
  text-align: center;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-text-primary);
  margin-bottom: .45rem;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--clr-border-strong);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-family: var(--font-sans);
  color: var(--clr-text-primary);
  background: var(--clr-bg);
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  outline: none;
}
.form-control:focus {
  border-color: var(--clr-brand-primary);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(185,28,28,.1);
}
.form-control.is-invalid { border-color: #DC2626; }
.invalid-feedback { font-size: .78rem; color: #DC2626; margin-top: .35rem; }

/* Order Progress Bar */
.order-progress {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 2rem 0 1.5rem;
  margin-bottom: 2rem;
}
.order-progress__line {
  position: absolute;
  top: 2.85rem;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: var(--clr-border);
  border-radius: 4px;
}
.order-progress__line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-brand-primary), var(--clr-brand-dark));
  border-radius: 4px;
  transition: width .8s var(--ease-out);
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 1;
  flex: 1;
}
.progress-step__dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--duration-med) var(--ease-out);
}
.progress-step.completed .progress-step__dot {
  background: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-brand);
}
.progress-step.active .progress-step__dot {
  background: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  color: var(--clr-white);
  box-shadow: 0 0 0 6px rgba(185,28,28,.2);
  animation: pulse-brand 1.8s infinite;
}
@keyframes pulse-brand {
  0%, 100% { box-shadow: 0 0 0 6px rgba(185,28,28,.2); }
  50% { box-shadow: 0 0 0 10px rgba(185,28,28,.06); }
}
.progress-step__label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-align: center;
  max-width: 70px;
  line-height: 1.3;
}
.progress-step.completed .progress-step__label,
.progress-step.active .progress-step__label { color: var(--clr-brand-primary); }

/* Order Details Card */
.order-details-card { background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 2rem; }
.order-details-card__header {
  background: linear-gradient(135deg, var(--clr-text-primary), #292524);
  color: var(--clr-white);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-details-card__body { padding: 1.75rem; }
.order-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.order-info-item__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--clr-text-muted);
  margin-bottom: .25rem;
}
.order-info-item__value { font-size: .9rem; font-weight: 600; color: var(--clr-text-primary); }
.order-items-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.order-items-table th {
  background: var(--clr-bg-alt);
  padding: .75rem 1rem;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
}
.order-items-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--clr-border); color: var(--clr-text-secondary); }
.order-items-table tr:last-child td { border-bottom: none; }
.order-total-row {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.75rem;
  border-top: 2px solid var(--clr-border);
  gap: 1rem;
  align-items: center;
  background: var(--clr-bg-alt);
}
.order-total-label { font-weight: 700; color: var(--clr-text-primary); }
.order-total-amount { font-size: 1.35rem; font-weight: 800; color: var(--clr-brand-primary); }

/* ─── Alert Messages ─────────────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
}
.alert--error { background: #FEF2F2; border-color: #FECACA; color: #991B1B; }
.alert--success { background: #ECFDF5; border-color: #A7F3D0; color: #065F46; }
.alert--info { background: #EFF6FF; border-color: #BFDBFE; color: #1E40AF; }

/* ─── WhatsApp Widget ────────────────────────────────────────────────────── */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .85rem;
}
.whatsapp-bubble {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: .9rem 1.25rem;
  box-shadow: var(--shadow-lg);
  font-size: .82rem;
  color: var(--clr-text-secondary);
  max-width: 210px;
  line-height: 1.55;
  animation: bubble-in var(--duration-slow) var(--ease-out) 1.5s both;
  position: relative;
}
.whatsapp-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--clr-white);
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(12px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: all var(--duration-med) var(--ease-out);
  border: 3px solid rgba(255,255,255,.9);
  animation: wa-bounce 2.5s ease-in-out infinite 3s;
  text-decoration: none;
  position: relative;
}
.whatsapp-btn:hover {
  background: #1ebe5c;
  color: var(--clr-white);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,.55);
  animation: none;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.whatsapp-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: var(--clr-brand-primary);
  border-radius: 50%;
  border: 2px solid var(--clr-white);
  animation: badge-pulse 2s infinite;
}
@keyframes badge-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: #1C1917;
  color: rgba(255,255,255,.6);
  padding: 5rem 0 0;
  margin-top: auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 0 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto 3rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: .85rem;
  letter-spacing: -.01em;
}
.footer__brand-line {
  width: 40px;
  height: 3px;
  background: var(--clr-brand-primary);
  border-radius: 2px;
  margin-bottom: 1rem;
}
.footer__desc { font-size: .855rem; line-height: 1.85; max-width: 260px; }
.footer__contact-list { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.footer__contact-list li a {
  color: rgba(255,255,255,.55);
  font-size: .84rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color var(--duration-fast) ease;
}
.footer__contact-list li a:hover { color: var(--clr-white); }
.footer__heading {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer__links a {
  color: rgba(255,255,255,.55);
  font-size: .855rem;
  transition: color var(--duration-fast) ease;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer__links a:hover { color: var(--clr-white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
.footer__red-accent { color: var(--clr-brand-primary); font-weight: 600; }
.footer__bottom-lang { display: flex; align-items: center; gap: 1rem; }
.footer__bottom-lang button {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: .78rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: color var(--duration-fast) ease;
}
.footer__bottom-lang button:hover { color: rgba(255,255,255,.85); }

/* ─── Pagination ─────────────────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: .4rem; padding: 2.5rem 0; list-style: none; }
.page-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--clr-border-strong);
  color: var(--clr-text-secondary);
  font-weight: 600;
  font-size: .88rem;
  transition: all var(--duration-fast) ease;
}
.page-link:hover, .page-link.active {
  background: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  color: var(--clr-white);
}

/* ─── Empty State ────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 5rem 2rem; color: var(--clr-text-muted); }
.empty-state__icon { margin-bottom: 1.25rem; opacity: .25; color: var(--clr-text-secondary); }
.empty-state__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--clr-text-secondary); margin-bottom: .75rem; }
.empty-state__text { font-size: .92rem; line-height: 1.7; max-width: 380px; margin: 0 auto 1.75rem; }

/* ─── Badges ─────────────────────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; padding: .2rem .6rem; border-radius: var(--radius-sm); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge--red { background: var(--clr-brand-light); color: var(--clr-brand-primary); }
.badge--green { background: #D1FAE5; color: #065F46; }
.badge--gray { background: var(--clr-bg-alt); color: var(--clr-text-muted); }

/* ─── Utility Classes ────────────────────────────────────────────────────── */
.text-red, .text-brand { color: var(--clr-brand-primary); }
.text-muted { color: var(--clr-text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.py-6 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .features-bar__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .topbar-links-left { display: none; }
  .topbar-links-right { width: 100%; justify-content: center; flex-wrap: wrap; gap: 0.75rem; text-align: center; }
  .header-middle__inner { flex-wrap: wrap; gap: 1rem; }
  .header-search { order: 3; width: 100%; max-width: 100%; flex: none; }
  .header-user-actions { gap: 0; }
  .product-detail__grid { grid-template-columns: 1fr; gap: 2rem; }
  .navbar__toggle { display: flex; }
  .header-nav .nav-categories { display: none; }
  .header-nav .nav-categories.open {
    display: flex;
    flex-direction: column;
    padding: .5rem 1.5rem 1rem;
    background: var(--clr-white);
  }
  .header-nav .nav-categories.open .nav-link {
    border-bottom: 1px solid var(--clr-border);
    padding: .6rem 0;
  }
}

/* ─── Product Accordion ─────────────────────────────────────────────────── */
.product-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-surface);
}
.accordion-item[open] {
  border-color: var(--clr-brand-primary);
}
.accordion-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--clr-text-primary);
  user-select: none;
  background: var(--clr-surface);
  transition: background var(--duration-fast) ease;
  list-style: none; /* Hide default triangle */
}
.accordion-header::-webkit-details-marker {
  display: none; /* Hide default triangle in WebKit */
}
.accordion-header:hover {
  background: var(--clr-bg-alt);
}
.accordion-item[open] .accordion-header {
  background: var(--clr-bg-alt);
  color: var(--clr-brand-primary);
  border-bottom: 1px solid var(--clr-border);
}
.accordion-icon {
  color: var(--clr-text-muted);
  transition: transform var(--duration-med) var(--ease-out);
}
.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
  color: var(--clr-brand-primary);
}
.accordion-content {
  padding: 1.5rem;
  color: var(--clr-text-secondary);
  line-height: 1.7;
  font-size: .95rem;
  background: var(--clr-surface);
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .order-info-grid { grid-template-columns: 1fr; }
  .tracking-card { padding: 1.5rem; }
  .hero { padding: 5rem 0 4rem; }
  .order-progress { padding: 1.5rem 0 1rem; }
  .progress-step__dot { width: 36px; height: 36px; }
  .order-progress__line { top: calc(1.5rem + 18px); left: 1rem; right: 1rem; }
  .features-bar { display: none; }
  .header-user-actions .user-action span.label { display: none; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero__cta-group { flex-direction: column; align-items: center; }
  .gallery__thumbs { gap: .4rem; }
  .gallery__thumb { width: 60px; height: 48px; }
}

/* ─── Mobile Language Switcher ───────────────────────────── */
@media (max-width: 991px) {
  .mobile-lang-switcher {
    display: block !important;
  }
}


/* ─── Mobile Responsiveness Enhancements ───────────────────────────── */
@media (max-width: 991px) {
  .product-detail__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .product-detail__gallery {
    position: static !important;
  }
  .gallery__main {
    max-height: 50vh;
  }
  .gallery__main img {
    max-height: 50vh;
    object-fit: contain;
  }
  .header-middle__inner {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 1rem;
  }
  .header-search {
    order: 3;
    flex-basis: 100%;
    max-width: 100%;
  }
  .nav-categories {
    padding: 0 1rem;
  }
  .header-topbar__inner {
    flex-direction: column;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  .topbar-links-left {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .features-bar__inner {
    grid-template-columns: 1fr 1fr;
  }
  .section-title {
    font-size: 1.5rem !important;
  }
  .product-detail__title {
    font-size: 1.8rem !important;
  }
  .product-detail__price-block {
    padding: 1rem !important;
  }
  .product-detail__price {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .features-bar__inner {
    grid-template-columns: 1fr;
  }
  .header-logo__wordmark {
    font-size: 1.4rem;
  }
  .circle-categories__inner {
    gap: 1rem;
  }
  .circle-category__img-wrap {
    width: 70px;
    height: 70px;
  }
}

/* ─── Mobile Logo Size ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .header-logo img {
    height: 52px !important;
  }
}
@media (max-width: 480px) {
  .header-logo img {
    height: 48px !important;
  }
}
