/* ============================================
   SOMOS CEJAS PTY — Design System & Styles
   Luxury Beauty Studio Landing Page
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Great+Vibes&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');

/* ---- Design Tokens ---- */
:root {
  /* Colors — Brand Purple + Black (from official logo) */
  --color-rose-gold: #6B3FA0;
  --color-rose-gold-light: #9B7BC7;
  --color-rose-gold-dark: #4A2D6B;
  --color-champagne: #F0ECF5;
  --color-champagne-light: #F8F5FB;
  --color-gold: #D4AF37;
  --color-gold-light: #E8D48B;
  --color-pearl: #FAF9F6;
  --color-white: #FFFFFF;
  --color-black-soft: #1A1A1A;
  --color-gray-warm: #6B6B6B;
  --color-gray-light: #B0B0B0;
  --color-gray-lighter: #E5E2E9;
  --color-cream: #F8F5FB;
  --color-blush: #E8DFF0;
  --color-success: #6B9E76;
  --color-error: #C75C5C;

  /* Gradients */
  --gradient-rose: linear-gradient(135deg, #6B3FA0 0%, #9B7BC7 50%, #F0ECF5 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E8D48B 100%);
  --gradient-subtle: linear-gradient(180deg, #FAF9F6 0%, #F8F5FB 100%);
  --gradient-hero-overlay: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(107, 63, 160, 0.45) 50%, rgba(74, 45, 107, 0.2) 100%);
  --gradient-section: linear-gradient(180deg, var(--color-pearl) 0%, var(--color-cream) 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows — Purple tint */
  --shadow-sm: 0 2px 8px rgba(107, 63, 160, 0.08);
  --shadow-md: 0 4px 20px rgba(107, 63, 160, 0.12);
  --shadow-lg: 0 8px 40px rgba(107, 63, 160, 0.15);
  --shadow-xl: 0 16px 60px rgba(107, 63, 160, 0.2);
  --shadow-glow: 0 0 30px rgba(107, 63, 160, 0.25);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1280px;
  --nav-height: 80px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-black-soft);
  background-color: var(--color-pearl);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

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

::selection {
  background: var(--color-rose-gold-light);
  color: var(--color-white);
}

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: var(--space-5xl) 0;
}

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

/* ---- Typography ---- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  margin-bottom: var(--space-lg);
}

.section-badge::before,
.section-badge::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gradient-rose);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--color-black-soft);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-title em {
  font-style: italic;
  color: var(--color-rose-gold);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-gray-warm);
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.8;
}

/* ---- Decorative Elements ---- */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: var(--space-lg) auto;
  border-radius: var(--radius-full);
}

.dot-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-xl) 0;
}

.dot-separator span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--color-rose-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--color-rose-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--color-rose-gold);
  color: var(--color-rose-gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-rose-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-black-soft);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(183, 110, 121, 0.2); }
  50% { box-shadow: 0 0 40px rgba(183, 110, 121, 0.4); }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 0 var(--space-xl);
}

.navbar.scrolled {
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(183, 110, 121, 0.1);
  height: 70px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  text-decoration: none;
}

/* ---- Logo Image (SVG with transparent background) ---- */
.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-base);
  filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo-img {
  height: 55px;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-rose);
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}

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

.nav-links a:hover {
  color: var(--color-white);
}

.navbar.scrolled .nav-links a {
  color: var(--color-gray-warm);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--color-rose-gold);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--color-rose-gold) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.8rem !important;
  letter-spacing: 1px !important;
  transition: all var(--transition-base) !important;
}

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

.nav-cta:hover {
  background: var(--color-rose-gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-black-soft);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-5xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: var(--space-xs);
}

/* Hero Decorative */
.hero-decoration {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(183, 110, 121, 0.15);
  border-radius: 50%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--gradient-section);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(183, 110, 121, 0.06);
}

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

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--color-white), transparent);
}

.service-card-content {
  padding: var(--space-xl);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--gradient-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-black-soft);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-gray-warm);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-price {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-rose-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  background: var(--color-white);
  position: relative;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--color-gray-lighter);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-warm);
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
  background: rgba(183, 110, 121, 0.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-item-overlay h4 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.gallery-item-overlay span {
  font-size: 0.8rem;
  color: var(--color-champagne);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

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

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  background: #d6d2d8;
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: contain;
  object-position: center center;
}

.about-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-gold-light);
  border-radius: var(--radius-xl);
  z-index: 0;
  opacity: 0.5;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--color-white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  text-align: center;
}

.about-experience-badge .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-rose-gold);
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gray-warm);
  margin-top: var(--space-xs);
}

.about-content {
  padding-right: var(--space-xl);
}

.about-content .section-badge {
  justify-content: flex-start;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1rem;
  color: var(--color-gray-warm);
  line-height: 1.9;
  margin-bottom: var(--space-xl);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-black-soft);
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-rose-gold);
  flex-shrink: 0;
}

/* ============================================
   SHOP / E-COMMERCE SECTION
   ============================================ */
.shop {
  background: var(--color-white);
  position: relative;
}

.shop-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.shop-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.shop-filter-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--color-gray-lighter);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gray-warm);
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
  border-color: var(--color-rose-gold);
  color: var(--color-white);
  background: var(--color-rose-gold);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: var(--color-pearl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-rose-gold-light);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
}

.product-card-badge.new {
  background: var(--color-rose-gold);
  color: var(--color-white);
}

.product-card-badge.popular {
  background: var(--color-gold);
  color: var(--color-black-soft);
}

.product-card-image {
  height: 240px;
  overflow: hidden;
  background: var(--color-champagne-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

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

.product-card-content {
  padding: var(--space-lg);
}

.product-card-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  margin-bottom: var(--space-xs);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-black-soft);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-rose-gold);
  margin-bottom: var(--space-md);
}

.product-card .btn {
  width: 100%;
  padding: 12px;
  font-size: 0.75rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--space-md) 0;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 280px;
  max-width: 300px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  flex-shrink: 0;
  border: 1px solid rgba(183, 110, 121, 0.06);
  transition: all var(--transition-base);
}

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

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
  color: var(--color-gold);
  font-size: 0.85rem;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-black-soft);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-rose-gold-light);
  position: absolute;
  top: -12px;
  left: -5px;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--color-white);
  font-weight: 700;
}

.testimonial-author-info h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-black-soft);
}

.testimonial-author-info span {
  font-size: 0.72rem;
  color: var(--color-gray-warm);
}

.testimonial-google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-lighter);
  border-radius: var(--radius-full);
  margin-top: var(--space-2xl);
  font-size: 0.85rem;
  color: var(--color-black-soft);
  font-weight: 500;
}

/* ============================================
   CONTACT / LOCATION SECTION
   ============================================ */
.contact {
  background: var(--color-white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact-form-wrapper {
  background: var(--color-pearl);
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-lighter);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-black-soft);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-gray-lighter);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-black-soft);
  font-size: 0.9rem;
  transition: all var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

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

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xs) 0;
  background: none;
  border: none;
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  transform: translateX(4px);
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1px;
  color: var(--color-black-soft);
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.8rem;
  color: var(--color-gray-warm);
}

.contact-info-card a:hover {
  color: var(--color-rose-gold);
}

.contact-map {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  background: var(--color-cream);
}

.faq-list {
  max-width: 800px;
  margin: var(--space-3xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
  border: 1px solid rgba(107, 63, 160, 0.08);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item[open] {
  border-color: rgba(107, 63, 160, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-black-soft);
  list-style: none;
  transition: color var(--transition-base);
  gap: var(--space-md);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--color-rose-gold);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-rose-gold);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-gray-warm);
}

.faq-answer a {
  color: var(--color-rose-gold);
  text-decoration: underline;
  font-weight: 500;
}

.faq-answer a:hover {
  color: var(--color-rose-gold-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-black-soft);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-logo-img {
  width: 170px;
  height: auto;
  object-fit: contain;
  margin-bottom: var(--space-lg);
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-rose-gold);
  border-color: var(--color-rose-gold);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  letter-spacing: 1px;
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

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

.footer-column ul a:hover {
  color: var(--color-rose-gold-light);
  padding-left: 5px;
}

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

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

.footer-bottom a {
  color: var(--color-rose-gold-light);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-base);
  animation: pulse-glow 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  animation: scaleIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .about-image img {
    height: 400px;
  }

  .about-experience-badge {
    right: 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .section-padding {
    padding: var(--space-4xl) 0;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl);
    gap: var(--space-xl);
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--color-black-soft) !important;
    font-size: 1rem;
  }

  .nav-links a:hover {
    color: var(--color-rose-gold) !important;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }

  .mobile-overlay.active {
    display: block;
  }

  /* Hero Mobile */
  .hero-content {
    text-align: center;
    padding: calc(var(--nav-height) + 2rem) var(--space-md) var(--space-3xl);
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

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

  .hero-stats {
    justify-content: center;
    gap: var(--space-xl);
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .hero-decoration {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  /* Shop Mobile */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .product-card-image {
    height: 180px;
  }

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

  .about-image img {
    height: 350px;
  }

  /* Testimonials Mobile */
  .testimonial-card {
    min-width: 240px;
    max-width: 260px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .testimonial-card {
    min-width: 240px;
    max-width: 260px;
    padding: var(--space-md) var(--space-lg);
  }
}

/* ---- Print Styles ---- */
@media print {
  .navbar,
  .whatsapp-float,
  .scroll-indicator,
  .lightbox {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl);
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(107, 63, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.5;
  flex: 1;
}

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

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.cookie-accept {
  background: linear-gradient(135deg, #7c4dff, #6B3FA0);
  color: #fff;
}

.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(107, 63, 160, 0.4);
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-decline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

