/* =============================================
   Honeyhaven — Premium Honey Brand
   Complete Design System
   ============================================= */

/* ---- CSS Variables / Color System ---- */
:root {
  /* Honey Amber Ramp */
  --honey-50: #fdf8ed;
  --honey-100: #faedcd;
  --honey-200: #f4d88a;
  --honey-300: #ecbf52;
  --honey-400: #e0a82e;
  --honey-500: #c9a227;
  --honey-600: #b88a1c;
  --honey-700: #926818;
  --honey-800: #6b4d15;
  --honey-900: #4a3510;

  /* Warm Neutral Ramp */
  --cream-50: #fefdfb;
  --cream-100: #fdfaf4;
  --cream-200: #f8f1e4;
  --cream-300: #f0e6d2;
  --cream-400: #e3d4b8;

  /* Charcoal/Brown */
  --charcoal-700: #3d342a;
  --charcoal-800: #2a241d;
  --charcoal-900: #1c1813;

  /* Natural Green Accent */
  --green-400: #6b9b56;
  --green-500: #4d8438;
  --green-600: #3d6b2e;

  /* Functional Colors */
  --success: #2d8659;
  --warning: #e0a82e;
  --error: #c0392b;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(74, 53, 16, 0.08);
  --shadow-md: 0 4px 20px rgba(74, 53, 16, 0.10);
  --shadow-lg: 0 12px 40px rgba(74, 53, 16, 0.14);
  --shadow-xl: 0 24px 60px rgba(74, 53, 16, 0.18);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;
}

/* ---- Base Reset ---- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal-800);
  background-color: var(--cream-100);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--charcoal-900);
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: color var(--t-base);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Buttons ---- */
.btn-honey,
.btn-outline-honey {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--t-base);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-honey {
  background: linear-gradient(135deg, var(--honey-400), var(--honey-600));
  color: #fff;
  box-shadow: 0 4px 15px rgba(184, 138, 28, 0.3);
}

.btn-honey:hover {
  background: linear-gradient(135deg, var(--honey-500), var(--honey-700));
  box-shadow: 0 6px 25px rgba(184, 138, 28, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-honey {
  background: transparent;
  color: var(--honey-700);
  border: 2px solid var(--honey-400);
}

.btn-outline-honey:hover {
  background: var(--honey-100);
  border-color: var(--honey-500);
  color: var(--honey-800);
  transform: translateY(-2px);
}

.btn-honey.btn-lg,
.btn-outline-honey.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

/* ---- Section Helpers ---- */
.section-padding {
  padding: var(--space-2xl) 0;
}

.section-padding-sm {
  padding: var(--space-xl) 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--honey-700);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-desc {
  text-align: center;
  color: var(--charcoal-700);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ---- Header / Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(254, 253, 251, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-300);
  transition: all var(--t-base);
}

.site-header.scrolled {
  background: rgba(254, 253, 251, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-top {
  background: var(--charcoal-900);
  color: var(--cream-200);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.4rem 0;
}

.header-main {
  padding: 0.85rem 0;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--charcoal-900);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-logo i {
  color: var(--honey-500);
  font-size: 1.4rem;
}

.brand-logo span {
  color: var(--honey-600);
}

.nav-link-custom {
  font-weight: 500;
  color: var(--charcoal-700);
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-base);
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--honey-700);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--honey-500);
  transition: all var(--t-base);
  transform: translateX(-50%);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 60%;
}

.header-icon-btn {
  background: none;
  border: none;
  font-size: 1.15rem;
  color: var(--charcoal-700);
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-base);
  position: relative;
}

.header-icon-btn:hover {
  color: var(--honey-600);
  background: var(--honey-50);
}

.cart-count,
.wishlist-count {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--honey-500);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  display: none;
}

/* Mobile header */
.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas-header {
  background: var(--cream-200);
  border-bottom: 1px solid var(--cream-300);
}

.offcanvas-body .nav-link-custom {
  font-size: 1.05rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--cream-200);
  border-radius: 0;
}

.offcanvas-body .nav-link-custom::after {
  display: none;
}

/* ---- Bottom Mobile Nav ---- */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(254, 253, 251, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--cream-300);
  z-index: 1040;
  padding: 0.35rem 0;
  padding-bottom: env(safe-area-inset-bottom, 0.35rem);
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  color: var(--charcoal-700);
  font-size: 0.68rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.3rem 0;
  transition: color var(--t-base);
  position: relative;
}

.bottom-nav-item i {
  font-size: 1.2rem;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--honey-600);
}

.bottom-nav-item .cart-count,
.bottom-nav-item .wishlist-count {
  top: 0;
  right: 50%;
  transform: translateX(18px);
}

/* ---- Search Overlay ---- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 24, 19, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
}

.search-overlay.active {
  display: flex;
}

.search-overlay-content {
  background: var(--cream-50);
  width: 90%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.search-overlay-input-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  gap: 0.75rem;
}

.search-overlay-input-wrap i {
  font-size: 1.25rem;
  color: var(--honey-600);
}

.search-overlay-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-family: var(--font-body);
  background: transparent;
  color: var(--charcoal-800);
}

.search-overlay-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--charcoal-600);
  cursor: pointer;
  padding: 0.25rem;
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
  border-top: 1px solid var(--cream-300);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  transition: background var(--t-fast);
  color: var(--charcoal-800);
}

.search-result-item:hover {
  background: var(--honey-50);
}

.search-result-item img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.search-result-item h6 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

.search-result-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--honey-700);
}

/* ---- Hero Section ---- */
.hero-section {
  background: linear-gradient(170deg, var(--honey-50) 0%, var(--cream-100) 50%, var(--cream-200) 100%);
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 191, 82, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--honey-100);
  color: var(--honey-800);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: var(--honey-600);
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--charcoal-900);
}

.hero-title .accent {
  color: var(--honey-600);
  font-style: italic;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--charcoal-700);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 450px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-floating-badge {
  position: absolute;
  background: rgba(254, 253, 251, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-800);
  animation: float 4s ease-in-out infinite;
}

.hero-floating-badge i {
  font-size: 1.3rem;
  color: var(--honey-500);
}

.hero-floating-badge.top-left {
  top: 8%;
  left: -2%;
}

.hero-floating-badge.bottom-right {
  bottom: 10%;
  right: -2%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--charcoal-900);
  padding: 1.75rem 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--cream-200);
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--honey-400);
}

.trust-item span {
  font-size: 0.82rem;
  font-weight: 500;
}

/* ---- Product Cards ---- */
.product-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--honey-200);
}

.product-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-200);
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--charcoal-900);
  color: var(--honey-200);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  z-index: 2;
}

.product-discount-badge {
  position: absolute;
  top: 0.75rem;
  right: 2.5rem;
  background: var(--error);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  z-index: 2;
}

.wishlist-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(254, 253, 251, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-base);
  z-index: 2;
  color: var(--charcoal-700);
  font-size: 1rem;
}

.wishlist-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.wishlist-btn.active {
  color: var(--error);
}

.product-card-body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 0.25rem;
  display: block;
  line-height: 1.3;
}

.product-card-title:hover {
  color: var(--honey-700);
}

.product-card-desc {
  font-size: 0.78rem;
  color: var(--charcoal-700);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.product-card-rating .stars {
  color: var(--honey-500);
  font-size: 0.75rem;
  display: flex;
  gap: 1px;
}

.product-card-rating .review-count {
  font-size: 0.72rem;
  color: var(--charcoal-700);
}

.product-card-sizes {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.size-pill {
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid var(--cream-400);
  background: var(--cream-100);
  color: var(--charcoal-700);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--t-fast);
}

.size-pill.active,
.size-pill:hover {
  background: var(--honey-500);
  color: #fff;
  border-color: var(--honey-500);
}

.product-card-pricing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.product-card-pricing .price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--charcoal-900);
}

.product-card-pricing .mrp {
  font-size: 0.82rem;
  color: var(--charcoal-700);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  padding: 0.55rem;
  background: var(--honey-100);
  color: var(--honey-800);
  border: 1px solid var(--honey-200);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--honey-400), var(--honey-600));
  color: #fff;
  border-color: var(--honey-500);
}

/* ---- Collections Section ---- */
.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  display: block;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 24, 19, 0.85) 0%, rgba(28, 24, 19, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  transition: background var(--t-slow);
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(28, 24, 19, 0.9) 0%, rgba(74, 53, 16, 0.3) 60%, rgba(201, 162, 39, 0.15) 100%);
}

.collection-overlay h4 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.collection-overlay p {
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.collection-overlay .btn-text {
  color: var(--honey-200);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--t-base);
}

.collection-card:hover .collection-overlay .btn-text {
  gap: 0.7rem;
}

/* ---- Why Choose Us ---- */
.why-section {
  background: var(--cream-200);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 17 L60 35 L30 52 L0 35 L0 17 Z' fill='%23c9a227' fill-opacity='0.04'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
}

.why-card {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: all var(--t-base);
  border: 1px solid var(--cream-300);
  position: relative;
  z-index: 1;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--honey-200);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey-100), var(--honey-200));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.why-icon-wrap i {
  font-size: 1.5rem;
  color: var(--honey-700);
}

.why-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--charcoal-700);
  margin: 0;
}

/* ---- Brand Story ---- */
.brand-story-section {
  background: var(--cream-50);
}

.brand-story-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}

.brand-story-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.brand-story-content p {
  color: var(--charcoal-700);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.story-journey {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.story-step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--honey-50);
  border: 1px solid var(--honey-200);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal-800);
}

.story-step i {
  color: var(--honey-600);
  font-size: 0.9rem;
}

/* ---- Quality Section ---- */
.quality-section {
  background: linear-gradient(170deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
  color: var(--cream-200);
  padding: var(--space-2xl) 0;
}

.quality-section .section-title {
  color: var(--cream-100);
}

.quality-section .section-subtitle {
  color: var(--honey-400);
}

.quality-section .section-desc {
  color: var(--cream-300);
}

.quality-badge-card {
  background: rgba(254, 253, 251, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--t-base);
  height: 100%;
}

.quality-badge-card:hover {
  background: rgba(254, 253, 251, 0.08);
  border-color: var(--honey-400);
  transform: translateY(-4px);
}

.quality-badge-card .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.quality-badge-card .icon-wrap i {
  font-size: 1.35rem;
  color: var(--honey-400);
}

.quality-badge-card h6 {
  color: var(--cream-100);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--honey-50);
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.testimonial-stars {
  color: var(--honey-500);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 2px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal-800);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--honey-200);
}

.testimonial-author h6 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
}

.testimonial-location {
  margin: 0;
  font-size: 0.78rem;
  color: var(--charcoal-700);
  text-align: left;
}

.testimonial-product {
  margin: 0;
  font-size: 0.78rem;
  color: var(--honey-600);
  text-align: left;
  font-weight: 500;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.7;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--honey-500);
  border-radius: 50%;
  padding: 1.5rem;
  background-size: 50%;
}

/* ---- Instagram / Social Proof ---- */
.insta-section {
  background: var(--cream-100);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.insta-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 19, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}

.insta-item:hover .insta-item-overlay {
  opacity: 1;
}

.insta-item-overlay i {
  font-size: 1.5rem;
  color: #fff;
}

/* ---- Newsletter ---- */
.newsletter-section {
  background: linear-gradient(135deg, var(--honey-100), var(--cream-200));
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.newsletter-inner p {
  color: var(--charcoal-700);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--cream-400);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  background: var(--cream-50);
  color: var(--charcoal-800);
  transition: border-color var(--t-base);
}

.newsletter-form input:focus {
  border-color: var(--honey-400);
}

.newsletter-form button {
  padding: 0.75rem 1.75rem;
  white-space: nowrap;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal-900);
  color: var(--cream-300);
  padding: 4rem 0 1rem;
}

.footer-brand .brand-logo {
  color: var(--cream-100);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--cream-300);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(254, 253, 251, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-200);
  font-size: 1rem;
  transition: all var(--t-base);
}

.footer-social a:hover {
  background: var(--honey-500);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h6 {
  color: var(--cream-100);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: var(--cream-300);
  font-size: 0.85rem;
  transition: color var(--t-base);
}

.footer-col ul a:hover {
  color: var(--honey-400);
}

.footer-bottom {
  border-top: 1px solid rgba(254, 253, 251, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--cream-300);
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.payment-icons i {
  font-size: 1.5rem;
  color: var(--cream-300);
  opacity: 0.7;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--cream-300);
}

.secure-badge i {
  color: var(--green-400);
  font-size: 1rem;
}

/* ---- Page Banner ---- */
.page-banner {
  background: linear-gradient(170deg, var(--honey-50), var(--cream-200));
  padding: 3rem 0 2rem;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-banner nav {
  display: inline-flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--charcoal-700);
}

.page-banner nav a {
  color: var(--honey-700);
}

.page-banner nav a:hover {
  color: var(--honey-800);
}

/* ---- Shop Page ---- */
.shop-sidebar {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: sticky;
  top: 90px;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group h6 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--charcoal-900);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--charcoal-700);
}

.filter-check input {
  accent-color: var(--honey-500);
  width: 16px;
  height: 16px;
}

.price-range-wrap {
  padding: 0.25rem 0;
}

.price-range-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--honey-500);
}

.price-label {
  font-size: 0.85rem;
  color: var(--charcoal-700);
  margin-top: 0.4rem;
  font-weight: 600;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}

.shop-search-input {
  border: 2px solid var(--cream-400);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  outline: none;
  background: var(--cream-100);
  color: var(--charcoal-800);
  max-width: 300px;
  width: 100%;
  transition: border-color var(--t-base);
}

.shop-search-input:focus {
  border-color: var(--honey-400);
}

.shop-sort-select {
  border: 2px solid var(--cream-400);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  outline: none;
  background: var(--cream-100);
  color: var(--charcoal-800);
  cursor: pointer;
}

.shop-sort-select:focus {
  border-color: var(--honey-400);
}

/* ---- Product Detail Page ---- */
.product-gallery {
  position: sticky;
  top: 90px;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-200);
  margin-bottom: 0.75rem;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
}

.gallery-thumb {
  width: 70px;
  height: 70px;
  border: 2px solid var(--cream-300);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color var(--t-base);
  flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--honey-500);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.product-detail-category {
  color: var(--honey-700);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-detail-rating .stars {
  color: var(--honey-500);
  display: flex;
  gap: 1px;
}

.product-detail-rating .rating-number {
  font-weight: 700;
  font-size: 0.9rem;
}

.product-detail-rating .review-count {
  font-size: 0.85rem;
  color: var(--charcoal-700);
}

.product-detail-tagline {
  font-size: 1rem;
  color: var(--charcoal-700);
  margin-bottom: 1rem;
}

.product-detail-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-detail-pricing .price-main {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal-900);
}

.product-detail-pricing .mrp-main {
  font-size: 1.1rem;
  color: var(--charcoal-700);
  text-decoration: line-through;
}

.discount-tag {
  background: var(--error);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-option {
  padding: 0.5rem 1rem;
  border: 2px solid var(--cream-400);
  background: var(--cream-50);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-700);
  transition: all var(--t-base);
}

.size-option.active,
.size-option:hover {
  border-color: var(--honey-500);
  background: var(--honey-50);
  color: var(--honey-800);
}

.product-detail-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.wishlist-large-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--cream-400);
  background: var(--cream-50);
  color: var(--charcoal-700);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  flex-shrink: 0;
}

.wishlist-large-btn:hover {
  border-color: var(--honey-400);
  color: var(--error);
}

.wishlist-large-btn.active {
  color: var(--error);
  border-color: var(--error);
}

.product-detail-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-mini {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--charcoal-700);
  font-weight: 500;
}

.trust-mini i {
  color: var(--green-500);
  font-size: 1rem;
}

/* ---- Accordion ---- */
.product-accordion .accordion-item {
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.product-accordion .accordion-button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal-900);
  background: var(--cream-50);
  padding: 1rem 1.25rem;
}

.product-accordion .accordion-button:not(.collapsed) {
  background: var(--honey-50);
  color: var(--honey-800);
  box-shadow: none;
}

.product-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--honey-300);
}

.product-accordion .accordion-body {
  padding: 1.25rem;
  color: var(--charcoal-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.benefits-list i {
  color: var(--green-500);
  font-size: 1.05rem;
}

/* ---- Cart Page ---- */
.cart-item {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: box-shadow var(--t-base);
}

.cart-item:hover {
  box-shadow: var(--shadow-sm);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.cart-item-size {
  font-size: 0.82rem;
  color: var(--charcoal-700);
  margin-bottom: 0.5rem;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: var(--error);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity var(--t-base);
}

.cart-remove-btn:hover {
  opacity: 0.7;
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--cream-400);
  border-radius: 50px;
  overflow: hidden;
  background: var(--cream-100);
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 1.1rem;
  color: var(--charcoal-800);
  cursor: pointer;
  transition: background var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--honey-100);
}

.qty-value {
  min-width: 36px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-price {
  font-size: 0.88rem;
  color: var(--charcoal-700);
  display: block;
}

.cart-item-subtotal {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal-900);
}

.cart-summary-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}

.cart-summary-card h5 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-300);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
}

.summary-row .label {
  color: var(--charcoal-700);
}

.summary-row .value {
  font-weight: 600;
  color: var(--charcoal-900);
}

.summary-row.total {
  border-top: 2px solid var(--cream-300);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.summary-row.total .label {
  font-size: 1.05rem;
  font-weight: 700;
}

.summary-row.total .value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--honey-700);
}

.free-ship-note {
  font-size: 0.8rem;
  color: var(--green-600);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.empty-cart {
  padding: 3rem 1rem;
}

/* ---- Checkout Page ---- */
.checkout-form-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.checkout-form-card h5 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-form-card h5 i {
  color: var(--honey-600);
}

.form-label-honey {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-800);
  margin-bottom: 0.35rem;
}

.form-control-honey {
  border: 2px solid var(--cream-400);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  background: var(--cream-100);
  color: var(--charcoal-800);
  transition: border-color var(--t-base);
  width: 100%;
}

.form-control-honey:focus {
  outline: none;
  border-color: var(--honey-400);
  background: var(--cream-50);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--cream-400);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: all var(--t-base);
  background: var(--cream-100);
}

.payment-option:hover,
.payment-option.active {
  border-color: var(--honey-400);
  background: var(--honey-50);
}

.payment-option input {
  accent-color: var(--honey-500);
  width: 18px;
  height: 18px;
}

.payment-option i {
  font-size: 1.3rem;
  color: var(--honey-600);
}

.payment-option label {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  flex: 1;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-300);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.checkout-item-info h6 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
}

.checkout-item-info p {
  font-size: 0.78rem;
  color: var(--charcoal-700);
  margin: 0;
}

.checkout-item-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal-900);
  margin-left: auto;
}

.checkout-summary-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}

/* ---- About Page ---- */
.about-hero {
  background: linear-gradient(170deg, var(--honey-50), var(--cream-200));
  padding: 4rem 0;
}

.about-text-block h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

.about-text-block p {
  font-size: 1.05rem;
  color: var(--charcoal-700);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.value-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: all var(--t-base);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey-100), var(--honey-200));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-card .icon-wrap i {
  font-size: 1.5rem;
  color: var(--honey-700);
}

.value-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--charcoal-700);
  margin: 0;
}

/* ---- Contact Page ---- */
.contact-info-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: all var(--t-base);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-info-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey-100), var(--honey-200));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-info-card .icon-wrap i {
  font-size: 1.35rem;
  color: var(--honey-700);
}

.contact-info-card h6 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: var(--charcoal-700);
  margin: 0;
}

.contact-form-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 2rem;
}

/* ---- Toast ---- */
.honey-toast-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.honey-toast {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--charcoal-900);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(100px);
  transition: all 300ms ease;
  pointer-events: auto;
  max-width: 320px;
}

.honey-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.honey-toast i {
  font-size: 1.1rem;
  color: var(--green-400);
}

.honey-toast.error i {
  color: var(--error);
}

.honey-toast.heart i {
  color: var(--error);
}

/* ---- Scroll Animations ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-in-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.slide-in-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.slide-in-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.fade-in-up:nth-child(1) { transition-delay: 0ms; }
.fade-in-up:nth-child(2) { transition-delay: 80ms; }
.fade-in-up:nth-child(3) { transition-delay: 160ms; }
.fade-in-up:nth-child(4) { transition-delay: 240ms; }
.fade-in-up:nth-child(5) { transition-delay: 320ms; }
.fade-in-up:nth-child(6) { transition-delay: 400ms; }

/* ---- Responsive: Mobile Bottom Nav ---- */
@media (max-width: 991.98px) {
  .bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  body {
    padding-bottom: 60px;
  }

  .honey-toast-container {
    bottom: 70px;
    left: 16px;
    right: 16px;
  }

  .honey-toast {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 2rem 0 2.5rem;
    text-align: center;
  }

  .hero-badge {
    margin-bottom: 1rem;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrap {
    margin-top: 2rem;
  }

  .hero-image-wrap img {
    max-width: 320px;
  }

  .hero-floating-badge {
    display: none;
  }

  .trust-item span {
    font-size: 0.72rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .section-desc {
    margin-bottom: 2rem;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .product-card-sizes {
    display: none;
  }

  .product-card-desc {
    -webkit-line-clamp: 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cart-item-price,
  .cart-item-subtotal {
    font-size: 0.85rem;
  }

  .product-gallery {
    position: static;
  }

  .gallery-thumb {
    width: 56px;
    height: 56px;
  }

  .product-detail-actions .btn-honey,
  .product-detail-actions .btn-outline-honey {
    flex: 1;
    min-width: 140px;
  }

  .checkout-summary-card {
    position: static;
  }

  .shop-sidebar {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-buttons .btn-honey,
  .hero-buttons .btn-outline-honey {
    width: 100%;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card-body {
    padding: 0.6rem;
  }

  .product-card-title {
    font-size: 0.82rem;
  }

  .product-card-desc {
    font-size: 0.72rem;
  }

  .product-card-pricing .price {
    font-size: 0.95rem;
  }

  .btn-add-cart {
    font-size: 0.76rem;
    padding: 0.45rem;
  }
}
