/* =============================================================================
   BY NANCE — Main Stylesheet
   Premium B2B Webshop: Silk Flowers & Styling for Hotels, Restaurants & Professionals
   =============================================================================
   01. CSS Variables
   02. Reset & Base
   03. Typography
   04. Animations & Keyframes
   05. Utility / Shared Classes
   06. Buttons
   07. Urgency / Promo Banner
   08. Navigation
   09. Mobile Navigation
   10. Hero Section
   11. Value Strip
   12. About Section
   13. Gallery Section
   14. Products Preview (Homepage)
   15. Stats Section
   16. CTA Section
   17. Footer
   18. Shop Page — Hero, Filters, Products
   19. Product Cards (Shop)
   20. Cart Sidebar
   21. Checkout Modal
   22. Success Modal
   23. Toast Notifications
   24. Sticky Cart (Mobile)
   25. Trust Strip
   26. Responsive — 1024px, 768px, 480px
   ============================================================================= */


/* =============================================================================
   01. CSS VARIABLES
   ============================================================================= */

:root {
  --terra:        #DC9178;
  --terra-dark:   #C47A62;
  --terra-light:  #E8A690;
  --blush:        #FADCD0;
  --champagne:    #E8D5C4;
  --cream:        #FDF8F5;
  --warm-white:   #FFFBF9;
  --charcoal:     #2C2C2C;
  --soft-gray:    #6B6B6B;
  --light-gray:   #F5F2F0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm:    0 2px 8px rgba(180, 120, 100, 0.08);
  --shadow-md:    0 4px 20px rgba(180, 120, 100, 0.10);
  --shadow-lg:    0 8px 40px rgba(180, 120, 100, 0.12);
  --shadow-xl:    0 16px 60px rgba(180, 120, 100, 0.15);

  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);

  --nav-height:   70px;
  --banner-height: 42px;
}


/* =============================================================================
   02. RESET & BASE
   ============================================================================= */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--warm-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

ul, ol {
  list-style: none;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(220, 145, 120, 0.2);
  color: var(--charcoal);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--terra-light); }


/* =============================================================================
   03. TYPOGRAPHY
   ============================================================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--soft-gray);
  line-height: 1.7;
}

.section-overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--soft-gray);
  max-width: 560px;
  line-height: 1.7;
}


/* =============================================================================
   04. ANIMATIONS & KEYFRAMES
   ============================================================================= */

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

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

.fade-up {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.2s; }
.fade-up--delay-3 { transition-delay: 0.3s; }


/* =============================================================================
   05. UTILITY / SHARED CLASSES
   ============================================================================= */

/* Container util (used implicitly) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* =============================================================================
   06. BUTTONS
   ============================================================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--terra);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}

.btn-primary:hover::before {
  left: 150%;
}

.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 145, 120, 0.3);
}

.btn-primary--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--terra);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1.5px solid var(--champagne);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 32px;
  right: 32px;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}

.btn-secondary:hover {
  border-color: var(--terra);
  color: var(--terra);
  transform: translateY(-2px);
}

.btn-secondary:hover::after {
  transform: scaleX(1);
}

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--terra);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid var(--terra);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-outline-small:hover {
  background: var(--terra);
  color: #fff;
  transform: translateY(-1px);
}


/* =============================================================================
   07. URGENCY / PROMO BANNER
   ============================================================================= */

.urgency-banner {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1000;
  letter-spacing: 0.02em;
}

.urgency-banner .highlight {
  color: var(--terra);
  font-weight: 700;
}

.urgency-banner .countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.urgency-banner .countdown-unit {
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  min-width: 32px;
  text-align: center;
}


/* =============================================================================
   08. NAVIGATION
   ============================================================================= */

nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 251, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--champagne), transparent) 1;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: box-shadow 0.3s var(--ease);
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(180, 120, 100, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}

.logo img {
  height: 38px;
  width: auto;
}

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

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--soft-gray);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terra);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}

.lang-option {
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--soft-gray);
  border-radius: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-option.active {
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.lang-option:hover:not(.active) {
  color: var(--charcoal);
}

/* Phone link */
.nav-phone {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--soft-gray);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--terra);
}

/* Nav CTA button */
.nav-cta {
  padding: 10px 24px;
  background: var(--terra);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(220, 145, 120, 0.35), 0 0 0 3px rgba(220, 145, 120, 0.12);
}

/* Search box (shop page) */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 8px 16px 8px 36px;
  background: var(--light-gray);
  border: 1.5px solid transparent;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--charcoal);
  width: 180px;
  transition: all 0.3s var(--ease);
}

.search-box input::placeholder {
  color: var(--soft-gray);
}

.search-box input:focus {
  border-color: var(--terra-light);
  background: #fff;
  width: 220px;
}

.search-box::before {
  content: '';
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7' cy='7' r='5'/%3E%3Cline x1='11' y1='11' x2='14' y2='14'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* Cart button */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--charcoal);
  transition: color 0.3s var(--ease);
}

.cart-btn:hover {
  color: var(--terra);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--terra);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease-out);
}

.cart-count:not(:empty) {
  transform: scale(1);
}

/* Hamburger */
.mobile-menu,
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  width: 36px;
}

.mobile-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}


/* =============================================================================
   09. MOBILE NAVIGATION
   ============================================================================= */

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

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

.mobile-nav-content {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100vh;
  background: var(--warm-white);
  z-index: 9999;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}

.mobile-nav-overlay.open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s var(--ease);
}

.mobile-nav-close:hover {
  color: var(--terra);
}

.mobile-nav-content a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.3s var(--ease);
}

.mobile-nav-content a:hover {
  color: var(--terra);
}

.mobile-nav-lang {
  display: flex;
  gap: 8px;
  padding-top: 16px;
}

.mobile-nav-lang .lang-option {
  padding: 8px 20px;
  font-size: 0.85rem;
}


/* =============================================================================
   10. HERO SECTION
   ============================================================================= */

.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 50%, var(--blush) 100%);
  overflow: hidden;
  padding: 60px 0 80px;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(220, 145, 120, 0.12) 0%, rgba(232, 213, 196, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(220, 145, 120, 0.1);
  border: 1px solid rgba(220, 145, 120, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terra-dark);
  width: fit-content;
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
}

.hero-title em {
  font-style: italic;
  color: var(--terra);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--soft-gray);
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  flex-wrap: wrap;
}

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

.trust-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(220, 145, 120, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--soft-gray);
}

/* Hero Image Side */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 440px;
  margin-left: auto;
}

.hero-image-glow {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse, rgba(220, 145, 120, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(40px);
}

.hero-image-frame {
  position: relative;
  z-index: 1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(180, 120, 100, 0.22), 0 4px 20px rgba(180, 120, 100, 0.12);
}

.hero-portrait {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

/* Hero Floating Cards */
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  border-left: 3px solid var(--terra);
}

.hero-card--top-left {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.hero-card--bottom-right {
  bottom: 15%;
  right: -20px;
  animation-delay: 1.3s;
}

.hero-card--bottom-left {
  bottom: 5%;
  left: -10px;
  animation-delay: 2.6s;
}

.hero-card-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}

.hero-card-label {
  font-size: 0.72rem;
  color: var(--soft-gray);
  font-weight: 500;
  margin-top: 2px;
}

.hero-card-stars {
  color: var(--terra);
  font-size: 0.85rem;
  letter-spacing: 2px;
}


/* =============================================================================
   11. VALUE STRIP
   ============================================================================= */

.value-strip {
  background: var(--terra);
  padding: 20px 0;
}

.value-strip-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  position: relative;
}

.value-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
}

.value-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.value-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.value-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.value-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}


/* =============================================================================
   12. ABOUT SECTION
   ============================================================================= */

.about-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 3px solid var(--champagne);
}

.about-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50%       { box-shadow: 0 6px 28px rgba(220, 145, 120, 0.22); }
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}

.about-badge-label {
  font-size: 0.72rem;
  color: var(--soft-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-content p {
  font-size: 1rem;
  color: var(--soft-gray);
  line-height: 1.75;
}

.about-signature {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--ease);
}

.about-feature:hover {
  transform: translateY(-2px);
}

.about-feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 145, 120, 0.12);
  border-radius: 10px;
}

.about-feature h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.82rem;
  line-height: 1.5;
}


/* =============================================================================
   13. GALLERY SECTION
   ============================================================================= */

.gallery-section {
  padding: 100px 0;
  background: var(--cream);
}

.gallery-section .section-overline,
.gallery-section .section-title,
.gallery-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(232, 213, 196, 0.25);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 8px 32px rgba(180, 120, 100, 0.18);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover::after {
  opacity: 1;
}


/* =============================================================================
   14. PRODUCTS PREVIEW (Homepage)
   ============================================================================= */

.products-preview {
  padding: 100px 0;
  background: var(--warm-white);
}

.products-preview .section-overline,
.products-preview .section-title,
.products-preview .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(232, 213, 196, 0.3);
  transition: all 0.4s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--light-gray);
}

.product-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.18) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--terra);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  z-index: 1;
}

.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}

.product-card-category {
  font-size: 0.78rem;
  color: var(--soft-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-b2b-notice {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--terra-dark);
  font-weight: 500;
  font-style: italic;
  margin-top: 6px;
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 50px;
  border-left: 2px solid var(--terra);
}

.product-card-body .btn-outline-small {
  margin-top: 8px;
  align-self: flex-start;
}


/* =============================================================================
   15. STATS SECTION
   ============================================================================= */

.stats-section {
  padding: 80px 0;
  background: var(--cream);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--terra), var(--terra-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 10px;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--terra), var(--terra-light));
  border-radius: 2px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--soft-gray);
  font-weight: 500;
}


/* =============================================================================
   16. CTA SECTION
   ============================================================================= */

.cta-section {
  padding: 100px 0;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(220, 145, 120, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.cta-contact-item:hover {
  color: var(--terra-light);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(220, 145, 120, 0.3);
  transform: translateY(-2px);
}

.cta-contact-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  flex-shrink: 0;
}


/* =============================================================================
   17. FOOTER
   ============================================================================= */

.site-footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, #343434 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col--brand {
  padding-right: 32px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 4px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}

.footer-social-link:hover {
  background: var(--terra);
  transform: translateY(-2px) scale(1.15);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill 0.3s var(--ease);
}

.footer-social-link:hover svg {
  fill: #fff;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-links a::after {
  content: '→';
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease);
  font-size: 0.82rem;
  margin-left: 0;
}

.footer-links a:hover {
  color: var(--terra-light);
  padding-left: 4px;
  gap: 6px;
}

.footer-links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

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

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s var(--ease);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}


/* =============================================================================
   18. SHOP PAGE — Hero, Filters, Products
   ============================================================================= */

.shop-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
  padding: 60px 0 48px;
  text-align: center;
}

.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.shop-hero h1 span {
  color: var(--terra);
  font-style: italic;
}

.shop-hero p {
  font-size: 1.05rem;
  color: var(--soft-gray);
  max-width: 520px;
  margin: 0 auto;
}

.shop-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 28px;
}

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

.shop-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}

.shop-stat span {
  font-size: 0.78rem;
  color: var(--soft-gray);
}

/* Trust Strip */
.trust-strip {
  background: #fff;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.85rem;
  color: var(--soft-gray);
}

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

.trust-strip strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Filters */
.filters {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: rgba(255, 251, 249, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 213, 196, 0.3);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border: 1.5px solid var(--champagne);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--soft-gray);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: var(--terra);
  color: var(--terra);
}

.filter-tab.active {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}

.filter-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sort-select {
  padding: 8px 16px;
  border: 1.5px solid var(--champagne);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  background: #fff;
  cursor: pointer;
  appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B6B6B'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* Products Section */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.products-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.product-count {
  font-size: 0.88rem;
  color: var(--soft-gray);
}


/* =============================================================================
   19. PRODUCT CARDS (Shop — JS rendered)
   ============================================================================= */

/* .product-card is already defined — shop uses same base */

.product-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--light-gray);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-badges .product-badge {
  position: static;
}

.badge-bestseller {
  background: var(--terra) !important;
}

.badge-new {
  background: var(--charcoal) !important;
}

.badge-sale {
  background: #C0392B !important;
}

.badge-low {
  background: #E67E22 !important;
}

.quick-add {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 10px;
  background: #fff;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  z-index: 2;
  text-align: center;
}

.product-card:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.quick-add:hover {
  background: var(--terra);
  color: #fff;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terra);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

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

.price-old {
  font-size: 0.85rem;
  color: var(--soft-gray);
  text-decoration: line-through;
}

.price-vat {
  font-size: 0.72rem;
  color: var(--soft-gray);
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  margin-top: 6px;
}

.product-stock.in-stock {
  color: #27AE60;
}

.product-stock.low-stock {
  color: #E67E22;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27AE60;
}

.stock-dot.low {
  background: #E67E22;
  animation: pulse 2s infinite;
}


/* =============================================================================
   20. CART SIDEBAR
   ============================================================================= */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.45);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}

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

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 90vw);
  height: 100vh;
  background: #fff;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--light-gray);
}

.cart-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--soft-gray);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s var(--ease);
  line-height: 1;
}

.cart-close:hover {
  color: var(--charcoal);
}

/* Free shipping progress */
.cart-progress {
  padding: 16px 24px;
  background: var(--cream);
}

.cart-progress-text {
  font-size: 0.82rem;
  color: var(--soft-gray);
  margin-bottom: 8px;
}

.cart-progress-text strong {
  color: var(--terra);
  font-weight: 600;
}

.cart-progress-bar {
  height: 4px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.cart-progress-fill {
  height: 100%;
  background: var(--terra);
  border-radius: 4px;
  transition: width 0.5s var(--ease-out);
}

/* Cart items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}

.cart-empty-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

.cart-empty-sub {
  font-size: 0.88rem;
  color: var(--soft-gray);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  align-items: flex-start;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light-gray);
}

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

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--terra);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 6px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  width: fit-content;
  overflow: hidden;
}

.qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: background 0.2s var(--ease);
}

.qty-btn:hover {
  background: var(--champagne);
}

.qty-value {
  width: 36px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--soft-gray);
  cursor: pointer;
  font-size: 0.82rem;
  padding: 4px;
  transition: color 0.3s var(--ease);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: #C0392B;
}

/* Cart footer */
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--light-gray);
  background: #fff;
}

.cart-subtotal-row,
.cart-shipping-row,
.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--soft-gray);
  padding: 4px 0;
}

.cart-total-row {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--light-gray);
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--terra);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s var(--ease);
  text-align: center;
}

.checkout-btn:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(220, 145, 120, 0.3);
}

.cart-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--soft-gray);
}

.cart-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--soft-gray);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}

.cart-continue:hover {
  color: var(--terra);
}


/* =============================================================================
   21. CHECKOUT MODAL
   ============================================================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.5);
  backdrop-filter: blur(6px);
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}

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

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: min(680px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--ease-out);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--light-gray);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--soft-gray);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.3s var(--ease);
}

.modal-close:hover {
  color: var(--charcoal);
}

.modal-body {
  padding: 28px;
}

/* Checkout Steps */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.3s var(--ease);
}

.checkout-step.active {
  opacity: 1;
}

.checkout-step .step-number {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-gray);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--soft-gray);
  transition: all 0.3s var(--ease);
}

.checkout-step.active .step-number {
  background: var(--terra);
  color: #fff;
}

.checkout-step .step-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--soft-gray);
}

.checkout-step.active .step-label {
  color: var(--charcoal);
}

.checkout-step-divider {
  width: 32px;
  height: 1px;
  background: var(--champagne);
  margin: 0 12px;
}

.checkout-step-content {
  /* step content wrapper */
}

.checkout-step-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 20px;
}

/* Order Summary in checkout */
.checkout-order-summary {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.checkout-summary-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.checkout-summary-subtotal-row,
.checkout-summary-shipping-row,
.checkout-summary-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--soft-gray);
  padding: 3px 0;
}

.checkout-summary-total-row {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  border-top: 1px solid var(--champagne);
  padding-top: 12px;
  margin-top: 8px;
}

.order-vat-note {
  font-size: 0.75rem;
  color: var(--soft-gray);
  font-style: italic;
  margin-top: 4px;
}

/* Form elements */
.form-group {
  margin-bottom: 16px;
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--champagne);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(220, 145, 120, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-group input::placeholder {
  color: var(--soft-gray);
  opacity: 0.6;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Payment methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.payment-method {
  position: relative;
}

.payment-method input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-method-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 1.5px solid var(--champagne);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
}

.payment-method.selected .payment-method-inner,
.payment-method:has(input:checked) .payment-method-inner {
  border-color: var(--terra);
  background: rgba(220, 145, 120, 0.05);
  box-shadow: 0 0 0 3px rgba(220, 145, 120, 0.1);
}

.payment-method-inner:hover {
  border-color: var(--terra-light);
}

.payment-method-icon {
  font-size: 1.5rem;
}

.payment-method-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* Checkout buttons */
.checkout-nav-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.btn-back {
  padding: 12px 24px;
  background: var(--light-gray);
  color: var(--soft-gray);
  font-size: 0.88rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-back:hover {
  background: var(--champagne);
  color: var(--charcoal);
}

.place-order-btn {
  padding: 14px 32px;
  background: var(--terra);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.place-order-btn:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(220, 145, 120, 0.3);
}

.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--soft-gray);
}


/* =============================================================================
   22. SUCCESS MODAL
   ============================================================================= */

.success-modal {
  text-align: center;
  padding: 40px 28px;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: scaleIn 0.5s var(--ease-out);
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.success-subtitle {
  font-size: 1rem;
  color: var(--soft-gray);
  margin-bottom: 24px;
}

.success-order-number {
  display: inline-block;
  padding: 10px 24px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--terra);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.success-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.success-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--soft-gray);
}

.success-detail-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}


/* =============================================================================
   23. TOAST NOTIFICATIONS
   ============================================================================= */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


/* =============================================================================
   24. STICKY CART (Mobile)
   ============================================================================= */

.sticky-cart {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 12px 20px;
  background: #fff;
  border-top: 1px solid var(--light-gray);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.sticky-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--terra);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.sticky-cart-btn:hover {
  background: var(--terra-dark);
}


/* =============================================================================
   25. TRUST STRIP (shared)
   ============================================================================= */

/* Already defined above in Shop section */


/* =============================================================================
   26. RESPONSIVE
   ============================================================================= */

/* ---- 1024px: Tablet Landscape ---- */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

  .hero-image-wrap {
    max-width: 360px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-strip-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-col--brand {
    grid-column: span 2;
    padding-right: 0;
  }

  nav {
    padding: 0 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-phone {
    display: none;
  }
}


/* ---- 768px: Tablet Portrait ---- */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subtitle {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

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

  .hero-card--top-left,
  .hero-card--bottom-left {
    left: 0;
  }

  .hero-card--bottom-right {
    right: 0;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .search-box {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  nav {
    padding: 0 20px;
  }

  /* About */
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    padding: 0 20px;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 20px;
  }

  /* Stats */
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Value Strip */
  .value-strip-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 20px;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .footer-col--brand {
    grid-column: span 2;
  }

  .footer-bottom {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  /* Filters */
  .filters {
    padding: 12px 20px;
    flex-wrap: wrap;
  }

  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  /* Products section */
  .products-section {
    padding: 24px 20px 60px;
  }

  /* CTA */
  .cta-contact-info {
    flex-direction: column;
    gap: 16px;
  }

  /* Shop hero */
  .shop-stats {
    gap: 24px;
  }

  /* Payment methods */
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sticky cart visible */
  .sticky-cart {
    display: block;
  }

  /* Modal */
  .modal {
    width: 95vw;
    max-height: 85vh;
  }

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


/* ---- 480px: Mobile ---- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.72rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Gallery */
  .gallery-grid {
    grid-auto-rows: 180px;
    gap: 10px;
  }

  /* Products grid */
  .products-grid {
    gap: 10px;
  }

  .product-card-body {
    padding: 12px;
  }

  .product-card-title {
    font-size: 0.95rem;
  }

  .product-info {
    padding: 12px;
  }

  .product-name {
    font-size: 0.92rem;
  }

  /* Value strip */
  .value-strip-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Stats */
  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col--brand {
    grid-column: span 1;
  }

  /* About features */
  .about-features {
    grid-template-columns: 1fr;
  }

  /* Section spacing */
  .about-section,
  .gallery-section,
  .products-preview,
  .cta-section {
    padding: 60px 0;
  }

  .stats-section {
    padding: 48px 0;
  }

  /* Checkout steps */
  .checkout-steps {
    flex-wrap: wrap;
    gap: 8px;
  }

  .checkout-step-divider {
    width: 16px;
    margin: 0 4px;
  }

  /* Payment */
  .payment-methods {
    grid-template-columns: 1fr 1fr;
  }

  /* Trust strip */
  .trust-strip {
    padding: 12px 16px;
    gap: 16px;
    font-size: 0.78rem;
  }

  /* Shop hero */
  .shop-hero {
    padding: 40px 20px 32px;
  }

  .shop-stats {
    gap: 16px;
  }

  .shop-stat strong {
    font-size: 1.3rem;
  }

  /* Urgency banner */
  .urgency-banner {
    font-size: 0.78rem;
    padding: 8px 16px;
    gap: 8px;
  }

  /* Cart sidebar */
  .cart-sidebar {
    width: 100vw;
  }
}


/* =============================================================================
   PRINT STYLES
   ============================================================================= */

@media print {
  .urgency-banner,
  nav,
  .cart-sidebar,
  .cart-overlay,
  .modal-overlay,
  .toast,
  .sticky-cart,
  .mobile-nav-overlay {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
