/* Custom Elegant Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 10px;
  opacity: 0.5;
}

::-webkit-scrollbar-thumb:hover {
  background: #a32d44;
}

: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.6s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 32px; /* More rounded, premium feel */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.5);
  --header-height: 90px;
  
  /* New Editorial Tokens */
  --editorial-shadow: 0 30px 60px rgba(42, 31, 31, 0.08);
  --accent-gradient: linear-gradient(135deg, #b83a53 0%, #d88c9a 100%);
  --soft-gradient: linear-gradient(180deg, #fdf5f6 0%, #faf7f7 100%);
}

/* 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; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

/* Editorial Grid Utilities */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.editorial-card-v2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(42, 31, 31, 0.05);
  box-shadow: var(--editorial-shadow);
}

.editorial-card-v2:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 40px 80px rgba(184, 58, 83, 0.15);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
}

/* 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: 90vh; /* Slightly taller for more presence */
  display: flex;
  align-items: center;
  background-color: var(--color-bg); /* Use bg color for cleaner look */
  padding: calc(var(--header-height) + 4rem) 0 60px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, var(--color-secondary) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, var(--color-secondary) 0%, transparent 40%);
}

.hero-v2-eyebrow {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--color-primary);
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(184, 58, 83, 0.1);
}

.hero-v2-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 0;
  display: block;
  font-weight: 700;
}

/* 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);
}

/* General Section Headers */
.section-header {
  margin-bottom: 4rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Occasion Section */
.occasion-section {
  background-color: var(--color-bg);
  padding: 8rem 0;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.occasion-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--editorial-shadow);
  transition: var(--transition-smooth);
}

.occasion-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.occasion-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.occasion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(42, 31, 31, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 1;
  transition: var(--transition-smooth);
}

.occasion-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-white);
  font-weight: 600;
}

.occasion-card:hover {
  transform: translateY(-10px);
}

.occasion-card:hover img {
  transform: scale(1.1);
}

.occasion-card:hover .occasion-overlay {
  background: linear-gradient(to bottom, transparent 20%, rgba(184, 58, 83, 0.8) 100%);
}

/* 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-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: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-v2-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  z-index: 2;
}

.hero-v2-img-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 40px 40px; /* More extreme arch */
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(42, 31, 31, 0.2);
  border: 2px solid var(--color-white);
}

.hero-v2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-v2-img-frame:hover .hero-v2-img {
  transform: scale(1.05);
}

.hero-v2-badge {
  position: absolute;
  bottom: 40px;
  right: -30px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(184, 58, 83, 0.2);
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.1;
}

.badge-subtext {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  font-weight: 700;
  margin-top: 4px;
}

.hero-v2-decor-1 {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent-gradient);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.15;
  filter: blur(20px);
}

.hero-v2-decor-2 {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--color-secondary);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.3;
  filter: blur(40px);
}

.animate-float {
  animation: float-premium 6s ease-in-out infinite;
}

@keyframes float-premium {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

@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; }
}

/* Artisan Section */
.artisan-section {
  background-color: var(--color-white);
  padding: 10rem 0;
}

.artisan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.artisan-visual {
  position: relative;
}

.artisan-img-frame {
  position: relative;
  z-index: 2;
  border-radius: 200px 200px 40px 40px;
  overflow: hidden;
  box-shadow: var(--editorial-shadow);
  border: 1px solid rgba(0,0,0,0.05);
}

.artisan-img-frame img {
  width: 100%;
  display: block;
}

.artisan-badge {
  position: absolute;
  bottom: -40px;
  right: -40px;
  padding: 2.5rem;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(184, 58, 83, 0.2);
  z-index: 10;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  margin-top: 5px;
  font-weight: 600;
}

.artisan-decor {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: 200px 200px 40px 40px;
  z-index: 1;
  opacity: 0.5;
}

.artisan-content .font-accent {
  font-family: var(--font-accent);
  color: var(--color-accent);
  font-size: 1.2em;
  font-weight: 400;
}

.section-text {
  font-size: 1.15rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.artisan-locations {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.location-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-main);
}

.location-item p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .artisan-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .artisan-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .artisan-locations {
    flex-direction: column;
    gap: 2rem;
  }
}

/* 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: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--color-shadow);
  transition: var(--transition-smooth);
  border: 1px solid rgba(42, 31, 31, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(184, 58, 83, 0.12);
  border-color: var(--color-accent);
}

.product-img-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: var(--color-bg);
}


.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-info {
  padding: 2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-main);
}

.product-info p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}

.product-info .btn {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* 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;
}

/* Masonry Gallery & Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--color-white);
  border: 1px solid rgba(42, 31, 31, 0.1);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 10px 25px rgba(184, 58, 83, 0.2);
}

.masonry-grid {
  column-count: 3;
  column-gap: 2rem;
  width: 100%;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 2rem;
  break-inside: avoid;
  transition: all 0.4s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 15px 35px var(--color-shadow);
  background: var(--color-white);
  border: 1px solid rgba(42, 31, 31, 0.05);
}


.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(to top, rgba(42, 31, 31, 0.9), transparent);
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery-info span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.gallery-info h4 {
  color: var(--color-white);
  font-size: 1.4rem;
  margin: 0;
}

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
  .filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
  }
}

/* Testimonials */
.testimonials {
  text-align: center;
}

.bestseller-card {
  min-width: 300px;
  flex: 0 0 auto;
}

/* -------- Micro Animations -------- */
.petal {
  position: absolute;
  top: -20px;
  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: 0;
  transform: translateY(30px);
  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: 1024px) {
  .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: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.premium-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-inner {
    position: relative;
    width: 60px;
    height: 60px;
    animation: rotate-loader 4s linear infinite;
}

.loader-petal {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--color-accent);
    border-radius: 30px 0;
    opacity: 0.8;
    transform-origin: bottom right;
}

.loader-petal:nth-child(1) { transform: translate(-15px, -15px) rotate(0deg); }
.loader-petal:nth-child(2) { transform: translate(-15px, -15px) rotate(90deg); }
.loader-petal:nth-child(3) { transform: translate(-15px, -15px) rotate(180deg); }
.loader-petal:nth-child(4) { transform: translate(-15px, -15px) rotate(270deg); }

.loader-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(184, 58, 83, 0.2);
    z-index: 2;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-main);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fade-text 1.5s ease-in-out infinite alternate;
}

@keyframes rotate-loader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fade-text {
    0% { opacity: 0.3; transform: translateY(5px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- 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: 850px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 2;
  color: var(--color-text-main);
  position: relative;
}

.article-content p {
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--accent-gradient);
  z-index: 3001;
  transition: width 0.1s ease;
}

/* Enhanced Typography */
.article-content h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin: 5rem 0 2rem 0;
  position: relative;
}

.article-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  opacity: 0.3;
}

.article-content h3 {
  font-size: 1.8rem;
  margin: 4rem 0 1.5rem 0;
  color: var(--color-text-light);
}

/* Pull Quote Styling */
.article-quote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--color-accent);
  padding: 4rem;
  border-left: none;
  background-color: var(--color-white);
  margin: 5rem -4rem;
  border-radius: 40px;
  text-align: center;
  box-shadow: var(--editorial-shadow);
  position: relative;
}

.article-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  opacity: 0.1;
  line-height: 1;
}

/* Author Box Enhancement */
.author-box {
  background: var(--color-white) !important;
  border: 1px solid rgba(184, 58, 83, 0.1);
  box-shadow: var(--editorial-shadow);
  transition: var(--transition-smooth);
}

.author-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px rgba(184, 58, 83, 0.1);
}

/* Social Share Bar */
.article-share {
  position: sticky;
  top: 150px;
  left: -100px;
  float: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

@media (max-width: 1200px) {
  .article-share {
    position: static;
    float: none;
    flex-direction: row;
    justify-content: center;
    margin: 3rem 0;
    gap: 1.5rem;
  }
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

.share-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

.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;
}

.post-navigation {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.post-navigation a {
  text-decoration: none;
  transition: transform 0.3s ease;
  max-width: 45%;
}

.post-navigation a:hover {
  transform: translateY(-5px);
}

.post-navigation a:hover span:last-child {
  color: var(--color-accent) !important;
}

.post-nav-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.post-nav-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-main);
  transition: color 0.3s ease;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .post-navigation {
    flex-direction: column;
    gap: 3rem;
  }
  .post-navigation a {
    max-width: 100%;
    text-align: left !important;
  }
  .post-nav-title {
    font-size: 1.3rem;
  }
}

@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;
}

/* Removed redundant media query */

.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(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.header-hidden { transform: translateY(-100%); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); } .header.scrolled {
  padding: 1.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: -1px;
}

.logo-amp {
  font-family: var(--font-accent);
  color: var(--color-accent);
  font-size: 2.6rem;
  font-weight: 400;
  margin: 0 2px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 20px;
}

.nav-links a:hover {
  color: var(--color-accent);
}

.nav-cta {
  background: linear-gradient(135deg, var(--color-text-main) 0%, #4a3f40 100%);
  color: var(--color-white) !important;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.8rem !important;
  box-shadow: 0 10px 20px rgba(42, 31, 31, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-cta:hover {
  background: var(--color-accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(184, 58, 83, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-social-link {
  font-size: 1.2rem;
  color: var(--color-text-main);
  transition: color 0.3s ease;
}

.header-social-link:hover {
  color: var(--color-accent);
}

/* Mobile Specifics */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3000;
  padding: 5px;
}

.hamburger-line {
  width: 30px;
  height: 2px;
  background-color: var(--color-text-main);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .header-social-link {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

/* --- Mobile Menu Redesign --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-menu-overlay.active {
  transform: translateY(0);
}

.mobile-menu-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--color-secondary) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: -1;
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--color-primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3001;
}

.mobile-menu-close:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: rotate(90deg);
}

.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
}

.mobile-menu-header {
  margin-bottom: 3rem;
  text-align: center;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-text-main);
  font-weight: 700;
  text-decoration: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-footer {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 3rem;
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
  opacity: 1;
}

.footer-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.footer-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.social-links-mobile {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-links-mobile a {
  font-size: 1.8rem;
  color: var(--color-text-main);
  transition: color 0.3s ease;
}

.social-links-mobile a:hover {
  color: var(--color-accent);
}

.hamburger-line {
  width: 26px;
  height: 1.5px;
  background-color: var(--color-text-main);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) { transform: translateY(8.5px) 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(-8.5px) rotate(-45deg); }

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  overflow: hidden;
}

.mobile-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-menu-overlay.active {
  visibility: visible;
}

.mobile-menu-overlay.active .mobile-menu-bg {
  transform: translateY(0);
}

.mobile-menu-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 500;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-menu-overlay.active .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.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-footer {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.5s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-contact {
  margin-bottom: 2.5rem;
}

.mobile-menu-contact p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.mobile-menu-contact a {
  font-size: 1.4rem;
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 600;
}

.social-links-mobile {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-links-mobile a {
  font-size: 1.8rem;
  color: var(--color-accent);
}

/* Service Areas Styles */
.neighborhood-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.area-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid rgba(42, 31, 31, 0.05);
  box-shadow: 0 10px 25px var(--color-shadow);
  transition: var(--transition-smooth);
}

.area-card:hover {
  transform: translateX(10px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 35px rgba(184, 58, 83, 0.1);
}

.area-card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.area-card-content span {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.area-card i {
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.area-card:hover i {
  transform: translateX(5px);
}

/* Product Collections Enhancements */
.product-card {
  position: relative;
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 5px 15px rgba(184, 58, 83, 0.3);
}

.btn-whatsapp-direct {
  background: #25D366;
  color: white !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.btn-whatsapp-direct:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(18, 140, 126, 0.2);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
}

@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Responsive Fixes for About Page Redesign */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .about-grid .animate-on-scroll:nth-child(1) {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Timeline adjustment for mobile */
  .about-journey-line {
      display: none;
  }

  [style*="max-width: 900px"] [style*="display: flex"] {
      width: 100% !important;
      padding: 0 !important;
      margin: 0 0 4rem 0 !important;
      justify-content: center !important;
      text-align: center !important;
  }

  [style*="max-width: 900px"] [style*="text-align: right"],
  [style*="max-width: 900px"] [style*="text-align: left"] {
      text-align: center !important;
  }

  [style*="max-width: 900px"] [style*="position: absolute; right: -6px"],
  [style*="max-width: 900px"] [style*="position: absolute; left: -6px"] {
      display: none;
  }
}

@media (max-width: 576px) {
    .about-grid h2 {
        font-size: 2.2rem !important;
    }
}


/* Floating Petals Animation */
.petal {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, #ffd1d9, #b83a53);
  border-radius: 100% 0 100% 0;
  opacity: 0.3;
  pointer-events: none;
  animation: float-down linear infinite;
  z-index: 9990;
  will-change: transform;
}

@keyframes float-down {
  0% {
    transform: translateY(-10vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(110vh) translateX(100px) rotate(720deg);
    opacity: 0;
  }
}

/* Background Watermarks */
.bg-watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 15vw;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
  white-space: nowrap;
  user-select: none;
  text-transform: uppercase;
}

/* Bestseller Section */
.bestseller-section {
  background-color: var(--color-bg);
  padding: 10rem 0;
}

.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.accent-line {
  width: 60px;
  height: 2px;
  background: var(--accent-gradient);
  margin: 1.5rem auto;
}

.card-img-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-card-v2:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content {
  padding: 2rem 2.5rem 2.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(42, 31, 31, 0.05);
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 700;
}

.card-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--color-text-main);
  position: relative;
}

.card-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card-link:hover::after {
  transform: scaleX(1);
}

.btn-wide {
  min-width: 250px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--color-bg);
  padding: 10rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.faq-item-v2 {
  padding: 2.5rem;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--editorial-shadow);
  border: 1px solid rgba(42, 31, 31, 0.05);
  transition: var(--transition-smooth);
}

.faq-item-v2:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.faq-question {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.faq-answer {
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Blog Section */
.blog-section {
  background-color: var(--color-white);
  padding: 10rem 0;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.blog-card-v2 {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-img-wrapper {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-v2:hover img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.read-more {
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* Testimonial Section */
.testimonial-section {
  background-color: var(--color-bg);
  padding: 10rem 0;
}

.testimonial-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial-card-v2 {
  padding: 4rem 3rem;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--editorial-shadow);
  position: relative;
  text-align: center;
}

.quote-icon-v2 {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 2rem;
  opacity: 0.6;
}

.testimonial-content-v2 {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--color-text-main);
}

.author-name {
  display: block;
  font-weight: 700;
  color: var(--color-text-main);
  font-size: 1.1rem;
}

.author-location {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.2rem;
}

/* CTA Section */
.cta-section {
  background: var(--accent-gradient);
  padding: 8rem 0;
  text-align: center;
  color: var(--color-white);
}

.cta-title {
  color: var(--color-white);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.cta-section .btn-primary {
  background: var(--color-white);
  color: var(--color-accent);
}

.cta-section .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.cta-section .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-accent);
}

/* Compact Hero (for sub-pages) */
.hero-compact {
  padding: 10rem 0 6rem;
  background-color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-compact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(circle at center, var(--color-primary) 0%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.hero-compact .container {
  position: relative;
  z-index: 1;
}

/* Custom Orders Page */
.order-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}

.form-container-v2 {
  background: var(--color-white);
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: var(--editorial-shadow);
  border: 1px solid rgba(42, 31, 31, 0.05);
}

.step-box-v2 {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--border-radius);
  border: 1px solid rgba(42, 31, 31, 0.05);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.step-box-v2:hover {
  transform: translateX(10px);
  border-color: var(--color-accent);
}

.step-num-v2 {
  min-width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.step-content-v2 h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.step-content-v2 p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.faq-box-v2 {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--editorial-shadow);
  border: 1px solid rgba(42, 31, 31, 0.05);
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .order-split-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Premium Form UX Improvements */
.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
}

.form-control {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(42, 31, 31, 0.1);
  background-color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-main);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 10px 30px rgba(184, 58, 83, 0.1);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: #a0a0a0;
  opacity: 0.6;
}

textarea.form-control {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}

/* Add a subtle underline animation on focus */
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.form-group:focus-within label {
  color: var(--color-accent);
  transform: translateX(5px);
}

.premium-form .btn-primary {
  width: 100%;
  padding: 1.2rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(184, 58, 83, 0.2);
}

.btn-wide {
  width: 100%;
}

@media (max-width: 576px) {
  .form-container-v2 {
    padding: 2.5rem 1.5rem;
  }
}

/* Minimal Centered Layout */
.form-centered {
  max-width: 700px;
  margin: 0 auto;
}

.post-navigation {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  max-width: 48%;
}

.post-nav-link.next {
  text-align: right;
  align-items: flex-end;
}

.post-nav-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.post-nav-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text-main);
  line-height: 1.3;
}

.post-nav-link:hover .post-nav-title {
  color: var(--color-accent);
}

/* Subtle Integrated CTA */
.article-cta {
  margin: 6rem 0;
  text-align: center;
}

.article-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.article-cta p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.minimal-timeline {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 6rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(42, 31, 31, 0.05);
}

.timeline-step {
  text-align: center;
  flex: 1;
}

.timeline-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  opacity: 0.2;
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.faq-minimal {
  max-width: 800px;
  margin: 6rem auto 0;
  text-align: center;
}

.faq-minimal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .minimal-timeline {
    flex-direction: column;
    gap: 3rem;
  }
  .faq-minimal-grid {
    grid-template-columns: 1fr;
  }
}
