/* =============================================
   LONDON ROSE — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --purple-dark: #1a0a2e;
  --purple-deep: #2d1b3d;
  --purple-mid: #4a2869;
  --purple-accent: #7b3fa0;
  --purple-light: #c9a8e0;
  --purple-pale: #f0e6f8;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --white: #ffffff;
  --off-white: #faf8fc;
  --text-muted: #b0a0c0;
  --lavender-bg: #ede4f5;
  --card-bg: #ffffff;
  --shadow-glow: 0 0 40px rgba(123, 63, 160, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--purple-dark);
  overflow-x: hidden;
}

/* =============================================
   UTILITY
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-outline {
  border: 1.5px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--purple-dark);
}

.btn-dark {
  background: var(--purple-dark);
  color: var(--white);
  border: 1.5px solid var(--purple-dark);
}

.btn-dark:hover {
  background: transparent;
  color: var(--purple-dark);
}

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

.btn-outline-light:hover {
  background: var(--gold);
  color: var(--purple-dark);
}

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--purple-accent);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--purple-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.dark {
  color: var(--purple-dark);
}

.section-sub {
  font-size: 0.95rem;
  color: #7a6a8a;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 10, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(26, 10, 46, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.site-logo-img {
  height: 200px;
  /* Increased from 44px */
  width: auto;
  display: block;
  margin-top: 50px;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  color: var(--white);
}

.logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

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

.nav-icons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.icon-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.icon-btn:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.hamburger {
  display: none;
}

/* Search Bar */
.search-bar {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(26, 10, 46, 0.95);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
}

.search-bar.open {
  max-height: 60px;
  padding: 0.7rem 2rem;
}

.search-bar input {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--white);
  font-size: 1rem;
  padding: 0.4rem 0;
  outline: none;
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

#closeSearch {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
}

#closeSearch:hover {
  color: var(--white);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: #130820;
  display: flex;
  align-items: center;
  padding: 120px 0 80px 6vw;
  position: relative;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

/* petal canvas — covers full hero */
.petal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* shimmer light sweep — covers full hero */
.hero-shimmer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(115deg,
      transparent 30%,
      rgba(255, 220, 150, 0.05) 48%,
      rgba(255, 255, 255, 0.09) 50%,
      rgba(255, 220, 150, 0.05) 52%,
      transparent 70%);
  background-size: 200% 100%;
  animation: shimmerSweep 6s ease-in-out infinite;
}

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

  50% {
    background-position: -40% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.hero-content {
  flex: 0 0 45%;
  max-width: 480px;
  z-index: 6;
  animation: heroSlideIn 1s ease forwards;
  position: relative;
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 72%;
  z-index: 3;
  animation: heroImageIn 1.2s ease forwards;
  overflow: hidden;
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s ease;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      #130820 0%,
      #130820 8%,
      rgba(19, 8, 32, 0.88) 26%,
      rgba(19, 8, 32, 0.30) 48%,
      transparent 68%);
  z-index: 2;
  pointer-events: none;
}

.hero-image:hover img {
  transform: scale(1.04);
}

/* =============================================
   FEATURES BAR
   ============================================= */
.features-bar {
  background: var(--purple-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding: 1.4rem 2rem;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
}

.feat-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.feature-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.feature-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.feat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201, 168, 76, 0.25);
}

/* =============================================
   COLLECTION SECTION
   ============================================= */
.collection-section {
  background: var(--lavender-bg);
  padding: 6rem 2rem;
  text-align: center;
}

.collection-section .section-title {
  margin-bottom: 0.8rem;
}

.collection-section .btn-dark {
  margin-bottom: 3.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUpCard 0.6s ease both;
  animation-delay: var(--delay, 0s);
  box-shadow: 0 2px 20px rgba(74, 40, 105, 0.08);
}

@keyframes fadeUpCard {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(74, 40, 105, 0.2);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f8f4fc;
  aspect-ratio: 3/4;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 46, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-add {
  background: var(--gold);
  color: var(--purple-dark);
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s;
}

.quick-add:hover {
  background: var(--gold-light);
}

.product-info {
  padding: 1.2rem 1.2rem 1.5rem;
  text-align: left;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--purple-dark);
  margin-bottom: 0.4rem;
}

.product-info p {
  font-size: 0.82rem;
  color: #8a7a9a;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.shop-now {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--purple-accent);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.shop-now:hover {
  color: var(--purple-accent);
  border-color: var(--purple-accent);
}

/* =============================================
   RITUAL SECTION
   ============================================= */
.ritual-section {
  display: flex;
  min-height: 560px;
  overflow: hidden;
}

.ritual-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.ritual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85);
  transition: transform 0.8s ease;
}

.ritual-section:hover .ritual-image img {
  transform: scale(1.04);
}

.ritual-content {
  flex: 1;
  background: var(--purple-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5vw;
}

.ritual-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.ritual-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

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

.ritual-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--off-white);
  padding: 6rem 2rem;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(123, 63, 160, 0.1);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: transform 0.4s, box-shadow 0.4s;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(74, 40, 105, 0.14);
}

.testimonial-card.featured {
  background: var(--purple-dark);
  border-color: var(--gold);
}

.testimonial-card.featured .stars {
  color: var(--gold);
}

.testimonial-card.featured p {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-card.featured .testimonial-author {
  color: var(--gold-light);
}

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

.testimonial-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5a4a6a;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--purple-accent);
  text-transform: uppercase;
}

/* =============================================
   FOOTER BAR
   ============================================= */
.footer-bar {
  background: var(--purple-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem;
}

.footer-bar-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-feat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  text-align: left;
}

.footer-feat-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.footer-feat strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.footer-feat span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0d0518;
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 280px;
}

.site-logo-img-footer {
  height: 90px;
  /* Increased from 56px */
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand .logo-icon {
  font-size: 2rem;
  color: var(--gold);
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
  line-height: 1.6;
}

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

.newsletter-form {
  display: flex;
  margin-top: 0.5rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.82rem;
  padding: 0.7rem 0.8rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  background: var(--gold);
  border: none;
  color: var(--purple-dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-newsletter-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

/* =============================================
   COLLECTION PAGE
   ============================================= */
.hero.collection-hero {
  min-height: 65vh;
  padding: 140px 0 60px 6vw;
}

.collection-page-section {
  background: #f6f3f8;
  padding: 6rem 2rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Wide Product Card Asymmetrical Layout */
.product-card-wide {
  grid-column: 2 / span 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(74, 40, 105, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-height: 380px;
  animation: fadeUpCard 0.6s ease both;
  animation-delay: var(--delay, 0s);
}

.product-card-wide:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(74, 40, 105, 0.2);
}

.product-info-wide {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.product-info-wide h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--purple-dark);
  margin-bottom: 0.8rem;
}

.product-info-wide p {
  font-size: 0.92rem;
  color: #7a6a8a;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.product-img-wrap-wide {
  position: relative;
  background: #f8f4fc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* =============================================
   CONTACT PAGE & LIGHT NAVBAR
   ============================================= */
/* Light Navbar Modifier */
.navbar.nav-light {
  background: rgba(246, 243, 248, 0.92);
  border-bottom: 1px solid rgba(74, 40, 105, 0.08);
}

.navbar.nav-light .logo {
  color: var(--purple-dark);
}

.navbar.nav-light .logo-text {
  color: var(--purple-dark);
}

.navbar.nav-light .logo-text span {
  color: var(--purple-accent);
}

.navbar.nav-light .nav-link {
  color: rgba(26, 10, 46, 0.75);
}

.navbar.nav-light .nav-link:hover,
.navbar.nav-light .nav-link.active {
  color: var(--purple-accent);
}

.navbar.nav-light .nav-link::after {
  background: var(--purple-accent);
}

.navbar.nav-light .icon-btn {
  color: rgba(26, 10, 46, 0.8);
}

.navbar.nav-light .icon-btn:hover {
  color: var(--purple-accent);
  background: rgba(123, 63, 160, 0.08);
}

.navbar.nav-light .search-bar {
  background: rgba(246, 243, 248, 0.98);
}

.navbar.nav-light .search-bar input {
  color: var(--purple-dark);
  border-bottom: 1px solid rgba(123, 63, 160, 0.3);
}

.navbar.nav-light .search-bar input::placeholder {
  color: #8a7a9a;
}

.navbar.nav-light #closeSearch {
  color: #8a7a9a;
}

.navbar.nav-light #closeSearch:hover {
  color: var(--purple-dark);
}

.contact-page-section {
  background: #f6f3f8;
  padding: 140px 2rem 6rem;
  min-height: calc(100vh - 72px);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--purple-dark);
  margin-bottom: 0.8rem;
}

.contact-header p {
  font-size: 1.05rem;
  color: #7a6a8a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(26, 10, 46, 0.15);
}

.contact-info-text h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.contact-info-text p {
  font-size: 0.88rem;
  color: #7a6a8a;
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(74, 40, 105, 0.1);
  background: var(--white);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--purple-dark);
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a090b0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple-accent);
  box-shadow: 0 0 0 3px rgba(123, 63, 160, 0.08);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: #5d357d;
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: #4a2869;
}

.btn-submit:active {
  transform: scale(0.98);
}

/* =============================================
   ABOUT US PAGE
   ============================================= */
.about-hero-split {
  display: flex;
  min-height: 100vh;
  position: relative;
  background: #f6f3f8;
}

.about-split-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.about-split-dark {
  background: #130820;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 4rem 5rem max(2rem, calc((100vw - 1200px) / 2 + 2rem));
  position: relative;
  overflow: hidden;
}

/* Make sure canvas covers only the dark part in the new layout */
.about-split-dark .petal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-split-dark .hero-shimmer {
  z-index: 2;
}

.about-split-dark .about-content-inner {
  position: relative;
  z-index: 3;
}

.about-split-light {
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem max(2rem, calc((100vw - 1200px) / 2 + 2rem));
}

.about-content-inner {
  width: 100%;
  max-width: 520px;
}

.about-split-right {
  width: 45%;
  position: relative;
}

.about-split-right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.about-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.about-split-light p {
  font-size: 0.98rem;
  color: var(--purple-dark);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-split-light p:last-child {
  margin-bottom: 0;
}

/* About Features Section */
.about-features-section {
  background: #f6f3f8;
  padding: 5rem 2rem;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.about-feature-item:not(:last-child) {
  border-right: 1px solid rgba(74, 40, 105, 0.1);
}

.about-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(123, 63, 160, 0.2);
  color: var(--purple-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.about-feature-item h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.about-feature-item p {
  font-size: 0.82rem;
  color: #7a6a8a;
  line-height: 1.5;
}

/* =============================================
   FORMULA PAGE
   ============================================= */
.formula-hero {
  display: flex;
  min-height: 100vh;
  background: #130820;
  position: relative;
  overflow: hidden;
}

.formula-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 4rem 5rem max(2rem, calc((100vw - 1200px) / 2 + 2rem));
  position: relative;
  z-index: 3;
}

.formula-content-inner {
  max-width: 520px;
}

.formula-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.formula-subtitle {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 2rem;
}

.formula-text {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: 3rem;
}

.formula-features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.formula-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.formula-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.formula-feat-text h4 {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.formula-feat-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.formula-image-wrapper {
  width: 50%;
  position: relative;
}

.formula-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Before & After Section */
.before-after-section {
  background: #f6f3f8;
  padding: 6rem 2rem;
}

.ba-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ba-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ba-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--purple-dark);
  margin-bottom: 0.8rem;
}

.ba-subtitle {
  font-size: 1.1rem;
  color: #7a6a8a;
}

.ba-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ba-image-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.ba-image-box img {
  width: 100%;
  display: block;
}

.ba-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card-wide {
    grid-column: 1 / -1;
  }

  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 0;
  }

  .about-feature-item:nth-child(even) {
    border-right: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    gap: 2rem;
    padding: 120px 4vw 80px;
  }
}

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

  .hamburger {
    display: flex !important;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 10, 46, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
  }

  .navbar.nav-light .nav-links.open {
    background: rgba(246, 243, 248, 0.98);
    border-top: 1px solid rgba(123, 63, 160, 0.1);
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 1.5rem 0;
    min-height: auto;
  }

  .hero-content {
    flex: unset;
    max-width: 100%;
    padding-bottom: 2rem;
    position: relative;
    z-index: 6;
  }

  .hero-image {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 340px;
    margin: 0 -1.5rem;
    width: calc(100% + 3rem);
  }

  .hero-image::before {
    background: linear-gradient(to bottom, #1a0a2e 0%, transparent 40%);
  }

  .ritual-section {
    flex-direction: column;
  }

  .ritual-image {
    min-height: 300px;
  }

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

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

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-card-wide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-info-wide {
    padding: 2.5rem 1.5rem;
    order: 2;
  }

  .product-img-wrap-wide {
    aspect-ratio: 4/3;
    order: 1;
  }

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

  .about-hero-split {
    flex-direction: column;
    min-height: auto;
  }

  .about-split-left {
    width: 100%;
  }

  .about-split-dark {
    padding: 120px 1.5rem 4rem 1.5rem;
    text-align: center;
  }

  .about-split-light {
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .about-content-inner {
    margin: 0 auto;
  }

  .about-split-right {
    width: 100%;
    height: 400px;
  }

  .about-features-section {
    padding: 4rem 1.5rem;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-feature-item {
    border-right: none !important;
  }

  .about-feature-item:not(:last-child) {
    border-bottom: 1px solid rgba(74, 40, 105, 0.08);
    padding-bottom: 2rem;
  }

  .formula-hero {
    flex-direction: column;
    min-height: auto;
  }

  .formula-content {
    width: 100%;
    padding: 120px 1.5rem 4rem 1.5rem;
    align-items: center;
    text-align: center;
  }

  .formula-feat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .formula-image-wrapper {
    width: 100%;
    height: 400px;
  }

  .before-after-section {
    padding: 4rem 1.5rem;
  }

  .ba-images-grid {
    grid-template-columns: 1fr;
  }

  .features-inner {
    gap: 1.5rem;
  }

  .feat-divider {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bar-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-feat {
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero-title {
    font-size: 2.5rem;
  }
}