/* ═══════════════════════════════════════════
   CHALÔ E-COMMERCE — Design System & Styles
   Colors extracted from brand identity:
   - Navy:    #0a2540 (dark logo background)
   - Cream:   #f5e6b8 (light logo background)
   ═══════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand Palette */
  --navy: #0a2540;
  --primary-color: #0a2540;
  --navy-light: #132f4c;
  --navy-medium: #0e3158;
  --cream: #f5e6b8;
  --cream-light: #faf3e0;
  --cream-dark: #e8d5a0;
  --gold: #c9a84c;
  --gold-light: #dfc274;
  --gold-dark: #a8872e;
  --white: #fefcf7;
  --text-dark: #0a2540;
  --text-muted: #5a6a7a;
  --text-light: #8a9aaa;
  --border: rgba(10, 37, 64, 0.08);
  --border-gold: rgba(201, 168, 76, 0.3);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
  --duration-slower: 800ms;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.06), 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.08), 0 2px 4px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.12), 0 4px 12px rgba(10, 37, 64, 0.06);
  --shadow-xl: 0 24px 60px rgba(10, 37, 64, 0.16), 0 8px 20px rgba(10, 37, 64, 0.08);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.2);
}


/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream-light);
  background-color: var(--navy); /* Garante que o topo e status bar no iOS fiquem no azul marinho da marca */
}

html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track {
  background: var(--cream-light);
}

html::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: var(--radius-full);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

ul {
  list-style: none;
}


/* ── Cursor Glow ── */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
}


/* ── Reveal Animations ── */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out,
    transform 0.3s ease-out;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease-out,
    transform 0.3s ease-out;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.3s ease-out,
    transform 0.3s ease-out;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease-out,
    transform 0.3s ease-out;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}


/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: calc(var(--space-md) + env(safe-area-inset-top, 0px)) var(--space-2xl) var(--space-md);
  transition: background var(--duration-normal) ease,
    box-shadow var(--duration-normal) ease,
    padding var(--duration-normal) ease;
}

.navbar.scrolled {
  background: rgba(254, 252, 247, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
  padding: calc(var(--space-sm) + env(safe-area-inset-top, 0px)) var(--space-2xl) var(--space-sm);
}

/* Transparent navbar styles (over dark navy hero section) */
.navbar:not(.scrolled) .nav-link {
  color: rgba(254, 252, 247, 0.95);
}

.navbar:not(.scrolled) .nav-link:hover {
  color: var(--cream);
}

.navbar:not(.scrolled) .nav-icon-btn {
  color: rgba(254, 252, 247, 0.95);
}

.navbar:not(.scrolled) .nav-icon-btn:hover {
  background: rgba(254, 252, 247, 0.12);
  color: var(--cream);
}

.navbar:not(.scrolled) .nav-hamburger span {
  background: rgba(254, 252, 247, 0.95);
}

.navbar:not(.scrolled) .cart-count {
  border: 1.5px solid var(--cream);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.navbar.scrolled .logo-img {
  height: 36px;
}

.nav-logo:hover .logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--gold-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-dark);
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease;
}

.nav-icon-btn:hover {
  background: var(--cream);
  color: var(--gold-dark);
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--duration-fast) var(--ease-spring),
    transform var(--duration-fast) var(--ease-spring);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all var(--duration-normal) var(--ease-out-expo);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ── Search Overlay ── */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 0 var(--space-2xl);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out-expo),
    padding var(--duration-normal) var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.06);
}

.search-overlay.open {
  max-height: 80px;
  padding: var(--space-md) var(--space-2xl);
}

.search-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: transparent;
  padding: var(--space-sm) 0;
  border-bottom: 1.5px solid var(--border);
  transition: border-color var(--duration-fast) ease;
}

.search-input:focus {
  border-color: var(--gold);
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-close {
  color: var(--text-muted);
  transition: color var(--duration-fast) ease;
}

.search-close:hover {
  color: var(--text-dark);
}


/* ── Mobile Menu ── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 80vw;
  height: 100vh;
  background: var(--navy-medium);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 70px var(--space-xl) var(--space-xl);
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out-expo);
  box-shadow: -10px 0 40px rgba(10, 37, 64, 0.15);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  transition: all var(--duration-fast) ease;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  box-sizing: border-box;
}

.mobile-nav-link svg {
  color: var(--gold);
  flex-shrink: 0;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(4px);
}


/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px var(--space-2xl) 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./assets/Hero Section - teste.jpeg');
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.78) 45%, rgba(10, 37, 64, 0.25) 75%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(10, 37, 64, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 40%);
  animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(10px, -10px) scale(1.02);
  }

  66% {
    transform: translate(-5px, 5px) scale(0.98);
  }
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(245, 230, 184, 0.15);
  border: 1px solid rgba(245, 230, 184, 0.25);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-xl);
}

.hero-highlight {
  font-style: normal;
  font-weight: 600;
  color: var(--cream);
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.6);
    transform-origin: left;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(254, 252, 247, 0.85);
  max-width: 480px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--cream);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--duration-normal) var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.hero-cta:hover::before {
  opacity: 1;
}

.hero-cta span,
.hero-cta svg {
  position: relative;
  z-index: 1;
}

.hero-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--navy);
}

.hero-cta svg {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

/* Hero Visual */
.hero-visual {
  display: block;
  position: relative;
  height: 100%;
  min-height: 600px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-float-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  background: rgba(254, 252, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-icon {
  color: var(--gold);
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(254, 252, 247, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(254, 252, 247, 0.55), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}


/* ═══════════════ TRUST BAR ═══════════════ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-2xl) var(--space-2xl);
}

.trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: background var(--duration-fast) ease;
}

.trust-item:hover {
  background: var(--cream-light);
}

.trust-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.trust-item:hover .trust-icon {
  transform: scale(1.08) rotate(-3deg);
}

.trust-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Carousel controls — hidden on desktop, visible on mobile */
.trust-carousel-controls {
  display: none;
}


/* ═══════════════ SECTION COMMON ═══════════════ */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-5xl) var(--space-2xl);
}

.featured .section-container {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.all-products .section-container {
  padding-top: var(--space-xl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}


/* ═══════════════ PRODUCTS GRID ═══════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.products-grid--full {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10, 37, 64, 0.25);
  transition: all var(--duration-normal) var(--ease-out-expo);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-light);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-actions {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  display: flex;
  gap: var(--space-sm);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 252, 247, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast) var(--ease-spring);
}

.product-action-btn:hover {
  background: var(--navy);
  color: var(--cream);
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 15;
}

.product-badge--new {
  background: var(--navy);
  color: var(--cream);
}

.product-badge--sale {
  background: var(--gold);
  color: var(--white);
}

.product-badge--out {
  top: var(--space-md);
  right: var(--space-md);
  left: auto;
  background: rgba(10, 37, 64, 0.88);
  color: var(--cream-light);
  border: 1px solid rgba(201, 168, 76, 0.4);
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.15);
  letter-spacing: 0.06em;
  z-index: 15;
}

.product-card-info {
  padding: var(--space-lg);
}

.product-card-category {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-xs);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.product-card-price {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 2px;
  min-height: 42px;
}

.product-price-current {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.product-price-old {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
}


/* ═══════════════ BANNER CTA ═══════════════ */
.banner-cta {
  background: var(--cream-light);
  padding: var(--space-2xl);
}

.banner-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
}

.banner-cta-image {
  height: 100%;
  min-height: 480px;
}

.banner-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cta-content {
  padding: var(--space-3xl);
  color: var(--cream);
}

.banner-cta-content .section-tag {
  color: var(--gold-light);
}

.banner-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-xl);
}

.banner-cta-title em {
  color: var(--gold-light);
  font-style: italic;
}

.banner-cta-desc {
  font-size: 0.95rem;
  color: rgba(245, 230, 184, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 420px;
}

.banner-cta .hero-cta {
  background: var(--gold);
  color: var(--navy);
}

.banner-cta .hero-cta::before {
  background: linear-gradient(135deg, var(--cream), var(--gold-light));
}


/* ═══════════════ CATEGORIES ═══════════════ */
.categories {
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  transition: all var(--duration-normal) var(--ease-out-expo);
  transition-delay: calc(var(--delay, 0) * 80ms);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-image {
  flex: 1;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(10, 37, 64, 0.85), transparent);
  color: var(--cream);
}

.category-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.category-count {
  font-size: 0.72rem;
  opacity: 0.7;
  letter-spacing: 0.04em;
}


/* ═══════════════ FILTER BAR ═══════════════ */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-xs);
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--duration-fast) var(--ease-out-expo);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.filter-btn.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}


/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-4xl) var(--space-2xl) 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(245, 230, 184, 0.1);
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245, 230, 184, 0.6);
  margin-bottom: var(--space-xl);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 230, 184, 0.15);
  color: var(--cream);
  transition: all var(--duration-fast) ease;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  color: var(--cream);
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(245, 230, 184, 0.55);
  transition: color var(--duration-fast) ease;
}

.footer-links-group a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245, 230, 184, 0.3);
}


/* ═══════════════ CART DRAWER ═══════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out-expo);
  box-shadow: -20px 0 60px rgba(10, 37, 64, 0.1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
}

.cart-close {
  color: var(--text-muted);
  transition: color var(--duration-fast) ease;
}

.cart-close:hover {
  color: var(--text-dark);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: var(--space-md);
  color: var(--text-light);
}

.cart-empty p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.cart-empty span {
  font-size: 0.85rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
  animation: cartItemIn var(--duration-normal) var(--ease-out-expo);
}

@keyframes cartItemIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-light);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2px 4px;
  width: fit-content;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.08);
  transition: all var(--duration-fast) ease;
}

.qty-btn:hover {
  background: var(--navy);
  color: var(--cream);
}

.qty-btn:active {
  transform: scale(0.9);
}

.qty-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: var(--text-light);
  padding: var(--space-sm);
  transition: color var(--duration-fast) ease;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-lg);
}

.cart-coupon-wrapper {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.cart-coupon-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-coupon-input {
  flex: 1;
  background: var(--cream-light);
  border: 1px solid rgba(10, 37, 64, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--navy);
  outline: none;
  transition: all var(--duration-fast) ease;
  text-transform: uppercase;
}

.cart-coupon-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.1);
}

.cart-coupon-input::placeholder {
  color: var(--text-light);
  text-transform: none;
}

.cart-coupon-btn {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.cart-coupon-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.cart-coupon-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: transparent;
  color: var(--text-light);
  border-color: var(--border);
}

.cart-coupon-message {
  font-size: 0.75rem;
  margin-top: 6px;
  text-align: left;
}

.cart-coupon-message.success {
  color: #16a34a;
}

.cart-coupon-message.error {
  color: #dc2626;
}

.cart-discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--gold-dark);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-lg);
}

.cart-total span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cart-total strong {
  font-size: 1.3rem;
  color: var(--navy);
}

.cart-checkout-btn {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.cart-checkout-btn:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}


/* ═══════════════ PRODUCT SCREEN ═══════════════ */
.product-screen {
  width: 100%;
  min-height: 100vh;
  background: var(--white);
  z-index: 2000;
  display: block; /* controlled via JS inline display or class */
}

.product-screen-back {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  z-index: 100;
  height: 44px;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-full);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-fast) ease;
}

.product-screen-back:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-lg);
}

.quickview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto; gap: 40px; align-items: center;
}

.quickview-image {
  background: var(--cream-light);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 600px;
}

.quickview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.quickview-info {
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quickview-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-md);
}

.quickview-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.quickview-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.quickview-purchase-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.quickview-price {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 4px;
}

.quickview-current-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.quickview-old-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.quickview-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.quickview-add-btn:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.size-btn {
  padding: 8px 16px;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.size-btn:hover:not(:disabled) {
  border-color: var(--gold);
}

.size-btn.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.size-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1200px) {

  .products-grid,
  .products-grid--full {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 968px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.94) 40%, rgba(10, 37, 64, 0.72) 100%);
  }

  .hero-content {
    text-align: center;
    gap: var(--space-xl);
    align-items: center;
  }

  .hero-text {
    align-items: center;
    margin: 0 auto;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl) var(--space-md);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .quickview-content {
    grid-template-columns: 1fr;
  }

  .quickview-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    max-height: none;
    min-height: auto;
  }

  .quickview-image img {
    min-height: auto;
    height: 100%;
  }

  .quickview-info {
    padding: var(--space-md) var(--space-lg);
  }

  .quickview-category {
    margin-bottom: var(--space-xs);
    font-size: 0.68rem;
  }

  .quickview-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
  }

  .quickview-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
  }

  .quickview-purchase-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: var(--space-sm);
  }

  .quickview-add-btn {
    padding: var(--space-sm) var(--space-xl);
    font-size: 0.85rem;
  }
}

/* Touchscreens and Mobile-specific UX/UI enhancements */
@media (hover: none) or (max-width: 1024px) {

  /* Display add-to-cart dynamically as floating button on image card */
  .product-card-actions {
    opacity: 1;
    bottom: var(--space-sm);
    right: var(--space-sm);
    left: auto;
    transform: none;
    pointer-events: auto;
  }

  /* Hide quickview button in list to avoid cluttering */
  .product-action-btn[data-action="quickview"] {
    display: none;
  }

  .product-action-btn[data-action="addtocart"] {
    background: var(--navy);
    color: var(--cream);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gold);
    width: 38px;
    height: 38px;
  }

  /* Tap scale feedback (mimicking native app haptics) */
  .product-card:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-sm);
  }

  .hero-cta:active,
  .product-action-btn:active,
  .filter-btn:active,
  .quickview-add-btn:active {
    transform: scale(0.96);
  }
}

@media (max-width: 768px) {

  .products-grid,
  .products-grid--full {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .product-card-info {
    padding: var(--space-md);
  }

  .product-card-name {
    font-size: 1rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .navbar {
    padding: calc(var(--space-md) + env(safe-area-inset-top, 0px)) var(--space-lg) var(--space-md);
  }

  .navbar.scrolled {
    padding: calc(var(--space-sm) + env(safe-area-inset-top, 0px)) var(--space-lg) var(--space-sm);
  }

  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(100px + env(safe-area-inset-top, 0px)) var(--space-lg) calc(60px + env(safe-area-inset-bottom, 0px));
    background-color: var(--navy);
  }

  .hero::before {
    background-position: 30% center;
  }

  .hero::after {
    background: linear-gradient(180deg, 
      rgba(10, 37, 64, 0.94) 0%, 
      rgba(10, 37, 64, 0.82) 45%, 
      rgba(10, 37, 64, 0.7) 70%, 
      rgba(10, 37, 64, 0.98) 100%
    );
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
  }

  .hero-text {
    align-items: flex-start;
    width: 100%;
  }

  .hero-tag {
    font-size: 0.78rem;
    padding: 8px 18px;
    margin-bottom: var(--space-2xl);
  }

  .hero-title {
    font-size: clamp(2.3rem, 8.5vw, 3.3rem);
    line-height: 1.16;
    margin-bottom: var(--space-2xl);
  }

  .hero-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(254, 252, 247, 0.9);
    margin-bottom: var(--space-3xl);
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-cta {
    width: fit-content;
    padding: 12px 24px;
    font-size: 0.82rem;
    font-weight: 500;
  }

  .hero-scroll-indicator {
    display: flex;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    opacity: 0.75;
    z-index: 5;
  }

  .hero-scroll-indicator .scroll-line {
    height: 26px;
  }

  /* Trust Bar Carousel */
  .trust-bar {
    padding: var(--space-lg) var(--space-lg);
    position: relative;
  }

  .featured .section-container {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
  }

  .trust-inner {
    display: flex;
    overflow: hidden;
    gap: 0;
  }

  .trust-item {
    min-width: 100%;
    padding: var(--space-lg) var(--space-md);
    justify-content: center;
    transform: translateX(0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
  }

  .trust-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
  }

  .trust-arrow {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
  }

  .trust-arrow:hover {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
  }

  .trust-arrow:active {
    transform: scale(0.92);
  }

  .trust-dots {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .trust-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--border);
    transition: all var(--duration-normal) ease;
    cursor: pointer;
  }

  .trust-dot.active {
    background: var(--gold-dark);
    width: 20px;
  }

  .filter-bar {
    justify-content: flex-start;
    gap: var(--space-xs);
    margin-right: calc(-1 * var(--space-lg));
    padding-right: var(--space-xl);
  }

  .filter-btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {

  .products-grid,
  .products-grid--full {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 0.92rem;
  }

  .quickview-add-btn span {
    display: none;
  }

  .quickview-add-btn {
    padding: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
}


/* ═══════════════ EXTRA ANIMATIONS ═══════════════ */
/* Add to cart button pulse */
@keyframes addPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.product-action-btn.pulsing {
  animation: addPulse 0.4s var(--ease-spring);
}

/* Product card stagger */
.product-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease-out,
    transform 0.2s ease-out,
    box-shadow var(--duration-normal) var(--ease-out-expo),
    border-color var(--duration-normal) ease;
  will-change: opacity, transform;
}

.product-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Skeleton loading shimmer */
@keyframes skeletonShimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, var(--cream-light) 25%, var(--cream) 50%, var(--cream-light) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: var(--radius-md);
}


/* ═══════════════ ADDED TO CART TOAST ═══════════════ */
.toast {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-xl);
  z-index: 5000;
  opacity: 0;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast svg {
  color: var(--gold-light);
}


/* ═══════════════ USER ACCOUNT BADGE (NAVBAR) ═══════════════ */
.user-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  background: #10b981; /* Emerald active green */
  border: 2px solid var(--white);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.navbar:not(.scrolled) .user-badge {
  border-color: var(--navy);
}


/* ═══════════════ ACCOUNT MODAL & OVERLAY ═══════════════ */
.account-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity var(--duration-normal) ease, visibility var(--duration-normal) ease;
}

.account-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.account-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.96);
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(10, 37, 64, 0.35);
  border: 1px solid var(--border-gold);
  z-index: 2600;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.account-modal.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.account-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(10, 37, 64, 0.05);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--duration-fast) ease;
}

.account-close:hover {
  background: var(--navy);
  color: var(--cream);
}

/* Modal Tabs */
.account-header {
  padding: 1.5rem 1.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.account-tabs {
  display: flex;
  gap: 1rem;
}

.account-tab {
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.account-tab:hover {
  color: var(--navy);
}

.account-tab.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

/* Modal Body & Forms */
.account-body {
  padding: 1.75rem 1.5rem 2rem 1.5rem;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-title-group h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.form-title-group p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-wrapper > svg {
  position: absolute;
  left: 1rem;
  color: var(--text-light);
  pointer-events: none;
  transition: color var(--duration-fast) ease;
}

.input-wrapper input {
  width: 100%;
  padding: 0.8rem 3rem 0.8rem 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: all var(--duration-fast) ease;
}

.input-wrapper input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.input-wrapper input:focus + svg,
.input-wrapper input:focus ~ svg {
  color: var(--gold-dark);
}

.toggle-password {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: color var(--duration-fast) ease;
}

.toggle-password svg {
  position: static;
  left: auto;
  pointer-events: none;
}

.toggle-password:hover {
  color: var(--navy);
}

/* LGPD Checkbox */
.lgpd-consent-group {
  margin-top: 0.25rem;
  padding: 0.85rem;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
}

.lgpd-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  user-select: none;
}

.lgpd-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  background: var(--white);
  margin-top: 2px;
  position: relative;
  transition: all var(--duration-fast) ease;
}

.lgpd-checkbox-label input[type="checkbox"]:checked ~ .custom-checkbox {
  background: var(--gold);
  border-color: var(--gold);
}

.lgpd-checkbox-label input[type="checkbox"]:checked ~ .custom-checkbox::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lgpd-text {
  font-size: 0.8rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.lgpd-link {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.lgpd-link:hover {
  color: var(--navy);
}

/* Form Submit Button */
.account-submit-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--navy);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--duration-normal) var(--ease-out-expo);
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.2);
}

.account-submit-btn:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.3);
}

.account-switch-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.link-btn {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: inherit;
}

.link-btn:hover {
  color: var(--navy);
}

.form-error {
  padding: 0.65rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  text-align: center;
}

.form-success {
  padding: 0.65rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  text-align: center;
}

/* Profile View (Logged in) */
.account-profile-view {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.profile-avatar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.profile-avatar-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}

.profile-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.profile-details-card {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.profile-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.detail-label {
  color: var(--text-muted);
}

.logout-btn {
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: 1.5px solid #ef4444;
  color: #ef4444;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--duration-fast) ease;
}

.logout-btn:hover {
  background: #ef4444;
  color: var(--white);
}


/* ═══════════════ LGPD INFO MODAL ═══════════════ */
.lgpd-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) ease;
}

.lgpd-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.lgpd-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.96);
  width: 90%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-gold);
  z-index: 3100;
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.lgpd-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.lgpd-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.lgpd-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.lgpd-modal-close {
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px;
}

.lgpd-modal-body {
  padding: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.lgpd-modal-body h4 {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.lgpd-modal-body ul {
  padding-left: 1.25rem;
  margin-top: 0.35rem;
}

.lgpd-modal-body li {
  margin-bottom: 0.25rem;
}


/* ═══════════════ TOAST NOTIFICATION ═══════════════ */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--cream);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.3);
  z-index: 4000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-notification svg {
  color: var(--gold);
}


/* ═══════════════ MOBILE FLOATING CART BUTTON ═══════════════ */
.mobile-floating-cart {
  display: none;
}

@media (max-width: 768px) {
  /* Ocultar ícone de favoritos da navbar em dispositivos móveis */
  .nav-actions #favToggle {
    display: none !important;
  }

  /* Ocultar botão de adicionar ao carrinho na tela inicial (mobile) */
  .product-card .product-cart-btn {
    display: none !important;
  }

  /* Exibir botão flutuante no canto inferior direito apenas quando rolar para fora da hero */
  .mobile-floating-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    right: calc(1.5rem + env(safe-area-inset-right, 0px));
    width: 54px;
    height: 54px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--navy), var(--navy-medium));
    color: var(--cream);
    border: 1.5px solid var(--gold);
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.4), 0 2px 8px rgba(201, 168, 76, 0.25);
    z-index: 1800;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    pointer-events: none;
    transition: opacity 0.3s ease,
                transform 0.35s var(--ease-spring),
                visibility 0.3s ease,
                box-shadow var(--duration-fast) ease;
  }

  .mobile-floating-cart.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-floating-cart:active {
    transform: scale(0.92);
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.3);
  }

  .floating-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: scale(0);
    transition: opacity var(--duration-fast) var(--ease-spring),
                transform var(--duration-fast) var(--ease-spring);
  }

  .floating-cart-count.visible {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Client Profile Order Tracking ── */
.client-order-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.25rem;
  box-shadow: var(--shadow-sm);
}

.client-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px dashed var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}

.client-order-items {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-left: 1rem;
}

/* Steps Tracker */
.order-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.order-steps::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
}

.step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* Active State */
.order-step.completed .step-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.order-step.completed .step-label {
  color: var(--navy);
  font-weight: 600;
}

.order-step.current .step-dot {
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
  animation: pulse-step-glow 2s infinite;
}

.order-step.current .step-label {
  color: var(--navy);
  font-weight: 700;
}

@keyframes pulse-step-glow {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  70% { box-shadow: 0 0 0 5px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* ═══════════════ PRODUCT SLIDER ═══════════════ */
.product-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slider .product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.product-slider .slide-active {
  opacity: 1;
  z-index: 2;
}

.product-slider .slide-hidden {
  opacity: 0;
  z-index: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .product-card-image:hover .slider-btn {
    opacity: 1;
  }
}

.quickview-image .slider-btn {
  opacity: 1; /* Always visible in quickview */
}

.slider-btn:hover {
  background: white;
  color: var(--gold);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* ═══════════════ CORNER CART BUTTON ═══════════════ */
.product-card-image {
  position: relative; /* Ensure child absolute positioning works */
}

.product-cart-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy); /* Azul pequeno no canto */
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  opacity: 0; /* Hidden by default on desktop */
  transform: translateY(10px);
}

.product-card:hover .product-cart-btn,
.product-card-image:hover .product-cart-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-cart-btn:hover {
  background: var(--gold);
  transform: scale(1.1) translateY(0);
}

/* Mobile Adjustments for UI */
@media (max-width: 768px) {
  .product-cart-btn {
    display: none !important; /* Oculta botão de adicionar ao carrinho nos cards na versão mobile */
  }

  /* No mobile, oculta as setas nos cards da grade para que o 1º toque abra diretamente o pop-up */
  .product-card .slider-btn {
    display: none !important;
  }
}

/* Tamanhos Quickview */
.size-btn {
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.size-btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.size-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.size-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
  background: var(--bg-color);
}


body.product-screen-open .mobile-floating-cart { display: none !important; }


body.product-screen-open .nav-logo { display: none; }
body.product-screen-open .nav-back-btn { display: flex !important; }
.nav-back-btn { background: transparent; border: none; align-items: center; gap: 8px; font-weight: 500; font-size: 1rem; color: var(--navy); cursor: pointer; transition: transform 0.2s ease; }
.nav-back-btn:hover { transform: translateX(-4px); }


/* --------------- PRODUCT SCREEN INNER --------------- */
.product-screen-inner { max-width: 1200px; margin: 0 auto; padding: 100px var(--space-lg) 60px; }
@media (max-width: 768px) { .product-screen-inner { padding: 80px 0 40px; } }

.similar-products-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }
.similar-products-title { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 24px; text-align: center; }

.btn-minimalist { background: transparent; border: 1px solid var(--navy); color: var(--navy); padding: 12px 24px; border-radius: var(--radius-full); font-weight: 500; cursor: pointer; transition: all 0.3s ease; }
.btn-minimalist:hover { background: var(--navy); color: var(--white); }


.quickview-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
@media (max-width: 768px) { .quickview-image { border-radius: 0; box-shadow: none; } }
