/* ===== MISHARI BEAUTY CREAM - CUSTOM CSS ===== */

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FDE8E4 0%, #F5CFC9 40%, #E8B4B8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-jar {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  position: relative;
}

.jar-visual {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--blush));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 40px rgba(196, 104, 122, 0.4);
  animation: pulse 1.5s ease-in-out infinite;
}

.jar-visual .jar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
}

.jar-visual .jar-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.preloader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(196, 104, 122, 0.2);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: var(--rose);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

body.loader-active {
  overflow: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --rose: #E8A0A0;
  --blush: #F5CFC9;
  --cream: #FDF6F0;
  --pink-deep: #C4687A;
  --text-dark: #2D1B1B;
  --text-mid: #7A4A50;
  --gold: #C9A96E;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.font-serif {
  font-family: 'Cormorant Garamond', serif;
}

.text-rose { color: var(--rose); }
.text-pink { color: var(--pink-deep); }
.text-mid { color: var(--text-mid); }
.bg-cream { background-color: var(--cream); }
.bg-dark { background-color: var(--text-dark); }

/* ===== NAVBAR ===== */
.navbar-mishari {
  background: rgba(253, 246, 240, 0.95) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 104, 122, 0.15);
  padding: 14px 0;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  font-style: italic;
  color: var(--pink-deep) !important;
  letter-spacing: 2px;
}

.nav-link {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--text-mid) !important;
  font-weight: 400 !important;
  transition: color 0.3s !important;
}

.nav-link:hover {
  color: var(--pink-deep) !important;
}

/* Navbar Actions Container */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile Cart Button */
.btn-cart-mobile {
  position: relative;
  color: var(--pink-deep);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-cart-mobile:hover {
  background: rgba(196, 104, 122, 0.1);
}

.btn-cart-mobile .cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--rose);
  color: white;
  font-size: 9px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.btn-cart-mobile .cart-badge:empty,
.btn-cart-mobile .cart-badge[data-count="0"] {
  display: none;
}

/* Hide mobile cart on large screens */
@media (min-width: 992px) {
  .btn-cart-mobile {
    display: none;
  }
}

/* Show mobile cart on medium and small screens */
@media (max-width: 991px) {
  .btn-cart-mobile {
    display: flex;
  }
}

.btn-nav-order {
  background: var(--pink-deep);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-nav-order:hover {
  background: var(--text-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(196, 104, 122, 0.35);
}

.btn-cart {
  position: relative;
  color: white;
  padding: 10px 20px;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-deep);
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-cart:hover {
  background: var(--text-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(196, 104, 122, 0.35);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--rose);
  color: white;
  font-size: 9px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
  display: none;
}

.cart-badge:not(:empty) {
  display: flex;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #FDE8E4 0%, #F5CFC9 40%, #E8B4B8 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--pink-deep);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 90px);
  line-height: 0.95;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--pink-deep);
  display: block;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 430px;
}

.btn-primary-pink {
  background: var(--pink-deep);
  color: white;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary-pink:hover {
  background: var(--text-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 104, 122, 0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  border: 1.5px solid var(--text-dark);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: white;
}

/* Product Jar */
.product-showcase {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.8), rgba(245,207,201,0.5));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(196, 104, 122, 0.3);
  animation: float 4s ease-in-out infinite;
}

.product-showcase-image {
  overflow: hidden;
  padding: 26px;
}

.hero-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(196, 104, 122, 0.28));
}

.product-jar {
  width: 200px;
  height: 200px;
  background: linear-gradient(145deg, #fff 0%, #fde8e4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(196, 104, 122, 0.25),
              inset 0 2px 10px rgba(255,255,255,0.8);
}

.jar-label {
  width: 140px;
  height: 140px;
  background: linear-gradient(145deg, #C4687A, #E8A0A0);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.jar-label .jar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.jar-label .jar-sub {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: white;
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite reverse;
}

.badge-icon { font-size: 22px; }

.badge-text {
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.4;
}

.badge-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--text-dark);
  padding: 50px 0;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  color: var(--rose);
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  margin: auto;
}

/* ===== SECTION COMMON ===== */
.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
}

.section-heading em {
  font-style: italic;
  color: var(--pink-deep);
}

.section-heading.light { color: white; }

/* ===== INGREDIENTS ===== */
.ingredients-section {
  background: linear-gradient(135deg, #FDF6F0, #FDE8E4);
  padding: 100px 0;
}

.ingredient-card {
  background: white;
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(196, 104, 122, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-deep), var(--rose));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(196, 104, 122, 0.2);
}

.ingredient-card:hover::before {
  transform: scaleX(1);
}

.ingredient-icon { font-size: 44px; margin-bottom: 18px; }

.ingredient-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.ingredient-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== BENEFITS ===== */
.benefits-section {
  background: var(--cream);
  padding: 100px 0;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(196, 104, 122, 0.12);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--blush);
  font-weight: 600;
  line-height: 1;
  min-width: 50px;
}

.benefit-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.benefit-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.benefits-visual {
  background: linear-gradient(145deg, #FDE8E4, #E8B4B8);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.benefits-visual::before {
  content: 'MISHARI';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  pointer-events: none;
}

.visual-jar {
  width: 170px;
  height: 170px;
  background: linear-gradient(145deg, #C4687A, #E8A0A0);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 30px;
  box-shadow: 0 30px 60px rgba(196, 104, 122, 0.4);
}

.visual-jar .vj-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
}

.visual-jar .vj-sub {
  font-size: 9px;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.v-badge {
  background: white;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--pink-deep);
  font-weight: 500;
  display: inline-block;
  margin: 4px;
}

/* ===== PRODUCTS ===== */
.products-section {
  background: var(--text-dark);
  padding: 100px 0;
}

.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s;
  height: 100%;
}

.product-card:hover {
  border-color: var(--rose);
  transform: translateY(-6px);
}

.product-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img.pink-grad { background: linear-gradient(135deg, #C4687A, #E8A0A0); }
.product-img.gold-grad { background: linear-gradient(135deg, #C9A96E, #E8C99A); }
.product-img.peach-grad { background: linear-gradient(135deg, #E8B4B8, #F5CFC9); }

.product-jar-mini {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  text-align: center;
}

.product-jar-mini .pjm-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
}

.product-jar-mini .pjm-sub {
  font-size: 8px;
  letter-spacing: 1px;
  opacity: 0.85;
}

.product-info {
  padding: 28px;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--rose);
  font-weight: 300;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-add-cart {
  flex: 1;
  padding: 12px 16px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 104, 122, 0.3);
}

.btn-add-cart:active {
  transform: translateY(0);
}

.btn-order-product {
  background: var(--pink-deep);
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-order-product:hover {
  background: var(--text-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 104, 122, 0.3);
}

/* ===== MISHARI TESTIMONIALS SLIDER ===== */
.mishari-testimonial-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0 50px;
  overflow: hidden;
}

.mishari-testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.mishari-testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.mishari-testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(196, 104, 122, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  margin: 0 auto;
  max-width: 100%;
}

.mishari-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(196, 104, 122, 0.15);
}

.mishari-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.mishari-testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 20px;
}

.mishari-testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.mishari-testimonial-city {
  font-size: 11px;
  color: var(--rose);
  letter-spacing: 1px;
}

/* Slider Controls */
.mishari-testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mishari-testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--rose);
  background: transparent;
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mishari-testimonial-btn:hover {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: white;
}

.mishari-testimonial-dots {
  display: flex;
  gap: 10px;
}

.mishari-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(196, 104, 122, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.mishari-testimonial-dot.active {
  background: var(--rose);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 576px) {
  .mishari-testimonial-wrapper {
    padding: 0 40px;
  }
  
  .mishari-testimonial-card {
    padding: 30px 20px;
  }
  
  .mishari-testimonial-text {
    font-size: 16px;
  }
  
  .mishari-testimonial-btn {
    width: 40px;
    height: 40px;
  }
}

/* ===== TESTIMONIALS CAROUSEL ===== */
#reviewsCarousel .carousel-inner {
  padding-bottom: 60px;
}

#reviewsCarousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

#reviewsCarousel .carousel-item-active {
  display: block;
}

/* Carousel Controls */
#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 20px rgba(196, 104, 122, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}

#reviewsCarousel .carousel-control-prev {
  left: -60px;
}

#reviewsCarousel .carousel-control-next {
  right: -60px;
}

#reviewsCarousel .carousel-control-prev:hover,
#reviewsCarousel .carousel-control-next:hover {
  background: var(--pink-deep);
  box-shadow: 0 6px 25px rgba(196, 104, 122, 0.4);
}

#reviewsCarousel .carousel-control-prev-icon,
#reviewsCarousel .carousel-control-next-icon {
  background-image: none;
  width: auto;
  height: auto;
}

#reviewsCarousel .carousel-control-prev-icon::before,
#reviewsCarousel .carousel-control-next-icon::before {
  content: '\2039';
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  line-height: 1;
}

#reviewsCarousel .carousel-control-next-icon::before {
  content: '\203A';
}

#reviewsCarousel .carousel-control-prev:hover .carousel-control-prev-icon::before,
#reviewsCarousel .carousel-control-next:hover .carousel-control-next-icon::before {
  color: white;
}

/* Carousel Indicators */
#reviewsCarousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

#reviewsCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--rose);
  opacity: 0.4;
  border: none;
  margin: 0 5px;
  transition: all 0.3s ease;
}

#reviewsCarousel .carousel-indicators button.active {
  background-color: var(--pink-deep);
  opacity: 1;
  transform: scale(1.2);
}

#reviewsCarousel .carousel-indicators button:hover {
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  #reviewsCarousel .carousel-control-prev {
    left: 10px;
  }
  
  #reviewsCarousel .carousel-control-next {
    right: 10px;
  }
  
  #reviewsCarousel .carousel-control-prev,
  #reviewsCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  #reviewsCarousel .testimonial-card {
    padding: 24px;
  }
  
  #reviewsCarousel .carousel-control-prev,
  #reviewsCarousel .carousel-control-next {
    display: none;
  }
}

/* ===== HOW TO USE ===== */
.howto-section {
  background: var(--cream);
  padding: 100px 0;
}

.step-card {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink-deep);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(196, 104, 122, 0.4);
}

.step-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

.step-connector {
  position: absolute;
  top: 52px;
  right: -15%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--blush));
}

/* ===== ORDER SECTION ===== */
.order-section {
  background: var(--text-dark);
  padding: 100px 0;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  height: 100%;
}

.contact-card:hover {
  border-color: var(--rose);
  background: rgba(232, 160, 160, 0.1);
  transform: translateY(-4px);
}

.contact-card:hover .contact-icon svg {
  fill: white !important;
}

.contact-icon { 
  font-size: 30px; 
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  fill: var(--rose);
}
.contact-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px;
}

.contact-val {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe5c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1A0D0D;
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--rose);
  font-style: italic;
  text-decoration: none;
}

.footer-about {
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-heading {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--rose);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.5);
}

.footer-contact li i {
  color: var(--rose);
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--rose);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link svg {
  fill: white;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

.social-link.whatsapp:hover {
  background: #25D366 !important;
}

.social-link.tiktok:hover {
  background: #000000 !important;
}

.social-link.facebook:hover {
  background: #1877F2 !important;
}

/* Contact card icons in order section */
.contact-card .contact-icon svg,
.contact-icon svg {
  fill: var(--rose) !important;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 40px 0 20px;
}

.footer-link {
  color: var(--rose);
  text-decoration: none;
}

.footer-link:hover {
  color: white;
}

/* ===== MODALS ===== */
.modal-content {
  background: var(--cream);
  border: none;
  border-radius: 16px;
}

.modal-header {
  border-bottom: 1px solid rgba(196, 104, 122, 0.2);
  padding: 20px 24px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text-dark);
  font-weight: 600;
}

.modal-body {
  padding: 24px;
  color: var(--text-dark);
}

.modal-body h6 {
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 10px;
}

.modal-body h6:first-child {
  margin-top: 0;
}

.modal-body p {
  color: var(--text-mid);
  line-height: 1.7;
}

.modal-body ul, .modal-body ol {
  color: var(--text-mid);
  padding-left: 20px;
}

.modal-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.btn-close {
  filter: invert(1) grayscale(100%) brightness(50%);
}

/* FAQ Items */
.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(196, 104, 122, 0.15);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h6 {
  margin-top: 0 !important;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-1 { animation: fadeUp 0.8s 0.1s ease forwards both; }
.animate-2 { animation: fadeUp 0.8s 0.25s ease forwards both; }
.animate-3 { animation: fadeUp 0.8s 0.4s ease forwards both; }
.animate-4 { animation: fadeUp 0.8s 0.55s ease forwards both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section { padding: 100px 0 60px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .product-showcase { width: 280px; height: 280px; }
  .product-jar { width: 160px; height: 160px; }
  .jar-label { width: 115px; height: 115px; }
  .hero-badge { right: 0; bottom: 10px; }
  .stat-divider { display: none; }
  .stats-bar .col-md-2 { margin-bottom: 20px; }
  .step-connector { display: none; }
  .benefits-visual { margin-top: 40px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 48px; }
  .section-heading { font-size: 32px; }
  .product-showcase { width: 240px; height: 240px; }
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--text-dark);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
  font-size: 14px;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification svg {
  color: #25D366;
  flex-shrink: 0;
}

/* ===== CART PAGE STYLES ===== */
.cart-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #FDE8E4 0%, #F5CFC9 40%, #E8B4B8 100%);
  padding-top: 100px;
  padding-bottom: 60px;
}

.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cart-header {
  text-align: center;
  margin-bottom: 40px;
}

.cart-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cart-header h1 em {
  color: var(--rose);
  font-style: italic;
}

.cart-header p {
  color: var(--text-mid);
  font-size: 16px;
}

.cart-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
}

.cart-items {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(196, 104, 122, 0.15);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
}

.cart-item-jar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-style: italic;
  text-align: center;
  padding: 10px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 16px;
  color: var(--rose);
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border-radius: 25px;
  padding: 4px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.qty-btn:hover {
  background: var(--rose);
  color: white;
}

.qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

.btn-remove {
  background: none;
  border: none;
  color: var(--text-mid);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.btn-remove:hover {
  color: #dc3545;
}

.cart-item-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-dark);
  font-weight: 600;
  min-width: 100px;
  text-align: right;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty svg {
  color: var(--rose);
  opacity: 0.5;
  margin-bottom: 20px;
}

.cart-empty h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cart-empty p {
  color: var(--text-mid);
  margin-bottom: 24px;
}

.btn-continue-shopping {
  display: inline-block;
  background: var(--rose);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  color: white;
}

/* Cart Summary */
.cart-summary {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(196, 104, 122, 0.15);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: var(--text-mid);
}

.summary-row.total {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(196, 104, 122, 0.15);
}

.summary-row.total span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--rose);
}

.btn-checkout {
  width: 100%;
  background: var(--rose);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  transition: all 0.3s ease;
}

.btn-checkout:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 104, 122, 0.35);
}

.btn-checkout svg {
  fill: white;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-mid);
}

.secure-checkout svg {
  width: 14px;
  height: 14px;
}

/* Responsive Cart */
@media (max-width: 992px) {
  .cart-content {
    grid-template-columns: 1fr;
  }
  
  .cart-item {
    grid-template-columns: 70px 1fr;
    gap: 15px;
  }
  
  .cart-item-actions {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    grid-column: span 2;
  }
  
  .cart-item-total {
    grid-column: span 2;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .cart-header h1 {
    font-size: 36px;
  }
  
  .cart-items {
    padding: 20px;
  }
  
  .cart-item {
    grid-template-columns: 60px 1fr;
  }
  
  .cart-item-jar {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }
}
