/* Layout fix — spacing, alignment, navigation → footer (2026) */

:root {
  --layout-pad-x: clamp(1rem, 2.5vw, 2rem);
  --header-logo-slot: clamp(160px, 40vw, 260px);
  --hero-logo-clearance-top: 0.75rem;
  --section-y: clamp(1.5rem, 3vw, 2.5rem);
  --section-gap: 0;
  --container-max: 1480px;
}

@media (min-width: 992px) {
  :root {
    --header-logo-slot: 300px;
    --hero-logo-clearance-top: 1rem;
  }

  .site-top {
    min-height: 235px;
  }
}

/* —— Site top cluster: logo spans announcement + promo + header —— */
.site-top {
  position: sticky;
  top: 0;
  z-index: 200;
  padding-bottom: 0.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 250, 0.96) 100%);
}

/* —— Announcement + promo (content clears logo column) —— */
.announcement-bar {
  position: relative;
  z-index: 1;
  padding: 0.5rem var(--layout-pad-x);
  padding-left: calc(var(--layout-pad-x) + var(--header-logo-slot));
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.4;
  letter-spacing: 1px;
  box-sizing: border-box;
}

.promo-strip {
  position: relative;
  z-index: 1;
  padding: 0.65rem var(--layout-pad-x);
  padding-left: calc(var(--layout-pad-x) + var(--header-logo-slot));
  gap: 1rem 2rem;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-pad-x);
  padding-right: var(--layout-pad-x);
  box-sizing: border-box;
}

.site-main {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 50vh;
}

/* —— Header: compact bar + absolute left logo —— */
.header-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}

.header-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 0.75rem;
  min-height: 56px;
  padding: 0.4rem 0;
}

.header-nav.main-nav {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.2rem 0.35rem;
  padding: 0.35rem 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.header-search-wrap {
  position: relative;
  z-index: 5;
  flex: 0 1 440px;
  max-width: 440px;
  margin: 0 0 0 auto;
}

.header-actions {
  position: relative;
  z-index: 5;
  margin-left: 0;
  flex-shrink: 0;
  gap: 0.4rem;
}

.icon-btn-search-mobile {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 6;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .header-top {
    min-height: 68px;
    padding-left: var(--header-logo-slot);
    justify-content: flex-end;
  }

  .header-search-wrap {
    margin-left: auto;
    margin-right: 0;
  }

  .header-actions {
    margin-left: 0;
  }

  .header-nav.main-nav {
    display: flex;
    padding-left: var(--header-logo-slot);
    box-sizing: border-box;
  }

  .mobile-nav-panel {
    display: contents;
  }

  .mobile-menu-drawer {
    display: none !important;
  }

  .mobile-nav-top {
    display: none !important;
  }

  .mobile-nav-links {
    display: contents;
  }

  .mobile-menu-backdrop {
    display: none !important;
  }

  .mobile-menu-portal {
    display: none !important;
  }

  .menu-toggle {
    display: none;
  }

  .icon-btn-search-mobile {
    display: none !important;
  }
}

@media (max-width: 991px) {
  body.mobile-nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-top {
    min-height: 0;
  }

  .site-top .logo-brand--header.logo-image-link {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: min(380px, 96vw);
    margin: 0 auto;
    padding: 0.6rem var(--layout-pad-x) 0.45rem;
    box-sizing: border-box;
    z-index: 1;
  }

  .site-top .logo-brand--header .logo-image {
    max-height: clamp(140px, 32vw, 185px);
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    object-position: center center;
  }

  .announcement-bar,
  .promo-strip {
    padding-left: var(--layout-pad-x);
    text-align: center;
  }

  .header-top {
    min-height: 52px;
    padding-left: 0;
    justify-content: flex-end;
    gap: 0.35rem 0.5rem;
  }

  .menu-toggle {
    margin-right: auto;
    display: grid;
    place-items: center;
    padding: 0;
  }

  .menu-toggle span {
    display: none;
  }

  .menu-toggle [class^="ri-"] {
    font-size: 1.35rem;
    line-height: 1;
    color: var(--green, #2d4a3e);
  }

  .header-search-wrap {
    display: none;
  }

  .icon-btn-search-mobile {
    display: grid;
  }

  .header-actions .icon-btn {
    width: 38px;
    height: 38px;
  }

  .header-actions .icon-btn [class^="ri-"] {
    font-size: 1.15rem;
  }

  .announcement-bar {
    font-size: 0.74rem;
    line-height: 1.35;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }
}

@media (max-width: 380px) {
  .site-top .logo-brand--header.logo-image-link {
    max-width: min(340px, 96vw);
  }

  .site-top .logo-brand--header .logo-image {
    max-height: clamp(128px, 30vw, 170px);
  }
}

/* Mobile menu — fixed portal, slide-in drawer */
.mobile-menu-portal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
  pointer-events: none;
}

@media (max-width: 991px) {
  .mobile-menu-portal.is-active {
    display: block;
    pointer-events: auto;
  }
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(20, 40, 32, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-portal.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 601;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100dvh;
  margin: 0;
  background: linear-gradient(180deg, #fffefb 0%, #faf6f1 100%);
  padding:
    calc(env(safe-area-inset-top, 0px) + 1rem)
    var(--layout-pad-x)
    calc(env(safe-area-inset-bottom, 0px) + 1.25rem);
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: none;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-portal.is-open .mobile-menu-drawer {
  transform: translateX(0);
}

.mobile-menu-portal .mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(26, 61, 50, 0.08);
  flex-shrink: 0;
}

.mobile-menu-portal .mobile-nav-title {
  margin: 0;
  font-size: 1.4rem;
  color: var(--green, #2d4a3e);
  letter-spacing: 0.02em;
}

.mobile-menu-portal .mobile-nav-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(45, 74, 62, 0.08);
  color: var(--green, #2d4a3e);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-portal .mobile-nav-close:hover,
.mobile-menu-portal .mobile-nav-close:focus-visible {
  background: rgba(45, 74, 62, 0.14);
  color: var(--champagne, #c9a962);
}

.mobile-menu-portal .mobile-nav-close [class^="ri-"] {
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-menu-portal .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.mobile-menu-portal .mobile-nav-links a {
  display: flex;
  align-items: center;
  padding: 0.9rem 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--green, #2d4a3e);
  text-decoration: none;
  border-radius: 12px;
  border-bottom: 1px solid rgba(26, 61, 50, 0.06);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-portal .mobile-nav-links a:hover,
.mobile-menu-portal .mobile-nav-links a:focus-visible {
  background: rgba(196, 160, 82, 0.12);
  color: var(--champagne, #c9a962);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-backdrop,
  .mobile-menu-drawer {
    transition: none;
  }

  .mobile-menu-portal.is-open .mobile-menu-drawer {
    transform: translateX(0);
  }
}

/* —— Hero —— */
.hero-premium {
  height: min(72vh, 640px);
  min-height: 380px;
  margin-bottom: 0;
}

.page-home-ecom .hero-2026-shell {
  margin-top: var(--hero-logo-clearance-top);
  margin-left: var(--layout-pad-x);
  margin-right: var(--layout-pad-x);
  max-width: var(--container-max);
  width: auto;
}

.page-home-ecom .hero-2026.hero-premium {
  margin: 0;
  max-width: none;
  width: 100%;
}

.hero-slide-mysore .hero-content h1 {
  font-size: clamp(1.65rem, 4.5vw, 2.75rem) !important;
  line-height: 1.12;
  max-width: 16ch;
}

.hero-slide-mysore .hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  max-width: 32ch;
  line-height: 1.5;
}

.hero-glass {
  margin: 0;
  max-width: 100%;
}

@media (min-width: 992px) {
  .hero-slide-mysore::after {
    display: none !important;
  }

  .hero-slide-mysore .hero-content {
    justify-content: center;
    padding: clamp(1.25rem, 2.5vw, 2rem);
  }

  .hero-slide-mysore .hero-media img {
    object-fit: contain !important;
    object-position: center center;
  }
}

.hero-cta-row {
  gap: 0.65rem;
  margin-top: 0.25rem;
}

@media (max-width: 767px) {
  .hero-2026 .hero-content,
  .hero-2026 .hero-content.container,
  .hero-2026 .hero-content.hero-glass,
  .hero-2026 .hero-content.container.hero-glass {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding-top: clamp(1.35rem, 4.5vw, 1.85rem) !important;
    padding-bottom: clamp(1.35rem, 4.5vw, 1.85rem) !important;
    padding-left: 1.15rem !important;
    padding-right: 1rem !important;
  }

  .hero-2026 .hero-glass::before {
    top: 0.5rem;
    height: calc(100% - 1rem);
  }

  .hero-2026 .hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: auto;
    max-width: 100%;
  }

  .hero-2026 .btn-hero {
    width: auto;
    flex: 0 1 auto;
    max-width: 100%;
  }
}

/* —— Trust marquee + social proof —— */
.trust-marquee {
  margin: 0.85rem 0 0;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(26, 61, 50, 0.06);
}

.social-proof-bar {
  margin: 1.25rem 0 1.5rem;
  padding: 0.35rem 0;
}

/* —— Sections rhythm —— */
.section-band {
  width: 100%;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  box-sizing: border-box;
}

.section-band > .container,
section.section.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--layout-pad-x);
  box-sizing: border-box;
}

/* Full-bleed band; inner container holds content */
section.section.container {
  display: block;
}

.site-main > section.section,
.site-main > .offers-showcase,
.site-main > .spotlight-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.site-main > .section-band:nth-of-type(even),
.site-main > section.section:nth-of-type(even),
.site-main > .offers-showcase {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(26, 61, 50, 0.04);
  border-bottom: 1px solid rgba(26, 61, 50, 0.04);
}

.section-band.section-highlight,
section.section.container.section-highlight,
.section-highlight {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  margin-bottom: 0;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.1) 0%, rgba(255, 255, 255, 0.5) 100%) !important;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.section-band.section-launch-sale,
section.section.container.section-launch-sale,
.section-launch-sale {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  margin-bottom: 0;
  background: linear-gradient(180deg, rgba(45, 74, 62, 0.05) 0%, rgba(255, 252, 250, 0.3) 100%) !important;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.section-launch-sale .section-head h2::after {
  content: " 🔥";
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26, 61, 50, 0.08);
  width: 100%;
}

.section-head-text {
  flex: 1;
  min-width: 0;
}

.section-head .eyebrow {
  margin-bottom: 0.2rem;
}

.section-head h2 {
  margin: 0;
  letter-spacing: 1px;
}

.section-head .link-more {
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--champagne, #c9a962);
  text-decoration: none;
  white-space: nowrap;
}

.section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
}

/* —— Product grid —— full width, equal columns */
.section-band .product-grid,
section.section.container > .product-grid,
.site-main .product-grid {
  display: grid !important;
  width: 100% !important;
  max-width: 100% !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  justify-items: center;
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .section-band .product-grid,
  section.section.container > .product-grid,
  .site-main .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 1rem;
  }
}

@media (min-width: 992px) {
  .section-band .product-grid,
  section.section.container > .product-grid,
  .site-main .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem 1.15rem;
  }
}

@media (min-width: 1200px) {
  .section-band .product-grid,
  section.section.container > .product-grid,
  .site-main .product-grid {
    gap: 1.5rem 1.25rem;
  }
}

@media (min-width: 1400px) {
  .section-band .product-grid,
  section.section.container > .product-grid,
  .site-main .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.35rem 1.15rem;
  }
}

.product-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-width: 0;
  position: relative;
}

.product-card-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: calc(var(--t26-radius, 1.25rem) - 2px) calc(var(--t26-radius, 1.25rem) - 2px) 0 0;
}

.product-card-image img,
.product-card-image .img-main,
.product-card-image .img-hover {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.3rem;
}

/* HTML empty-state placeholder (replaces placeholder.svg) */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  padding: 1rem;
  text-align: center;
  color: rgba(45, 74, 62, 0.4);
  background: linear-gradient(145deg, #f6f2ee 0%, #efe8e0 100%);
}

.img-placeholder i {
  font-size: 2rem;
  line-height: 1;
  opacity: 0.65;
}

.img-placeholder-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card-image.is-empty {
  display: flex;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-card-image.is-empty .img-placeholder {
  min-height: 100%;
}

/* —— Product card body — modern UI (centered) —— */
.product-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 0.4rem;
  padding: 1rem 1rem 1.15rem;
}

.product-meta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.24rem 0.7rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne, #c4a052);
  background: rgba(196, 160, 82, 0.12);
  border: 1px solid rgba(196, 160, 82, 0.28);
  border-radius: 999px;
  text-align: center;
  white-space: normal;
  overflow: visible;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.product-meta .product-meta-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.product-meta .product-meta-cat::before {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}

.product-card-title {
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.66em;
}

.product-card-title-link {
  color: var(--green, #2d4a3e);
  transition: color 0.2s ease;
}

.product-card-title-link:hover {
  color: var(--champagne, #c4a052);
}

/* Price as a modern badge */
.product-card-body .product-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.15rem auto 0;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(45, 74, 62, 0.06);
}

.product-card-body .product-price-current {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--green, #2d4a3e);
  letter-spacing: -0.01em;
}

.product-card-body .price-mrp {
  display: block;
  margin: 0.1rem auto 0;
  font-size: 1rem;
}

/* Stock status as a modern badge */
.product-card-body .stock-warn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  align-self: center;
  margin: 0.1rem auto 0;
  padding: 0.28rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: rgba(180, 35, 24, 0.1);
  color: #b42318;
  line-height: 1.3;
}

.product-card-body .stock-warn.out {
  background: rgba(45, 74, 62, 0.09);
  color: rgba(45, 74, 62, 0.6);
}

.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

.product-card-actions .btn i {
  font-size: 0.95em;
  line-height: 1;
}

.btn-card-view {
  width: 100%;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-card-view:hover {
  background: var(--green, #2d4a3e);
  color: #fff;
  transform: translateY(-1px);
}

.product-card-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* —— Modern product-card badges —— */
.product-card-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: fit-content;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.28rem 0.6rem;
  border-radius: 8px;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(18, 26, 22, 0.18);
  backdrop-filter: blur(2px);
}

.product-card-badges .badge-bestseller {
  background: linear-gradient(135deg, #2d4a3e, #46745f);
  color: #fff;
}

.product-card-badges .badge-trending {
  background: linear-gradient(135deg, #c9a962, #e6cd8f);
  color: #3a2f13;
}

.product-card-badges .badge-hot-offer {
  background: linear-gradient(135deg, #e0452e, #ff7043);
  color: #fff;
}

.product-card-badges .badge-new {
  background: linear-gradient(135deg, #2f6d8c, #4aa3c7);
  color: #fff;
}

.product-card-badges .badge-urgent {
  background: linear-gradient(135deg, #b42318, #e05a4d);
  color: #fff;
}

.product-card-badges .badge-sale {
  background: linear-gradient(135deg, #4a2f1c, #6b4423);
  color: #fff;
}

.btn-card-bag,
.btn-card-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 0.55rem 0.45rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-card-bag {
  background: var(--green, #2d4a3e);
  color: #fff;
}

.btn-card-bag:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(45, 74, 62, 0.22);
}

.btn-card-wa {
  font-size: 1rem !important;
  font-weight: 400 !important;
  padding: 0.55rem 0.45rem !important;
  text-transform: none;
  letter-spacing: 1px;
}

.btn-card-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28);
}

/* —— Product cards — mobile (full-width, image on top) —— */
@media (max-width: 767px) {
  .product-card {
    flex-direction: column;
  }

  .product-card-image {
    display: block;
    width: 100%;
    max-width: none;
    aspect-ratio: 3 / 4;
    height: auto;
    min-height: 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border-radius: calc(var(--t26-radius, 1.25rem) - 2px) calc(var(--t26-radius, 1.25rem) - 2px) 0 0;
  }

  .product-card-image img,
  .product-card-image .img-main,
  .product-card-image .img-hover {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    padding: 0.3rem;
  }

  .product-card-body {
    width: 100%;
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0.85rem 0.85rem;
  }

  .product-card-title {
    font-size: 0.9rem;
    line-height: 1.35;
    min-height: 0;
    margin-bottom: 0.3rem;
  }

  .product-meta {
    font-size: 0.72rem;
    white-space: normal;
    overflow: visible;
  }

  .product-card-badges {
    max-width: 100%;
    gap: 0.25rem;
    margin-bottom: 0.4rem;
  }

  .product-card-badges .badge {
    font-size: 0.62rem !important;
    padding: 0.22rem 0.5rem !important;
    line-height: 1.25;
  }

  .product-card .wishlist-btn {
    top: 0.4rem;
    right: 0.4rem;
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .product-card-actions {
    gap: 0.45rem;
    padding-top: 0.55rem;
  }

  .btn-card-view {
    font-size: 0.8rem;
    padding: 0.48rem 0.6rem;
  }

  .product-card-actions-row {
    gap: 0.4rem;
  }

  .btn-card-bag,
  .btn-card-wa {
    font-size: 0.75rem !important;
    padding: 0.45rem 0.4rem !important;
  }

  .product-card-body .product-price-current {
    font-size: 1rem;
  }

  .product-card-body .stock-warn {
    font-size: 0.7rem;
  }
}

@media (max-width: 380px) {
  .product-card-body {
    padding: 0.65rem 0.75rem 0.75rem;
  }

  .product-card-image img,
  .product-card-image .img-main,
  .product-card-image .img-hover {
    padding: 0;
  }
}

/* —— Spotlight —— */
.spotlight-section {
  padding-top: var(--section-y) !important;
  padding-bottom: var(--section-y) !important;
}

.spotlight-card {
  margin: 0 auto;
  max-width: var(--container-max);
}

@media (min-width: 768px) {
  .spotlight-card {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 2.25rem;
    padding: 2rem 2.5rem;
  }

  .spotlight-image {
    max-height: 460px;
  }
}

/* —— Offers —— */
.offers-showcase { padding-top: var(--section-y); padding-bottom: var(--section-y); }

.offers-showcase .section-head-center {
  margin-bottom: 1.5rem;
}

.offers-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  margin-inline: auto;
}

.offers-cards-grid > .offer-card {
  flex: 0 1 360px;
  width: min(100%, 360px);
  max-width: 360px;
}

@media (max-width: 599px) {
  .offers-cards-grid > .offer-card {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
  }
}

.offer-launch-banner {
  margin-bottom: 1.5rem;
  border-radius: var(--t26-radius, 1.25rem);
  overflow: hidden;
}

/* —— Category grid —— */
.category-grid {
  gap: 1rem;
}

@media (min-width: 768px) {
  .category-grid {
    gap: 1.25rem;
  }
}

/* —— Brands —— */
.brands-section {
  padding: var(--section-y) 0;
}

.brands-grid {
  gap: 1.25rem;
  margin-top: 1.25rem;
}

/* —— Page header (inner pages) —— */
.page-header {
  padding: 1.75rem 0 1rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.35rem;
}

/* —— Footer —— */
.site-footer {
  margin-top: auto;
  margin-bottom: 0;
  padding: 2.5rem 0 1.5rem;
}

@media (max-width: 900px) {
  .site-footer {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }
}

body.has-mobile-nav {
  padding-bottom: 0;
}

.footer-grid {
  gap: 2rem 1.5rem;
  align-items: flex-start;
}

.logo-brand--footer {
  display: inline-block;
  max-width: min(300px, 100%);
  margin-bottom: 1rem;
}

.logo-brand--footer .logo-image {
  max-height: clamp(100px, 14vw, 130px);
  width: auto;
  max-width: 100%;
  object-position: center;
}

.site-footer .text-muted,
.site-footer p.text-muted {
  color: rgba(255, 255, 255, 0.65) !important;
}

.site-footer .footer-grid > div:first-child p {
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: 28ch;
}

.footer-bottom {
  margin-top: 2rem;
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-credit a {
  color: var(--champagne, #c9a962);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}

.newsletter-form {
  width: 100%;
  max-width: 420px;
}

/* —— Modern footer UI —— */
.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--champagne, #c9a962) 25%,
    #e6cd8f 50%,
    var(--champagne, #c9a962) 75%,
    transparent 100%);
  opacity: 0.85;
}

.footer-grid h4 {
  position: relative;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: var(--champagne, #c9a962);
}

.footer-grid ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.15rem 0;
  transition: color 0.2s ease, transform 0.2s ease, padding-left 0.2s ease;
}

.footer-grid ul li a::before {
  content: "\203A";
  position: absolute;
  left: -0.75rem;
  opacity: 0;
  color: var(--champagne, #c9a962);
  transition: opacity 0.2s ease, left 0.2s ease;
}

.footer-grid ul li a:hover {
  color: #fff;
  padding-left: 0.85rem;
}

.footer-grid ul li a:hover::before {
  opacity: 1;
  left: 0;
}

/* Newsletter — glassy pill on dark background */
.newsletter-form input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--champagne, #c9a962);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}

/* WhatsApp buttons — subtle lift on hover */
.footer-wa-btn {
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.footer-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.footer-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-instagram-link:hover {
  transform: translateX(2px);
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer .footer-grid > div:first-child p {
    max-width: none;
  }

  .footer-wa-btns {
    width: 100%;
  }

  .footer-wa-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
  }

  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    gap: 0.85rem;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }

  .site-footer .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 380px) {
  .header-actions {
    gap: 0.15rem;
  }

  .header-actions .icon-btn {
    width: 34px;
    height: 34px;
  }
}

/* —— Chatbot above nav —— */
.help-chat {
  z-index: 350;
}

@media (max-width: 900px) {
  .help-chat {
    bottom: 4.75rem;
    right: 0.75rem;
  }
}

/* —— Product detail page —— */
.product-detail {
  margin-top: 0.5rem;
  margin-bottom: var(--section-y);
}

.catalog-bar {
  margin-bottom: 1.25rem;
}

/* —— Reviews section on product —— */
.review-form-box {
  max-width: 640px;
}

/* —— Flash —— */
.site-main > .flash {
  margin: 0.75rem auto 0;
}

/* —— Honeypot (hidden from users, bots fill it) —— */
.ws-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* —— Global result modal (newsletter, reviews, etc.) —— */
.ws-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.ws-modal[hidden] {
  display: none;
}

.ws-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 26, 22, 0.55);
  backdrop-filter: blur(4px);
  animation: wsFade 0.25s ease;
}

.ws-modal-dialog {
  position: relative;
  width: min(94vw, 420px);
  background: #fff;
  border-radius: 1.35rem;
  padding: 2.5rem 1.75rem 1.9rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(18, 26, 22, 0.35);
  animation: wsModalPop 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
  -webkit-user-select: none;
}

@keyframes wsFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes wsModalPop {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ws-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(45, 74, 62, 0.08);
  color: var(--green, #2d4a3e);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ws-modal-close:hover {
  background: rgba(45, 74, 62, 0.16);
  transform: rotate(90deg);
}

.ws-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.ws-modal.is-success .ws-modal-icon {
  background: rgba(21, 115, 71, 0.12);
  color: #157347;
}

.ws-modal.is-error .ws-modal-icon {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

.ws-modal-title {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: var(--green, #2d4a3e);
}

.ws-modal-text {
  margin: 0 0 1.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(45, 74, 62, 0.75);
}

.ws-modal-action {
  min-width: 160px;
}

/* —— Newsletter form (footer) —— */
.newsletter-field {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.newsletter-field-error {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffb4b4;
  min-height: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.2s ease;
}

.newsletter-field.is-invalid .newsletter-field-error {
  opacity: 1;
  max-height: 2.5rem;
}

.newsletter-field.is-invalid .newsletter-input {
  border-color: #ff8a8a !important;
  box-shadow: 0 0 0 3px rgba(255, 138, 138, 0.2) !important;
}

.newsletter-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.newsletter-btn-spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2.5px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wsSpin 0.7s linear infinite;
}

.newsletter-submit.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

.newsletter-submit.is-loading .newsletter-btn-label {
  display: none;
}

.newsletter-submit.is-loading .newsletter-btn-spinner {
  display: inline-block;
}

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