/* ============================================
   PassoSeguro — Premium Ecommerce Styles
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #FFFFFF;
  --warm-white: #F4F6F9;
  --cream: #E8EDF2;
  --sand: #DAE1E8;
  --beige: #C2CCD6;
  --olive: #457B9D;
  --deep-green: #1D3557;
  --navy: #162740;
  --charcoal: #2D2D2D;
  --charcoal-light: #4A4A4A;
  --gold: #D97757;
  --gold-light: #ECA086;
  --red-sale: #C0392B;
  --border: #DAE1E8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal-light);
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--olive);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 680px;
  margin: 0 auto 48px;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1400px;
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
}

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

/* === TOP BAR === */
.top-bar {
  background: var(--deep-green);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.top-bar span {
  opacity: 0.9;
}

.top-bar strong {
  color: var(--gold-light);
}

/* === HEADER / NAV === */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--deep-green);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--deep-green); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--deep-green) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--olive) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--deep-green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--olive);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--deep-green);
  border: 2px solid var(--deep-green);
}

.btn--secondary:hover {
  background: var(--deep-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn--full {
  width: 100%;
}

.btn--cart {
  background: var(--deep-green);
  color: var(--white);
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  width: 100%;
}

.btn--cart:hover {
  background: var(--olive);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--buy {
  background: var(--gold);
  color: var(--white);
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  width: 100%;
}

.btn--buy:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Button pulse animation */
@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58, 90, 64, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(58, 90, 64, 0); }
}

.btn--pulse {
  animation: pulse-shadow 2.5s infinite;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 50%, var(--sand) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58,90,64,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,90,64,0.1);
  color: var(--deep-green);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--charcoal);
}

.hero h1 span {
  color: var(--deep-green);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.trust-item svg,
.trust-item .trust-icon {
  width: 20px;
  height: 20px;
  color: var(--olive);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.3s ease forwards;
}

.hero-image-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.hero-image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--cream) 0%, var(--sand) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--charcoal-light);
  font-size: 0.9rem;
}

.hero-image-placeholder .placeholder-icon {
  font-size: 4rem;
  opacity: 0.4;
}

.hero-promo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red-sale);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.hero-disclaimer {
  margin-top: 24px;
  padding: 12px 18px;
  background: rgba(58,90,64,0.06);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--charcoal-light);
  border-left: 3px solid var(--olive);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero { padding: 48px 0 60px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}

/* === PAIN POINTS === */
.pain-points {
  background: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pain-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.pain-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive);
}

.pain-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cream), var(--sand));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pain-card h4 {
  margin-bottom: 10px;
  color: var(--charcoal);
}

.pain-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* === WHY SECTION === */
.why-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.why-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--sand), var(--beige));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.4;
  box-shadow: var(--shadow-lg);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--deep-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.why-feature h4 {
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* === BENEFITS === */
.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.benefit-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--olive);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--deep-green), var(--olive));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
  transition: transform var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-card h4 {
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
}

/* === FEATURE DEEP DIVE === */
.feature-dive {
  background: var(--warm-white);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.feature-block:last-child {
  border-bottom: none;
}

.feature-block:nth-child(even) {
  direction: rtl;
}

.feature-block:nth-child(even) > * {
  direction: ltr;
}

.feature-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--cream), var(--sand));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.5;
  box-shadow: var(--shadow-md);
}

.feature-text h3 {
  margin-bottom: 16px;
}

.feature-text p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.feature-list li::before {
  content: '✓';
  color: var(--deep-green);
  font-weight: 700;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .feature-block,
  .feature-block:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
  }
}

/* === JOINT AWARENESS === */
.joint-awareness {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.joint-awareness::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.joint-awareness .section-label {
  color: var(--gold-light);
}

.joint-awareness h2 {
  color: var(--white);
}

.joint-awareness p {
  color: rgba(255,255,255,0.85);
}

.joint-awareness-content {
  max-width: 800px;
  margin: 0 auto;
}

.joint-awareness-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.joint-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.joint-point {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}

.joint-point:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.joint-point-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.joint-point p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
}

.joint-cta {
  margin-top: 48px;
  text-align: center;
}

.joint-disclaimer {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  border-left: 3px solid var(--gold);
}

/* === WHO IT IS FOR === */
.who-section {
  background: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.who-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.who-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.who-card h4 {
  margin-bottom: 8px;
}

.who-card p {
  font-size: 0.88rem;
}

/* === GALLERY === */
.gallery {
  background: var(--warm-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--cream), var(--sand));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--charcoal-light);
  text-align: center;
  padding: 16px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item .gallery-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--charcoal);
}

.gallery-item .placeholder-icon {
  font-size: 2rem;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

/* === REVIEWS === */
.reviews {
  background: var(--white);
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--olive), var(--deep-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

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

.review-meta {
  font-size: 0.78rem;
  color: var(--charcoal-light);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(58,90,64,0.08);
  color: var(--deep-green);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 4px;
}

/* === COMPARISON === */
.comparison {
  background: var(--cream);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--deep-green);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th.highlight {
  background: var(--olive);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--warm-white);
}

.comparison-table .check {
  color: var(--deep-green);
  font-weight: 700;
}

.comparison-table .cross {
  color: var(--charcoal-light);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.82rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
  }
}

/* === SHIPPING / TRUST === */
.trust-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.trust-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--deep-green), var(--olive));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--white);
}

.trust-card h4 {
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.85rem;
}

/* === PRODUCT PAGE === */
.product-section {
  background: var(--warm-white);
  padding: 80px 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.product-main-image {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--cream), var(--sand));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.5;
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-thumb {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--cream), var(--sand));
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--charcoal-light);
}

.product-thumb:hover,
.product-thumb.active {
  border-color: var(--deep-green);
}

.product-info {
  padding: 8px 0;
}

.product-breadcrumb {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

.product-breadcrumb a {
  color: var(--olive);
}

.product-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.product-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.product-rating .rating-text {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.product-price {
  margin-bottom: 20px;
}

.product-price .old-price {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  text-decoration: line-through;
  margin-right: 12px;
}

.product-price .new-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-green);
  font-family: 'Inter', sans-serif;
}

.product-price .save-badge {
  display: inline-flex;
  background: var(--red-sale);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: 12px;
  vertical-align: middle;
}

.product-promo {
  background: rgba(58,90,64,0.06);
  border: 1px solid rgba(58,90,64,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--deep-green);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-summary {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin-bottom: 24px;
  line-height: 1.75;
}

.product-bullets {
  margin-bottom: 28px;
}

.product-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.product-bullets li::before {
  content: '✓';
  color: var(--deep-green);
  font-weight: 700;
}

/* Color selector */
.product-options {
  margin-bottom: 24px;
}

.option-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.color-options {
  display: flex;
  gap: 12px;
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.color-swatch:hover,
.color-swatch.active {
  border-color: var(--deep-green);
  transform: scale(1.1);
}

.color-swatch.active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Quantity */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--charcoal);
}

.qty-btn:hover {
  border-color: var(--deep-green);
  background: var(--warm-white);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-value {
  width: 56px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.product-shipping-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--charcoal-light);
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.product-trust-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--charcoal-light);
}

.product-disclaimer {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--charcoal-light);
  border-left: 3px solid var(--olive);
}

@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-gallery {
    position: static;
  }
}

/* === FAQ === */
.faq-section {
  background: var(--warm-white);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--olive);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--deep-green);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--olive);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* === FINAL CTA === */
.final-cta {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.final-cta .trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.final-cta .trust-line span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === FOOTER === */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-payments {
  display: flex;
  gap: 12px;
}

.footer-payment-icon {
  width: 40px;
  height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.5);
}

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

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

/* === STICKY MOBILE CTA === */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.sticky-mobile-cta .sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-mobile-cta .sticky-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-green);
}

.sticky-mobile-cta .sticky-price .old {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  text-decoration: line-through;
  display: block;
  font-weight: 400;
}

.sticky-mobile-cta .btn {
  padding: 14px 28px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 24px;
  z-index: 10000;
  display: none;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
}

.cookie-text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-accept {
  background: var(--deep-green);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--olive);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* === CHECKOUT STYLES === */
.checkout-page {
  min-height: 100vh;
  background: var(--warm-white);
}

.checkout-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.checkout-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-breadcrumbs {
  font-size: 0.82rem;
  color: var(--charcoal-light);
}

.checkout-breadcrumbs a {
  color: var(--olive);
}

.checkout-breadcrumbs span {
  margin: 0 8px;
  color: var(--border);
}

.checkout-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--charcoal-light);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  padding: 40px 0 80px;
}

.checkout-main {
  padding-right: 24px;
}

.checkout-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 24px;
}

.checkout-section {
  margin-bottom: 36px;
}

.checkout-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-section-title .step-number {
  width: 28px;
  height: 28px;
  background: var(--deep-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Express checkout */
.express-checkout {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.express-checkout p {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.express-buttons {
  display: flex;
  gap: 12px;
}

.express-btn {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--charcoal);
}

.express-btn:hover {
  border-color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

.checkout-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--charcoal-light);
  font-size: 0.82rem;
}

.checkout-divider::before,
.checkout-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--deep-green);
  box-shadow: 0 0 0 3px rgba(58,90,64,0.12);
}

.form-group input::placeholder {
  color: var(--beige);
}

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

.form-group .optional {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  font-weight: 400;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--deep-green);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  cursor: pointer;
}

/* Payment */
.payment-options {
  margin-bottom: 20px;
}

.payment-option {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-option:hover,
.payment-option.active {
  border-color: var(--deep-green);
  background: rgba(58,90,64,0.03);
}

.payment-option input[type="radio"] {
  accent-color: var(--deep-green);
  width: 18px;
  height: 18px;
}

.payment-option-label {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.payment-option-icons {
  display: flex;
  gap: 8px;
}

.payment-icon {
  width: 36px;
  height: 24px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--charcoal-light);
}

.card-fields {
  padding: 20px;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  margin-top: 12px;
}

/* Order summary sidebar */
.order-product {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.order-product-img {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, var(--cream), var(--sand));
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0.5;
  position: relative;
}

.order-product-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.order-product-info {
  flex: 1;
}

.order-product-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.order-product-variant {
  font-size: 0.78rem;
  color: var(--charcoal-light);
}

.order-product-price {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.discount-field {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.discount-field input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--transition);
}

.discount-field input:focus {
  border-color: var(--deep-green);
}

.discount-field button {
  padding: 12px 20px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.discount-field button:hover {
  background: var(--deep-green);
}

.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--charcoal-light);
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 2px solid var(--charcoal);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.order-total .total-price {
  font-size: 1.3rem;
}

.sidebar-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.sidebar-trust span {
  font-size: 0.72rem;
  color: var(--charcoal-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Submit */
.checkout-submit {
  margin-top: 12px;
}

.checkout-submit .btn {
  font-size: 1.05rem;
  padding: 18px 36px;
}

.checkout-trust-text {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--charcoal-light);
}

/* Mobile sidebar toggle */
.mobile-summary-toggle {
  display: none;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.mobile-summary-toggle .toggle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-summary-toggle .toggle-label {
  font-size: 0.9rem;
  color: var(--olive);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-summary-toggle .toggle-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .checkout-main {
    padding-right: 0;
    order: 2;
  }
  .checkout-sidebar {
    order: 1;
    position: static;
    margin-bottom: 24px;
  }
  .mobile-summary-toggle {
    display: block;
  }
  .checkout-sidebar.collapsed .order-product,
  .checkout-sidebar.collapsed .discount-field,
  .checkout-sidebar.collapsed .order-line,
  .checkout-sidebar.collapsed .sidebar-trust {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Confirmation modal */
.confirmation-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.confirmation-overlay.visible {
  display: flex;
}

.confirmation-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.4s ease;
}

.confirmation-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--deep-green), var(--olive));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--white);
}

.confirmation-modal h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.confirmation-modal p {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* === LEGAL PAGES === */
.legal-page {
  padding: 40px 0 80px;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-page .last-updated {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page p {
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.legal-page ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page ul li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--charcoal-light);
}

.legal-page a {
  color: var(--olive);
  text-decoration: underline;
}

/* === UTILITIES === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-image-wrapper {
    animation: none;
  }
}
