/* Sangeeta's HomeMade CSS - Redesigned Premium Handcrafted Theme */

/* Design Tokens & Colors */
:root {
  /* Premium Handcrafted Color Palette */
  --bg-cream: hsl(38, 50%, 97%);             /* Warm clay kitchen cream */
  --bg-cream-light: hsl(38, 60%, 99%);       /* Soft highlighting cream */
  --primary-maroon: #58111A;                 /* DeepKumkum / Royal Maroon */
  --primary-maroon-hover: #400c12;           
  --accent-gold: #D9A036;                    /* Turmeric gold highlights */
  --accent-gold-hover: #c48b26;
  --accent-sage: #6B8E23;                    /* Fresh sage / leaf green */
  --text-bark: hsl(24, 25%, 11%);            /* Cinnamon bark dark brown */
  --text-bark-light: hsl(24, 15%, 28%);      /* Muted wood brown */
  --pure-white: #ffffff;
  
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Styling Tokens */
  --card-shadow: 0 8px 30px rgba(88, 17, 26, 0.04);
  --hover-shadow: 0 15px 40px rgba(88, 17, 26, 0.08);
  --header-shadow: 0 4px 30px rgba(88, 17, 26, 0.02);
  --border-handcrafted: 1px solid rgba(88, 17, 26, 0.12);
  --border-gold: 1px solid rgba(217, 160, 54, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-bark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-maroon);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-bark-light);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Custom Buttons styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-maroon);
  color: var(--bg-cream);
}

.btn-primary:hover {
  background-color: var(--primary-maroon-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 17, 26, 0.25);
}

.btn-secondary {
  background-color: var(--accent-gold);
  color: var(--primary-maroon);
}

.btn-secondary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 160, 54, 0.25);
}

.btn-outline-secondary {
  border-color: var(--primary-maroon);
  color: var(--primary-maroon);
  background-color: transparent;
}

.btn-outline-secondary:hover {
  background-color: var(--primary-maroon);
  color: var(--bg-cream);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

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

.btn-glow {
  animation: pulse-glow 2s infinite;
}

.btn-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Badges styling */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 4px;
}

.badge-accent {
  background-color: var(--primary-maroon);
  color: var(--bg-cream-light);
}

/* Sticky Top Announcement Bar */
.announcement-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: var(--primary-maroon);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(217, 160, 54, 0.2);
}

.announcement-container {
  padding: 0 24px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sticky Navigation Bar */
.navbar {
  position: sticky;
  top: 40px; /* Sits directly below the 40px announcement bar */
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(246, 240, 230, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  border-bottom: var(--border-handcrafted);
}

.navbar.scrolled {
  height: 70px;
  background-color: rgba(246, 240, 230, 0.96);
  box-shadow: var(--header-shadow);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}

.logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--primary-maroon);
  background-color: var(--pure-white);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-img {
  transform: rotate(10deg) scale(1.05);
}

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

.logo-accent {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: var(--accent-gold);
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-maroon);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-bark-light);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-bark-light);
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-maroon);
  transition: width 0.3s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.instagram-icon-link {
  color: var(--text-bark-light);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.instagram-icon-link:hover {
  color: var(--primary-maroon);
  transform: scale(1.1);
}

.nav-icon {
  width: 22px;
  height: 22px;
}

.nav-cta {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 30px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  height: 20px;
  justify-content: center;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-maroon);
  transition: all 0.3s ease;
}

/* Sections Global Styling */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-sage);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.title-divider {
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 0 auto;
  border-radius: 2px;
}

.title-divider.left {
  margin: 0 0 20px 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  color: var(--bg-cream);
  padding: 100px 0 100px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.02);
}

/* Floating Spices Keyframe Animation */
.spice-float-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.spice-particle {
  position: absolute;
  font-size: 1.8rem;
  pointer-events: none;
  user-select: none;
  opacity: 0.35;
}

.p1 { top: 12%; left: 8%; animation: float-slow 9s ease-in-out infinite alternate; }
.p2 { top: 22%; right: 12%; animation: float-medium 7s ease-in-out infinite alternate; }
.p3 { bottom: 25%; left: 15%; animation: float-fast 5s ease-in-out infinite alternate; }
.p4 { bottom: 18%; right: 18%; animation: float-slow 11s ease-in-out infinite alternate; }
.p5 { top: 48%; left: 4%; animation: float-medium 8s ease-in-out infinite alternate; }
.p6 { top: 55%; right: 6%; animation: float-fast 10s ease-in-out infinite alternate; }

@keyframes float-slow {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-30px) rotate(25deg); }
}
@keyframes float-medium {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-22px) rotate(-20deg) scale(1.15); }
}
@keyframes float-fast {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-16px) rotate(15deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(88, 17, 26, 0.45);
  border: 1px solid rgba(217, 160, 54, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-mini-logo {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
}

.hero-title {
  font-size: 4rem;
  color: var(--bg-cream);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-title .highlight {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.25rem;
  max-width: 720px;
  margin: 0 auto 36px auto;
  color: rgba(246, 240, 230, 0.85);
  font-weight: 500;
}

.hero-promo-tag {
  margin-bottom: 40px;
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--primary-maroon);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(217, 160, 54, 0.3);
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-social-cta {
  display: flex;
  justify-content: center;
}

.hero-insta-btn {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(246, 240, 230, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-insta-btn:hover {
  color: var(--accent-gold);
  background-color: rgba(255,255,255,0.1);
  border-color: var(--accent-gold);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--bg-cream);
  line-height: 0;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 50px;
}

/* Featured Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: var(--bg-cream-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: var(--border-handcrafted);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(217, 160, 54, 0.4);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.25;
  background-color: #faf7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: var(--border-handcrafted);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-img-wrapper .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.product-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.65rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(88, 17, 26, 0.08);
  padding-bottom: 12px;
}

.product-weight {
  font-size: 0.9rem;
  color: var(--text-bark-light);
  font-weight: 700;
  font-family: var(--font-heading);
  font-style: italic;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-maroon);
}

.product-desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
  color: var(--text-bark-light);
}

/* Featured Offer Section */
.offers-section {
  background-color: var(--bg-cream-light);
  position: relative;
}

.offers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(88, 17, 26, 0.015) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.offer-card-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.offer-card {
  background-color: var(--bg-cream);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(88, 17, 26, 0.08);
  position: relative;
  border: 1px solid rgba(217, 160, 54, 0.3);
}

.offer-badge-ribbon {
  position: absolute;
  top: 28px;
  right: -38px;
  background-color: var(--primary-maroon);
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 42px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.05em;
  z-index: 10;
  border: 1px solid rgba(217, 160, 54, 0.2);
}

.offer-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: var(--border-handcrafted);
}

.offer-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-sage);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 12px;
}

.offer-title {
  font-size: 2.1rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.offer-desc {
  font-size: 0.98rem;
  margin-bottom: 32px;
  color: var(--text-bark-light);
}

.offer-price-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  background-color: var(--bg-cream-light);
  padding: 20px 24px;
  border-radius: 12px;
  border: var(--border-handcrafted);
  border-left: 5px solid var(--accent-gold);
}

.price-item {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-bark-light);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.price-value {
  font-size: 1.8rem;
  font-weight: 800;
}

.price-item.original .price-value {
  text-decoration: line-through;
  color: #95a5a6;
  font-size: 1.45rem;
  margin-top: 4px;
}

.price-item.active .price-value {
  color: var(--primary-maroon);
}

.price-item.savings .price-value {
  color: var(--accent-sage);
}

.offer-graphics {
  background-color: #faf7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.combo-visual {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 100%;
  justify-content: center;
}

.visual-card {
  width: 135px;
  background-color: var(--bg-cream-light);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 25px rgba(88,17,26,0.04);
  border: var(--border-handcrafted);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.visual-card img {
  width: 100%;
  height: 125px;
  object-fit: contain;
}

.v-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-maroon);
  margin-top: 8px;
  text-align: center;
  font-family: var(--font-heading);
}

.visual-plus {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.visual-card:hover {
  transform: translateY(-6px) rotate(2deg);
  border-color: var(--accent-gold);
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--bg-cream);
  position: relative;
}

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

.why-card {
  background-color: var(--bg-cream-light);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: var(--border-handcrafted);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  border-color: var(--accent-gold);
}

.why-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.why-icon-box svg {
  width: 28px;
  height: 28px;
}

.why-icon-box.accent-box {
  background-color: rgba(88, 17, 26, 0.06);
  color: var(--primary-maroon);
  border: 1px solid rgba(88, 17, 26, 0.1);
}

.why-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.why-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-bark-light);
}

/* About Us Section ("From Our Kitchen to Yours") */
.about-section {
  background-color: var(--bg-cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

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

.about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(217, 160, 54, 0.25);
}

.about-img-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 12px solid rgba(246, 240, 230, 0.15);
  pointer-events: none;
  z-index: 2;
  border-radius: 20px;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--primary-maroon);
  color: var(--bg-cream-light);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(88, 17, 26, 0.2);
  z-index: 5;
  text-align: center;
  border: 1px solid rgba(217,160,54,0.3);
}

.exp-num {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  line-height: 1.3;
}

.about-content-column {
  padding-left: 10px;
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-maroon);
  margin-bottom: 24px;
  font-family: var(--font-heading);
  line-height: 1.4;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-bark-light);
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  gap: 28px;
  margin-top: 36px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-bark);
}

.about-f-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-sage);
}

/* Food Inspiration Section */
.inspiration-section {
  background-color: var(--bg-cream);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.inspiration-card {
  background-color: var(--bg-cream-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: var(--border-handcrafted);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.inspiration-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  border-color: var(--accent-gold);
}

.insp-img-wrapper {
  overflow: hidden;
  aspect-ratio: 1.25;
  background-color: #faf7f2;
  border-bottom: var(--border-handcrafted);
}

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

.inspiration-card:hover .insp-img {
  transform: scale(1.05);
}

.insp-info {
  padding: 20px;
  flex-grow: 1;
}

.insp-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.insp-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-bark-light);
}

/* Customer Reviews ("Loved By Home Cooks") */
.reviews-section {
  background-color: var(--bg-cream-light);
}

.reviews-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
}

.reviews-slider {
  display: flex;
  position: relative;
  overflow: hidden;
  height: 250px;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--bg-cream);
  padding: 44px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: var(--border-handcrafted);
}

.review-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.review-card.prev-slide {
  transform: translateX(-50px);
  opacity: 0;
}

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

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-bark);
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--primary-maroon);
  font-size: 1rem;
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-bark-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.slider-btn {
  background-color: var(--bg-cream);
  border: var(--border-handcrafted);
  color: var(--primary-maroon);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: var(--primary-maroon);
  color: var(--bg-cream);
  border-color: var(--primary-maroon);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(88, 17, 26, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-maroon);
  width: 24px;
  border-radius: 10px;
}

/* Feedback & Suggestions Section */
.feedback-section {
  background-color: var(--bg-cream);
}

.feedback-container {
  max-width: 750px;
  margin: 0 auto;
}

.feedback-form {
  background-color: var(--bg-cream-light);
  padding: 48px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: var(--border-handcrafted);
}

.form-intro {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 32px;
  color: var(--text-bark-light);
}

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

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-bark);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 8px;
  border: var(--border-handcrafted);
  outline: none;
  background-color: var(--bg-cream);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(217, 160, 54, 0.15);
  background-color: var(--pure-white);
}

/* Star Rating styling */
.rating-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.rating-stars input {
  display: none;
}

.rating-stars label {
  font-size: 2.2rem;
  color: rgba(88, 17, 26, 0.08);
  cursor: pointer;
  transition: color 0.2s ease;
  margin-bottom: 0;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
  color: var(--accent-gold);
}

/* Radio Grid for Google Form Question */
.next-product-group {
  background-color: var(--bg-cream);
  padding: 24px;
  border-radius: 12px;
  border: var(--border-handcrafted);
}

.group-title {
  font-size: 0.9rem;
  font-weight: 800;
}

.group-subtext {
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background-color: var(--bg-cream-light);
  padding: 10px 14px;
  border-radius: 8px;
  border: var(--border-handcrafted);
  transition: all 0.3s ease;
}

.radio-label:hover {
  border-color: var(--accent-gold);
  background-color: var(--pure-white);
}

.radio-label input[type="radio"] {
  accent-color: var(--primary-maroon);
  width: 16px;
  height: 16px;
}

.custom-suggestion-input {
  margin-top: 8px;
  display: block;
  width: 100%;
}

.custom-suggestion-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: rgba(88, 17, 26, 0.04);
}

.form-status {
  text-align: center;
  font-weight: 700;
  margin-top: 16px;
  font-size: 0.95rem;
}

.form-status.success { color: var(--accent-sage); }
.form-status.error { color: var(--primary-maroon); }

/* Instagram Section */
.instagram-section {
  background-color: var(--bg-cream-light);
}

.instagram-handle {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-maroon);
  display: inline-block;
  margin-top: -8px;
  margin-bottom: 24px;
}

.instagram-handle:hover {
  text-decoration: underline;
}

.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.insta-post {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: var(--border-handcrafted);
  cursor: pointer;
}

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

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(88, 17, 26, 0.65);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-cream);
  font-weight: 700;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.insta-post:hover img {
  transform: scale(1.08);
}

.insta-post:hover .insta-overlay {
  opacity: 1;
}

.insta-cta-wrapper {
  text-align: center;
}

/* Contact & FAQ Section */
.contact-faq-section {
  background-color: var(--bg-cream);
}

/* CTAs header */
.contact-cta-header {
  text-align: center;
  margin-bottom: 60px;
  background-color: var(--bg-cream-light);
  padding: 48px;
  border-radius: 20px;
  border: var(--border-handcrafted);
  box-shadow: var(--card-shadow);
}

.contact-cta-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.contact-cta-divider {
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 0 auto 28px auto;
}

.contact-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.business-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.info-card {
  background-color: var(--bg-cream-light);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--card-shadow);
  border: var(--border-handcrafted);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(88, 17, 26, 0.06);
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-details h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.info-details p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.info-details a:hover {
  color: var(--primary-maroon);
}

.contact-form {
  background-color: var(--bg-cream-light);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: var(--border-handcrafted);
}

.contact-form .form-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--bg-cream);
  padding-bottom: 10px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 100%;
  padding: 10px 14px;
  border: var(--border-handcrafted);
  border-radius: 8px;
  outline: none;
  background-color: var(--bg-cream);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-gold);
  background-color: var(--pure-white);
}

/* FAQ Accordion styling */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-cream-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: var(--border-handcrafted);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-bark);
}

.faq-icon-arrow {
  position: relative;
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.faq-icon-arrow::before,
.faq-icon-arrow::after {
  content: '';
  position: absolute;
  background-color: var(--primary-maroon);
  transition: background-color 0.3s ease;
}

.faq-icon-arrow::before {
  top: 5px;
  left: 0;
  width: 12px;
  height: 2px;
}

.faq-icon-arrow::after {
  top: 0;
  left: 5px;
  width: 2px;
  height: 12px;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-content {
  max-height: 160px;
  padding: 0 24px 20px 24px;
  border-top: 1px solid rgba(88, 17, 26, 0.06);
}

.faq-content p {
  font-size: 0.9rem;
  margin-top: 16px;
  margin-bottom: 0;
}

/* Footer Section */
.footer {
  background-color: var(--text-bark);
  color: var(--bg-cream-light);
  padding: 80px 0 24px 0;
  border-top: 2px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-main {
  color: var(--bg-cream-light);
}

.footer-brand .logo-img {
  border-color: var(--accent-gold);
}

.footer-tagline {
  color: rgba(246, 240, 230, 0.7);
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  background-color: rgba(246, 240, 230, 0.05);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-cream-light);
  border: 1px solid rgba(246, 240, 230, 0.1);
}

.footer-socials a:hover {
  background-color: var(--primary-maroon);
  color: var(--bg-cream);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.social-icon {
  width: 20px;
  height: 20px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  color: var(--pure-white);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: rgba(246, 240, 230, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
}

.footer-contact p {
  color: rgba(246, 240, 230, 0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact p a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(246, 240, 230, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background-color: #25d366;
  color: var(--pure-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
}

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

.whatsapp-float-btn .tooltip-text {
  visibility: hidden;
  background-color: var(--text-bark);
  color: var(--bg-cream-light);
  text-align: center;
  padding: 6px 12px;
  border-radius: 6px;
  position: absolute;
  right: 76px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: var(--border-handcrafted);
}

.whatsapp-float-btn .tooltip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--text-bark);
}

.whatsapp-float-btn:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Animations declarations */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 160, 54, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(217, 160, 54, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 160, 54, 0);
  }
}

/* Scroll Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-up-delayed {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.animate-up-delayed.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-up-delayed-more {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.animate-up-delayed-more.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries (Mobile First) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .about-grid {
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 110px; /* Accounts for 40px bar + 70px collapsed height */
    right: -100%;
    width: 280px;
    height: calc(100vh - 110px);
    background-color: var(--bg-cream-light);
    flex-direction: column;
    padding: 40px 24px;
    gap: 20px;
    box-shadow: -5px 5px 15px rgba(88,17,26,0.05);
    transition: right 0.4s ease;
    z-index: 999;
    border-left: var(--border-handcrafted);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-link {
    color: var(--text-bark);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(88, 17, 26, 0.05);
    padding: 10px 0;
    width: 100%;
  }
  
  .navbar.scrolled .nav-menu {
    top: 110px;
    height: calc(100vh - 110px);
  }
  
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .nav-actions {
    margin-right: 15px;
  }
  
  .nav-cta {
    display: none; /* Hide header order button on mobile viewports */
  }
  
  section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.1rem;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-desc {
    font-size: 1.05rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 450px;
  }
  
  .offer-card {
    grid-template-columns: 1fr;
  }
  
  .offer-content {
    padding: 36px 24px;
    border-right: none;
    border-bottom: var(--border-handcrafted);
  }
  
  .offer-price-box {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .offer-graphics {
    padding: 32px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-image-column {
    order: 2;
  }
  
  .about-content-column {
    padding-left: 0;
    order: 1;
  }
  
  .about-img {
    height: 320px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .inspiration-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .reviews-slider {
    height: 320px;
  }
  
  .review-card {
    padding: 24px;
  }
  
  .review-text {
    font-size: 0.95rem;
  }
  
  .feedback-form {
    padding: 28px 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .radio-grid {
    grid-template-columns: 1fr;
  }
  
  .insta-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .contact-cta-title {
    font-size: 1.6rem;
  }
  
  .contact-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .contact-cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .contact-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .whatsapp-float-btn {
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
  }
}
