/** Shopify CDN: Minification failed

Line 22:18 Expected identifier but found whitespace
Line 22:20 Unexpected "{"
Line 22:30 Expected ":"
Line 23:17 Expected identifier but found whitespace
Line 23:19 Unexpected "{"
Line 23:29 Expected ":"
Line 25:21 Expected identifier but found whitespace
Line 25:23 Unexpected "{"
Line 25:33 Expected ":"
Line 26:13 Expected identifier but found whitespace
... and 11 more hidden warnings

**/
/* ==========================================================================
   NADAN DELIGHTS - CORE THEME CSS
   ========================================================================== */

/* 1. Reset and Core Variables */
:root {
  --color-primary: {{ settings.color_primary_green | default: '#218B30' }};
  --color-accent: {{ settings.color_accent_gold | default: '#F6B324' }};
  --color-accent-rgb: 246, 179, 36;
  --color-terracotta: {{ settings.color_terracotta | default: '#D40C1A' }};
  --color-bg: {{ settings.color_background | default: '#FDFBF2' }};
  --color-text: {{ settings.color_text | default: '#171717' }};
  --color-text-muted: {{ settings.color_text_muted | default: '#707070' }};
  --color-border: {{ settings.color_border | default: '#E6E5DD' }};
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --box-shadow: 0 10px 30px rgba(33, 139, 48, 0.05);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* Base Layout Helpers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 48px 0;
  }
}

.text-center { text-align: center; }

/* Traditional Kasavu Border Element */
.kasavu-border {
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #FFF5CC 50%, var(--color-accent) 100%);
  width: 100%;
}

.kasavu-border-thin {
  height: 2px;
  background: var(--color-accent);
  opacity: 0.7;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   2. Global Components
   ========================================================================== */

/* Announcement Bar */
.announcement-bar {
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 8px 10px;
  position: relative;
  z-index: 100;
  letter-spacing: 0.05em;
}

/* Header */
.site-header {
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 99;
  transition: var(--transition-smooth);
}

.site-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-wrapper a {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-wrapper span {
  color: var(--color-accent);
}

/* Navigation & Mega Menu */
.main-nav {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 10px 0;
}

.nav-link:hover {
  color: var(--color-accent);
}

/* Mega Menu Grid */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: var(--color-bg);
  width: 90vw;
  max-width: 1000px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-column h4 {
  font-size: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 6px;
  color: var(--color-primary);
}

.mega-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu-link {
  font-size: 14px;
  color: var(--color-text-muted);
}

.mega-menu-link:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

/* Header Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-action-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.header-action-btn:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-terracotta);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search Bar & Auto-complete */
.search-container {
  position: relative;
  width: 300px;
}

.search-input {
  width: 100%;
  padding: 8px 36px 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  background-color: #ffffff;
  outline: none;
  transition: var(--transition-smooth);
}

.search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(20, 63, 37, 0.1);
}

.search-submit-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

@media (max-width: 991px) {
  .main-nav, .search-container {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
}

/* Mobile Sidebar Drawer Menu */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--color-bg);
  z-index: 10000;
  box-shadow: 10px 0 30px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-drawer.active {
  left: 0;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-primary);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  z-index: 10000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--color-accent);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Drawer Cart Item */
.drawer-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 15px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
}

.drawer-cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  background-color: #ffffff;
  border: 1px solid var(--color-border);
}

.drawer-cart-item-info h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.drawer-cart-item-variant {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.drawer-cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  width: fit-content;
  border-radius: var(--border-radius-sm);
}

.drawer-cart-item-qty button {
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
}

.drawer-cart-item-qty input {
  width: 30px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 12px;
}

.drawer-cart-item-price {
  font-weight: 600;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.drawer-cart-item-remove {
  background: none;
  border: none;
  color: var(--color-terracotta);
  cursor: pointer;
  font-size: 12px;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--color-border);
  background-color: #ffffff;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.02);
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cart-drawer-upsells {
  padding: 10px;
  background-color: rgba(241, 185, 41, 0.05);
  border: 1px dashed var(--color-accent);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
}

.cart-drawer-upsells h5 {
  font-size: 13px;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.upsell-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
}

.upsell-product-btn {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
}

/* Cookie Consent Bar */
.cookie-consent-bar {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 15px 30px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: bottom 0.5s ease-in-out;
  border-top: 3px solid var(--color-accent);
}

.cookie-consent-bar.active {
  bottom: 0;
}

.cookie-consent-bar p {
  font-size: 14px;
}

.cookie-consent-btn {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  white-space: nowrap;
}

/* ==========================================================================
   3. Homepage Sections
   ========================================================================== */

/* Hero Banner */
.hero-section {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(20,63,37,0.4) 0%, rgba(10,30,18,0.85) 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-tagline {
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-accent);
}

.hero-title {
  font-size: 48px;
  color: #ffffff;
  font-weight: 700;
}

.hero-desc {
  font-size: 18px;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 480px;
    padding: 60px 0;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-desc {
    font-size: 15px;
  }
}

/* Featured Collections */
.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}

.collection-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 350px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--color-border);
}

.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-card:hover .collection-card-img {
  transform: scale(1.08);
}

.collection-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20, 63, 37, 0.9) 0%, rgba(20, 63, 37, 0.2) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 1;
}

.collection-card-title {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 8px;
}

.collection-card-btn {
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Product Cards & Grid (Mallu Snacks Redesign) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.collection-page-layout .product-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1023px) {
  .product-grid,
  .collection-page-layout .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 599px) {
  .product-grid,
  .collection-page-layout .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.product-card,
.product-card--mallu {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(20, 63, 37, 0.12);
  padding: 18px;
  box-shadow: 0 4px 15px rgba(20, 63, 37, 0.04);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.product-card:hover,
.product-card--mallu:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20, 63, 37, 0.12);
  border-color: var(--color-primary);
}

.product-card-top {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-card-img-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #f7f5f0;
}

.product-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

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

.product-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-family: var(--font-heading), 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-badge--sold-out {
  background-color: var(--color-text-muted);
  color: #ffffff;
}

.product-card-badge--sale {
  background-color: var(--color-terracotta);
  color: #ffffff;
}

.product-card-rating {
  color: #F1B929;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.product-card-rating-count {
  color: var(--color-text-muted);
  font-size: 12px;
  margin-left: 4px;
  font-family: var(--font-body);
  font-weight: 500;
}

.product-card-vendor {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  font-family: var(--font-heading), 'Josefin Sans', sans-serif;
}

.product-card-title {
  font-family: var(--font-heading), 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 6px 0;
  text-transform: capitalize;
}

.product-card-title a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card-title a:hover {
  color: var(--color-primary);
}

.product-card-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0 0 12px 0;
  font-family: var(--font-body);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 36px;
}

.product-card-bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: auto;
}

.product-card-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
}

.product-card-price {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 800;
}

.product-card-compare-price {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 14px;
}

.product-card-weight-selector {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text);
  background-color: #ffffff;
  margin-bottom: 12px;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card-weight-selector:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(20, 63, 37, 0.1);
}

.product-card-actions {
  width: 100%;
  box-sizing: border-box;
}

.product-card-cta-group {
  display: flex;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.product-card-cta-group .btn,
.product-card-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  min-height: 44px;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-sizing: border-box;
  border-radius: 6px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.product-card-cta-group .btn svg {
  flex-shrink: 0;
  vertical-align: middle;
}

.btn-kerala-gold {
  background-color: #F1B929 !important;
  color: #143F25 !important;
  border: none !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-kerala-gold:hover {
  background-color: #E5A800 !important;
  color: #0A2616 !important;
}

.btn-whatsapp-outline {
  background-color: transparent !important;
  color: #143F25 !important;
  border: 1.5px solid #143F25 !important;
  font-weight: 700 !important;
}

.btn-whatsapp-outline:hover {
  background-color: rgba(20, 63, 37, 0.05) !important;
}

.product-card-btn.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  font-weight: 700;
}

@media (max-width: 599px) {
  .product-card-cta-group {
    flex-direction: column;
    gap: 8px;
  }
}

/* Bestsellers Carousel (Flickity/Swiper Fallback styling or Scrollable list) */
.carousel-wrapper {
  overflow-x: auto;
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-wrapper::-webkit-scrollbar {
  height: 6px;
}

.carousel-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--color-accent);
  border-radius: 4px;
}

.carousel-item {
  min-width: 280px;
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* Trust Badges */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

@media (max-width: 991px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
  }
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(241, 185, 41, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.trust-badge-title {
  font-size: 16px;
  font-weight: 700;
}

.trust-badge-desc {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Testimonials / Review Slider */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  padding: 30px;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: var(--box-shadow);
}

.testimonial-rating {
  color: var(--color-accent);
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-author-role {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Instagram & UGC Feed */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

@media (max-width: 991px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.instagram-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  aspect-ratio: 1;
}

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

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 94, 56, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
  color: white;
  box-sizing: border-box;
}

.instagram-overlay svg {
  margin-bottom: 12px;
  width: 24px;
  height: 24px;
}

.instagram-likes {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.instagram-caption {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.instagram-item:hover img {
  transform: scale(1.08);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

/* Newsletter Banner */
.newsletter-section {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 80px 20px;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background-color: rgba(241, 185, 41, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-content h2 {
  color: #ffffff;
  font-size: 36px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  outline: none;
  font-family: var(--font-body);
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ==========================================================================
   4. Collection & Product Pages
   ========================================================================== */

/* Collection Layout */
.collection-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .collection-page-layout {
    grid-template-columns: 1fr;
  }
}

/* Filters Sidebar */
.filters-sidebar-title {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 10px;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.filter-options {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  accent-color: var(--color-primary);
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}

.sort-select {
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background-color: #ffffff;
  outline: none;
  font-family: var(--font-body);
}

/* Product Detail Page */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Product Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gallery-main-img-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  background-color: #ffffff;
  aspect-ratio: 1;
  position: relative;
  cursor: zoom-in;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-main-img.zoomed {
  transform: scale(1.8);
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
}

.gallery-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border);
  object-fit: cover;
  cursor: pointer;
  background-color: #ffffff;
  transition: var(--transition-smooth);
}

.gallery-thumbnail.active, .gallery-thumbnail:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(241,185,41,0.2);
}

/* Product Info Form */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-title {
  font-size: 36px;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-review-badge {
  font-size: 13px;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.product-price-main {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.product-price-compare {
  font-size: 20px;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

/* Swatches styling */
.product-swatches {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.swatch-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.swatch-options {
  display: flex;
  gap: 10px;
}

.swatch-option-btn {
  min-width: 40px;
  height: 40px;
  padding: 5px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.swatch-option-btn.active, .swatch-option-btn:hover {
  border-color: var(--color-primary);
  background-color: rgba(20,63,37,0.05);
}

/* Variant color swatch dot style */
.swatch-option-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.swatch-option-color.active {
  outline: 2px solid var(--color-primary);
}

/* Quantity and Add to Cart Section */
.qty-cart-row {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  height: 50px;
}

.qty-selector button {
  background: none;
  border: none;
  width: 40px;
  height: 100%;
  cursor: pointer;
  font-size: 18px;
}

.qty-selector input {
  width: 50px;
  height: 100%;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
}

.add-to-cart-btn {
  flex: 1;
  height: 50px;
  font-size: 15px;
}

/* Sticky add to cart bar on scroll */
.sticky-atc-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  padding: 15px 30px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.05);
  transition: bottom 0.4s ease;
}

.sticky-atc-bar.active {
  bottom: 0;
}

.sticky-atc-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sticky-atc-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border);
}

.sticky-atc-title {
  font-size: 15px;
  font-weight: 700;
}

.sticky-atc-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

/* Tabs (Description, Shipping, Returns) */
.product-tabs {
  margin-top: 30px;
  border-top: 1px solid var(--color-border);
}

.tab-headers {
  display: flex;
  border-bottom: 1px solid var(--color-border);
}

.tab-header-btn {
  background: none;
  border: none;
  padding: 15px 25px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  position: relative;
}

.tab-header-btn.active {
  color: var(--color-primary);
}

.tab-header-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-accent);
}

.tab-contents {
  padding: 20px 0;
}

.tab-content-panel {
  display: none;
}

.tab-content-panel.active {
  display: block;
}

/* Cart Page */
.cart-page-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .cart-page-wrapper {
    grid-template-columns: 1fr;
  }
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding: 15px 10px;
  border-bottom: 2px solid var(--color-primary);
  font-family: var(--font-heading);
  font-size: 18px;
}

.cart-table td {
  padding: 20px 10px;
  border-bottom: 1px solid var(--color-border);
}

.cart-summary-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
}

.cart-note-box {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-body);
}

/* ==========================================================================
   5. Footer & Utilities
   ========================================================================== */

/* Footer */
.site-footer {
  background-color: var(--color-primary);
  color: #e2e8f0;
  padding: 60px 0 20px;
  border-top: 4px solid var(--color-accent);
}

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

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-column h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: #cbd5e1;
}

.footer-link:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.footer-social-icon:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.payment-icons {
  display: flex;
  gap: 10px;
}

.payment-icon-svg {
  height: 24px;
  width: auto;
  opacity: 0.8;
}

/* General Page Styling */
.page-header {
  padding: 50px 0;
  background-color: rgba(20,63,37,0.03);
  margin-bottom: 50px;
  border-bottom: 1px solid var(--color-border);
}

.page-title {
  font-size: 40px;
}

.page-content {
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.page-content p {
  margin-bottom: 20px;
}

/* Contact Form Styling */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background-color: #ffffff;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--color-primary);
}

/* Breadcrumbs Component */
.breadcrumbs {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

/* WhatsApp CTA Styles */
.btn-whatsapp {
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  border: 1px solid var(--color-accent);
  box-shadow: 0 4px 10px rgba(212, 130, 26, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease-in-out;
}

.btn-whatsapp:hover {
  background: #b45309;
  color: #ffffff;
  border-color: #b45309;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(180, 83, 9, 0.25);
}

.btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(180, 83, 9, 0.15);
}

.btn-whatsapp-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease-in-out;
}

.btn-whatsapp-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(27, 94, 56, 0.15);
}

.btn-whatsapp-outline:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(27, 94, 56, 0.1);
}

/* Process Timeline (How It's Made) */
.process-section {
  background-color: var(--color-bg);
}

.process-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  padding-left: 30px;
}

.process-steps-list::before {
  content: "";
  position: absolute;
  left: 51px;
  top: 25px;
  bottom: 25px;
  width: 2px;
  background-color: var(--color-border);
  z-index: 1;
}

.process-step-item {
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.process-step-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid var(--color-bg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.process-step-info h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.process-step-info p {
  color: var(--color-text-muted);
  font-size: 15px;
}

/* FAQ Accordion Component */
.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--box-shadow);
}

.faq-header {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.faq-header:hover .faq-question {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 20px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  line-height: 1;
}

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

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

.faq-item.active .faq-content {
  max-height: 250px;
  padding: 0 28px 24px;
}

.faq-answer {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Custom visual adjustments for Mallu Snack Card layout - managed cleanly in main product-card styles */

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(18, 140, 126, 0.4);
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6);
}

.floating-whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  
  .floating-whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ==========================================================================
   Hero Section Redesign (Full-Screen Video & Frosted Card)
   ========================================================================== */
.hero-section {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000000;
  color: #ffffff;
  padding: 0;
  border-bottom: none;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.hero-frosted-card {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 550px;
  width: calc(100% - 16%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 3;
}

.hero-tagline {
  display: block;
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  color: #1a5c2a;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .color-amber {
  color: #c4842a;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-trust-badge {
  display: inline-block;
  border: 1.5px solid #1a5c2a;
  color: #1a5c2a;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  background-color: transparent;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary-amber {
  background-color: #c4842a;
  color: #ffffff !important;
  border: 2px solid #c4842a;
  font-weight: 700;
}

.btn-primary-amber:hover {
  background-color: transparent;
  color: #c4842a !important;
  transform: translateY(-2px);
}

.btn-secondary-green {
  background-color: #ffffff;
  border: 2px solid #1a5c2a;
  color: #1a5c2a !important;
  font-weight: 700;
}

.btn-secondary-green:hover {
  background-color: #1a5c2a;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-scroll-line {
  height: 40px;
  width: 1px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.hero-scroll-dot {
  width: 6px;
  height: 6px;
  background: #1a5c2a;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 3px);
  top: 0;
  animation: scrollDotDown 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollDotDown {
  0% {
    top: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 6px);
    opacity: 0;
  }
}

/* Staggered Animations */
@keyframes heroFadeUpNew {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-hero-tagline {
  animation: heroFadeUpNew 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.animate-hero-title {
  animation: heroFadeUpNew 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.animate-hero-desc {
  animation: heroFadeUpNew 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

.animate-hero-badges {
  animation: heroFadeUpNew 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.animate-hero-ctas {
  animation: heroFadeUpNew 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    height: calc(100vh - 120px);
    min-height: 480px;
  }
  .hero-frosted-card {
    padding: 1.75rem 1.25rem;
    left: 4%;
    width: 92%;
    max-width: none;
  }
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .hero-trust-badge {
    font-size: 10px;
    padding: 3px 10px;
  }
  .hero-ctas {
    gap: 8px;
  }
  .hero-ctas .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Mobile decluttering of header */
@media (max-width: 576px) {
  .header-shop-now-btn {
    display: none !important;
  }
}

/* Product Card CTA Buttons Group styling integrated cleanly into main product-card styles */

/* Mobile Cookie Consent Bar Adjustments */
@media (max-width: 576px) {
  .cookie-consent-bar {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    gap: 12px;
  }
  .cookie-consent-btn {
    width: 100%;
    text-align: center;
  }
}

/* Mobile Hero CTAs Vertical Stacking */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column !important;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Center Logo in Navigation Bar on Mobile */
@media (max-width: 991px) {
  .header-container {
    position: relative;
  }
  .header-container .logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
}
