/* ============================================
   Princess Touch Boutique - Stylesheet
   Typography: Cormorant Garamond + Jost + Great Vibes
   Palette: Soft pinks, rose gold, warm golds, cream
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Primary Colors */
  --pink-50: #FFF0F5;
  --pink-100: #FCE4EC;
  --pink-200: #F8BBD0;
  --pink-300: #F48FB1;
  --pink-400: #E8B4B8;
  --pink-500: #D4848A;
  --pink-600: #C06068;

  /* Gold / Rose Gold */
  --gold-50: #FFF8E7;
  --gold-100: #FFF0CD;
  --gold-200: #F5E6D0;
  --gold-300: #D4A373;
  --gold-400: #C8956E;
  --gold-500: #B8860B;
  --gold-600: #8B6914;
  --rose-gold: #E8B4B8;
  --rose-gold-dark: #C8956E;

  /* Neutrals */
  --cream: #FDF8F5;
  --cream-dark: #F5EDE8;
  --warm-white: #FFFAF7;
  --warm-gray-50: #FAF5F2;
  --warm-gray-100: #F0E8E3;
  --warm-gray-200: #E0D5CD;
  --warm-gray-300: #C4B5AA;
  --warm-gray-400: #9E8E82;
  --warm-gray-500: #7A6B60;
  --warm-gray-600: #5C4F45;
  --warm-gray-700: #3E342D;
  --warm-gray-800: #2A2320;
  --warm-gray-900: #1A1512;

  /* Semantic */
  --bg-primary: var(--warm-white);
  --bg-secondary: var(--cream);
  --bg-accent: var(--pink-50);
  --text-primary: var(--warm-gray-800);
  --text-secondary: var(--warm-gray-500);
  --text-muted: var(--warm-gray-400);
  --border-color: var(--warm-gray-100);
  --accent: var(--gold-300);
  --accent-dark: var(--gold-400);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* Spacing */
  --section-padding: 100px;
  --container-max: 1280px;
  --container-padding: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(42, 35, 32, 0.06);
  --shadow-md: 0 4px 12px rgba(42, 35, 32, 0.08);
  --shadow-lg: 0 8px 30px rgba(42, 35, 32, 0.1);
  --shadow-xl: 0 16px 50px rgba(42, 35, 32, 0.12);
  --shadow-glow: 0 0 30px rgba(212, 163, 115, 0.15);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

/* ---- Base Reset ---- */
*,
*::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-weight: 300;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

ul {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Utility ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-crown {
  margin-bottom: 16px;
  animation: preloaderFloat 2s ease-in-out infinite;
}

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

.preloader-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--warm-gray-700);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.preloader-bar {
  width: 160px;
  height: 2px;
  background: var(--warm-gray-100);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-300), var(--rose-gold));
  border-radius: 2px;
  animation: preloaderBar 1.8s ease-in-out forwards;
}

@keyframes preloaderBar {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: linear-gradient(90deg, var(--warm-gray-800), var(--warm-gray-700));
  color: var(--gold-100);
  padding: 10px var(--container-padding);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.announcement-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement-sparkle {
  color: var(--gold-300);
  font-size: 10px;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  transform: translateY(38px);
}

.header.scrolled {
  transform: translateY(0);
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-crown {
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--warm-gray-800);
  line-height: 1.1;
  letter-spacing: 1px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 3.5px;
  line-height: 1;
  margin-top: 2px;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-gray-600);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-300);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--warm-gray-800);
}

.nav-link:hover::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--warm-gray-600);
  transition: all var(--transition-fast);
}

.icon-btn:hover {
  background: var(--warm-gray-50);
  color: var(--warm-gray-800);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--gold-300);
  color: white;
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 4px;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.hamburger-line {
  width: 22px;
  height: 1.5px;
  background: var(--warm-gray-700);
  transition: all var(--transition-base);
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile Menu ---- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 18, 0.4);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active::before {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: var(--warm-white);
  transform: translateX(100%);
  transition: transform var(--transition-slower);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--warm-gray-600);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--warm-gray-700);
  border-bottom: 1px solid var(--warm-gray-50);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--gold-300);
}

.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--warm-gray-500);
}

.mobile-contact-link svg {
  width: 16px;
  height: 16px;
  color: var(--gold-300);
}

.mobile-social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.mobile-social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--warm-gray-50);
  color: var(--warm-gray-500);
  transition: all var(--transition-fast);
}

.mobile-social-links a:hover {
  background: var(--gold-300);
  color: white;
}

.mobile-social-links a svg {
  width: 16px;
  height: 16px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  color: white;
  border-color: var(--gold-300);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-color: var(--gold-400);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  background: transparent;
  color: var(--warm-gray-700);
  border-color: var(--warm-gray-200);
}

.btn-outline:hover {
  border-color: var(--gold-300);
  color: var(--gold-400);
  background: rgba(212, 163, 115, 0.05);
}

.btn-outline.btn-white {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline.btn-white:hover {
  background: white;
  color: var(--warm-gray-800);
  border-color: white;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 14px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
}

.btn-full {
  width: 100%;
}

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
}

.badge-new {
  background: var(--gold-300);
  color: white;
}

.badge-bestseller {
  background: var(--rose-gold);
  color: white;
}

.badge-limited {
  background: var(--warm-gray-700);
  color: white;
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px var(--container-padding) 80px;
  gap: 40px;
}

@media (min-width: 1024px) {
  .hero {
    padding: 140px 60px 80px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--pink-100);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--gold-100);
  bottom: -100px;
  left: -100px;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--pink-200);
  top: 50%;
  left: 40%;
  opacity: 0.2;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--warm-gray-200) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 163, 115, 0.1);
  border: 1px solid rgba(212, 163, 115, 0.2);
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 28px;
}

.hero-badge-sparkle {
  color: var(--gold-300);
  font-size: 10px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  color: var(--gold-300);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-title-main {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 300;
  color: var(--warm-gray-800);
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--warm-gray-500);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--warm-gray-400);
}

.hero-feature svg {
  width: 16px;
  height: 16px;
  color: var(--gold-300);
}

/* Hero Image Side */
.hero-image-side {
  display: none;
  position: relative;
  z-index: 1;
  flex: 0 0 420px;
}

@media (min-width: 1024px) {
  .hero-image-side {
    display: block;
  }
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--pink-100) 50%, var(--gold-200) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-mannequin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mannequin svg {
  width: 60%;
  height: auto;
}

.hero-image-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  color: var(--warm-gray-400);
  text-align: center;
}

.hero-image-size,
.placeholder-size {
  font-size: 11px;
  color: var(--warm-gray-300);
  margin-top: 4px;
}

.hero-image-accent-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold-300);
  border-radius: var(--radius-lg);
  opacity: 0.3;
}

.hero-image-accent-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-300), var(--rose-gold));
  border-radius: var(--radius-lg);
  opacity: 0.15;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: floatingBounce 3s ease-in-out infinite;
}

.floating-card-1 {
  top: 60px;
  left: -40px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 80px;
  right: -30px;
  animation-delay: 1.5s;
}

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

.floating-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink-50);
}

.floating-card-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold-300);
}

.floating-card-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-400);
}

.floating-card-title {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--warm-gray-700);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--warm-gray-300);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
  width: 16px;
  height: 16px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- Marquee ---- */
.marquee-section {
  padding: 20px 0;
  background: var(--warm-gray-800);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marqueeScroll 25s linear infinite;
  padding-right: 32px;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 300;
  color: var(--gold-200);
  white-space: nowrap;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee-dot {
  color: var(--gold-300);
  font-size: 10px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header-left {
  text-align: left;
  margin: 0 0 36px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--warm-gray-800);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--warm-gray-400);
  line-height: 1.7;
}

/* ---- Category Filter ---- */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--warm-gray-500);
  border: 1.5px solid var(--warm-gray-100);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  background: transparent;
}

.filter-btn:hover {
  border-color: var(--gold-300);
  color: var(--gold-400);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  color: white;
  border-color: var(--gold-300);
}

/* ---- Products Grid ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  transition: all var(--transition-base);
}

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

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image-placeholder {
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  transition: transform var(--transition-slow);
}

.product-image-placeholder svg {
  width: 32px;
  height: 32px;
  opacity: 0.8;
}

.product-card:hover .product-image-placeholder {
  transform: scale(1.05);
}

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

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  color: var(--warm-gray-600);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.product-action-btn:hover {
  background: var(--gold-300);
  color: white;
}

.product-action-btn svg {
  width: 16px;
  height: 16px;
}

.product-info {
  padding: 16px 20px 20px;
}

.product-category {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-gray-700);
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.price-current {
  font-size: 18px;
  font-weight: 500;
  color: var(--warm-gray-700);
}

.price-sale {
  color: var(--pink-500);
}

.price-original {
  font-size: 14px;
  color: var(--warm-gray-300);
  text-decoration: line-through;
}

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

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

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

.star-filled {
  color: var(--gold-300);
  fill: var(--gold-300);
}

.star-half {
  color: var(--gold-300);
  fill: var(--gold-200);
}

.star-empty {
  color: var(--warm-gray-200);
}

.rating-count {
  font-size: 12px;
  color: var(--warm-gray-400);
}

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

/* ---- Collections Section ---- */
.collections-section {
  background: var(--warm-white);
}

/* ---- About Section ---- */
.about-section {
  background: var(--cream);
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--warm-gray-200) 0.5px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
  }
}

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

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-placeholder {
  aspect-ratio: 6/7;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--pink-100) 50%, var(--gold-200) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--warm-gray-400);
  font-size: 16px;
}

.about-image-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
  display: none;
}

@media (min-width: 768px) {
  .about-image-accent {
    display: block;
  }
}

.about-accent-placeholder {
  aspect-ratio: 6/7;
  background: linear-gradient(135deg, var(--gold-200) 0%, var(--gold-300) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  font-size: 13px;
}

.about-accent-placeholder svg {
  width: 28px;
  height: 28px;
  opacity: 0.7;
}

.about-experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

@media (min-width: 768px) {
  .about-experience-badge {
    top: -20px;
    right: -20px;
  }
}

.about-exp-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-exp-year {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.about-exp-location {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
}

.about-content-col {
  position: relative;
}

.about-lead {
  font-size: 18px;
  color: var(--warm-gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--warm-gray-500);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--warm-gray-100);
}

.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.1);
}

.about-value-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-300);
}

.about-value h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--warm-gray-700);
  margin-bottom: 4px;
}

.about-value p {
  font-size: 14px;
  color: var(--warm-gray-400);
  line-height: 1.6;
  margin-bottom: 0;
}

.about-signature {
  margin-top: 36px;
}

.signature-text {
  display: block;
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--gold-400);
  line-height: 1.2;
}

.signature-title {
  display: block;
  font-size: 13px;
  color: var(--warm-gray-400);
  margin-top: 4px;
}

/* ---- Stats Section ---- */
.stats-section {
  background: linear-gradient(135deg, var(--warm-gray-800), var(--warm-gray-700));
  padding: 60px 0;
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 300;
  color: var(--gold-300);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  color: var(--gold-300);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--warm-gray-300);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---- Lookbook Section ---- */
.lookbook-section {
  background: var(--warm-white);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lookbook-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lookbook-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.lookbook-item-large {
  grid-row: span 2;
}

@media (max-width: 767px) {
  .lookbook-item-large {
    grid-row: span 1;
  }
}

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

@media (min-width: 768px) {
  .lookbook-item-wide {
    grid-column: span 2;
  }
}

.lookbook-image-placeholder {
  width: 100%;
  aspect-ratio: 4/4.5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow);
}

.lookbook-item-large .lookbook-image-placeholder {
  aspect-ratio: auto;
  height: 100%;
  min-height: 400px;
}

@media (min-width: 768px) {
  .lookbook-item-large .lookbook-image-placeholder {
    min-height: 100%;
  }
}

.lookbook-item-wide .lookbook-image-placeholder {
  aspect-ratio: 16/9;
}

.lookbook-item:hover .lookbook-image-placeholder {
  transform: scale(1.05);
}

.lookbook-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.lookbook-placeholder-content svg {
  width: 28px;
  height: 28px;
}

.lookbook-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 21, 18, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lookbook-item:hover .lookbook-overlay {
  opacity: 1;
}

.lookbook-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 8px;
}

.lookbook-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
}

/* ---- Features Section ---- */
.features-section {
  background: var(--cream);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: white;
  transition: all var(--transition-base);
}

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

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.1), rgba(232, 180, 184, 0.1));
}

.feature-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--gold-300);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--warm-gray-700);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--warm-gray-400);
  line-height: 1.6;
}

/* ---- Testimonials Section ---- */
.testimonials-section {
  background: var(--warm-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-card-featured {
  background: linear-gradient(135deg, var(--warm-gray-800), var(--warm-gray-700));
  border-color: transparent;
  color: white;
}

.testimonial-card-featured .testimonial-text {
  color: var(--warm-gray-200);
}

.testimonial-card-featured .testimonial-name {
  color: white;
}

.testimonial-card-featured .testimonial-location {
  color: var(--warm-gray-400);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

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

.testimonial-text {
  font-size: 15px;
  color: var(--warm-gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--rose-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-name {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: var(--warm-gray-700);
}

.testimonial-location {
  display: block;
  font-size: 12px;
  color: var(--warm-gray-400);
}

/* ---- Newsletter Section ---- */
.newsletter-section {
  background: linear-gradient(135deg, var(--pink-50), var(--gold-50), var(--pink-50));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--gold-300) 0.5px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.05;
}

.newsletter-content {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

.newsletter-crown {
  margin-bottom: 20px;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: var(--warm-gray-800);
  margin-bottom: 12px;
}

.newsletter-desc {
  font-size: 16px;
  color: var(--warm-gray-400);
  margin-bottom: 32px;
}

.newsletter-form {
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 8px;
}

@media (max-width: 480px) {
  .newsletter-input-group {
    flex-direction: column;
  }
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--warm-gray-100);
  border-radius: var(--radius-xl);
  background: white;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
  color: var(--warm-gray-300);
}

.newsletter-input:focus {
  border-color: var(--gold-300);
}

.newsletter-privacy {
  font-size: 12px;
  color: var(--warm-gray-400);
  margin-top: 12px;
}

/* ---- Instagram Section ---- */
.instagram-section {
  padding: 80px 0;
  background: var(--warm-white);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.instagram-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 18, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay svg {
  width: 24px;
  height: 24px;
  color: white;
}

/* ---- Contact Section ---- */
.contact-section {
  background: var(--cream);
}

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

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

.contact-card-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.1);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-300);
}

.contact-card-item h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--warm-gray-700);
  margin-bottom: 4px;
}

.contact-card-item p {
  font-size: 14px;
  color: var(--warm-gray-500);
  line-height: 1.6;
}

.contact-card-item a {
  color: var(--gold-400);
}

.contact-card-item a:hover {
  color: var(--gold-500);
}

.contact-social h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--warm-gray-700);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  color: var(--warm-gray-500);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--gold-300);
  color: white;
  border-color: var(--gold-300);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--warm-gray-700);
  margin-bottom: 28px;
}

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

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray-600);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--warm-gray-100);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
  font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray-300);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-300);
  background: white;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239E8E82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Map Placeholder */
.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--warm-gray-50);
  border: 1px solid var(--border-color);
}

.map-inner {
  padding: 60px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.map-inner svg {
  width: 40px;
  height: 40px;
  color: var(--warm-gray-300);
  margin-bottom: 8px;
}

.map-inner span {
  font-size: 16px;
  font-weight: 500;
  color: var(--warm-gray-500);
}

.map-inner p {
  font-size: 14px;
  color: var(--warm-gray-400);
  margin-bottom: 12px;
}

/* ---- Footer ---- */
.footer {
  background: var(--warm-gray-800);
  color: var(--warm-gray-300);
}

.footer-top {
  padding: 60px 0 40px;
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 32px;
  }
}

.footer-logo .logo-name {
  color: white;
}

.footer-logo .logo-sub {
  color: var(--gold-300);
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--warm-gray-400);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social .social-link {
  width: 38px;
  height: 38px;
  background: var(--warm-gray-700);
  border-color: var(--warm-gray-600);
  color: var(--warm-gray-400);
}

.footer-social .social-link:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
  color: white;
}

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

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}

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

.footer-links-col a {
  font-size: 14px;
  color: var(--warm-gray-400);
  transition: color var(--transition-fast);
}

.footer-links-col a:hover {
  color: var(--gold-300);
}

.footer-contact-info p {
  font-size: 14px;
  color: var(--warm-gray-400);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact-info svg {
  width: 16px;
  height: 16px;
  color: var(--gold-300);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-info a {
  color: var(--warm-gray-400);
}

.footer-contact-info a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  border-top: 1px solid var(--warm-gray-700);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 13px;
  color: var(--warm-gray-500);
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--warm-gray-500);
}

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

.payment-icon {
  padding: 4px 10px;
  background: var(--warm-gray-700);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--warm-gray-300);
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--gold-300);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--gold-300);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-300);
  color: white;
}

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

/* ---- Scroll Animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ---- Responsive Fine-Tuning ---- */
@media (max-width: 639px) {
  :root {
    --section-padding: 64px;
    --container-padding: 20px;
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
  }

  .hero-title-main {
    font-size: 44px;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-info {
    padding: 12px 12px 16px;
  }

  .product-name {
    font-size: 16px;
  }

  .price-current {
    font-size: 15px;
  }

  .product-rating {
    display: none;
  }

  .contact-form {
    padding: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .announcement-bar {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px 16px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero {
    padding-top: 140px;
  }
}

/* ---- Selection Color ---- */
::selection {
  background: var(--pink-200);
  color: var(--warm-gray-800);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--warm-gray-50);
}

::-webkit-scrollbar-thumb {
  background: var(--warm-gray-200);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--warm-gray-300);
}
