:root {
  /* Girly & Floral Professional Palette - HIGH CONTRAST */
  --color-primary: #fdf5f6; /* Extremely soft blush white */
  --color-secondary: #f6e6e8; /* Light dusty pink */
  --color-accent: #b83a53; /* Deep bold rose for high contrast and readability */
  --color-accent-hover: #9c2e44;
  --color-bg: #faf7f7; 
  --color-text-main: #2a1f1f; 
  --color-text-light: #5a4e4e; 
  --color-white: #ffffff;
  --color-shadow: rgba(42, 31, 31, 0.12); 
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Great Vibes', cursive;
  
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 24px;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --header-height: 90px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Custom cursor - disabled on touch devices for better performance/UX */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><circle cx="12" cy="12" r="6" fill="%23b83a53" opacity="0.6"/></svg>') 10 10, auto;
  }
  a, button, input, textarea, select {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%232a1f1f" opacity="0.8"/></svg>') 12 12, pointer !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-main);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.8rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.text-center {
  text-align: center;
}

.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 50px; /* Fully rounded buttons */
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--color-text-main);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(74, 63, 64, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(216, 140, 154, 0.3);
  color: white;
}

.btn-secondary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(216, 140, 154, 0.3);
}

.btn-secondary:hover {
  background-color: var(--color-text-main);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 63, 64, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}


/* Floating Actions */
.floating-order {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  border-radius: 50px;
  padding: 1rem 1.8rem;
  font-weight: 500;
  font-size: 0.9rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(216, 140, 154, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: float 4s ease-in-out infinite;
  letter-spacing: 0.5px;
}

.floating-order:hover {
  background-color: var(--color-text-main);
  color: #fff;
  transform: scale(1.03);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Hero Section v2 - Editorial Luxury */
.hero-v2 {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  padding: calc(var(--header-height) + 2rem) 0 30px;
  overflow: hidden;
}

/* FAQ Styling */
.faq-item {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid rgba(216, 140, 154, 0.3);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-left-color: var(--color-accent);
}

/* Occasion Bubbles */
.occasion-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  width: 120px;
}

.occasion-bubble:hover {
  transform: translateY(-5px);
}

.bubble-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-white);
  box-shadow: 0 10px 20px var(--color-shadow);
  transition: border-color 0.3s ease;
}

.occasion-bubble:hover .bubble-img {
  border-color: var(--color-accent);
}

.bubble-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.occasion-bubble span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-main);
  font-weight: 500;
}

@media (max-width: 576px) {
  .occasion-bubble { width: 80px; gap: 0.5rem; }
  .bubble-img { width: 70px; height: 70px; }
  .occasion-bubble span { font-size: 0.9rem; }
}

/* Compact Hero for Secondary Pages */
.hero-compact {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-primary);
  padding: calc(var(--header-height) + 3rem) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--color-secondary) 0%, transparent 50%),
              radial-gradient(circle at bottom left, var(--color-secondary) 0%, transparent 50%);
  opacity: 0.5;
}

.hero-compact .container {
  position: relative;
  z-index: 2;
}

.hero-v2-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.hero-v2-text {
  position: relative;
  z-index: 5;
}

.hero-v2-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 600;
}

.hero-v2-title {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
}

.hero-v2-title .font-accent {
  font-family: var(--font-accent);
  color: var(--color-accent);
  font-size: 1.2em;
  font-weight: 400;
  margin: 0 5px;
}

.hero-v2-highlight {
  position: relative;
  display: inline-block;
}

.hero-v2-highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-secondary);
  z-index: -1;
  opacity: 0.6;
}

.hero-v2-description {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 550px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-v2-btns {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-v2-trust {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(42, 31, 31, 0.08);
  padding-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.trust-item i {
  color: var(--color-accent);
}

/* Hero Visual Column */
.hero-v2-visual {
  position: sticky;
  top: 40px; /* Aligned with top padding */
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
}

.hero-v2-img-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 180px 180px 30px 30px; /* Editorial arch shape */
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(42, 31, 31, 0.15);
  border: 1px solid var(--color-white);
}

.hero-v2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v2-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(216, 140, 154, 0.3);
  z-index: 10;
  animation: float 4s ease-in-out infinite;
  border: 1px solid var(--color-secondary);
}

.badge-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.1;
  margin-bottom: 2px;
}

.badge-subtext {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  font-weight: 600;
}

.hero-v2-shape {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  z-index: 1;
  opacity: 0.5;
}

@media (max-width: 1200px) {
  .hero-v2-container { padding: 0 2rem; }
}

@media (max-width: 992px) {
  .hero-v2 { padding: calc(var(--header-height) + 2rem) 0 60px; }
  .hero-compact { padding: calc(var(--header-height) + 2rem) 0 50px; min-height: 35vh; }
  .hero-v2-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .hero-v2-description { margin: 0 auto 3rem auto; }
  .hero-v2-btns { justify-content: center; }
  .hero-v2-trust { justify-content: center; }
  .hero-v2-visual { max-width: 500px; margin: 0 auto; }
  .hero-v2-badge { right: 10px; }
}

@media (max-width: 576px) {
  .hero-v2 { padding: calc(var(--header-height) + 1.5rem) 0 30px; min-height: 80vh; }
  .hero-compact { padding: calc(var(--header-height) + 1rem) 0 20px; min-height: auto; }
  .hero-compact .hero-v2-title { font-size: 2rem; margin-bottom: 0.5rem; }
  .hero-compact p { font-size: 0.9rem; line-height: 1.5; }
  .hero-v2-title { font-size: 2.2rem; }
  .hero-v2-description { font-size: 1rem; margin-bottom: 2rem; }
  .hero-v2-btns { flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
  .hero-v2-btns .btn { width: 100%; padding: 1rem; }
  .hero-v2-trust { flex-direction: row; gap: 1rem; align-items: center; justify-content: center; font-size: 0.75rem; padding-top: 1.5rem; }
  .hero-v2-badge { width: 85px; height: 85px; bottom: 15px; right: 5px; }
}

/* About Section */
.about {
  background-color: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  border-radius: var(--border-radius);
  box-shadow: 0 25px 50px rgba(216, 140, 154, 0.15);
  overflow: hidden;
  position: relative;
}

.about-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0.3;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Collection Section */
.collection {
  background-color: transparent;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--color-shadow);
  transition: var(--transition-smooth);
  border: 1px solid rgba(42, 31, 31, 0.05); /* clean thin border */
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(216, 140, 154, 0.25);
  border-color: rgba(216, 140, 154, 0.3);
}

.product-img-wrapper {
  height: 350px;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08); /* Softer, slightly larger zoom */
}

.product-info {
  padding: 2rem;
  text-align: center;
}

.product-info h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.product-price {
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent); /* Colored pricing */
}

/* Custom Orders Form Section */
.custom-order {
  background-color: transparent;
  position: relative;
}

.form-container {
  max-width: 750px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px var(--color-shadow);
  border: 1px solid rgba(42, 31, 31, 0.05);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text-main);
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ecccd1; /* Soft pink border */
  background-color: var(--color-primary); /* Softest pink background */
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(216, 140, 154, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Info Box in Custom Order/Values */
.how-it-works {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.step-box {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  flex: 1;
  box-shadow: 0 10px 30px var(--color-shadow);
  border: 1px solid rgba(42, 31, 31, 0.05);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  color: var(--color-accent);
  border-radius: 50%;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

/* Gallery Section */
.gallery {
  background-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: var(--border-radius);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(216, 140, 154, 0.6); /* Soft pink overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

/* Testimonials */
.testimonials {
  text-align: center;
}

.bestseller-card {
  min-width: 300px;
  flex: 0 0 auto;
}

/* -------- Micro Animations -------- */
.petal {
  position: fixed;
  top: -30px;
  width: 12px;
  height: 12px;
  background-color: var(--color-accent);
  border-radius: 12px 0 12px 0; /* Petal shape */
  pointer-events: none;
  z-index: 1000;
  animation: fall linear forwards;
}

@keyframes fall {
  0% { transform: translateY(-20px) rotate(0deg) scale(1); opacity: 0; }
  10% { opacity: 0.4; }
  80% { opacity: 0.4; }
  100% { transform: translateY(110vh) rotate(360deg) scale(0.5); opacity: 0; }
}

/* Split layout for order page */
.order-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .order-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.testimonial-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px var(--color-shadow);
  position: relative;
  border: 1px solid rgba(42, 31, 31, 0.05);
}

.quote-icon {
  font-size: 4rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  line-height: 1;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--color-text-main);
}

.testimonial-author {
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Footer / Contact */
.footer {
  background-color: var(--color-secondary); /* Soft pink footer */
  color: var(--color-text-main);
  padding: 5rem 0 2rem;
  text-align: center;
}

.footer h2 {
  color: var(--color-text-main);
}

.contact-info {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-item span {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-socials {
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-accent);
  transition: var(--transition-smooth);
  box-shadow: 0 5px 15px rgba(216, 140, 154, 0.2);
}

.social-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(216, 140, 154, 0.2);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Animations */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .about-grid { gap: 3rem; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem;}
  .how-it-works { flex-direction: column; gap: 1.5rem; }
  
  .hero-img-container::after {
    background: rgba(255,255,255,0.6); /* Full coverage on tablet to see text */
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px; /* Room for the bottom sticky CTA */
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 3rem;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }
  
  .nav-links a {
      font-size: 1.5rem;
      font-family: var(--font-heading);
      text-transform: none;
      letter-spacing: 1px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease;
  }

  .nav-links.active {
    transform: translateX(0);
    box-shadow: -15px 0 40px rgba(216, 140, 154, 0.2);
  }

  /* Overlay to blur background when menu is open */
  body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 998;
    animation: fadeIn 0.4s ease forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .nav-links.active a {
      opacity: 1;
      transform: translateY(0);
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    z-index: 1001;
    font-size: 1.8rem; /* larger touch target */
  }
  
  .hero-content {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
    width: calc(100% - 2rem);
    text-align: center;
  }
  
  .hero h1 { font-size: 2.3rem; line-height: 1.1; margin-bottom: 1rem; }
  .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-img {
    order: -1;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 2rem;
  }

  /* Make floating order a full-width bottom bar sticky on mobile for extreme conversions */
  .floating-order {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem; /* Slightly larger text */
    z-index: 1002;
    animation: none; /* remove wobble */
    box-shadow: 0 -5px 25px rgba(216, 140, 154, 0.25);
    font-weight: 600;
  }
  
  .floating-order i {
    font-size: 1.4rem;
  }
  
  /* Make the "scroll to top" sit above the new bottom bar */
  .scroll-top-btn.visible {
    bottom: 5.5rem;
  }

  .container {
    padding: 0 1.2rem; /* Wider real estate on mobile screens */
  }
}

@media (max-width: 576px) {
  .collection-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .section { padding: 4rem 0; }
  .form-container { padding: 2.5rem 1.2rem; border-radius: 15px; }
  
  .hero-tagline { font-size: 2.2rem; }
  .hero-content { padding: 2.5rem 1.2rem; }
  
  .testimonial-card {
      padding: 2.5rem 1.5rem;
  }
  .testimonial-text {
      font-size: 1.2rem;
  }
  
  .product-info .btn {
      width: 100%;
  }
  
  .container {
      padding: 0 1rem;
  }
}
/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-flower {
  font-size: 3rem;
  color: var(--color-accent);
  animation: pulse-bloom 1.5s ease-in-out infinite alternate;
}

@keyframes pulse-bloom {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}

/* --- Scroll to Top --- */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 998;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 1px solid rgba(216, 140, 154, 0.3);
  box-shadow: 0 5px 15px rgba(216, 140, 154, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  font-size: 1.2rem;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  bottom: 6rem;
}

.scroll-top-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* --- Bestseller Carousel --- */
.bestseller-carousel-container {
  overflow-x: auto;
  padding: 2rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: 2rem;
  scrollbar-width: none;
}
.bestseller-carousel-container::-webkit-scrollbar {
  display: none;
}

.bestseller-card {
  min-width: 300px;
  flex: 0 0 auto;
}

/* --- Article & Editorial Styling --- */
.article-header {
  padding: calc(var(--header-height) + 5rem) 0 5rem 0;
  background-color: var(--color-white);
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.article-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 1.1;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-heading);
}

.article-featured-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 40px;
  margin-bottom: 5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--color-text-main);
}

.article-content p {
  margin-bottom: 2.5rem;
}

.article-content h2, .article-content h3 {
  margin: 4rem 0 1.5rem 0;
  font-family: var(--font-heading);
}

.article-content h2 { font-size: 2.5rem; }
.article-content h3 { font-size: 1.8rem; }

.article-quote {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--color-accent);
  padding: 3rem;
  border-left: 4px solid var(--color-accent);
  background-color: var(--color-primary);
  margin: 4rem 0;
  border-radius: 0 30px 30px 0;
}

.article-dropcap::first-letter {
  float: left;
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-right: 15px;
  color: var(--color-accent);
}

.article-sidebar-card {
  background: var(--color-bg);
  padding: 2.5rem;
  border-radius: 30px;
  border: 1px solid rgba(184, 58, 83, 0.1);
  margin: 4rem 0;
}

.article-footer-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(42, 31, 31, 0.08);
  padding: 4rem 0;
  margin-top: 6rem;
}

@media (max-width: 768px) {
  .article-header { padding: calc(var(--header-height) + 2rem) 0 3rem 0; }
  .article-title { font-size: 2.2rem; }
  .article-featured-img { height: 350px; border-radius: 20px; }
  .article-content { font-size: 1.1rem; }
  .article-quote { font-size: 1.5rem; padding: 2rem; }
}
/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-text-main);
  cursor: pointer;
  z-index: 2001;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: rotate(90deg);
}

.mobile-menu-content {
  width: 100%;
  padding: 4rem 2rem;
  text-align: center;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered link animations */
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(8) { transition-delay: 0.45s; }

.mobile-menu-footer {
  border-top: 1px solid rgba(42, 31, 31, 0.08);
  padding-top: 3rem;
  opacity: 0;
  transition: opacity 0.6s ease 0.6s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
  opacity: 1;
}

.social-links-mobile {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.social-links-mobile a {
  font-size: 1.5rem;
  color: var(--color-accent);
}

/* Hamburger Animation */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2100;
  padding: 10px;
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}

.hamburger-line {
  width: 28px;
  height: 2px;
  background-color: var(--color-text-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}
/* --- Premium Navigation & Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(42, 31, 31, 0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-text-main);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.logo-amp {
  font-family: var(--font-accent);
  color: var(--color-accent);
  font-size: 2.2rem;
  font-weight: 400;
  margin-top: 5px;
  transition: var(--transition-smooth);
}

.logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.logo:hover .logo-amp {
  color: var(--color-accent-hover);
  transform: rotate(-10deg) scale(1.1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-main);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-accent);
}

.nav-cta {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 8px 20px rgba(184, 58, 83, 0.2);
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(184, 58, 83, 0.3);
}
/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  visibility: hidden;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-content {
  width: 100%;
  padding: 4rem 2rem;
  text-align: center;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered link animations */
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(8) { transition-delay: 0.45s; }

.mobile-menu-footer {
  border-top: 1px solid rgba(42, 31, 31, 0.08);
  padding-top: 3rem;
  opacity: 0;
  transition: opacity 0.6s ease 0.6s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
  opacity: 1;
}

.social-links-mobile {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.social-links-mobile a {
  font-size: 1.5rem;
  color: var(--color-accent);
}

/* Hamburger Animation */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2100;
  padding: 10px;
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}

.hamburger-line {
  width: 28px;
  height: 2px;
  background-color: var(--color-text-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.hero-compact .hero-v2-title { margin-bottom: 2rem; padding-top: 1rem; }
