/* ============================================
   GalaxyEssence — Premium Perfume Website
   Design System & Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --bg-primary: #F8F9FA;
  --bg-card: #FFFFFF;

  --text-primary: #1E2229;
  --text-secondary: #606C7A;

  --brand-primary: #0B2545;
  --brand-secondary: #1D4ED8;
  --brand-accent: #0891B2;

  --border-color: #E2E8F0;

  /* Legacy mappings to maintain styling compatibility across all pages */
  --chrome-silver: var(--text-primary);
  --metallic-silver: var(--text-secondary);
  --graphite-black: var(--bg-card);
  --gunmetal: #F1F5F9;
  --matte-black: var(--bg-primary);
  --soft-white: var(--brand-primary);
  --frosted-steel: var(--border-color);
  --platinum-glow: #F0F4F8;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1440px;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: var(--border-color);
  --transition: .35s cubic-bezier(.4, 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: var(--font-body);
    background: var(--matte-black);
    color: var(--chrome-silver);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.nav-list,
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: inherit;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
}

.admin-bar .navbar {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .navbar {
    top: 46px;
  }
}

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

ul,
ol {
  list-style: none
}

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

input {
  font-family: inherit;
  border: none;
  outline: none
}

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem)
}

.section-pad {
  padding: clamp(3rem, 8vw, 7rem) 0
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ============================================
   1. ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--matte-black);
  border-bottom: 1px solid rgba(200, 204, 209, .08);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center
}

.ticker-wrap {
  display: flex;
  width: 100%;
  overflow: hidden
}

.ticker {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap
}

.ticker span {
  display: inline-flex;
  align-items: center;
  padding: 0 2.5rem;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--chrome-silver);
  font-weight: 500
}

.ticker span::after {
  content: '★';
  margin-left: 2.5rem;
  font-size: .5rem;
  opacity: .4
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ============================================
   2. NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition)
}

.navbar.scrolled {
  background: rgba(11, 11, 11, .82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--soft-white);
  display: inline-flex;
  align-items: center;
}

.nav-logo {
  flex: 0 0 auto;
  width: 64px;
  height: 78px;
  overflow: visible;
}

.nav-logo::before {
  content: none;
  display: none;
}

.site-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.nav-logo em {
  font-style: italic;
  font-weight: 300;
  color: var(--chrome-silver);
}

.nav-menu {
  display: flex;
  gap: 1.8rem;
  align-items: center
}

.nav-menu a {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--metallic-silver);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition)
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--soft-white);
  transition: width var(--transition)
}

.nav-menu a:hover {
  color: var(--soft-white)
}

.nav-menu a:hover::after {
  width: 100%
}

.nav-icons {
  display: flex;
  gap: 1.2rem;
  align-items: center
}

.nav-icons button,
.nav-icons a {
  color: var(--chrome-silver);
  transition: color var(--transition)
}

.nav-icons button:hover,
.nav-icons a:hover {
  color: var(--soft-white)
}

.nav-icons svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: relative
}

.cart-count span {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--chrome-silver);
  color: var(--matte-black);
  font-size: .6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.hamburger {
  display: none
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 85vw);
  height: 100vh;
  background: rgba(11, 11, 11, .96);
  backdrop-filter: blur(30px);
  z-index: 2000;
  padding: 2rem;
  transition: right .45s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column
}

.mobile-menu.open {
  right: 0
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem
}

.mobile-menu-logo.nav-logo {
  width: 58px;
  height: 78px;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  color: var(--chrome-silver)
}

.mobile-menu nav a {
  display: block;
  padding: .9rem 0;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--metallic-silver);
  border-bottom: 1px solid rgba(200, 204, 209, .06);
  transition: color var(--transition)
}

.mobile-menu nav a:hover {
  color: var(--soft-white)
}

/* ============================================
   3. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: min(90vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--matte-black) 0%, var(--graphite-black) 40%, var(--gunmetal) 100%)
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 204, 209, .07) 0%, transparent 70%);
  top: 10%;
  left: 30%;
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 236, 240, .05) 0%, transparent 70%);
  bottom: 5%;
  right: 10%;
  pointer-events: none
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1
}

.hero-image {
  position: relative
}

.hero-image img {
  width: 100%;
  max-width: 560px;
  animation: heroFloat 6s ease-in-out infinite
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(200, 204, 209, .15) 0%, transparent 70%);
  filter: blur(10px)
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

.hero-content {
  text-align: left
}

.hero-badge {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--chrome-silver);
  border: 1px solid var(--glass-border);
  padding: .5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  background: rgba(200, 204, 209, .06)
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--soft-white);
  margin-bottom: .5rem;
  letter-spacing: .02em
}

.hero-title strong {
  font-weight: 700
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--metallic-silver);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: .03em
}

.offer-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.offer-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.4rem 1.8rem;
  text-align: center;
  flex: 1;
  min-width: 130px;
  transition: var(--transition)
}

.offer-card:hover {
  border-color: rgba(200, 204, 209, .35);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3)
}

.offer-card .qty {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--soft-white)
}

.offer-card .price {
  font-size: 1.1rem;
  color: var(--chrome-silver);
  margin-top: .3rem;
  font-weight: 500
}

.offer-card .label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--metallic-silver);
  margin-top: .4rem
}

/* ============================================
   4. COLLECTION SHORTCUTS
   ============================================ */
.collections-shortcuts {
  background: var(--graphite-black);
  border-top: 1px solid rgba(200, 204, 209, .05);
  border-bottom: 1px solid rgba(200, 204, 209, .05)
}

.shortcuts-grid {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 2.5rem 0;
  flex-wrap: wrap
}

.shortcut-item {
  text-align: center;
  cursor: pointer;
  transition: var(--transition)
}

.shortcut-item:hover {
  transform: translateY(-6px)
}

.shortcut-circle {
  width: clamp(80px, 10vw, 110px);
  height: clamp(80px, 10vw, 110px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(200, 204, 209, .15);
  margin: 0 auto .8rem;
  transition: var(--transition);
  position: relative
}

.shortcut-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(200, 204, 209, 0);
  transition: box-shadow var(--transition)
}

.shortcut-item:hover .shortcut-circle {
  border-color: rgba(200, 204, 209, .4)
}

.shortcut-item:hover .shortcut-circle::after {
  box-shadow: 0 0 20px 4px rgba(200, 204, 209, .12)
}

.shortcut-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition)
}

.shortcut-item:hover .shortcut-circle img {
  transform: scale(1.1)
}

.shortcut-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--metallic-silver);
  transition: color var(--transition)
}

.shortcut-item:hover .shortcut-label {
  color: var(--soft-white)
}

/* ============================================
   5. NEW LAUNCH BANNER
   ============================================ */
.new-launch {
  position: relative;
  height: clamp(300px, 40vw, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.new-launch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.4)
}

.new-launch-content {
  position: relative;
  z-index: 1;
  text-align: center
}

.new-launch-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--soft-white);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .5rem
}

.new-launch-content p {
  font-size: clamp(.9rem, 1.5vw, 1.2rem);
  color: var(--chrome-silver);
  letter-spacing: .1em
}

/* ============================================
   6. FRAGRANCE FAMILY
   ============================================ */
.fragrance-family .section-header {
  text-align: center;
  margin-bottom: 3rem
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--soft-white);
  letter-spacing: .06em
}

.section-header p {
  font-size: .85rem;
  color: var(--metallic-silver);
  margin-top: .5rem;
  letter-spacing: .05em
}

.fragrance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem
}

.fragrance-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: clamp(200px, 22vw, 300px);
  cursor: pointer;
  border: 1px solid var(--glass-border)
}

.fragrance-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.fragrance-card:hover img {
  transform: scale(1.08)
}

.fragrance-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 11, .8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background var(--transition)
}

.fragrance-card:hover .fragrance-overlay {
  background: linear-gradient(to top, rgba(11, 11, 11, .9) 0%, rgba(11, 11, 11, .2) 100%)
}

.fragrance-overlay span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--soft-white);
  letter-spacing: .06em
}

/* ============================================
   7. PRODUCT SECTION (TABBED)
   ============================================ */
.products-section {
  background: var(--graphite-black)
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap
}

.product-tab {
  padding: .65rem 1.8rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  color: var(--metallic-silver);
  transition: var(--transition);
  cursor: pointer;
  background: transparent
}

.product-tab.active,
.product-tab:hover {
  background: var(--chrome-silver);
  color: var(--matte-black);
  border-color: var(--chrome-silver)
}

.tab-content {
  display: none
}

.tab-content.active {
  display: block
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: visible;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 204, 209, .3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4)
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 999;

    background: #0b2545 !important;
    color: #ffffff !important;

    padding: 8px 14px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.badge-bestseller {
  background: var(--chrome-silver);
  color: var(--matte-black)
}

.badge-limited {
  background: rgba(200, 170, 100, .9);
  color: var(--matte-black)
}

.badge-new {
  background: rgba(100, 200, 150, .85);
  color: var(--matte-black)
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gunmetal);
  flex-shrink: 0
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .5s ease
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: visible;
    background: var(--gunmetal);
}

.product-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease, transform .4s ease;
}

.product-img-wrap .product-img-hover {
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-img-wrap .product-img-hover {
    opacity: 1;
    transform: scale(1.05);
}

.product-card:hover .product-img-wrap img:first-child {
    opacity: 0;
    transform: scale(1.05);
}
.product-info {
  padding: 1.2rem 1.3rem 1.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--soft-white);
  margin-bottom: .25rem;
  letter-spacing: .02em
}

.product-notes {
  font-size: .75rem;
  color: var(--metallic-silver);
  margin-bottom: .8rem
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
  flex-wrap: wrap
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--soft-white)
}

.product-original {
  font-size: .85rem;
  color: var(--metallic-silver);
  text-decoration: line-through
}

.product-discount {
  font-size: .7rem;
  color: #8ddb8d;
  font-weight: 600;
  letter-spacing: .05em
}

.add-to-cart {
    width: 100%;
    padding: .75rem;
    border-radius: 10px;

    background: var(--brand-primary);
    color: white;

    border: none;

    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: auto;

    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--brand-secondary);
    color: white;
}

/* ============================================
   8. PROMOTIONAL BANNER
   ============================================ */
.promo-banner {
  position: relative;
  height: clamp(280px, 35vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.35)
}

.promo-content {
  position: relative;
  z-index: 1;
  text-align: center
}

.promo-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--soft-white);
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
  max-width: 600px;
  line-height: 1.2
}

.promo-cta {
  display: inline-block;
  padding: .85rem 2.5rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--chrome-silver);
  color: var(--chrome-silver);
  border-radius: 100px;
  transition: var(--transition)
}

.promo-cta:hover {
  background: var(--chrome-silver);
  color: var(--matte-black)
}

/* ============================================
   9. GIFT SET SHOWCASE
   ============================================ */
.gift-showcase {
  background: var(--graphite-black)
}

.gift-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.gift-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border)
}

.gift-image img {
  width: 100%;
  transition: transform .6s ease
}

.gift-image:hover img {
  transform: scale(1.03)
}

.gift-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--soft-white);
  margin-bottom: .8rem;
  letter-spacing: .04em
}

.gift-text p {
  color: var(--metallic-silver);
  margin-bottom: 1.5rem;
  font-size: .95rem
}

.gift-text .promo-cta {
  font-size: .72rem
}

/* ============================================
   10. TRENDING PERFUMES
   ============================================ */
.trending-section {
  background: var(--matte-black)
}

.trending-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

/* ============================================
   11. BLOG SECTION
   ============================================ */
.blog-section {
  background: var(--graphite-black)
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: var(--transition);
  cursor: pointer
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 204, 209, .25)
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06)
}

.blog-card-body {
  padding: 1.3rem 1.4rem 1.5rem
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--soft-white);
  margin-bottom: .5rem;
  line-height: 1.35;
  letter-spacing: .02em
}

.blog-card-body p {
  font-size: .8rem;
  color: var(--metallic-silver);
  line-height: 1.5
}

.blog-card-body .read-more {
  display: inline-block;
  margin-top: .8rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--chrome-silver);
  transition: color var(--transition)
}

.blog-card-body .read-more:hover {
  color: var(--soft-white)
}

/* ============================================
   12. TRUST INDICATORS
   ============================================ */
.trust-bar {
  border-top: 1px solid rgba(200, 204, 209, .06);
  border-bottom: 1px solid rgba(200, 204, 209, .06)
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 2.5rem 0;
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .8rem
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--chrome-silver)
}

.trust-text {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--metallic-silver)
}

/* ============================================
   13. NEWSLETTER
   ============================================ */
.newsletter {
  text-align: center;
  background: linear-gradient(180deg, var(--matte-black), var(--graphite-black))
}

.newsletter h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--soft-white);
  margin-bottom: .6rem;
  letter-spacing: .04em
}

.newsletter p {
  color: var(--metallic-silver);
  margin-bottom: 2rem;
  font-size: .9rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto
}

.newsletter-form {
  display: flex;
  gap: .8rem;
  max-width: 480px;
  margin: 0 auto
}

.newsletter-form input {
  flex: 1;
  padding: .85rem 1.3rem;
  border-radius: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--soft-white);
  font-size: .85rem;
  backdrop-filter: blur(8px)
}

.newsletter-form input::placeholder {
  color: var(--metallic-silver)
}

.newsletter-form button {
  padding: .85rem 2rem;
  border-radius: 100px;
  background: var(--chrome-silver);
  color: var(--matte-black);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap
}

.newsletter-form button:hover {
  background: var(--soft-white)
}

/* ============================================
   14. FOOTER
   ============================================ */
.footer {
  background: var(--matte-black);
  border-top: 1px solid rgba(200, 204, 209, .06);
  padding: 4rem 0 2rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--soft-white);
  margin-bottom: 1rem;
  letter-spacing: .06em
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: .82rem;
  color: var(--metallic-silver);
  margin-bottom: .5rem;
  transition: color var(--transition)
}

.footer-col a:hover {
  color: var(--soft-white)
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition)
}

.footer-social a:hover {
  border-color: var(--chrome-silver);
  background: rgba(200, 204, 209, .1)
}

.footer-social svg {
  width: 16px;
  height: 16px
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 204, 209, .06);
  font-size: .75rem;
  color: var(--metallic-silver);
  letter-spacing: .05em
}

/* ============================================
   INNER PAGES — COLLECTION HERO
   ============================================ */
.page-hero {
  position: relative;
  height: clamp(220px, 30vw, 340px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--matte-black), var(--gunmetal))
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--soft-white);
  letter-spacing: .1em;
  text-transform: uppercase
}

.page-hero-content p {
  font-size: .9rem;
  color: var(--metallic-silver);
  margin-top: .5rem;
  letter-spacing: .05em
}

.breadcrumb {
  font-size: .75rem;
  color: var(--metallic-silver);
  letter-spacing: .08em;
  margin-bottom: .6rem
}

.breadcrumb a {
  color: var(--chrome-silver);
  transition: color var(--transition)
}

.breadcrumb a:hover {
  color: var(--soft-white)
}

/* Sort / Filter Bar */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(200, 204, 209, .06);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem
}

.filter-bar .result-count {
  font-size: .8rem;
  color: var(--metallic-silver);
  letter-spacing: .05em
}

.filter-bar select {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--chrome-silver);
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: .8rem;
  font-family: var(--font-body);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8CCD1' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2.2rem
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
  background: var(--graphite-black)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border)
}

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

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--soft-white);
  margin-bottom: 1rem;
  letter-spacing: .04em
}

.about-text p {
  color: var(--metallic-silver);
  margin-bottom: 1rem;
  font-size: .9rem;
  line-height: 1.7
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition)
}

.value-card:hover {
  border-color: rgba(200, 204, 209, .3);
  transform: translateY(-4px)
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--soft-white);
  margin: .8rem 0 .5rem;
  font-weight: 500
}

.value-card p {
  font-size: .8rem;
  color: var(--metallic-silver);
  line-height: 1.5
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center
}

.value-icon svg {
  width: 22px;
  height: 22px;
  color: var(--chrome-silver)
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  background: var(--graphite-black)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--soft-white);
  margin-bottom: 1.5rem
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--chrome-silver)
}

.contact-item-text h4 {
  font-size: .85rem;
  color: var(--soft-white);
  margin-bottom: .2rem;
  font-weight: 500
}

.contact-item-text p {
  font-size: .82rem;
  color: var(--metallic-silver)
}

.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px)
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--soft-white);
  margin-bottom: 1.5rem
}

.form-group {
  margin-bottom: 1.2rem
}

.form-group label {
  display: block;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--metallic-silver);
  margin-bottom: .4rem
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: 10px;
  background: rgba(11, 11, 11, .5);
  border: 1px solid var(--glass-border);
  color: var(--soft-white);
  font-size: .85rem;
  font-family: var(--font-body);
  transition: border-color var(--transition)
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--chrome-silver)
}

.form-group textarea {
  resize: vertical;
  min-height: 120px
}

.form-submit {
  width: 100%;
  padding: .85rem;
  border-radius: 10px;
  background: var(--chrome-silver);
  color: var(--matte-black);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none
}

.form-submit:hover {
  background: var(--soft-white)
}

/* ============================================
   BLOG LISTING PAGE
   ============================================ */
.blog-listing {
  background: var(--graphite-black)
}

.blog-listing .blog-grid {
  grid-template-columns: repeat(3, 1fr)
}

.blog-card-date {
  font-size: .7rem;
  color: var(--metallic-silver);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .4rem
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-section {
  background: var(--graphite-black)
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: flex-start
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.cart-item {
  display: flex;
  gap: 1.2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.2rem;
  align-items: center;
  transition: var(--transition)
}

.cart-item:hover {
  border-color: rgba(200, 204, 209, .25)
}

.cart-item-img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gunmetal)
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cart-item-info {
  flex: 1
}

.cart-item-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--soft-white);
  font-weight: 500;
  margin-bottom: .2rem
}

.cart-item-info p {
  font-size: .78rem;
  color: var(--metallic-silver)
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--soft-white);
  white-space: nowrap
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .5rem
}

.cart-qty button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--chrome-silver);
  transition: var(--transition)
}

.cart-qty button:hover {
  border-color: var(--chrome-silver);
  background: rgba(200, 204, 209, .1)
}

.cart-qty span {
  font-size: .85rem;
  color: var(--soft-white);
  min-width: 20px;
  text-align: center
}

.cart-remove {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--metallic-silver);
  margin-top: .4rem;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none
}

.cart-remove:hover {
  color: #e57373
}

.cart-summary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 120px
}

.cart-summary h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--soft-white);
  margin-bottom: 1.5rem;
  letter-spacing: .04em
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  font-size: .85rem;
  color: var(--metallic-silver)
}

.summary-row.total {
  border-top: 1px solid var(--glass-border);
  margin-top: .5rem;
  padding-top: 1rem;
  font-size: 1.1rem;
  color: var(--soft-white);
  font-weight: 600
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 12px;
  background: var(--chrome-silver);
  color: var(--matte-black);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none
}

.checkout-btn:hover {
  background: var(--soft-white)
}

.cart-empty {
  text-align: center;
  padding: 4rem 0
}

.cart-empty h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--soft-white);
  font-weight: 300;
  margin-bottom: .8rem
}

.cart-empty p {
  color: var(--metallic-silver);
  margin-bottom: 2rem
}

/* --- E-commerce Drawer & Overlay Styles --- */
.hero-banner-section {
  position: relative;
  aspect-ratio: 3 / 1;
  min-height: 220px;
  max-height: 680px;
  display: block;
  overflow: hidden;
  width: 100%;
  background: #0b1728;
}

.hero-banner-section .hero-offer-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .65s ease, visibility .65s ease;
}

.hero-banner-section .hero-offer-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-banner-section .hero-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-banner-section .hero-offer-slide:hover .hero-poster-img {
  transform: scale(1.02);
}

.hero-carousel-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 14px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: rgba(11, 37, 69, .45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  cursor: pointer;
}

.hero-carousel-dot.is-active {
  background: #fff;
}

@media (max-width: 768px) {
  .hero-banner-section {
    min-height: 170px;
  }

  .hero-banner-section .hero-poster-img {
    object-fit: contain;
    object-position: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner-section .hero-offer-slide,
  .hero-banner-section .hero-poster-img {
    transition: none;
  }
}

.ge-offer-page {
  min-height: 65vh;
  padding-top: clamp(3rem, 7vw, 6rem);
}

.ge-offer-kicker {
  margin-bottom: .5rem;
  color: var(--brand-secondary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ge-offer-content {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.ge-offer-grid {
  margin-top: 2rem;
}

.ge-checkout-page {
  min-height: 70vh;
  padding-top: clamp(3rem, 7vw, 6rem);
}

.ge-form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.ge-checkout-customer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

.ge-checkout-customer::before,
.ge-checkout-customer::after {
  display: none;
}

.ge-checkout-customer .col-1,
.ge-checkout-customer .col-2 {
  float: none;
  width: auto;
}

.ge-checkout-form #order_review_heading {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  color: var(--brand-primary);
}

.ge-checkout-form #order_review {
  float: none;
  width: 100%;
}

.ge-checkout-form .form-row {
  float: none;
  width: 100%;
}

.ge-checkout-form .input-text,
.ge-checkout-form select {
  width: 100%;
}

@media (max-width: 768px) {
  .ge-checkout-customer {
    grid-template-columns: 1fr;
  }
}

/* --- Wishlist Heart Button --- */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.65);
  border: 1px solid rgba(200, 204, 209, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: var(--transition);
  color: var(--chrome-silver);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.wishlist-btn:hover {
  background: rgba(245, 246, 248, 0.15);
  transform: scale(1.08) translateY(-1px);
  border-color: rgba(200, 204, 209, 0.35);
  color: var(--soft-white);
}

.wishlist-btn.active {
  color: #ff4757;
  background: rgba(255, 71, 87, 0.12);
  border-color: rgba(255, 71, 87, 0.4);
}

.wishlist-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), fill 0.25s ease;
}

.wishlist-btn.active svg {
  fill: currentColor;
  transform: scale(1.15);
}

/* --- Drawers --- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  transition: visibility 0.4s ease;
}

.drawer.open {
  visibility: visible;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.drawer.open .drawer-overlay {
  opacity: 1;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--matte-black);
  border-left: 1px solid var(--glass-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2.2rem 1.8rem;
}

.drawer.open .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(200, 204, 209, 0.08);
}

.drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--soft-white);
}

.drawer-close {
  font-size: 1.6rem;
  color: var(--chrome-silver);
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.drawer-close:hover {
  color: var(--soft-white);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 1.2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 204, 209, 0.1) transparent;
}

.drawer-body::-webkit-scrollbar {
  width: 4px;
}

.drawer-body::-webkit-scrollbar-thumb {
  background: rgba(200, 204, 209, 0.1);
  border-radius: 2px;
}

/* --- Drawer Elements & Items --- */
.drawer-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200, 204, 209, 0.06);
  align-items: center;
}

.drawer-item img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--gunmetal);
  border: 1px solid var(--glass-border);
}

.drawer-item-details {
  flex: 1;
}

.drawer-item-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--soft-white);
  margin-bottom: 0.15rem;
}

.drawer-item-notes {
  font-size: 0.7rem;
  color: var(--metallic-silver);
  margin-bottom: 0.4rem;
}

.drawer-item-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--soft-white);
}

.drawer-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--chrome-silver);
  cursor: pointer;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--chrome-silver);
  color: var(--matte-black);
  border-color: var(--chrome-silver);
}

.qty-val {
  font-size: 0.8rem;
  color: var(--soft-white);
  font-weight: 500;
}

.drawer-item-remove {
  color: rgba(255, 71, 87, 0.7);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 0.4rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.drawer-item-remove:hover {
  color: #ff4757;
}

.drawer-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  color: var(--metallic-silver);
}

.drawer-empty-state svg {
  width: 48px;
  height: 48px;
  stroke: rgba(200, 204, 209, 0.18);
  margin-bottom: 1.2rem;
}

.drawer-empty-state p {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.shop-now-btn {
  padding: 0.65rem 1.6rem;
  border: 1px solid var(--chrome-silver);
  border-radius: 100px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--chrome-silver);
  transition: var(--transition);
}

.shop-now-btn:hover {
  background: var(--chrome-silver);
  color: var(--matte-black);
}

.drawer-footer {
  border-top: 1px solid rgba(200, 204, 209, 0.08);
  padding-top: 1.2rem;
}

.drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.drawer-subtotal span:first-child {
  color: var(--metallic-silver);
}

.drawer-subtotal span:last-child {
  color: var(--soft-white);
  font-weight: 600;
}

/* --- Search Drawer --- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(11, 11, 11, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 100%;
  max-width: 680px;
  padding: 0 1.5rem;
  position: relative;
}

.search-input-wrap {
  position: relative;
  border-bottom: 2px solid rgba(200, 204, 209, 0.15);
  padding-bottom: 0.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.search-input-wrap input {
  width: 100%;
  background: transparent;
  color: var(--soft-white);
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: 0.02em;
  padding-right: 2rem;
  border: none;
  outline: none;
}

.search-clear-btn {
  position: absolute;
  right: 5px;
  font-size: 1.5rem;
  color: var(--chrome-silver);
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-overlay-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2.2rem;
  color: var(--chrome-silver);
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.search-overlay-close:hover {
  color: var(--soft-white);
}

.search-results-wrap {
  max-height: 62vh;
  overflow-y: auto;
  scrollbar-width: none;
}

.search-results-wrap::-webkit-scrollbar {
  display: none;
}

.search-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.search-result-card {
  display: flex;
  gap: 1.2rem;
  background: rgba(35, 38, 43, 0.25);
  border: 1px solid var(--glass-border);
  padding: 0.8rem;
  border-radius: 12px;
  align-items: center;
  transition: var(--transition);
}

.search-result-card:hover {
  background: rgba(35, 38, 43, 0.55);
  border-color: rgba(200, 204, 209, 0.25);
  transform: translateY(-1px);
}

.search-result-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--gunmetal);
  border: 1px solid var(--glass-border);
}

.search-result-info {
  flex: 1;
}

.search-result-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--soft-white);
  margin-bottom: 0.1rem;
}

.search-result-notes {
  font-size: 0.68rem;
  color: var(--metallic-silver);
}

.search-result-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--soft-white);
  margin-top: 0.2rem;
}

.search-result-action {
  display: flex;
  gap: 0.4rem;
}

.search-results-empty {
  text-align: center;
  color: var(--metallic-silver);
  padding: 2.5rem 0;
  font-size: 0.95rem;
}

/* --- Profile Account Drawer Styles --- */
.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--metallic-silver);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--soft-white);
  font-size: 0.85rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: rgba(200, 204, 209, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.profile-btn {
  width: 100%;
  padding: 0.8rem;
  background: var(--soft-white);
  color: var(--matte-black);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--soft-white);
  margin-top: 0.8rem;
}

.profile-btn:hover {
  background: transparent;
  color: var(--soft-white);
}

.profile-btn.secondary-btn {
  background: transparent;
  color: var(--chrome-silver);
  border: 1px solid var(--glass-border);
}

.profile-btn.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft-white);
  border-color: var(--chrome-silver);
}

.switch-form-text {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.8rem;
  color: var(--metallic-silver);
}

.switch-form-text a {
  color: var(--soft-white);
  text-decoration: underline;
}

.profile-logged-in {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.user-info {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(200, 204, 209, 0.06);
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--chrome-silver);
  color: var(--matte-black);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-details h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--soft-white);
  font-weight: 600;
}

.user-details p {
  font-size: 0.75rem;
  color: var(--metallic-silver);
}

.order-history h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--soft-white);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.order-empty {
  font-size: 0.78rem;
  color: var(--metallic-silver);
  padding: 1.2rem;
  border: 1px dashed var(--glass-border);
  border-radius: 8px;
  text-align: center;
}

/* --- Header Icons Badges --- */
.nav-icons span {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #ff4757;
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0px 4px;
  border-radius: 10px;
  min-width: 14px;
  text-align: center;
  line-height: 1.2;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-icons span.count-zero,
.nav-icons span:empty {
  display: none !important;
}

/* --- Standalone Pages Layout --- */
.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.cart-table-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.8rem;
}

.cart-summary-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.8rem;
  height: fit-content;
}

.promo-code-wrap {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.promo-code-wrap input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.8rem;
  outline: none;
  transition: var(--transition);
}

.promo-code-wrap input:focus {
  border-color: var(--brand-secondary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.08);
}

.promo-code-wrap button {
  padding: 0.7rem 1.1rem;
  background: var(--chrome-silver);
  color: var(--matte-black);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.promo-code-wrap button:hover {
  background: var(--soft-white);
}

.shipping-progress-wrap {
  margin-bottom: 1.8rem;
}

.shipping-progress-text {
  font-size: 0.78rem;
  color: var(--metallic-silver);
  margin-bottom: 0.4rem;
}

.shipping-progress-text strong {
  color: var(--soft-white);
}

.shipping-progress-bg {
  height: 4px;
  background: rgba(200, 204, 209, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--chrome-silver) 0%, var(--soft-white) 100%);
  width: 0%;
  transition: width 0.4s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---------- Tablet (≤ 1024px) ---------- */
@media(max-width:1024px) {

  /* Navigation */
  .nav-menu {
    display: none
  }

  .hamburger {
    display: block !important
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .offer-cards {
    justify-content: center
  }

  .fragrance-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gift-inner {
    grid-template-columns: 1fr
  }

  .gift-image {
    max-width: 500px;
    margin: 0 auto
  }

  .gift-text {
    text-align: center
  }

  .trending-scroll {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .cart-layout {
    grid-template-columns: 1fr
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr)
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .blog-listing .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .section-pad {
    padding: clamp(2.5rem, 6vw, 5rem) 0
  }
}

/* ---------- Mobile (≤ 768px) ---------- */
@media(max-width:768px) {

  /* Navigation */
  .nav-inner {
    height: 54px
  }

  .nav-logo {
    font-size: 1.3rem
  }

  .nav-icons {
    gap: 0.8rem
  }

  .nav-icons svg {
    width: 18px;
    height: 18px
  }

  /* Hero Banner */
  .hero {
    min-height: auto;
    padding: 1.5rem 0
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-content {
    text-align: center
  }

  .hero-image {
    max-width: 250px;
    margin: 0 auto
  }

  .hero-banner-section {
    height: clamp(180px, 40vw, 340px)
  }

  /* Collection Shortcuts — Horizontal scroll */
  .shortcuts-grid {
    gap: 1rem;
    padding: 1.5rem 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-left: .5rem;
    padding-right: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .shortcuts-grid::-webkit-scrollbar {
    display: none
  }

  .shortcut-item {
    flex-shrink: 0
  }

  .shortcut-circle {
    width: 70px;
    height: 70px
  }

  .shortcut-label {
    font-size: .62rem
  }

  /* Fragrance Grid — Horizontal scroll to save vertical space */
  .fragrance-family .section-header {
    margin-bottom: 1.5rem
  }

  .fragrance-grid {
    display: flex;
    overflow-x: auto;
    gap: .8rem;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .fragrance-grid::-webkit-scrollbar {
    display: none
  }

  .fragrance-card {
    flex-shrink: 0;
    width: clamp(140px, 38vw, 200px);
    height: clamp(160px, 42vw, 220px)
  }

  /* Products */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem
  }

  .product-tabs {
    gap: 0.3rem;
    margin-bottom: 1.5rem
  }

  .product-tab {
    padding: .45rem 1rem;
    font-size: .68rem;
    letter-spacing: .08em
  }

  .product-info {
    padding: .8rem .8rem 1rem
  }

  .product-name {
    font-size: .88rem
  }

  .product-notes {
    font-size: .68rem;
    margin-bottom: .5rem
  }

  .product-pricing {
    gap: .4rem;
    margin-bottom: .6rem
  }

  .product-price {
    font-size: .95rem
  }

  .product-original {
    font-size: .75rem
  }

  .add-to-cart {
    padding: .55rem;
    font-size: .65rem;
    letter-spacing: .1em
  }

  /* Wishlist Heart Button */
  .wishlist-btn {
    width: 30px;
    height: 30px;
    top: 8px;
    right: 8px
  }

  .wishlist-btn svg {
    width: 14px;
    height: 14px
  }

  /* Blog — Horizontal scroll instead of stacking */
  .blog-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .blog-grid::-webkit-scrollbar {
    display: none
  }

  .blog-card {
    flex-shrink: 0;
    width: clamp(260px, 70vw, 320px)
  }

  .blog-listing .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    overflow-x: visible
  }

  .blog-listing .blog-card {
    width: auto
  }

  .blog-card-body {
    padding: .8rem 1rem 1rem
  }

  .blog-card-body h3 {
    font-size: .95rem
  }

  .blog-card-body p {
    font-size: .75rem
  }

  /* Gift Set */
  .gift-inner {
    gap: 1.5rem
  }

  .gift-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem)
  }

  .gift-text p {
    font-size: .88rem;
    margin-bottom: 1rem
  }

  /* Trust — Horizontal row instead of stacking */
  .trust-grid {
    gap: 1.5rem;
    padding: 1.5rem 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .trust-grid::-webkit-scrollbar {
    display: none
  }

  .trust-item {
    flex-shrink: 0;
    flex-direction: row;
    gap: .5rem
  }

  .trust-icon {
    width: 34px;
    height: 34px;
    min-width: 34px
  }

  .trust-icon svg {
    width: 16px;
    height: 16px
  }

  .trust-text {
    font-size: .62rem;
    white-space: nowrap
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%
  }

  .newsletter h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem)
  }

  .newsletter p {
    font-size: .85rem;
    margin-bottom: 1.2rem
  }

  /* Footer — Compact */
  .footer {
    padding: 2rem 0 1.2rem
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem
  }

  .footer-col h4 {
    font-size: .85rem;
    margin-bottom: .6rem
  }

  .footer-col a,
  .footer-col p {
    font-size: .75rem;
    margin-bottom: .3rem
  }

  .footer-social {
    margin-top: .6rem
  }

  .footer-social a {
    width: 32px;
    height: 32px
  }

  .footer-social svg {
    width: 14px;
    height: 14px
  }

  .footer-bottom {
    font-size: .68rem;
    padding-top: 1rem
  }

  /* About & Contact */
  .about-values {
    grid-template-columns: 1fr 1fr
  }

  .value-card {
    padding: 1.2rem 1rem
  }

  /* Filter Bar */
  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem
  }

  /* Drawer adjustments */
  .drawer-content {
    max-width: 100%;
    width: 100%
  }

  .drawer-content {
    padding: 1.8rem 1.2rem
  }

  .drawer-item img {
    width: 55px;
    height: 55px
  }

  .drawer-item-name {
    font-size: .88rem
  }

  .drawer-item-notes {
    font-size: .65rem
  }

  .drawer-item-price {
    font-size: .8rem
  }

  /* Search Overlay */
  .search-overlay {
    padding-top: 6vh
  }

  .search-container {
    max-width: 100%;
    padding: 0 1rem
  }

  .search-input-wrap input {
    font-size: 1.2rem
  }

  .search-overlay-close {
    top: 16px;
    right: 16px;
    font-size: 1.8rem
  }

  .search-result-card {
    gap: .8rem;
    padding: .6rem
  }

  .search-result-img {
    width: 45px;
    height: 45px
  }

  .search-result-name {
    font-size: .88rem
  }

  /* Profile Drawer */
  .user-avatar {
    width: 38px;
    height: 38px;
    font-size: .95rem
  }

  .user-details h4 {
    font-size: .95rem
  }

  .user-details p {
    font-size: .7rem
  }

  /* Standalone Cart Page */
  .cart-layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem
  }

  .cart-table-card {
    padding: 1.2rem
  }

  .cart-summary-card {
    padding: 1.2rem
  }

  /* Page Hero */
  .page-hero {
    height: clamp(140px, 25vw, 220px)
  }

  .page-hero-content h1 {
    font-size: clamp(1.4rem, 4vw, 2.2rem)
  }

  .page-hero-content p {
    font-size: .8rem
  }

  /* New Launch & Promo — more compact */
  .new-launch {
    height: clamp(180px, 35vw, 300px)
  }

  .new-launch-content h2 {
    font-size: clamp(1.5rem, 4.5vw, 2.5rem)
  }

  .new-launch-content p {
    font-size: clamp(.78rem, 2vw, 1rem)
  }

  .promo-banner {
    height: clamp(200px, 35vw, 300px)
  }

  .promo-content h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem)
  }

  .promo-cta {
    padding: .7rem 1.8rem;
    font-size: .7rem
  }

  /* Section spacing — tighter */
  .section-pad {
    padding: clamp(1.8rem, 5vw, 3.5rem) 0
  }

  .section-header {
    margin-bottom: 1.5rem !important
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem)
  }

  .section-header p {
    font-size: .78rem
  }

  /* Trending — Horizontal scroll */
  .trending-scroll {
    display: flex;
    overflow-x: auto;
    gap: .8rem;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .trending-scroll::-webkit-scrollbar {
    display: none
  }

  .trending-scroll .product-card {
    flex-shrink: 0;
    width: clamp(200px, 55vw, 280px)
  }
}

/* ---------- Small Mobile (≤ 480px) ---------- */
@media(max-width:480px) {

  /* Keep 2-col for products — no single column! */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem
  }

  .offer-cards {
    flex-direction: column;
    align-items: stretch
  }

  /* Fragrance — already horizontal scroll from 768 */
  .fragrance-card {
    width: clamp(130px, 40vw, 180px);
    height: clamp(150px, 42vw, 200px)
  }

  /* Hero */
  .hero-banner-section {
    height: clamp(150px, 48vw, 260px)
  }

  .hero {
    padding: 1rem 0
  }

  .hero-image {
    max-width: 220px
  }

  /* Shortcuts */
  .shortcuts-grid {
    gap: .6rem;
    padding: 1rem 0
  }

  .shortcut-circle {
    width: 56px;
    height: 56px
  }

  .shortcut-label {
    font-size: .58rem;
    letter-spacing: .06em
  }

  /* Nav */
  .nav-inner {
    height: 48px
  }

  .nav-logo {
    font-size: 1.1rem
  }

  .nav-icons {
    gap: .5rem
  }

  .nav-icons svg {
    width: 16px;
    height: 16px
  }

  /* Product Tabs */
  .product-tabs {
    gap: .2rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .product-tabs::-webkit-scrollbar {
    display: none
  }

  .product-tab {
    padding: .4rem .75rem;
    font-size: .6rem;
    letter-spacing: .06em;
    white-space: nowrap;
    flex-shrink: 0
  }

  /* Product Cards — Compact */
  .product-info {
    padding: .6rem .7rem .8rem
  }

  .product-name {
    font-size: .8rem;
    line-height: 1.25
  }

  .product-notes {
    font-size: .62rem;
    margin-bottom: .4rem
  }

  .product-price {
    font-size: .88rem
  }

  .product-original {
    font-size: .68rem
  }

  .product-discount {
    font-size: .58rem
  }

  .add-to-cart {
    padding: .45rem;
    font-size: .58rem;
    letter-spacing: .06em;
    border-radius: 8px
  }

  /* Product image aspect ratio tighter */
  .product-img {
    aspect-ratio: 1/1
  }

  /* Wishlist Heart */
  .wishlist-btn {
    width: 26px;
    height: 26px;
    top: 5px;
    right: 5px
  }

  .wishlist-btn svg {
    width: 12px;
    height: 12px
  }

  /* Cart drawer items */
  .drawer-item {
    gap: .5rem;
    padding: .7rem 0
  }

  .drawer-item img {
    width: 48px;
    height: 48px;
    border-radius: 6px
  }

  .drawer-item-name {
    font-size: .8rem
  }

  .drawer-item-notes {
    font-size: .58rem
  }

  .drawer-item-price {
    font-size: .72rem
  }

  .qty-btn {
    width: 20px;
    height: 20px;
    font-size: .65rem
  }

  .qty-val {
    font-size: .72rem
  }

  /* Search */
  .search-input-wrap input {
    font-size: 1rem
  }

  .search-result-card {
    gap: .6rem;
    padding: .5rem
  }

  .search-result-img {
    width: 40px;
    height: 40px
  }

  .search-result-name {
    font-size: .8rem
  }

  .search-result-notes {
    font-size: .6rem
  }

  .search-result-price {
    font-size: .75rem
  }

  /* Trust — inline row stays */
  .trust-grid {
    padding: 1rem 0;
    gap: 1.2rem
  }

  /* Blog — already horizontal scroll */
  .blog-card {
    width: clamp(230px, 65vw, 280px)
  }

  .blog-card-img {
    aspect-ratio: 16/9
  }

  .blog-card-body h3 {
    font-size: .88rem
  }

  .blog-card-body p {
    font-size: .7rem
  }

  .blog-listing .blog-grid {
    grid-template-columns: 1fr
  }

  .blog-listing .blog-card {
    width: auto
  }

  /* Page Hero */
  .page-hero {
    height: clamp(110px, 28vw, 180px)
  }

  .page-hero-content h1 {
    font-size: clamp(1.1rem, 4.5vw, 1.8rem)
  }

  .page-hero-content p {
    font-size: .72rem
  }

  .breadcrumb {
    font-size: .62rem
  }

  /* Gift — Compact */
  .gift-inner {
    gap: 1.2rem
  }

  .gift-text h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem)
  }

  .gift-text p {
    font-size: .82rem
  }

  .gift-text .promo-cta {
    padding: .6rem 1.4rem;
    font-size: .65rem
  }

  /* Promo & New Launch — Compact */
  .promo-banner {
    height: clamp(160px, 42vw, 260px)
  }

  .promo-content h2 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    max-width: 90%
  }

  .promo-cta {
    padding: .6rem 1.5rem;
    font-size: .65rem
  }

  .new-launch {
    height: clamp(150px, 40vw, 260px)
  }

  .new-launch-content h2 {
    font-size: clamp(1.3rem, 4.5vw, 2rem)
  }

  .new-launch-content p {
    font-size: clamp(.7rem, 2vw, .88rem)
  }

  /* Newsletter — Compact */
  .newsletter h2 {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem)
  }

  .newsletter p {
    font-size: .78rem;
    margin-bottom: 1rem
  }

  .newsletter-form input {
    padding: .7rem 1rem;
    font-size: .8rem
  }

  .newsletter-form button {
    padding: .7rem 1.5rem;
    font-size: .7rem
  }

  /* Footer — Very compact */
  .footer {
    padding: 1.5rem 0 .8rem
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem
  }

  .footer-col h4 {
    font-size: .8rem;
    margin-bottom: .4rem
  }

  .footer-col a,
  .footer-col p {
    font-size: .7rem;
    margin-bottom: .25rem
  }

  .footer-social a {
    width: 30px;
    height: 30px
  }

  .footer-social svg {
    width: 13px;
    height: 13px
  }

  .footer-bottom {
    font-size: .6rem;
    padding-top: .8rem
  }

  /* Section padding — very tight */
  .section-pad {
    padding: clamp(1.2rem, 4vw, 2.5rem) 0
  }

  .section-header h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem)
  }

  .section-header p {
    font-size: .72rem
  }

  /* Cart standalone page */
  .cart-table-card {
    padding: .8rem
  }

  .cart-summary-card {
    padding: .8rem
  }

  /* Announcement Bar */
  .announcement-bar {
    height: 28px
  }

  .ticker span {
    font-size: .6rem;
    padding: 0 1.2rem;
    letter-spacing: .1em
  }

  .ticker span::after {
    margin-left: 1.2rem
  }

  /* About values stay 2-col */
  .about-values {
    grid-template-columns: 1fr 1fr
  }

  .value-card {
    padding: 1rem .8rem
  }

  .value-card h3 {
    font-size: .95rem
  }

  .value-card p {
    font-size: .72rem
  }

  /* Trending — already horizontal scroll */
  .trending-scroll .product-card {
    width: clamp(180px, 48vw, 240px)
  }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.main-image-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: clamp(350px, 45vw, 550px);
}

.main-image-wrap img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.main-image-wrap:hover img {
  transform: scale(1.03);
}

.thumbnail-row {
  display: flex;
  gap: 1rem;
}

.thumbnail {
  flex: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.6rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.thumbnail.active {
  border-color: var(--soft-white);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.thumbnail img {
  max-height: 100%;
  object-fit: contain;
}

.product-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-detail-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 4px;
  align-self: flex-start;
}

.product-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--soft-white);
}

.product-detail-subtitle {
  font-size: 1rem;
  color: var(--metallic-silver);
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 16px;
  height: 16px;
}

.star-filled {
  fill: #E5C158;
}

.star-empty {
  fill: rgba(255, 255, 255, 0.15);
}

.rating-text {
  font-size: 0.85rem;
  color: var(--chrome-silver);
}

.product-detail-pricing {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1.2rem;
}

.detail-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--soft-white);
}

.detail-original {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--metallic-silver);
}

.detail-discount {
  font-size: 0.85rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.scent-quick-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 8px;
}

.info-item {
  font-size: 0.9rem;
}

.info-item strong {
  color: var(--soft-white);
}

.size-selector-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--metallic-silver);
}

.size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.size-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.8rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.size-card.active {
  border-color: var(--soft-white);
  background: rgba(255, 255, 255, 0.06);
}

.size-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--soft-white);
}

.size-desc {
  font-size: 0.72rem;
  color: var(--chrome-silver);
}

.detail-actions-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.detail-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-bg);
  overflow: hidden;
  height: 48px;
}

.qty-change-btn {
  background: none;
  border: none;
  width: 40px;
  height: 100%;
  color: var(--soft-white);
  font-size: 1.2rem;
  transition: background 0.2s;
}

.qty-change-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

#detailQty {
  width: 40px;
  text-align: center;
  background: none;
  border: none;
  color: var(--soft-white);
  font-weight: 600;
  font-size: 0.95rem;
}

.add-to-cart-large {
  flex: 1;
  height: 48px;
  background: var(--soft-white);
  color: var(--matte-black);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  border: none;
}

.add-to-cart-large:hover {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.wishlist-btn-large {
  width: 48px;
  height: 48px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.wishlist-btn-large svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--chrome-silver);
  transition: var(--transition);
}

.wishlist-btn-large.active svg {
  fill: #ff4757;
  stroke: #ff4757;
}

.wishlist-btn-large:hover {
  border-color: var(--soft-white);
}

.buy-now-btn {
  height: 48px;
  background: none;
  border: 1px solid var(--soft-white);
  color: var(--soft-white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
}

.buy-now-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.usp-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.2rem 0;
  margin-top: 0.5rem;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--chrome-silver);
}

.usp-item svg {
  width: 18px;
  height: 18px;
  color: var(--metallic-silver);
}

.accordion-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--glass-border);
}

.accordion-item {
  border-top: 1px solid var(--glass-border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--soft-white);
  background: none;
  border: none;
  text-align: left;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-panel {
  max-height: 300px;
  padding-bottom: 1.2rem;
}

.accordion-panel p {
  font-size: 0.9rem;
  color: var(--chrome-silver);
  line-height: 1.6;
}

.scent-profile-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.profile-tier {
  font-size: 0.9rem;
  color: var(--chrome-silver);
}

.profile-tier strong {
  color: var(--soft-white);
}

/* Reviews Styling */
.reviews-summary-card {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.summary-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--glass-border);
  padding-right: 2rem;
}

.avg-score {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--soft-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.count-label {
  font-size: 0.8rem;
  color: var(--chrome-silver);
  margin-top: 0.4rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--chrome-silver);
}

.rating-bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #E5C158;
  border-radius: 3px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1.5rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-author {
  font-weight: 600;
  color: var(--soft-white);
  font-size: 0.95rem;
}

.verified-buyer-badge {
  font-size: 0.68rem;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.verified-buyer-badge svg {
  width: 12px;
  height: 12px;
}

.review-date {
  font-size: 0.8rem;
  color: var(--metallic-silver);
}

.review-rating {
  margin-bottom: 0.8rem;
}

.review-rating svg {
  width: 14px;
  height: 14px;
}

.review-comment {
  font-size: 0.9rem;
  color: var(--chrome-silver);
  line-height: 1.6;
}

/* Tablet & Mobile responsive for product page */
@media (max-width: 1024px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-gallery {
    position: static;
  }
}

@media (max-width: 768px) {
  .reviews-summary-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .summary-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
  }
}

/* ============================================
   ENHANCED CART ITEM & GIFT WRAP STYLES
   ============================================ */
.cart-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  gap: 1rem;
}

.cart-item-left {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex: 1;
}

.cart-item-thumb {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--gunmetal);
  border: 1px solid var(--glass-border);
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--soft-white);
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.cart-item-notes {
  font-size: 0.75rem;
  color: var(--metallic-silver);
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.cart-item-price-block {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cart-item-orig-price {
  font-size: 0.85rem;
  color: rgba(200, 204, 209, 0.45);
  text-decoration: line-through;
}

.cart-item-current-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--soft-white);
}

.cart-item-disc-badge {
  font-size: 0.72rem;
  color: #10b981;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cart-qty-pill {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 2px 4px;
}

.qty-pill-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: none;
  color: var(--soft-white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 4px;
}

.qty-pill-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.qty-pill-val {
  font-size: 0.9rem;
  color: var(--soft-white);
  font-weight: 600;
  min-width: 26px;
  text-align: center;
}

.cart-item-delete-btn {
  background: none;
  border: none;
  color: var(--metallic-silver);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.cart-item-delete-btn:hover {
  color: #ff4757;
}

.cart-item-delete-btn svg {
  width: 18px;
  height: 18px;
}

/* --- Gift Wrap Option Card --- */
.gift-wrap-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.gift-wrap-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  user-select: none;
}

.gift-wrap-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--soft-white);
  cursor: pointer;
}

.gift-wrap-text {
  font-size: 0.95rem;
  color: var(--soft-white);
  font-weight: 500;
}

/* --- Saved so Far Banner & Estimated Total --- */
.total-saved-banner {
  background: #00b894;
  color: #ffffff;
  text-align: center;
  padding: 0.45rem 1rem;
  border-radius: 8px 8px 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.estimated-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  margin-top: 0.5rem;
}

.total-saved-banner+.estimated-total-row {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}

.est-total-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--soft-white);
}

.est-total-left svg {
  width: 22px;
  height: 22px;
  stroke: var(--chrome-silver);
}

.est-total-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.est-orig-price {
  font-size: 0.95rem;
  color: rgba(200, 204, 209, 0.45);
  text-decoration: line-through;
}

.est-final-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--soft-white);
}

.est-disc-badge {
  font-size: 0.78rem;
  color: #10b981;
  font-weight: 700;
}

@media (max-width: 600px) {
  .cart-item-card {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-item-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(200, 204, 209, 0.06);
    padding-top: 0.8rem;
    margin-top: 0.5rem;
  }
}

/* Release 1.7.3: cart and wishlist return controls. */
#cartDrawer .drawer-header,
#wishlistDrawer .drawer-header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 8px;
  align-items: center;
}

#cartDrawer .drawer-header h3,
#wishlistDrawer .drawer-header h3 {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.drawer-back {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 37, 69, .12);
  border-radius: 10px;
  background: rgba(11, 37, 69, .04);
  color: var(--brand-primary);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.drawer-back svg {
  width: 20px;
  height: 20px;
}

.drawer-back:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateX(-1px);
}

#cartDrawer .drawer-close,
#wishlistDrawer .drawer-close {
  width: 40px;
  height: 40px;
  justify-self: end;
}

@media (max-width: 420px) {
  #cartDrawer .drawer-header,
  #wishlistDrawer .drawer-header {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 5px;
  }

  #cartDrawer .drawer-header h3,
  #wishlistDrawer .drawer-header h3 {
    font-size: 1.08rem;
  }

  .drawer-back,
  #cartDrawer .drawer-close,
  #wishlistDrawer .drawer-close {
    width: 38px;
    height: 38px;
  }
}

/* Release 1.6.2: mobile checkout/header/menu fixes and email OTP UI. */
.ge-email-otp {
  display: grid;
  gap: .75rem;
  margin: -.2rem 0 1.1rem;
}

.ge-email-otp-send,
.ge-email-otp-code-row button {
  min-height: 44px;
  padding: .65rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #eef1f5;
  color: #7b8795;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}

.ge-email-otp.email-valid .ge-email-otp-send:not(:disabled),
.ge-email-otp-code-row button:not(:disabled) {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
}

.ge-email-otp-code label {
  margin-bottom: .4rem;
}

.ge-email-otp-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .65rem;
}

.ge-email-otp-code-row input {
  min-width: 0;
  letter-spacing: .28em;
  text-align: center;
}

.ge-email-otp-status {
  min-height: 1.1rem;
  margin: 0 !important;
  font-size: .75rem;
  font-weight: 700;
}

.ge-email-otp-status.is-pending {
  color: var(--text-muted);
}

.ge-email-otp-status.is-success {
  color: #06875f;
}

.ge-email-otp-status.is-error {
  color: #c62838;
}

.ge-auth-form .ge-auth-submit:disabled {
  border-color: #d9dce3 !important;
  background: #e7e7ec !important;
  color: #6f7178 !important;
  box-shadow: none !important;
  cursor: not-allowed;
  transform: none;
}

.ge-auth-form.email-verified .ge-auth-submit:not(:disabled) {
  border-color: var(--brand-primary) !important;
  background: var(--brand-primary) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(11, 37, 69, .16);
}

@media (max-width: 1024px) {
  .mobile-menu nav ul,
  .mobile-menu nav .nav-list,
  .mobile-menu nav .mobile-nav-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .35rem !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mobile-menu nav li,
  .mobile-menu nav .menu-item {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .mobile-menu nav li > a {
    display: flex !important;
    width: 100% !important;
    min-height: 46px;
    align-items: center;
    padding: .7rem .8rem !important;
    border-radius: 9px;
  }
}

@media (max-width: 767px) {
  /* Woo Blocks already supplies a compact mobile summary above the form. */
  body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
    display: none !important;
  }

  body.woocommerce-checkout .wc-block-components-sidebar-layout {
    display: block !important;
  }

  body.woocommerce-checkout .wc-block-components-main {
    width: 100% !important;
  }
}

@media (max-width: 420px) {
  .nav-wishlist-link {
    display: inline-flex !important;
  }

  body:not(.logged-in) .nav-account-link {
    display: none !important;
  }

  .nav-icons {
    gap: 1px !important;
  }

  .nav-icons > button,
  .nav-icons > a {
    flex: 0 0 38px !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 42px !important;
    padding: 8px !important;
  }

  .ge-email-otp-code-row {
    grid-template-columns: 1fr;
  }
}

/* Release 1.6.3: definitive mobile checkout, header and wishlist polish. */
@media (max-width: 600px) {
  .navbar .nav-inner {
    width: 100% !important;
    padding-inline: 12px !important;
  }

  .navbar .nav-icons {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 38px;
    gap: 4px !important;
    align-items: center;
    flex: 0 0 auto;
  }

  .navbar .nav-icons > button,
  .navbar .nav-icons > a {
    position: relative;
    display: inline-flex !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 8px !important;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
  }

  .navbar .nav-icons .nav-account-link {
    display: none !important;
  }

  .navbar .nav-icons .nav-wishlist-link {
    display: inline-flex !important;
    color: var(--brand-primary) !important;
  }

  .navbar .nav-icons .nav-wishlist-link svg,
  .navbar .nav-icons .nav-search-trigger svg,
  .navbar .nav-icons .cart-count svg,
  .navbar .nav-icons .hamburger svg {
    width: 21px !important;
    height: 21px !important;
  }

  .navbar .nav-icons .hamburger {
    z-index: auto;
    border: 1px solid var(--border-color);
    background: #fff;
  }

  .navbar .cart-count span {
    top: -3px;
    right: -2px;
    z-index: 2;
  }

  body.woocommerce-checkout {
    font-size: 14px;
  }

  body.woocommerce-checkout .ge-checkout-page,
  body.woocommerce-checkout .wp-block-woocommerce-checkout {
    width: 100% !important;
    margin: 0 auto 2rem !important;
    padding: 14px 12px 32px !important;
  }

  body.woocommerce-checkout .wc-block-components-sidebar-layout,
  body.woocommerce-checkout .wc-block-components-main {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.woocommerce-checkout .wc-block-checkout__contact-fields,
  body.woocommerce-checkout .wc-block-checkout__billing-fields,
  body.woocommerce-checkout .wc-block-checkout__shipping-fields,
  body.woocommerce-checkout .wc-block-checkout__payment-method,
  body.woocommerce-checkout .wc-block-checkout__terms {
    margin: 0 0 12px !important;
    padding: 16px !important;
    border-radius: 14px !important;
    box-shadow: 0 5px 16px rgba(11, 37, 69, .045) !important;
  }

  body.woocommerce-checkout .wc-block-components-checkout-step__heading {
    margin: 0 0 12px !important;
  }

  body.woocommerce-checkout .wc-block-components-checkout-step__title,
  body.woocommerce-checkout .wc-block-components-title {
    margin: 0 !important;
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
  }

  body.woocommerce-checkout .wc-block-components-checkout-step__description {
    margin: 4px 0 0 !important;
    font-size: .82rem !important;
    line-height: 1.4 !important;
  }

  body.woocommerce-checkout .wc-block-components-address-form {
    gap: 10px !important;
  }

  body.woocommerce-checkout .wc-block-components-text-input,
  body.woocommerce-checkout .wc-block-components-combobox {
    margin: 0 !important;
  }

  body.woocommerce-checkout .wc-block-components-text-input input,
  body.woocommerce-checkout .wc-block-components-combobox input,
  body.woocommerce-checkout .wc-block-components-address-form select {
    min-height: 48px !important;
    height: 48px !important;
    padding: 18px 12px 6px !important;
    border-radius: 9px !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  body.woocommerce-checkout .wc-block-components-text-input label,
  body.woocommerce-checkout .wc-block-components-combobox label {
    left: 12px !important;
    font-size: 12px !important;
  }

  body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
    display: none !important;
  }
}

#wishlistDrawer .drawer-body {
  padding: 4px 2px 24px;
}

#wishlistDrawer .wishlist-drawer-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(11, 37, 69, .06);
}

#wishlistDrawer .wishlist-item-image,
#wishlistDrawer .wishlist-item-image img {
  display: block;
  width: 88px;
  height: 106px;
  border-radius: 10px;
}

#wishlistDrawer .wishlist-item-image img {
  object-fit: cover;
  border: 0;
  background: #f4f7fb;
}

#wishlistDrawer .drawer-item-details {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

#wishlistDrawer .drawer-item-name {
  color: var(--brand-primary);
  font-size: 1.05rem;
}

#wishlistDrawer .drawer-item-notes {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-muted);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#wishlistDrawer .drawer-item-price {
  margin-top: auto;
  color: var(--brand-primary);
  font-size: .95rem;
}

#wishlistDrawer .wishlist-item-actions {
  display: flex;
  width: 100%;
  gap: 8px;
  margin-top: 9px;
}

#wishlistDrawer .wishlist-card-delete {
  position: absolute;
  z-index: 3;
  top: 9px;
  right: 9px;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 1px solid #edc9cf;
  border-radius: 9px;
  background: #fff;
  color: #b42335;
  box-shadow: 0 4px 12px rgba(180, 35, 53, .1);
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

#wishlistDrawer .wishlist-card-delete svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

#wishlistDrawer .wishlist-card-delete:hover {
  border-color: #b42335;
  background: #b42335;
  color: #fff;
  transform: translateY(-1px);
}

#wishlistDrawer .wishlist-drawer-item .drawer-item-name {
  padding-right: 38px;
}

#wishlistDrawer .wishlist-action {
  display: inline-flex;
  min-height: 34px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--brand-primary);
  border-radius: 8px;
  background: var(--brand-primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

#wishlistDrawer .wishlist-remove {
  background: #fff;
  color: #b42335;
  border-color: #e3b8bf;
}

@media (max-width: 380px) {
  .navbar .nav-icons {
    grid-auto-columns: 35px;
    gap: 2px !important;
  }

  .navbar .nav-icons > button,
  .navbar .nav-icons > a {
    width: 35px !important;
    min-width: 35px !important;
    height: 36px !important;
    padding: 7px !important;
  }

  #wishlistDrawer .wishlist-drawer-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  #wishlistDrawer .wishlist-item-image,
  #wishlistDrawer .wishlist-item-image img {
    width: 72px;
    height: 92px;
  }
}

/* Release 1.6.4: login readiness and Google sign-in integration. */
.ge-auth-login .ge-auth-submit {
  border-color: #d9dce3 !important;
  background: #e7e7ec !important;
  color: #6f7178 !important;
  box-shadow: none !important;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ge-auth-login .ge-auth-form.login-ready .ge-auth-submit,
.ge-auth-login .ge-auth-submit.is-ready {
  border-color: var(--brand-primary) !important;
  background: var(--brand-primary) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(11, 37, 69, .18) !important;
}

.ge-auth-login .ge-auth-submit.is-ready:hover {
  background: var(--brand-secondary) !important;
  transform: translateY(-1px);
}

.ge-social-login {
  margin-top: 1rem;
}

.ge-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1rem 0;
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ge-auth-divider::before,
.ge-auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--border-color);
}

.ge-social-login [data-plugin="nsl"],
.ge-social-login .nsl-container,
.ge-social-login .nsl-container-buttons,
.ge-social-login .nsl-button {
  width: 100% !important;
  max-width: none !important;
}

.ge-social-login .nsl-button {
  min-height: 50px !important;
  overflow: hidden;
  border: 1px solid #cdd7e4 !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #202124 !important;
  box-shadow: 0 4px 14px rgba(11, 37, 69, .07) !important;
}

.ge-social-login .nsl-button-label-container {
  font-weight: 700 !important;
}

/* Release 1.6.6: automatic free-combo cart presentation. */
.ge-free-gift-control {
  margin-top: .35rem;
}

.ge-free-gift-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8fbf4;
  color: #06875f;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Release 1.6.1: cart-inspired checkout order summary. */
body.woocommerce-checkout .wc-block-components-sidebar {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(11, 37, 69, .08);
}

body.woocommerce-checkout .wc-block-components-sidebar > .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-components-sidebar > .wc-block-components-totals-wrapper {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-order-summary {
  padding: 0 !important;
  background: #fff !important;
}

body.woocommerce-checkout .wc-block-components-order-summary__button {
  width: 100%;
  min-height: 72px;
  padding: 1.15rem 1.3rem !important;
  border: 0 !important;
  border-bottom: 1px solid var(--border-color) !important;
  background: #f2f6fb !important;
}

body.woocommerce-checkout .wc-block-components-order-summary__button-text {
  color: var(--brand-primary) !important;
  font-size: clamp(1.35rem, 3vw, 1.75rem) !important;
}

body.woocommerce-checkout .wc-block-components-order-summary__content {
  padding: 1.15rem !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 0 0 .85rem !important;
  padding: 1rem !important;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(11, 37, 69, .045);
}

body.woocommerce-checkout .wc-block-components-order-summary-item:last-child {
  margin-bottom: 0 !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image {
  width: 72px !important;
  height: 82px;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 10px;
  background: #eef3f8;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__description {
  min-width: 0;
  padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-product-name {
  margin-bottom: .25rem;
  color: var(--brand-primary) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
}

body.woocommerce-checkout .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-product-details {
  color: var(--text-muted);
  font-size: .76rem;
  line-height: 1.45;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices {
  color: var(--text-muted);
  font-size: .78rem;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
  align-self: start;
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
  border: 2px solid #fff;
  background: var(--brand-primary) !important;
  color: #fff !important;
  box-shadow: 0 3px 8px rgba(11, 37, 69, .2);
  font-weight: 800;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-coupon {
  padding: 1rem 1.25rem !important;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: #fff;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-wrapper {
  padding: .9rem 1.25rem !important;
  border-bottom: 1px solid var(--border-color) !important;
  background: #fff !important;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-wrapper:empty {
  display: none;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-item {
  min-height: 42px;
  align-items: center;
  padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-item__label {
  color: var(--text-secondary);
  font-size: .86rem;
  font-weight: 600;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-item__value {
  color: var(--brand-primary);
  font-size: .95rem;
  font-weight: 800;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-footer-item {
  min-height: 84px;
  margin: 0;
  padding: 1.15rem 1.25rem !important;
  background: linear-gradient(135deg, #f5f8fc, #fff);
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--brand-primary);
  font-size: 1.45rem;
  font-weight: 900;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-discount {
  color: #05865f;
  background: #effbf6 !important;
}

body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-fees {
  background: #fffaf0 !important;
}

@media (max-width: 600px) {
  body.woocommerce-checkout .wc-block-components-sidebar {
    border-radius: 14px;
  }

  body.woocommerce-checkout .wc-block-components-order-summary__content {
    padding: .8rem !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: .75rem;
    padding: .8rem !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__image {
    width: 62px !important;
    height: 72px;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

/* Release 1.5.1: branded WooCommerce login and registration. */
.ge-auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.ge-auth-layout.has-registration {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ge-auth-panel {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(11, 37, 69, .055);
}

.ge-auth-register {
  background: linear-gradient(145deg, #f7faff, #fff);
}

.ge-auth-panel-heading {
  margin-bottom: 1.5rem;
}

.ge-auth-kicker {
  display: block;
  margin-bottom: .4rem;
  color: var(--brand-secondary);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ge-auth-panel-heading h2 {
  margin: 0 0 .45rem;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 400;
}

.ge-auth-panel-heading p,
.ge-auth-help {
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.6;
}

.ge-auth-form {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.ge-auth-form .form-row {
  float: none;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
}

.ge-auth-form label {
  display: block;
  margin-bottom: .4rem;
  color: var(--brand-primary);
  font-size: .8rem;
  font-weight: 700;
}

.ge-auth-form .required {
  color: #d6384c;
}

.ge-auth-form input[type="text"],
.ge-auth-form input[type="email"],
.ge-auth-form input[type="password"] {
  width: 100%;
  min-height: 48px;
  padding: .75rem .9rem;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: #fff;
  color: var(--text-primary);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ge-auth-form input:focus {
  border-color: var(--brand-secondary);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, .11);
}

.ge-auth-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  font-size: .78rem;
}

.ge-auth-form-actions .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  font-weight: 500;
}

.ge-auth-form-actions input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--brand-primary);
}

.ge-auth-form-actions a {
  color: var(--brand-secondary);
  font-weight: 700;
}

.ge-auth-form .ge-auth-submit {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border: 1px solid var(--brand-primary);
  border-radius: 10px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 800;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.ge-auth-form .ge-auth-submit:hover {
  background: var(--brand-secondary);
  box-shadow: 0 8px 18px rgba(11, 37, 69, .16);
  transform: translateY(-1px);
}

.ge-account-page > div[style*="justify-content: center"] > .cart-table-card {
  max-width: 1100px !important;
  padding: clamp(1rem, 3vw, 2rem) !important;
  border-radius: 22px;
}

@media (max-width: 760px) {
  .ge-auth-layout.has-registration {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ge-auth-panel {
    padding: 1rem;
    border-radius: 14px;
  }

  .ge-auth-form-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: .7rem;
  }
}

/* Release 1.5.2: professional authentication shell and mobile menu. */
.ge-auth-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(11, 37, 69, .1);
}

.ge-auth-shell-header {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 88% 20%, rgba(91, 128, 184, .28), transparent 30%),
    linear-gradient(135deg, #071d39, #123a68);
  color: #fff;
}

.ge-auth-shell-header img {
  display: block;
  width: 86px;
  height: 112px;
  padding: 7px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  object-fit: contain;
}

.ge-auth-shell-header span {
  display: block;
  margin-bottom: .55rem;
  color: #b9d2f1;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ge-auth-shell-header h1 {
  max-width: 760px;
  margin: 0 0 .6rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.12;
}

.ge-auth-shell-header p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.ge-auth-shell-body {
  padding: clamp(1rem, 3vw, 2rem);
}

.ge-auth-shell .ge-auth-panel {
  box-shadow: none;
}

.ge-auth-trust {
  display: flex;
  justify-content: center;
  gap: clamp(.75rem, 3vw, 2rem);
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
}

.ge-auth-trust span::before {
  content: "✓";
  margin-right: .35rem;
  color: #069b71;
  font-weight: 900;
}

.mobile-account-actions {
  margin-top: auto;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border-color);
}

.mobile-account-actions p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.55;
}

.mobile-auth-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

.mobile-account-actions .mobile-account-primary,
.mobile-account-actions .mobile-account-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .7rem 1rem;
  border: 1px solid var(--brand-primary);
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
}

.mobile-account-actions .mobile-account-primary {
  background: var(--brand-primary);
  color: #fff;
}

.mobile-account-actions .mobile-account-secondary {
  margin-top: .65rem;
  background: #fff;
  color: var(--brand-primary);
}

.mobile-auth-buttons .mobile-account-secondary {
  margin-top: 0;
}

.mobile-account-actions svg {
  width: 19px;
  height: 19px;
}

@media (max-width: 1024px) {
  .mobile-menu {
    right: -100%;
    width: min(360px, 90vw) !important;
    padding: 1.15rem 1.2rem 1.35rem !important;
    background: #fff !important;
    box-shadow: -20px 0 50px rgba(7, 29, 57, .18);
  }

  .mobile-menu.open {
    right: 0;
  }

  .mobile-menu-header {
    min-height: 76px;
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .mobile-menu-logo.nav-logo {
    flex: 0 0 54px;
    width: 54px !important;
    height: 72px !important;
  }

  .mobile-menu nav {
    width: 100%;
  }

  .mobile-menu .mobile-nav-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .35rem !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mobile-menu .mobile-nav-list > li {
    display: block;
    width: 100%;
    margin: 0;
  }

  .mobile-menu .mobile-nav-list > li > a {
    display: flex;
    min-height: 46px;
    align-items: center;
    width: 100%;
    padding: .7rem .8rem;
    border: 0;
    border-radius: 9px;
    color: var(--brand-primary) !important;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .08em;
  }

  .mobile-menu .mobile-nav-list > li > a:hover,
  .mobile-menu .mobile-nav-list > .current-menu-item > a {
    background: #f1f5fa;
  }

  body.logged-in .nav-account-link {
    display: inline-flex !important;
  }

  .hamburger {
    border: 1px solid var(--border-color) !important;
    border-radius: 8px;
    background: #fff !important;
  }
}

@media (max-width: 600px) {
  .ge-auth-shell {
    border-radius: 16px;
  }

  .ge-auth-shell-header {
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 1.25rem;
  }

  .ge-auth-shell-header img {
    width: 60px;
    height: 78px;
    padding: 5px;
  }

  .ge-auth-shell-header p {
    font-size: .78rem;
  }

  .ge-auth-trust {
    align-items: center;
    flex-direction: column;
    gap: .45rem;
  }
}

@media (max-width: 380px) {
  .ge-auth-shell-header {
    grid-template-columns: 1fr;
  }

  .ge-auth-shell-header img {
    display: none;
  }
}

/* Release 1.5.4: self-contained customer login/signup route. */
.ge-auth-standalone {
  width: min(calc(100% - 2rem), 1180px);
  margin: clamp(2rem, 6vw, 5rem) auto;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(7, 29, 57, .12);
}

.ge-auth-standalone-header {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background:
    radial-gradient(circle at 88% 15%, rgba(82, 139, 209, .3), transparent 32%),
    linear-gradient(135deg, #071d39, #123a68);
  color: #fff;
}

.ge-auth-standalone-header img {
  width: 82px;
  height: 106px;
  padding: 6px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .96);
  object-fit: contain;
}

.ge-auth-standalone-header span {
  display: block;
  margin-bottom: .45rem;
  color: #bed6f2;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ge-auth-standalone-header h1 {
  margin: 0 0 .55rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.9rem);
  font-weight: 400;
  line-height: 1.15;
}

.ge-auth-standalone-header p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.ge-auth-standalone > .ge-auth-layout {
  padding: clamp(1rem, 3vw, 2rem);
}

.ge-auth-standalone .ge-auth-panel {
  border-radius: 16px;
  box-shadow: none;
}

.ge-auth-standalone-trust {
  display: flex;
  justify-content: center;
  gap: clamp(.75rem, 3vw, 2rem);
  margin: 0 clamp(1rem, 3vw, 2rem);
  padding: 1.1rem 0 1.4rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
}

.ge-auth-standalone-trust span::before {
  content: "✓";
  margin-right: .35rem;
  color: #069b71;
}

.ge-auth-standalone.is-signup-route .ge-auth-register {
  order: -1;
  border-color: rgba(29, 78, 216, .28);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, .06);
}

body.woocommerce-account .woocommerce-notices-wrapper {
  width: min(calc(100% - 2rem), 1180px);
  margin: 1rem auto 0;
}

@media (max-width: 760px) {
  .ge-auth-standalone {
    width: min(calc(100% - 1.25rem), 1180px);
    margin: 1.25rem auto 3rem;
    border-radius: 16px;
  }

  .ge-auth-standalone-header {
    grid-template-columns: 60px minmax(0, 1fr);
    padding: 1.25rem;
  }

  .ge-auth-standalone-header img {
    width: 58px;
    height: 76px;
    padding: 4px;
  }

  .ge-auth-standalone-header p {
    font-size: .78rem;
  }

  .ge-auth-standalone-trust {
    align-items: center;
    flex-direction: column;
    gap: .4rem;
  }
}

@media (max-width: 390px) {
  .ge-auth-standalone-header {
    grid-template-columns: 1fr;
  }

  .ge-auth-standalone-header img {
    display: none;
  }
}

/* Release 1.5.5: separate login and signup experiences. */
.ge-auth-standalone {
  max-width: 780px;
}

.ge-auth-standalone > .ge-auth-layout {
  display: block;
}

.ge-auth-standalone .ge-auth-panel {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.ge-auth-switch {
  margin: 1.25rem 0 0 !important;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: .82rem;
  text-align: center;
}

.ge-auth-switch a {
  color: var(--brand-secondary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ge-auth-switch a:hover {
  color: var(--brand-primary);
}

/* Release 1.5.6: synchronized quantity controls on product cards. */
.product-card-cart-action {
  display: grid;
  gap: .45rem;
  width: 100%;
  margin-top: auto;
}

.product-card-cart-action > .add-to-cart-btn {
  width: 100%;
}

.product-card-cart-control {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  width: 100%;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid var(--brand-primary);
  border-radius: 10px;
  background: #fff;
}

.product-card-qty-btn {
  display: grid;
  min-width: 44px;
  place-items: center;
  border: 0;
  background: var(--brand-primary);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
  transition: background .2s ease;
}

.product-card-qty-btn:hover,
.product-card-qty-btn:focus-visible {
  background: var(--brand-secondary);
}

.product-card-cart-quantity {
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--border-color);
  color: var(--brand-primary);
  font-size: .95rem;
  font-weight: 800;
}

.product-card-added-label {
  color: #06875f;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .product-card-cart-control {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 46px;
  }
}

/* Release 1.5.9: GalaxyEssence checkout design system. */
body.woocommerce-checkout {
  background: #f4f7fb;
}

body.woocommerce-checkout .ge-checkout-page,
body.woocommerce-checkout .wp-block-woocommerce-checkout {
  width: min(calc(100% - 2rem), 1440px);
  margin: clamp(1.5rem, 4vw, 4rem) auto !important;
  padding: 0 !important;
}

body.woocommerce-checkout .ge-checkout-page > .section-header {
  margin-bottom: 2rem;
  text-align: left;
}

body.woocommerce-checkout .ge-checkout-page > .section-header h1 {
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
}

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .ge-checkout-form {
  color: var(--text-secondary);
}

body.woocommerce-checkout .wc-block-components-sidebar-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, .8fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

body.woocommerce-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-sidebar {
  position: sticky;
  top: 120px;
}

body.woocommerce-checkout .wc-block-checkout__contact-fields,
body.woocommerce-checkout .wc-block-checkout__billing-fields,
body.woocommerce-checkout .wc-block-checkout__shipping-fields,
body.woocommerce-checkout .wc-block-checkout__payment-method,
body.woocommerce-checkout .wc-block-checkout__terms,
body.woocommerce-checkout .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-components-totals-wrapper,
body.woocommerce-checkout .ge-checkout-customer > section,
body.woocommerce-checkout .ge-checkout-form #order_review {
  overflow: hidden;
  margin-bottom: 1rem;
  padding: clamp(1.15rem, 2.5vw, 1.75rem) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 10px 30px rgba(11, 37, 69, .055);
}

body.woocommerce-checkout .wc-block-components-title,
body.woocommerce-checkout .wc-block-checkout__form .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-components-order-summary__button-text,
body.woocommerce-checkout .ge-checkout-form h2,
body.woocommerce-checkout .ge-checkout-form h3 {
  color: var(--brand-primary) !important;
  font-family: var(--font-heading) !important;
  font-weight: 400 !important;
  letter-spacing: .015em;
}

body.woocommerce-checkout .wc-block-components-checkout-step__heading {
  margin-bottom: 1rem;
}

body.woocommerce-checkout .wc-block-components-checkout-step__description,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control label {
  color: var(--text-muted);
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-combobox input,
body.woocommerce-checkout .wc-block-components-address-form select,
body.woocommerce-checkout .ge-checkout-form input.input-text,
body.woocommerce-checkout .ge-checkout-form select,
body.woocommerce-checkout .ge-checkout-form textarea {
  min-height: 52px;
  border: 1px solid #cdd7e4 !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: var(--text-primary) !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__wrapper {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  grid-template-areas:
    "image description"
    "image total" !important;
  gap: 5px 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  align-items: start !important;
}

body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-combobox input:focus,
body.woocommerce-checkout .wc-block-components-address-form select:focus,
body.woocommerce-checkout .ge-checkout-form input:focus,
body.woocommerce-checkout .ge-checkout-form select:focus,
body.woocommerce-checkout .ge-checkout-form textarea:focus {
  border-color: var(--brand-secondary) !important;
  outline: 3px solid rgba(29, 78, 216, .1) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option,
body.woocommerce-checkout .wc-block-components-payment-method-label,
body.woocommerce-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option {
  border-color: var(--border-color) !important;
  background: #fff !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option--checked,
body.woocommerce-checkout .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  border-color: var(--brand-secondary) !important;
  background: #f4f8fd !important;
}

body.woocommerce-checkout .wc-block-components-order-summary {
  border-radius: 16px 16px 0 0 !important;
  border-bottom: 0 !important;
  margin-bottom: 0;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image {
  overflow: hidden;
  border-radius: 10px;
}

body.woocommerce-checkout .wc-block-components-product-name {
  color: var(--brand-primary) !important;
  font-weight: 700;
}

body.woocommerce-checkout .wc-block-components-product-price,
body.woocommerce-checkout .wc-block-components-totals-item__value,
body.woocommerce-checkout .order-total .amount {
  color: var(--brand-primary);
  font-weight: 800;
}

body.woocommerce-checkout .wc-block-components-totals-wrapper {
  margin: 0;
  border-radius: 0 !important;
  border-top: 0 !important;
  box-shadow: none;
}

body.woocommerce-checkout .wc-block-components-totals-footer-item {
  font-size: 1.1rem;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--brand-primary) !important;
  border-radius: 11px !important;
  background: var(--brand-primary) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(11, 37, 69, .18);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
body.woocommerce-checkout #place_order:hover {
  background: var(--brand-secondary) !important;
  box-shadow: 0 13px 28px rgba(29, 78, 216, .22);
  transform: translateY(-1px);
}

body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
  display: none !important;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout .wc-block-components-notice-banner {
  width: min(100%, 1440px);
  margin: 0 auto 1rem;
  border-radius: 12px;
}

body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info {
  border-radius: 10px;
  background: #fff;
}

@media (max-width: 980px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr;
  }

  body.woocommerce-checkout .wc-block-components-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  body.woocommerce-checkout .ge-checkout-page,
  body.woocommerce-checkout .wp-block-woocommerce-checkout {
    width: min(calc(100% - 1.1rem), 1440px);
    margin: 1rem auto 3rem !important;
  }

  body.woocommerce-checkout .wc-block-checkout__contact-fields,
  body.woocommerce-checkout .wc-block-checkout__billing-fields,
  body.woocommerce-checkout .wc-block-checkout__shipping-fields,
  body.woocommerce-checkout .wc-block-checkout__payment-method,
  body.woocommerce-checkout .wc-block-checkout__terms,
  body.woocommerce-checkout .wc-block-components-order-summary,
  body.woocommerce-checkout .wc-block-components-totals-wrapper,
  body.woocommerce-checkout .ge-checkout-customer > section,
  body.woocommerce-checkout .ge-checkout-form #order_review {
    padding: 1rem !important;
    border-radius: 12px !important;
  }

  body.woocommerce-checkout .wc-block-components-checkout-step {
    padding-left: 0 !important;
  }

  body.woocommerce-checkout .wc-block-components-checkout-step::before {
    display: none;
  }
}

/* Single-product gallery and purchase controls — release cascade locks. */
.product-detail-layout,
.product-gallery,
.thumbnail-row {
  min-width: 0;
  max-width: 100%;
}

.product-gallery {
  overflow: hidden;
}

.main-image-wrap {
  width: 100%;
  overflow: hidden;
}

.main-image-wrap #mainProductImg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumbnail-row {
  display: flex;
  gap: .75rem;
  padding: .15rem 0 .45rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.thumbnail-row .thumb-img {
  position: static !important;
  inset: auto !important;
  display: block;
  flex: 0 0 76px;
  width: 76px !important;
  min-width: 76px;
  max-width: 76px !important;
  height: 76px !important;
  max-height: 76px !important;
  margin: 0;
  padding: 4px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: #fff;
  object-fit: cover;
  cursor: pointer;
}

.thumbnail-row .thumb-img.active {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 2px rgba(11, 37, 69, .1);
}

.detail-qty-selector {
  flex: 0 0 auto;
  width: auto;
  min-width: 132px;
}

.detail-qty-selector .quantity {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0 !important;
}

.detail-qty-selector input.qty {
  width: 44px !important;
  min-width: 44px;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-inline: 1px solid var(--border-color) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--brand-primary) !important;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.detail-qty-selector input.qty::-webkit-inner-spin-button,
.detail-qty-selector input.qty::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.detail-qty-selector .qty-change-btn {
  display: inline-flex;
  flex: 0 0 43px;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  color: var(--brand-primary) !important;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
}

.detail-qty-selector .qty-change-btn:hover,
.detail-qty-selector .qty-change-btn:focus-visible {
  background: #eef3f8 !important;
}

.buy-now-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: .75rem 1rem;
  text-align: center;
}

@media (max-width: 600px) {
  .main-image-wrap {
    height: min(105vw, 480px);
    padding: 1rem;
  }

  .thumbnail-row .thumb-img {
    flex-basis: 64px;
    width: 64px !important;
    min-width: 64px;
    max-width: 64px !important;
    height: 64px !important;
    max-height: 64px !important;
  }

  .detail-actions-row {
    gap: .6rem;
  }

  .detail-qty-selector {
    min-width: 120px;
  }

  .detail-qty-selector .qty-change-btn {
    flex-basis: 38px;
    width: 38px;
  }

  .detail-qty-selector input.qty {
    width: 42px !important;
    min-width: 42px;
  }
}

/* --- Screenshot-Matching Proceed to Buy Button --- */
.proceed-buy-btn {
  width: 100%;
  background: #10b981;
  box-shadow: 0px 2px 8px 0px #0f8f68;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-top: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #ffffff;
}

.proceed-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.proceed-buy-text {
  text-align: center;
  flex: 1;
}

.proceed-buy-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.2;
}

.proceed-buy-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  font-weight: 400;
}

.proceed-pay-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pay-pill-logo {
  background: #ffffff;
  color: #000000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.pay-pill-logo.paytm {
  color: #00b9f1;
  font-weight: 900;
  font-size: 0.62rem;
}

.pay-pill-logo.phonepe {
  color: #5f259f;
  font-weight: 900;
  font-size: 0.75rem;
}

.pay-pill-logo.gpay {
  color: #4285f4;
  font-weight: 900;
  font-size: 0.65rem;
}

/* ============================================
   COMING SOON ANIMATED STYLES
   ============================================ */
.coming-soon-wrapper {
  text-align: center;
  padding: 4.5rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.coming-soon-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 65%);
  animation: glowPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes glowPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }
}

.coming-soon-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, var(--chrome-silver) 40%, #10b981 80%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 3s linear infinite;
  margin-bottom: 1rem;
}

@keyframes shimmerText {
  to {
    background-position: 200% center;
  }
}

.coming-soon-subtitle {
  font-size: 1rem;
  color: var(--metallic-silver);
  max-width: 520px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

.coming-soon-notify {
  display: flex;
  gap: 0.6rem;
  max-width: 440px;
  margin: 0 auto;
}

.coming-soon-notify input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--soft-white);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.coming-soon-notify input:focus {
  border-color: #10b981;
}

.coming-soon-notify button {
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  background: #10b981;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.coming-soon-notify button:hover {
  background: #0d9668;
  transform: translateY(-2px);
}

/* ============================================
   PREMIUM LUXURY LIGHT THEME OVERRIDES
   ============================================ */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* --- 1. HEADER / NAVBAR --- */
.navbar {
  background: #FFFFFF !important;
  box-shadow: none !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.navbar.scrolled {
  background: #FFFFFF !important;
  box-shadow: none !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.nav-logo,
.nav-logo em,
.nav-menu a,
.nav-icons button,
.nav-icons a {
  color: var(--brand-primary) !important;
}

.nav-menu a::after {
  background: var(--brand-primary) !important;
}

.nav-menu a:hover {
  color: var(--brand-secondary) !important;
}

.announcement-bar {
  background: var(--brand-primary) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ticker span {
  color: var(--bg-primary) !important;
}

/* --- 2. CATEGORY STRIP (Woody, Vanilla, Oud, Fresh) --- */
.fragrance-card {
  box-shadow: none !important;
  border: 1px solid var(--border-color) !important;
  transition: transform var(--transition), border-color var(--transition) !important;
}

.fragrance-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary) !important;
  box-shadow: none !important;
}

.fragrance-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 65%) !important;
}

.fragrance-card:hover .fragrance-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 100%) !important;
}

.fragrance-overlay span {
  color: #FFFFFF !important;
}

/* --- 3. PRODUCT CARDS & WISHLIST --- */
.product-card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  background: var(--bg-card) !important;
  border-color: var(--border-color) !important;
}

.product-card:hover {
  box-shadow: 0 16px 36px rgba(11, 37, 69, 0.06) !important;
  border-color: rgba(11, 37, 69, 0.12) !important;
}

.product-name,
.product-price,
.product-info h3,
.product-info p {
  color: var(--brand-primary) !important;
}

.product-img {
  background: #F8F9FA !important;
}

.badge-bestseller {
  background: var(--brand-primary) !important;
  color: #FFFFFF !important;
}

.badge-limited {
  background: var(--brand-secondary) !important;
  color: #FFFFFF !important;
}

.badge-new {
  background: var(--brand-accent) !important;
  color: #FFFFFF !important;
}

.wishlist-btn {
  color: #FFFFFF !important;
  background: rgba(11, 37, 69, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(8px);
}

.wishlist-btn:hover {
  background: var(--brand-secondary) !important;
  border-color: var(--brand-secondary) !important;
  color: #FFFFFF !important;
  transform: scale(1.08) translateY(-1px) !important;
}

.wishlist-btn.active {
  color: #ff4757 !important;
  background: rgba(255, 71, 87, 0.15) !important;
  border-color: rgba(255, 71, 87, 0.4) !important;
}

/* --- 4. ADD TO CART BUTTON --- */
.add-to-cart {
  background: var(--brand-primary) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--brand-primary) !important;
  transition: all var(--transition) !important;
}

.add-to-cart:hover {
  background: var(--brand-secondary) !important;
  border-color: var(--brand-secondary) !important;
  color: #FFFFFF !important;
}

/* --- 5. BLOG / JOURNAL SECTION --- */
.blog-section {
  background: var(--brand-primary) !important;
  padding: 5rem 0 !important;
}

.blog-section .section-header h2,
.blog-section .section-header p,
.blog-card-body h3,
.blog-card-body p,
.blog-card-body .read-more {
  color: #FFFFFF !important;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

.blog-card-body .read-more {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding-bottom: 2px;
}

.blog-card-body .read-more:hover {
  color: var(--brand-accent) !important;
  border-color: var(--brand-accent) !important;
}

/* --- 6. FOOTER --- */
.footer {
  background: var(--brand-primary) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 5rem 0 2.5rem !important;
}

.footer .footer-col h4,
.footer .footer-col p,
.footer .footer-col a,
.footer .footer-bottom {
  color: #FFFFFF !important;
}

.footer .footer-col a {
  opacity: 0.78;
}

.footer .footer-col a:hover {
  color: var(--brand-accent) !important;
  opacity: 1 !important;
}

.footer-social a {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--brand-accent) !important;
  border-color: var(--brand-accent) !important;
}

/* --- GLOBAL LAYOUT & HERO DECORATIONS --- */
.hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 50%, #F1F5F9 100%) !important;
}

.hero::before {
  background: radial-gradient(circle, rgba(29, 78, 216, 0.05) 0%, transparent 70%) !important;
}

.hero::after {
  background: radial-gradient(circle, rgba(8, 145, 178, 0.04) 0%, transparent 70%) !important;
}

.hero-image::after {
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.06) 0%, transparent 70%) !important;
}

.hero-badge {
  background: rgba(11, 37, 69, 0.05) !important;
  border: 1px solid rgba(11, 37, 69, 0.12) !important;
  color: var(--brand-primary) !important;
}

.new-launch-content h2,
.new-launch-content p,
.promo-content h2,
.promo-content h2 strong,
.promo-cta {
  color: #FFFFFF !important;
}

.promo-cta {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.promo-cta:hover {
  background: #FFFFFF !important;
  color: var(--brand-primary) !important;
  border-color: #FFFFFF !important;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-secondary) !important;
  background: var(--bg-card) !important;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.08) !important;
}

.mobile-menu {
  background: rgba(255, 255, 255, 0.98) !important;
  border-left: 1px solid var(--border-color) !important;
}

.mobile-menu-overlay {
  background: rgba(11, 37, 69, 0.3) !important;
}

.search-overlay {
  background: rgba(255, 255, 255, 0.98) !important;
}

.drawer-content {
  background: var(--bg-card) !important;
  border-left: 1px solid var(--border-color) !important;
  box-shadow: -10px 0 40px rgba(11, 37, 69, 0.05) !important;
}

.drawer-overlay {
  background: rgba(11, 37, 69, 0.3) !important;
}

.est-orig-price {
  color: var(--text-secondary) !important;
  opacity: 0.6;
}

.proceed-buy-btn {
  background: var(--brand-primary) !important;
  box-shadow: 0px 4px 14px rgba(11, 37, 69, 0.25) !important;
  color: #FFFFFF !important;
}

.proceed-buy-btn:hover {
  background: var(--brand-secondary) !important;
  box-shadow: 0px 6px 20px rgba(29, 78, 216, 0.3) !important;
}

.shop-now-btn,
.checkout-btn,
.profile-btn {
  background: var(--brand-primary) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--brand-primary) !important;
}

.shop-now-btn:hover,
.checkout-btn:hover,
.profile-btn:hover {
  background: var(--brand-secondary) !important;
  color: #FFFFFF !important;
  border-color: var(--brand-secondary) !important;
}

.profile-btn.secondary-btn {
  background: transparent !important;
  color: var(--brand-primary) !important;
  border: 1px solid var(--brand-primary) !important;
}

.profile-btn.secondary-btn:hover {
  background: var(--brand-primary) !important;
  color: #FFFFFF !important;
}

.cart-table-card,
.cart-summary-card {
  background: var(--bg-card) !important;
  box-shadow: 0 4px 20px rgba(11, 37, 69, 0.02) !important;
  border: 1px solid var(--border-color) !important;
}

.size-card.active {
  border-color: var(--brand-secondary) !important;
  background: rgba(29, 78, 216, 0.04) !important;
}

.primary-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  background: var(--brand-primary) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--brand-primary) !important;
  outline: none;
}

.primary-btn:hover {
  background: var(--brand-secondary) !important;
  color: #FFFFFF !important;
  border-color: var(--brand-secondary) !important;
}

.secondary-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  background: transparent !important;
  color: var(--brand-primary) !important;
  border: 1px solid var(--brand-primary) !important;
  outline: none;
}

.secondary-btn:hover {
  background: var(--brand-primary) !important;
  color: #FFFFFF !important;
  border-color: var(--brand-primary) !important;
}

/* --- Standalone Pages Main Padding & Gap Fix --- */
main.container.section-pad {
  margin-top: 0 !important;
  padding-top: 2.2rem !important;
  padding-bottom: 4.5rem !important;
}

/* --- Product Detail Visual Improvements --- */
.scent-quick-info {
  background: rgba(11, 37, 69, 0.03) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-secondary) !important;
}

.qty-change-btn {
  color: var(--text-primary) !important;
}

.qty-change-btn:hover {
  background: rgba(11, 37, 69, 0.05) !important;
}

#detailQty {
  color: var(--text-primary) !important;
}

.add-to-cart-large {
  background: var(--brand-primary) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--brand-primary) !important;
}

.add-to-cart-large:hover {
  background: var(--brand-secondary) !important;
  border-color: var(--brand-secondary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25) !important;
}

.buy-now-btn {
  background: transparent !important;
  border: 1px solid var(--brand-primary) !important;
  color: var(--brand-primary) !important;
}

.buy-now-btn:hover {
  background: var(--brand-primary) !important;
  color: #FFFFFF !important;
}

.wishlist-btn-large {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
}

.wishlist-btn-large:hover {
  border-color: var(--brand-primary) !important;
}

/* ============================================
   PREMIUM ACCOUNT & CHECKOUT VISUAL POLISH
   ============================================ */

/* --- Auth Card (Login / Signup) --- */
main.container.section-pad[style*="align-items: center"] .cart-table-card,
main.container.section-pad[style*="align-items: center"] .cart-table-card {
  padding: 3rem 2.5rem !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 40px rgba(11, 37, 69, 0.06), 0 1px 3px rgba(11, 37, 69, 0.04) !important;
  position: relative;
  overflow: hidden;
}

main.container.section-pad[style*="align-items: center"] .cart-table-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
  border-radius: 20px 20px 0 0;
}

/* --- Form Label Styling Upgrade --- */
.form-group label {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.45rem !important;
}

/* --- Input Field Premium Treatment --- */
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem !important;
  border-radius: 10px !important;
  font-size: 0.88rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A0AEC0 !important;
  font-weight: 400;
}

/* --- Checkout Section Step Headings --- */
.cart-table-card h3[style*="font-family"] {
  position: relative;
  padding-left: 0 !important;
}

/* --- Checkout Step Numbering Accent --- */
.cart-layout .cart-table-card form>div>h3 {
  color: var(--brand-primary) !important;
  font-weight: 400 !important;
  font-size: 1.3rem !important;
  border-bottom-color: var(--border-color) !important;
}

/* --- Shipping Progress Bar Theming --- */
.shipping-progress-bg {
  background: rgba(11, 37, 69, 0.06) !important;
  height: 5px !important;
  border-radius: 3px !important;
}

.shipping-progress-fill {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary)) !important;
  border-radius: 3px !important;
}

/* --- User Avatar Upgrade --- */
.user-avatar {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)) !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.15) !important;
}

/* --- Profile Section Titles --- */
.cart-table-card h4[style*="font-family"],
.cart-summary-card h3[style*="font-family"] {
  color: var(--brand-primary) !important;
}

/* --- Checkout Summary Card Divider --- */
.summary-row.total {
  border-top-color: var(--border-color) !important;
  color: var(--brand-primary) !important;
  font-weight: 700 !important;
}

/* --- Payment Method Cards Polish --- */
.size-desc {
  color: var(--text-secondary) !important;
}

/* --- Checkout Button Premium Upgrade --- */
.checkout-btn {
  border-radius: 10px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  padding: 1rem !important;
  box-shadow: 0 4px 14px rgba(11, 37, 69, 0.2) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.checkout-btn:hover {
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.3) !important;
  transform: translateY(-1px);
}

/* --- Profile Btn Premium Upgrade --- */
.profile-btn {
  border-radius: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  box-shadow: 0 4px 14px rgba(11, 37, 69, 0.15) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.profile-btn:hover {
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.25) !important;
  transform: translateY(-1px);
}

/* --- Promo Code Button Upgrade --- */
.promo-code-wrap button {
  background: var(--brand-primary) !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.promo-code-wrap button:hover {
  background: var(--brand-secondary) !important;
}

/* --- Qty Btn Polish --- */
.qty-btn {
  border: 1px solid var(--border-color) !important;
  border-radius: 6px !important;
  color: var(--text-primary) !important;
  background: var(--bg-card) !important;
  transition: all 0.25s ease !important;
}

.qty-btn:hover {
  border-color: var(--brand-primary) !important;
  color: var(--brand-primary) !important;
}

/* ============================================
   MOBILE RESPONSIVENESS OVERRIDES (320px - 768px)
   ============================================ */
@media (max-width: 768px) {

  /* Enforce screen margins so elements never touch the edge */
  .container {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }

  .cart-layout {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* --- 3. HEADER --- */
  .nav-inner {
    height: 48px !important;
  }

  .nav-logo {
    font-size: 1.2rem !important;
    display: flex;
    align-items: center;
  }

  .nav-logo::before {
    width: 20px !important;
    height: 20px !important;
    margin-right: 6px !important;
  }

  .nav-icons {
    gap: 0.6rem !important;
    align-items: center !important;
  }

  .nav-icons svg {
    width: 17px !important;
    height: 17px !important;
  }

  /* --- 1. CHECKOUT PAGE (COMPACTED) --- */
  /* Reduce vertical spacing between checkout steps */
  .cart-table-card form>div {
    margin-bottom: 1.2rem !important;
  }

  /* Compact step headings */
  .cart-table-card h3[style*="font-family"] {
    font-size: 1.05rem !important;
    margin-bottom: 0.8rem !important;
    padding-bottom: 0.5rem !important;
  }

  /* Extremely compact form fields & margins */
  .form-group {
    margin-bottom: 0.75rem !important;
  }

  .form-group label {
    font-size: 0.65rem !important;
    margin-bottom: 0.25rem !important;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.65rem 0.8rem !important;
    font-size: 0.8rem !important;
    border-radius: 6px !important;
  }

  /* Compact payment cards spacing */
  .size-options {
    gap: 0.4rem !important;
  }

  .size-card {
    padding: 0.55rem 0.75rem !important;
    border-radius: 6px !important;
  }

  .size-name {
    font-size: 0.8rem !important;
  }

  .size-desc {
    font-size: 0.65rem !important;
  }

  /* Coupon input and Apply button alignment on mobile */
  .promo-code-wrap {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }

  .promo-code-wrap input {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 0.65rem 0.8rem !important;
    font-size: 0.8rem !important;
  }

  .promo-code-wrap button {
    padding: 0.65rem 1.1rem !important;
    font-size: 0.72rem !important;
    white-space: nowrap !important;
  }

  /* Compact Place Order button */
  .checkout-btn {
    position: relative !important;
    display: block !important;
    margin-top: 1.2rem !important;
    padding: 0.8rem !important;
    font-size: 0.76rem !important;
    width: 100% !important;
  }

  /* Compact Order Summary card */
  .cart-summary-card {
    padding: 1rem !important;
    border-radius: 12px !important;
  }

  .cart-summary-card h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.8rem !important;
  }

  .summary-row {
    margin-bottom: 0.4rem !important;
    font-size: 0.78rem !important;
  }

  /* --- 2. PROFILE PAGE (COMPACTED) --- */
  .cart-table-card {
    padding: 1rem !important;
    border-radius: 12px !important;
  }

  .cart-table-card h4 {
    font-size: 1.05rem !important;
    margin-bottom: 0.7rem !important;
  }

  .user-avatar {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.15rem !important;
  }

  .cart-table-card h3[style*="font-size: 1.5rem"] {
    font-size: 1.2rem !important;
  }

  /* Spacers and padding reduction */
  .cart-layout {
    gap: 1rem !important;
    margin-top: 1rem !important;
  }

  main.container.section-pad {
    padding-top: 1rem !important;
    padding-bottom: 2.5rem !important;
  }

  .breadcrumb {
    margin-bottom: 0.8rem !important;
    font-size: 0.76rem !important;
  }

  /* Order journey list clean styling */
  #ordersListWrapper {
    gap: 0.85rem !important;
  }

  #ordersListWrapper .cart-item,
  .cart-summary-card .cart-item {
    padding: 0.75rem !important;
    border-radius: 8px !important;
  }

  /* Footer responsive polish */
  .footer {
    padding: 2rem 0 1.2rem !important;
  }

  .footer-grid {
    gap: 1.2rem !important;
  }
}

@media (max-width: 600px) {

  /* Stack form column grid (Name/Phone, etc.) */
  .cart-table-card form div[style*="display: grid"],
  .cart-table-card form div[style*="display:grid"] {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  /* Payment methods option layout */
  .size-options {
    grid-template-columns: 1fr !important;
  }

  .size-card {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.65rem 0.9rem !important;
    text-align: left !important;
  }

  .size-card .size-desc {
    text-align: right !important;
  }

  /* Clean order items card display on mobile */
  #ordersListWrapper .cart-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.5rem !important;
  }

  #ordersListWrapper .cart-item-img {
    width: 48px !important;
    height: 48px !important;
  }

  #ordersListWrapper .cart-item-info {
    margin-left: 0 !important;
  }

  #ordersListWrapper div[style*="text-align: right"] {
    text-align: left !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px dashed var(--border-color);
    padding-top: 0.45rem;
    margin-top: 0.35rem;
  }
}

@media (max-width: 480px) {

  /* Auth & Dashboard cards layout padding reduction */
  main.container.section-pad[style*="align-items: center"] .cart-table-card {
    padding: 1.4rem 1rem !important;
  }

  .cart-table-card,
  .cart-summary-card {
    padding: 0.85rem !important;
  }

  .cart-table-card div[style*="display:flex; justify-content:space-between"] {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.85rem !important;
  }

  .cart-table-card div[style*="display:flex; justify-content:space-between"] .qty-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 6px 12px !important;
  }
}

/* Final header reset: the uploaded logo replaces the legacy bottle pseudo-icon. */
.navbar .nav-logo::before,
.mobile-menu .nav-logo::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  background: none !important;
}

/* Product-card layout: fixed overlay positions and compact, contained content. */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.product-card .product-img {
  position: relative;
  isolation: isolate;
}

.product-card .product-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
  z-index: 20 !important;
  max-width: calc(100% - 76px);
}

.product-card .wishlist-btn {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
  z-index: 21 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  transform: none;
}

.product-card .product-info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  height: auto;
  padding: 1rem 1.1rem 1.15rem;
}

.product-card .product-name {
  margin: 0 0 .35rem;
}

.product-card .product-notes {
  margin: 0 0 .75rem;
}

.product-card .product-price-row,
.product-card .product-pricing {
  margin-top: auto;
  margin-bottom: .75rem;
}

.product-card .add-to-cart,
.product-card .add-to-cart-btn,
.product-card .product-options-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: visible;
  white-space: normal;
}

/* WooCommerce product reviews. */
.reviews-section {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

.reviews-section > .section-title-small {
  margin: 0 0 1.25rem !important;
  padding: 0 0 .75rem !important;
  border: 0 !important;
  border-bottom: 1px solid var(--border-color) !important;
  background: transparent !important;
}

.reviews-section #reviews,
.reviews-section .woocommerce-Reviews {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(11, 37, 69, .05);
}

.reviews-section #comments,
.reviews-section #review_form_wrapper {
  float: none;
  width: 100%;
}

.reviews-section #comments {
  margin-bottom: 1.5rem;
}

.reviews-section .woocommerce-Reviews-title,
.reviews-section .comment-reply-title {
  display: block;
  margin: 0 0 .65rem;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 500;
  line-height: 1.25;
}

.reviews-section .commentlist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.reviews-section .commentlist li {
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.reviews-section .comment-form {
  display: grid;
  gap: .9rem;
}

.reviews-section .comment-form > p {
  margin: 0;
}

.reviews-section .comment-form label {
  display: block;
  margin-bottom: .4rem;
  color: var(--brand-primary);
  font-size: .86rem;
  font-weight: 600;
}

.reviews-section .comment-form textarea,
.reviews-section .comment-form input[type="text"],
.reviews-section .comment-form input[type="email"] {
  display: block;
  width: 100%;
  min-height: 46px;
  padding: .8rem .9rem;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: #fff;
  color: var(--text-primary);
  font: inherit;
}

.reviews-section .comment-form textarea {
  min-height: 130px;
  resize: vertical;
}

.reviews-section .comment-form-rating {
  padding: .8rem 1rem;
  border-radius: 10px;
  background: #f7f9fb;
}

.reviews-section .stars {
  margin: .3rem 0 0 !important;
  font-size: 1.35rem;
  line-height: 1;
}

.reviews-section .stars a {
  color: #e5b33f !important;
}

.reviews-section .form-submit {
  width: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.reviews-section .form-submit .submit,
.reviews-section input[type="submit"] {
  min-width: 150px;
  min-height: 46px;
  padding: .75rem 1.4rem;
  border: 1px solid var(--brand-primary);
  border-radius: 10px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 600px) {
  .product-card .product-badge {
    top: 8px !important;
    left: 8px !important;
    max-width: calc(100% - 58px);
  }

  .product-card .wishlist-btn {
    top: 8px !important;
    right: 8px !important;
    left: auto !important;
    width: 32px;
    height: 32px;
  }

  .product-card .product-info {
    padding: .8rem .85rem .9rem;
  }

  .product-card .product-name,
  .product-card .product-notes {
    min-height: 0;
  }

  .reviews-section {
    padding-block: 2rem;
  }

  .reviews-section #reviews,
  .reviews-section .woocommerce-Reviews {
    padding: 1rem;
    border-radius: 12px;
  }

  .reviews-section .form-submit .submit,
  .reviews-section input[type="submit"] {
    width: 100%;
  }
}

/* Mobile navigation access and touch-target hardening. */
.mobile-menu {
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.open {
  visibility: visible;
}

body.mobile-menu-is-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .navbar {
    z-index: 5000;
  }

  .nav-inner,
  .nav-icons {
    min-width: 0;
  }

  .nav-inner {
    height: 68px !important;
  }

  .nav-logo {
    min-width: 0;
    flex-shrink: 1;
  }

  .nav-logo {
    flex: 0 0 52px;
    width: 52px;
    height: 62px;
  }

  .hamburger {
    position: relative;
    z-index: 5001;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin: -10px -10px -10px 0;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    touch-action: manipulation;
  }

  .mobile-menu {
    z-index: 6001;
    height: 100dvh;
  }

  .mobile-menu-overlay {
    z-index: 6000;
  }

  .mobile-menu-close {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    touch-action: manipulation;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    height: 62px !important;
  }

  .nav-logo {
    flex-basis: 46px;
    width: 46px;
    height: 58px;
  }

  .mobile-menu-logo.nav-logo {
    flex-basis: 52px;
    width: 52px;
    height: 70px;
  }

  .nav-account-link {
    display: none !important;
  }

  .nav-icons > button,
  .nav-icons > a {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
  }

  .nav-icons {
    gap: 0 !important;
    flex: 0 0 auto;
  }
}

@media (max-width: 420px) {
  .nav-wishlist-link {
    display: none !important;
  }

  .nav-logo {
    font-size: 1rem !important;
    letter-spacing: .02em;
  }

  .nav-logo {
    flex-basis: 42px;
    width: 42px;
    height: 54px;
  }
}

/* Release 1.5.0: WooCommerce My Account experience. */
.ge-account-page {
  width: 100%;
  min-height: 72vh;
  margin-top: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.ge-account-heading {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: left;
}

.ge-account-heading h2 {
  margin-bottom: .35rem;
}

.ge-account-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.ge-account-sidebar,
.ge-account-content-card {
  min-width: 0;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(11, 37, 69, .06);
}

.ge-account-sidebar {
  position: sticky;
  top: 120px;
  overflow: hidden;
}

.ge-account-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--border-color);
}

.ge-account-sidebar-head h3 {
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
}

.ge-account-sidebar-head a {
  color: var(--brand-secondary);
  font-size: .76rem;
  font-weight: 700;
  white-space: nowrap;
}

.ge-account-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  background: linear-gradient(135deg, rgba(11, 37, 69, .045), rgba(29, 78, 216, .02));
}

.ge-account-identity .user-avatar {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 8px 20px rgba(11, 37, 69, .18);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.ge-account-user {
  min-width: 0;
}

.ge-account-user strong,
.ge-account-user span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ge-account-user strong {
  color: var(--brand-primary);
  font-size: 1rem;
}

.ge-account-user span {
  margin-top: .2rem;
  color: var(--text-muted);
  font-size: .76rem;
}

.ge-account-sidebar .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
  padding: .75rem;
}

.ge-account-sidebar .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: .3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ge-account-sidebar .woocommerce-MyAccount-navigation li {
  margin: 0;
  padding: 0;
  border: 0;
}

.ge-account-sidebar .woocommerce-MyAccount-navigation a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: .7rem .9rem;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.ge-account-sidebar .woocommerce-MyAccount-navigation a:hover {
  background: #f2f6fb;
  color: var(--brand-primary);
  transform: translateX(2px);
}

.ge-account-sidebar .woocommerce-MyAccount-navigation .is-active a {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 37, 69, .16);
}

.ge-account-content-card {
  min-height: 460px;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.ge-account-content-card .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  color: var(--text-secondary);
  line-height: 1.75;
}

.ge-account-content-card h2,
.ge-account-content-card h3,
.ge-account-content-card legend {
  margin: 0 0 1rem;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
}

.ge-account-content-card p {
  margin: 0 0 1rem;
}

.ge-account-content-card a {
  color: var(--brand-secondary);
  font-weight: 600;
}

.ge-account-content-card form {
  max-width: 820px;
}

.ge-account-content-card fieldset {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: 14px;
}

.ge-account-content-card .form-row {
  float: none;
  width: 100%;
  margin: 0 0 1rem;
}

.ge-account-content-card label {
  display: block;
  margin-bottom: .35rem;
  color: var(--brand-primary);
  font-size: .82rem;
  font-weight: 700;
}

.ge-account-content-card input,
.ge-account-content-card select,
.ge-account-content-card textarea {
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  padding: .75rem .9rem;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: #fff;
}

.ge-account-content-card input:focus,
.ge-account-content-card select:focus,
.ge-account-content-card textarea:focus {
  border-color: var(--brand-secondary);
  outline: 3px solid rgba(29, 78, 216, .1);
}

.ge-account-content-card button.button,
.ge-account-content-card a.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.15rem;
  border: 1px solid var(--brand-primary);
  border-radius: 10px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.ge-account-content-card address {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: #f8fafc;
  font-style: normal;
}

.ge-account-content-card .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ge-account-content-card .woocommerce-Addresses::before,
.ge-account-content-card .woocommerce-Addresses::after {
  display: none;
}

.ge-account-content-card .woocommerce-Address {
  float: none;
  width: 100%;
}

.ge-account-content-card table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.ge-account-content-card th,
.ge-account-content-card td {
  padding: .8rem;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.ge-account-content-card th {
  background: #f4f7fb;
  color: var(--brand-primary);
}

@media (max-width: 900px) {
  .ge-account-layout {
    grid-template-columns: 1fr;
  }

  .ge-account-sidebar {
    position: static;
  }

  .ge-account-sidebar .woocommerce-MyAccount-navigation ul {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .25rem;
    scrollbar-width: thin;
  }

  .ge-account-sidebar .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto;
  }

  .ge-account-sidebar .woocommerce-MyAccount-navigation a {
    padding-inline: 1rem;
  }
}

@media (max-width: 600px) {
  .ge-account-page {
    margin-top: 1.5rem;
  }

  .ge-account-sidebar,
  .ge-account-content-card {
    border-radius: 14px;
  }

  .ge-account-sidebar-head,
  .ge-account-identity,
  .ge-account-content-card {
    padding: 1rem;
  }

  .ge-account-content-card .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }

  .ge-account-content-card table,
  .ge-account-content-card thead,
  .ge-account-content-card tbody,
  .ge-account-content-card tr,
  .ge-account-content-card th,
  .ge-account-content-card td {
    display: block;
    width: 100%;
  }

  .ge-account-content-card thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .ge-account-content-card tr {
    padding: .75rem;
    border-bottom: 1px solid var(--border-color);
  }

  .ge-account-content-card td {
    padding: .45rem 0;
    border: 0;
  }
}

/* Assigned perfume-note taxonomy display. */
.perfume-notes-block {
  min-width: 0;
  padding: 1rem 0 .35rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.perfume-notes-block h2 {
  margin: 0 0 1rem;
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.perfume-notes-scroll {
  display: flex;
  gap: 1rem;
  max-width: 100%;
  padding: 0 0 .8rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.perfume-note-item {
  flex: 0 0 112px;
  min-width: 0;
  color: var(--brand-primary);
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
}

.perfume-note-image {
  display: block;
  width: 112px;
  height: 112px;
  margin-bottom: .55rem;
  overflow: hidden;
  border-radius: 22px;
  background: #f1f3f5;
}

.perfume-note-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.perfume-note-item:hover .perfume-note-image img {
  transform: scale(1.045);
}

.perfume-note-name {
  display: block;
  overflow-wrap: anywhere;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.25;
}

.perfume-note-placeholder,
.fragrance-note-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
}

.fragrance-card > .fragrance-note-placeholder {
  position: absolute;
  inset: 0;
}

.perfume-note-archive-hero.no-note-image {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

@media (max-width: 600px) {
  .perfume-notes-scroll {
    gap: .75rem;
  }

  .perfume-note-item {
    flex-basis: 88px;
  }

  .perfume-note-image {
    width: 88px;
    height: 88px;
    border-radius: 18px;
  }

  .perfume-note-name {
    font-size: .7rem;
  }
}

/* Product-card integrity: keep media, badges and variable-length content contained. */
.product-card {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}

.product-card .product-img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  overflow: hidden;
  background: #f8f9fa;
}

.product-card div.product-img > a {
  position: absolute;
  inset: 0;
  display: block;
}

.product-card .product-img img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: opacity .35s ease, transform .45s ease;
}

.product-card .product-img .product-img-hover {
  z-index: 2;
  opacity: 0;
}

.product-card:hover .product-img .product-img-hover,
.product-card:focus-within .product-img .product-img-hover {
  opacity: 1;
  transform: scale(1.035);
}

.product-card .product-badge {
  top: 12px;
  left: 12px;
  z-index: 5;
  max-width: calc(100% - 64px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}

.product-card .wishlist-btn {
  z-index: 6;
}

.product-card .product-info {
  min-width: 0;
  height: 100%;
}

.product-card .product-info > a {
  min-width: 0;
}

.product-card .product-name {
  display: -webkit-box;
  min-height: 2.6em;
  overflow: hidden;
  line-height: 1.3;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card .product-notes {
  display: -webkit-box;
  min-height: 2.6em;
  overflow: hidden;
  line-height: 1.3;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card .product-price-row,
.product-card .product-pricing {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .35rem .6rem;
  min-width: 0;
  margin-top: auto;
  margin-bottom: .8rem;
}

.product-card .product-price,
.product-card .product-original,
.product-card .product-discount {
  white-space: nowrap;
}

.product-card .add-to-cart,
.product-card .add-to-cart-btn,
.product-card .product-options-btn {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: .7rem;
  border: 1px solid var(--brand-primary);
  border-radius: 10px;
  background: var(--brand-primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 480px) {
  .product-card .product-badge {
    top: 6px;
    left: 6px;
    max-width: calc(100% - 44px);
    padding: 5px 8px;
    font-size: 8px;
    letter-spacing: .08em;
  }

  .product-card .product-name,
  .product-card .product-notes {
    min-height: 2.5em;
    line-height: 1.25;
  }

  .product-card .add-to-cart,
  .product-card .add-to-cart-btn,
  .product-card .product-options-btn {
    min-height: 36px;
    padding: .5rem;
    font-size: .6rem;
    letter-spacing: .06em;
  }
}

/* Release cascade locks — keep these last. */
.navbar .nav-logo::before,
.mobile-menu .nav-logo::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  background: none !important;
}

.product-card .wishlist-btn {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
  z-index: 30 !important;
  margin: 0 !important;
}

.product-card .product-info {
  flex: 1 1 auto;
  min-width: 0;
  height: auto !important;
}

.product-card .product-name,
.product-card .product-notes {
  min-height: 0;
}

.product-card .product-price-row,
.product-card .product-pricing {
  margin-top: .65rem;
}

@media (max-width: 600px) {
  .product-card .wishlist-btn {
    top: 8px !important;
    right: 8px !important;
    left: auto !important;
  }

  .product-card .product-info {
    padding: .8rem .85rem .9rem;
  }
}

/* Product page final cascade locks — keep thumbnail media inside the gallery. */
.product-gallery {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.product-gallery .thumbnail-row {
  display: flex !important;
  width: 100%;
  max-width: 100%;
  gap: .75rem;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

.product-gallery .thumbnail-row > img.thumb-img {
  position: static !important;
  display: block !important;
  flex: 0 0 76px !important;
  width: 76px !important;
  min-width: 76px !important;
  max-width: 76px !important;
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  object-fit: cover !important;
}

.related-products > .section-title-small {
  margin: 0 0 1.5rem !important;
  padding: 0 0 .75rem !important;
  border: 0 !important;
  border-bottom: 1px solid var(--border-color) !important;
  outline: 0 !important;
  background: transparent !important;
}

@media (max-width: 600px) {
  .product-gallery .thumbnail-row > img.thumb-img {
    flex-basis: 64px !important;
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
  }
}

/* Release 1.4.9: purchase controls, checkout and responsive cascade locks. */
.detail-qty-selector {
  display: grid !important;
  grid-template-columns: 43px 44px 43px;
  flex: 0 0 132px !important;
  width: 132px !important;
  min-width: 132px !important;
  height: 60px;
  align-items: stretch;
  overflow: hidden;
}

.detail-qty-selector > .qty-change-btn {
  position: relative;
  z-index: 2;
  display: inline-flex !important;
  width: 43px !important;
  min-width: 43px !important;
  height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.detail-qty-selector > .quantity {
  display: flex !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 100% !important;
}

.detail-qty-selector > .quantity input.qty {
  display: block !important;
  width: 44px !important;
  min-width: 44px !important;
}

.main-image-wrap #mainProductImg {
  opacity: 1;
  transform: scale(1);
  transition: opacity .24s ease, transform .32s ease;
}

.main-image-wrap #mainProductImg.is-changing {
  opacity: .18;
  transform: scale(.985);
}

/* Support both the classic checkout template and WooCommerce Checkout block. */
body.woocommerce-checkout .ge-checkout-page,
body.woocommerce-checkout .wp-block-woocommerce-checkout {
  width: min(100%, 1440px);
  max-width: 1440px;
  margin-inline: auto !important;
  padding: clamp(1.5rem, 4vw, 4rem) clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem) !important;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout *,
body.woocommerce-checkout .ge-checkout-page * {
  min-width: 0;
}

body.woocommerce-checkout input,
body.woocommerce-checkout select,
body.woocommerce-checkout textarea {
  max-width: 100%;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout {
  gap: clamp(1.5rem, 4vw, 4rem);
}

body.woocommerce-checkout .wc-block-components-sidebar {
  padding-left: 0 !important;
}

/* Safe global media containment prevents wide content from scattering pages. */
main,
section,
.container {
  min-width: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

.woocommerce table {
  max-width: 100%;
}

@media (max-width: 900px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout {
    display: flex !important;
    flex-direction: column !important;
  }

  body.woocommerce-checkout .wc-block-components-main,
  body.woocommerce-checkout .wc-block-components-sidebar {
    width: 100% !important;
  }

  .product-detail-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .product-gallery,
  .product-info-panel {
    width: 100%;
  }
}

@media (max-width: 600px) {
  body.woocommerce-checkout .ge-checkout-page,
  body.woocommerce-checkout .wp-block-woocommerce-checkout {
    padding: 1.25rem .9rem 3rem !important;
  }

  .detail-actions-row {
    display: grid !important;
    grid-template-columns: 132px minmax(0, 1fr) auto;
    width: 100%;
  }

  .detail-actions-row .add-to-cart-large {
    min-width: 0;
    padding-inline: .75rem;
  }

  .usp-row {
    gap: .75rem;
    overflow-x: auto;
  }
}

@media (max-width: 420px) {
  .detail-actions-row {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .detail-actions-row .wishlist-btn-large {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Release 1.7.0: final WooCommerce Blocks mobile-checkout cascade. */
@media (max-width: 600px) {
  body.woocommerce-checkout {
    overflow-x: hidden;
    background: #f4f7fb !important;
  }

  body.woocommerce-checkout .ge-checkout-page,
  body.woocommerce-checkout .wp-block-woocommerce-checkout {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 12px 10px 32px !important;
  }

  body.woocommerce-checkout .wc-block-components-sidebar-layout {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  body.woocommerce-checkout .wc-block-components-main {
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  body.woocommerce-checkout .wc-block-components-sidebar {
    position: static !important;
    display: block !important;
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid #dbe3ec !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 6px 18px rgba(11, 37, 69, .05) !important;
  }

  body.woocommerce-checkout .wc-block-checkout__contact-fields,
  body.woocommerce-checkout .wc-block-checkout__billing-fields,
  body.woocommerce-checkout .wc-block-checkout__shipping-fields,
  body.woocommerce-checkout .wc-block-checkout__payment-method,
  body.woocommerce-checkout .wc-block-checkout__terms {
    width: 100% !important;
    margin: 0 0 12px !important;
    padding: 14px !important;
    overflow: visible !important;
    border: 1px solid #dbe3ec !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 5px 16px rgba(11, 37, 69, .04) !important;
  }

  body.woocommerce-checkout .wc-block-components-checkout-step {
    margin: 0 !important;
    padding-left: 0 !important;
  }

  body.woocommerce-checkout .wc-block-components-checkout-step__heading {
    margin: 0 0 10px !important;
  }

  body.woocommerce-checkout .wc-block-components-checkout-step__title,
  body.woocommerce-checkout .wc-block-components-title {
    margin: 0 !important;
    font-size: 1.28rem !important;
    line-height: 1.2 !important;
  }

  body.woocommerce-checkout .wc-block-components-checkout-step__description {
    margin: 4px 0 0 !important;
    font-size: .8rem !important;
    line-height: 1.35 !important;
  }

  body.woocommerce-checkout .wc-block-components-address-form {
    gap: 8px !important;
  }

  body.woocommerce-checkout .wc-block-components-text-input,
  body.woocommerce-checkout .wc-block-components-combobox {
    margin: 0 !important;
  }

  body.woocommerce-checkout .wc-block-components-text-input input,
  body.woocommerce-checkout .wc-block-components-combobox input,
  body.woocommerce-checkout .wc-block-components-address-form select {
    min-height: 46px !important;
    height: 46px !important;
    padding: 16px 11px 5px !important;
    border: 1px solid #cdd7e0 !important;
    border-radius: 9px !important;
    font-size: 16px !important;
  }

  body.woocommerce-checkout .wc-block-components-text-input label,
  body.woocommerce-checkout .wc-block-components-combobox label {
    left: 11px !important;
    font-size: 11px !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary,
  body.woocommerce-checkout .wc-block-components-order-summary__content,
  body.woocommerce-checkout .wc-block-components-order-summary__content > div,
  body.woocommerce-checkout .wc-block-components-order-summary__content > ul {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary__button {
    min-height: 52px !important;
    padding: 12px 14px !important;
    border: 0 !important;
    border-bottom: 1px solid #e3e8ef !important;
    background: #f7f9fc !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary__button-text {
    font-size: 1.12rem !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary__content {
    display: grid !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) auto !important;
    gap: 9px !important;
    width: 100% !important;
    min-height: 78px !important;
    margin: 0 !important;
    padding: 9px !important;
    align-items: center !important;
    border: 1px solid #e0e6ee !important;
    border-radius: 11px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__image {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 58px !important;
    min-width: 58px !important;
    height: 66px !important;
    margin: 0 !important;
    border-radius: 8px !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__description {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    min-width: 0 !important;
    padding: 0 !important;
  }

  body.woocommerce-checkout .wc-block-components-product-name {
    margin: 0 0 2px !important;
    font-size: .9rem !important;
    line-height: 1.25 !important;
  }

  body.woocommerce-checkout .wc-block-components-product-metadata,
  body.woocommerce-checkout .wc-block-components-product-details,
  body.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices {
    margin: 0 !important;
    font-size: .68rem !important;
    line-height: 1.3 !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
    grid-column: 3 !important;
    grid-row: 1 / span 2 !important;
    align-self: center !important;
    justify-self: end !important;
    font-size: .88rem !important;
    line-height: 1.25 !important;
    text-align: right !important;
    white-space: nowrap;
  }

  body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-coupon,
  body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-wrapper {
    margin: 0 !important;
    padding: 11px 14px !important;
    border: 0 !important;
    border-top: 1px solid #e3e8ef !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-item {
    min-height: 34px !important;
  }

  body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-footer-item {
    min-height: 58px !important;
    padding: 12px 14px !important;
  }

  body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
  body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 1.1rem !important;
  }

  body.woocommerce-checkout .wc-block-components-notice-banner {
    margin: 8px 0 0 !important;
    padding: 11px !important;
    border-radius: 10px !important;
    font-size: .8rem !important;
    line-height: 1.4 !important;
  }

  body.woocommerce-checkout .wc-block-checkout__add-note,
  body.woocommerce-checkout .wc-block-checkout__terms {
    font-size: .8rem !important;
    line-height: 1.4 !important;
  }
}

/* Release 1.7.2: centered promotion content and sorting removal. */
.promo-banner .promo-content {
  display: flex;
  width: min(calc(100% - 32px), 720px);
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  text-align: center;
}

.promo-banner .promo-content h2 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1.2rem !important;
  text-align: center;
  text-wrap: balance;
}

.promo-banner .promo-content .promo-cta {
  align-self: center;
  margin-inline: auto;
}

.woocommerce-ordering,
form.woocommerce-ordering,
.wc-block-product-results-count + .wc-block-catalog-sorting,
.wc-block-catalog-sorting,
[data-block-name="woocommerce/catalog-sorting"] {
  display: none !important;
}

@media (max-width: 600px) {
  .promo-banner .promo-content {
    width: min(calc(100% - 24px), 520px);
  }

  .promo-banner .promo-content h2 {
    max-width: 360px !important;
    margin-bottom: .8rem !important;
    line-height: 1.25;
  }
}

/* Release 1.7.5: definitive order-summary product-row repair. */
body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-components-order-summary *,
body.woocommerce-checkout .wc-block-components-totals-wrapper,
body.woocommerce-checkout .wc-block-components-totals-wrapper * {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

body.woocommerce-checkout .wc-block-components-order-summary__content,
body.woocommerce-checkout .wc-block-components-order-summary__content > div,
body.woocommerce-checkout .wc-block-components-order-summary__content > ul,
body.woocommerce-checkout .wc-block-components-order-summary__content .wc-block-components-order-summary-item__wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-order-summary__content {
  display: grid !important;
  gap: 10px !important;
  padding: 12px !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  grid-template-areas:
    "image description"
    "image total" !important;
  gap: 5px 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 90px !important;
  margin: 0 !important;
  padding: 12px !important;
  align-items: start !important;
  overflow: hidden !important;
  border: 1px solid #dfe6ee !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image {
  position: relative !important;
  inset: auto !important;
  grid-area: image !important;
  display: block !important;
  width: 64px !important;
  min-width: 64px !important;
  max-width: 64px !important;
  height: 76px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 9px !important;
  background: #f0f4f8 !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__description {
  grid-area: description !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 36px 0 0 !important;
  overflow: visible !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__description > *,
body.woocommerce-checkout .wc-block-components-product-name,
body.woocommerce-checkout .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-product-details,
body.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices {
  width: auto !important;
  max-width: 100% !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

body.woocommerce-checkout .wc-block-components-product-name {
  display: block !important;
  margin: 0 0 3px !important;
  font-size: .95rem !important;
  line-height: 1.3 !important;
}

body.woocommerce-checkout .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-product-details {
  display: -webkit-box !important;
  margin: 2px 0 0 !important;
  overflow: hidden !important;
  color: var(--text-muted) !important;
  font-size: .72rem !important;
  line-height: 1.35 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 3px 7px !important;
  margin: 3px 0 0 !important;
  font-size: .75rem !important;
  line-height: 1.3 !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
  grid-area: total !important;
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  flex-wrap: wrap !important;
  gap: 4px 8px !important;
  align-self: end !important;
  justify-self: stretch !important;
  justify-content: flex-start !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  color: var(--brand-primary) !important;
  font-size: .92rem !important;
  line-height: 1.3 !important;
  text-align: left !important;
  white-space: normal !important;
}

body.woocommerce-checkout .wc-block-components-formatted-money-amount,
body.woocommerce-checkout .wc-block-components-product-price__value,
body.woocommerce-checkout .wc-block-components-order-summary-item__total-price .price {
  display: inline-block !important;
  width: auto !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
  position: absolute !important;
  z-index: 2;
  top: 4px !important;
  right: 4px !important;
}

@media (max-width: 600px) {
  body.woocommerce-checkout .wc-block-components-order-summary__content {
    gap: 8px !important;
    padding: 9px !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__wrapper {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 4px 9px !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    min-height: 78px !important;
    gap: 4px 9px !important;
    padding: 9px !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__image {
    width: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    height: 64px !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__description {
    padding-right: 28px !important;
  }

  body.woocommerce-checkout .wc-block-components-product-name {
    font-size: .86rem !important;
  }

  body.woocommerce-checkout .wc-block-components-product-metadata,
  body.woocommerce-checkout .wc-block-components-product-details {
    font-size: .66rem !important;
  }

  body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
    font-size: .84rem !important;
  }
}
/* Checkout address helper: keep Woo's bound input in the DOM while the
   customer uses a PIN-populated Town/City select. */
.wc-block-checkout .ge-pin-native-city {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.wc-block-checkout .ge-pin-town-select {
  width: 100%;
  min-height: 56px;
  padding: 16px 42px 10px 14px;
  color: #102e50;
  background: #fff;
  border: 1px solid #cad5e2;
  border-radius: 12px;
  font: inherit;
}

.wc-block-checkout .ge-pin-status {
  display: block;
  flex-basis: 100%;
  margin: 6px 4px 0;
  color: #087f5b;
  font-size: 12px;
  line-height: 1.35;
}

.wc-block-checkout .ge-pin-status.is-error {
  color: #b42318;
}

/* Keep the compact Order summary heading clean. Item prices and the final
   totals remain visible inside the expanded summary. */
body.woocommerce-checkout .wc-block-components-checkout-order-summary__title-price,
body.woocommerce-checkout .wc-block-checkout__order-notes + .wc-block-components-checkout-order-summary__title-price,
body.woocommerce-checkout .wc-block-components-checkout-step__heading-content > .wc-block-formatted-money-amount {
  display: none !important;
}

body.woocommerce-checkout .wc-block-checkout__contact-fields .ge-contact-phone-field {
  width: 100% !important;
  margin-top: 12px !important;
}

/* Themed checkout selects. The original WooCommerce select stays active and
   synchronized for validation, Store API updates and accessibility fallback. */
.wc-block-checkout .ge-checkout-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.wc-block-checkout .ge-checkout-select {
  position: relative;
  z-index: 3;
  width: 100%;
  font-family: inherit;
}

.wc-block-checkout .ge-checkout-select.is-open {
  z-index: 50;
}

.wc-block-checkout .ge-checkout-select__toggle {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px;
  color: #102e50;
  background: #fff;
  border: 1px solid #cad5e2;
  border-radius: 12px;
  font: inherit;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.wc-block-checkout .ge-checkout-select__toggle:hover,
.wc-block-checkout .ge-checkout-select__toggle:focus-visible {
  border-color: #315c88;
  box-shadow: 0 0 0 3px rgba(16, 46, 80, .1);
  outline: 0;
}

.wc-block-checkout .ge-checkout-select__toggle i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.wc-block-checkout .ge-checkout-select.is-open .ge-checkout-select__toggle i {
  transform: rotate(225deg) translate(-2px, -2px);
}

.wc-block-checkout .ge-checkout-select__menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  display: none;
  max-height: min(300px, 45vh);
  padding: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  border: 1px solid #d8e1eb;
  border-radius: 13px;
  box-shadow: 0 16px 38px rgba(16, 46, 80, .16);
}

.wc-block-checkout .ge-checkout-select.is-open .ge-checkout-select__menu {
  display: block;
}

.wc-block-checkout .ge-checkout-select__option {
  display: block;
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  color: #26384c;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font: inherit;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.wc-block-checkout .ge-checkout-select__option:hover,
.wc-block-checkout .ge-checkout-select__option:focus-visible {
  color: #102e50;
  background: #eef4fa;
  outline: 0;
}

.wc-block-checkout .ge-checkout-select__option.is-selected {
  color: #fff;
  background: #102e50;
}

@media (max-width: 600px) {
  .wc-block-checkout .ge-checkout-select__menu {
    max-height: 260px;
  }
}
