@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand colors matching screenshot */
  --bg-primary: #fbf9f4;      /* Cream white */
  --bg-secondary: #f3edd9;    /* Sandy warm cream */
  --bg-dark: #1b3324;         /* Primary Deep Forest Green */
  --text-primary: #1c1917;    /* Slate-stone dark gray */
  --text-secondary: #4b4843;  /* Body copy text */
  --text-muted: #8c8a82;      
  
  --accent-color: #1b3324;    /* Primary Deep Forest Green */
  --accent-hover: #132419;
  --green-primary: #2d563a;   /* Forest Green */
  --yellow-primary: #b07e30;  /* Golden honey caramel */
  --yellow-hover: #916825;
  --border-color: rgba(27, 51, 36, 0.12);
  
  --font-body: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --header-height: 85px;
  --max-width: 1240px;
  --transition: all 0.25s ease;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bg-dark);
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.grid { display: grid; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* Buttons matching screenshot */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 4px; /* Slightly squared edges as in screenshot */
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
}
.btn-green {
  background-color: var(--bg-dark);
  color: #ffffff;
}
.btn-green:hover {
  background-color: var(--accent-hover);
}
.btn-yellow {
  background-color: var(--yellow-primary);
  color: #ffffff;
}
.btn-yellow:hover {
  background-color: var(--yellow-hover);
}
.btn-secondary {
  background-color: #ffffff;
  color: var(--bg-dark);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background-color: var(--bg-secondary);
}

/* Top Utility Bar */
.top-utility-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Header Navbar */
#header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.1;
}
.logo-title {
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-subtitle {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg-dark);
  transition: var(--transition);
  padding: 8px 0;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--yellow-primary);
  border-bottom: 2px solid var(--yellow-primary);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon-action {
  cursor: pointer;
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  position: relative;
  transition: var(--transition);
}
.icon-action:hover {
  color: var(--yellow-primary);
}
.cart-badge-dot {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--green-primary);
  color: #ffffff;
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Hero Section Layout (Split with badge overlay) */
.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  position: relative;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--bg-dark);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.hero-trust-bullets {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-dark);
}
.hero-bullet-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.hero-bullet-icon {
  font-size: 1.3rem;
  color: var(--green-primary);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-image-box {
  position: relative;
  width: 100%;
}
.hero-image-box img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.hero-badge-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px dashed var(--green-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  z-index: 10;
  box-shadow: var(--shadow-md);
}
.hero-badge-overlay .badge-top {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: 0.05em;
}
.hero-badge-overlay .badge-mid {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.1;
}
.hero-badge-overlay .badge-bottom {
  font-size: 0.55rem;
  color: var(--text-secondary);
}

/* Categories Circle Row */
.categories-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.category-circle-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.category-circle-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.category-circle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
}
.category-circle-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--bg-dark);
}
.category-circle-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Most Loved Bestsellers row */
.loved-products-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
}

/* Split Promotion Box Grid */
.promo-three-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.promo-box-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  height: 220px;
  overflow: hidden;
  transition: var(--transition);
}
.promo-box-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.promo-box-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.promo-box-badge {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.promo-box-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--bg-dark);
}
.promo-box-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.4;
}
.promo-box-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--yellow-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.promo-box-link:hover {
  color: var(--yellow-hover);
}
.promo-box-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-box-img img {
  max-height: 160px;
  object-fit: contain;
  border-radius: 6px;
}

/* Dark Green Trust Bar */
.dark-trust-bar {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 20px 0;
  border-radius: 12px;
  margin-top: 40px;
}
.dark-trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.dark-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dark-trust-icon {
  font-size: 1.8rem;
}
.dark-trust-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.2;
}
.dark-trust-title span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Why Choose 7 DINAM Section (Horizontal details) */
.choose-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.choose-strip-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.choose-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 12px;
  color: var(--bg-dark);
}
.choose-strip-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.choose-strip-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Stay Updated Newsletter box */
.newsletter-banner {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 30px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.newsletter-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.newsletter-icon {
  font-size: 2.2rem;
  color: var(--green-primary);
}
.newsletter-form {
  display: flex;
  gap: 10px;
  width: 40%;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--bg-primary);
}

/* Category Sidebar layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  margin-top: 20px;
}
.catalog-sidebar {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
}
.filter-group {
  margin-bottom: 20px;
}
.filter-group:last-child {
  margin-bottom: 0;
}
.filter-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--bg-dark);
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}
.filter-option input[type="checkbox"], .filter-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--bg-dark);
}

/* Product Detail Gallery layout */
.detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}
.gallery-container {
  display: flex;
  gap: 16px;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
  flex-shrink: 0;
}
.thumb-img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}
.thumb-img.active, .thumb-img:hover {
  opacity: 1;
  border-color: var(--accent-color);
}
.gallery-zoom {
  flex: 1;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-zoom img {
  max-height: 100%;
}
.pack-sizes {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.size-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.size-btn.active, .size-btn:hover {
  border-color: var(--accent-color);
  background-color: var(--bg-secondary);
  color: var(--accent-color);
}

/* Specs details tables */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.specs-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-color);
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--text-secondary);
  width: 40%;
}

/* Tab link selections */
.detail-tabs-bar {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  margin-top: 40px;
  gap: 30px;
}
.tab-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  padding-bottom: 12px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-link.active, .tab-link:hover {
  color: var(--bg-dark);
  border-color: var(--bg-dark);
}
.tab-pane {
  padding: 24px 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Tables for cart list */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}
.checkout-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.checkout-table th, .checkout-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}
.checkout-table th {
  background-color: var(--bg-secondary);
  font-family: var(--font-display);
  font-weight: 700;
}

/* Account layout */
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  margin-top: 24px;
}
.account-sidebar-nav {
  list-style: none;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  height: fit-content;
}
.account-sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.account-sidebar-nav a:hover, .account-sidebar-nav a.active {
  background-color: var(--bg-secondary);
  color: var(--accent-color);
}

/* Footer layout */
#footer {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 30px;
}
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 20px;
}

/* Form panels inputs */
.card-premium {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.form-control {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--bg-primary);
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--accent-color);
  background-color: #ffffff;
}

/* Toast popup messages */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}
.toast {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Popup overlay backdrops */
.popup-backdrop, .drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1000;
}
.popup-backdrop.active, .drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.popup-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.close-btn {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-secondary);
}

/* Admin console structures */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  height: 100vh;
}
.admin-sidebar {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.admin-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-nav a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
  background-color: rgba(255,255,255,0.1);
  color: #ffffff;
}
.admin-main {
  padding: 40px;
  overflow-y: auto;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.leads-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}
.board-column {
  background-color: var(--bg-secondary);
  border-radius: 12px;
  padding: 12px;
  min-height: 500px;
}
.column-header {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border-color);
}
.lead-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

/* Custom styling for loved bestsellers strip cards matching screenshot */
.loved-products-strip .product-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
}
.loved-products-strip .card-img-container {
  height: 180px !important;
  width: 100% !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin-bottom: 12px !important;
  background-color: var(--bg-secondary) !important;
}
.loved-products-strip .card-img-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* Force uniform aspect ratio and size */
}
.loved-products-strip .card-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg-dark);
  margin-bottom: 2px !important;
  height: auto !important;
}
.loved-products-strip .btn-card-add {
  display: inline-block !important;
  width: fit-content !important;
  padding: 4px 10px !important;
  border: 1px solid #777 !important;
  border-radius: 2px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  background: transparent !important;
  cursor: pointer !important;
  margin-top: 6px !important;
  text-align: center !important;
  transition: var(--transition);
}
.loved-products-strip .btn-card-add:hover {
  background-color: var(--bg-secondary) !important;
  border-color: var(--bg-dark) !important;
}
.loved-products-strip .btn-green {
  border-radius: 2px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  padding: 4px 10px !important;
  width: fit-content !important;
  margin-top: 6px !important;
}

/* Product Detail mockup 03 enhancements */
.breadcrumbs {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 8px;
}
.breadcrumbs a:hover {
  color: var(--yellow-primary);
}
.detail-trust-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.detail-trust-icon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-dark);
}
.detail-trust-icon-item span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.b2c-b2b-selector-bar {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.b2c-b2b-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  background-color: #ffffff;
  color: var(--text-secondary);
  transition: var(--transition);
}
.b2c-b2b-tab.active {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.pack-size-options-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.pack-size-row-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
}
.pack-size-row-option:hover, .pack-size-row-option.active {
  border-color: var(--bg-dark);
  background-color: var(--bg-secondary);
}
.pack-size-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pack-size-left input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--bg-dark);
}
.pack-size-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.pack-size-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.pack-size-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pack-price-curr {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--bg-dark);
}
.pack-price-orig {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.pack-disc-badge {
  background-color: var(--green-primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
}

.qty-counter-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}
.qty-counter-btn {
  padding: 8px 14px;
  background: var(--bg-secondary);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.qty-counter-btn:hover {
  background: var(--border-color);
}
.qty-counter-val {
  width: 44px;
  text-align: center;
  font-weight: 700;
  border: none;
  background: transparent;
}

.detail-tab-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 30px;
  margin-top: 20px;
}
.detail-tab-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}
.checkmark-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.checkmark-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.checkmark-list li::before {
  content: "✓";
  color: var(--green-primary);
  font-weight: 800;
}

/* Category Page enhancements */
.cat-hero-banner {
  background-image: linear-gradient(to right, rgba(251, 249, 244, 0.95), rgba(251, 249, 244, 0.5)), url('jaggery_hero_banner.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 60px 40px;
  color: var(--bg-dark);
  margin-top: 16px;
  margin-bottom: 24px;
}
.cat-sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.cat-sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.cat-sidebar-item:hover, .cat-sidebar-item.active {
  background-color: var(--bg-secondary);
  color: var(--bg-dark);
}
.cat-sidebar-icon-text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-sidebar-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cat-small-card-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.cat-small-card {
  min-width: 130px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.cat-small-card:hover {
  transform: translateY(-2px);
  border-color: var(--bg-dark);
}
.cat-small-card-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 1.3rem;
}
.cat-small-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-dark);
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination-btn {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  color: var(--bg-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.pagination-btn.active, .pagination-btn:hover {
  background: var(--bg-dark);
  color: #ffffff;
  border-color: var(--bg-dark);
}

/* Product Catalog Grid Layout */
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin-top: 10px;
}
.product-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.badge-container {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
}
.card-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  color: #ffffff;
  text-transform: uppercase;
}
.badge-free { background-color: var(--green-primary); }
.badge-discount { background-color: #dc2626; }

.card-img-container {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
  background-color: var(--bg-secondary);
}
.card-img-container img {
  max-height: 100%;
  object-fit: cover;
}
.card-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.card-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  height: 38px;
  overflow: hidden;
}
.card-rating {
  font-size: 0.8rem;
  color: var(--yellow-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.card-rating span {
  color: var(--text-secondary);
}
.card-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.current-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bg-dark);
}
.original-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.btn-card-add {
  width: 100%;
  background-color: var(--yellow-primary);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px;
  border-radius: 6px;
  margin-top: auto;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-card-add:hover {
  background-color: var(--yellow-hover);
}

/* Bulk Orders B2B landing page styling enhancements */
.b2b-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.b2b-form-spans-2 {
  grid-column: span 2;
}
.b2b-form-spans-all {
  grid-column: span 3;
}
.b2b-timeline-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.b2b-timeline-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}
.b2b-timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 40px;
  bottom: -20px;
  width: 1px;
  border-left: 1.5px dashed var(--border-color);
}
.b2b-timeline-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  z-index: 5;
}
.b2b-timeline-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
  color: var(--bg-dark);
}
.b2b-timeline-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.b2b-coord-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-top: 40px;
}
.b2b-coord-card {
  display: flex;
  align-items: center;
  gap: 12px;
}
.b2b-coord-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.b2b-coord-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg-dark);
}
.b2b-coord-text span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.b2b-flow-strip {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.b2b-flow-steps-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: space-around;
}
.b2b-flow-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.b2b-flow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.b2b-flow-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--bg-dark);
}
.b2b-flow-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.b2b-flow-arrow {
  color: var(--text-muted);
  font-weight: 800;
}

/* Private Label landing page styling enhancements */
.pl-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pl-form-spans-all {
  grid-column: span 2;
}
.pl-process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.pl-process-step-item {
  text-align: center;
  flex: 1;
}
.pl-process-step-num {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 2px;
}
.pl-process-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--bg-dark);
  margin-bottom: 2px;
}
.pl-process-step-desc {
  font-size: 0.65rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.pl-why-partner-strip {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}
.pl-why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 160px;
}
.pl-why-icon {
  font-size: 1.5rem;
}
.pl-why-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg-dark);
}
.pl-why-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pl-bottom-cta-strip {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pl-bottom-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pl-bottom-cta-right {
  display: flex;
  gap: 24px;
}
.pl-bottom-cta-coord {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.pl-bottom-cta-coord span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Cart Page styling enhancements */
.cart-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 12px 16px;
  border-bottom: 1.5px solid var(--border-color);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.cart-items-list-wrapper {
  display: flex;
  flex-direction: column;
}
.cart-item-row-card {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  background: #ffffff;
}
.cart-item-info {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cart-item-info img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg-secondary);
}
.cart-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg-dark);
}
.cart-item-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
  margin-bottom: 4px;
}
.cart-item-stock {
  font-size: 0.75rem;
  color: var(--green-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cart-item-actions {
  display: flex;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.cart-item-action-btn {
  cursor: pointer;
}
.cart-item-action-btn:hover {
  color: var(--yellow-primary);
  text-decoration: underline;
}

.cart-item-price, .cart-item-total {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg-dark);
}
.cart-item-total-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cart-item-remove-cross {
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}
.cart-item-remove-cross:hover {
  color: #dc2626;
}

.cart-coupon-input-box {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  max-width: 200px;
}

.cart-progress-free-shipping {
  background-color: #f0f7f3;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-progress-bar-bg {
  height: 6px;
  background-color: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
}
.cart-progress-bar-fill {
  height: 100%;
  background-color: var(--green-primary);
  border-radius: 3px;
  width: 45%; /* Dynamically calculated */
}

/* About Us Page styling enhancements */
.about-icons-row {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}
.about-icon-item {
  text-align: center;
  flex: 1;
}
.about-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 8px;
}
.about-icon-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--bg-dark);
}
.about-icon-label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.about-value-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.about-value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 12px;
}
.about-value-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--bg-dark);
}
.about-value-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.about-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.about-offer-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.about-offer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.about-offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--yellow-primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.about-offer-img {
  height: 160px;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-offer-img img {
  max-height: 100%;
  object-fit: contain;
}
.about-offer-content {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-offer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--bg-dark);
}
.about-offer-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}
.about-offer-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.about-offer-link:hover {
  color: var(--accent-hover);
}

@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas, .hero-trust-bullets { justify-content: center; }
  .categories-strip, .loved-products-strip { grid-template-columns: repeat(3, 1fr); }
  .promo-three-grid { grid-template-columns: 1fr; }
  .choose-strip { grid-template-columns: repeat(2, 1fr); }
  .newsletter-banner { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}

/* Comprehensive Mobile Format Responsiveness (768px & below) */
@media (max-width: 768px) {
  /* General Grid Layouts */
  .grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  /* Header Navigation links list wrapping */
  .nav-links {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    font-size: 0.75rem;
    padding: 6px 0;
  }
  
  .nav-links li {
    margin: 2px 4px;
  }

  /* Catalog Layout (Category filter menu sidebar & grid) */
  .catalog-layout {
    grid-template-columns: 1fr !important;
  }
  
  .catalog-sidebar {
    width: 100% !important;
    margin-bottom: 20px;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .loved-products-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .categories-strip {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px !important;
  }

  .choose-strip {
    grid-template-columns: 1fr !important;
  }
  
  /* Blog Layout mobile stacking */
  #blog .grid {
    grid-template-columns: 1fr !important;
  }
  
  #blog-catalog-grid {
    grid-template-columns: 1fr !important;
  }

  /* Bulk orders and private label page split grids */
  #bulk-orders .grid, #private-label .grid {
    grid-template-columns: 1fr !important;
  }
  
  .pl-why-grid, .b2b-form-grid {
    grid-template-columns: 1fr !important;
  }

  /* Product details view gallery and specifications split */
  .detail-layout {
    grid-template-columns: 1fr !important;
  }
  
  .gallery-zoom {
    height: 280px !important;
  }

  /* About us company story split grids */
  #our-story .grid {
    grid-template-columns: 1fr !important;
  }
  
  .about-icons-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .about-values-grid {
    grid-template-columns: 1fr !important;
  }
  
  .about-offer-grid {
    grid-template-columns: 1fr !important;
  }

  /* Cart Layout list mobile alignment */
  .cart-layout {
    grid-template-columns: 1fr !important;
  }
  
  .cart-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  
  .cart-item-row > div {
    width: 100% !important;
    justify-content: space-between;
  }
}

/* Very Small Mobile Viewports (480px & below) */
@media (max-width: 480px) {
  .product-grid, .loved-products-strip {
    grid-template-columns: 1fr !important;
  }
  
  .categories-strip {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .page-hero-title {
    font-size: 1.6rem !important;
  }
  
  .cat-hero-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px !important;
  }
  
  .cat-hero-banner > div {
    max-width: 100% !important;
  }
  
  .cat-hero-banner img {
    margin-top: 12px;
    width: 100% !important;
    max-height: 140px !important;
  }
}

/* Stylish Outline Detail Action Button */
.btn-detail-style {
  background: transparent;
  color: var(--green-primary);
  border: 1.5px solid var(--green-primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 8px 14px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  transition: all 0.22s ease-in-out;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.btn-detail-style:hover {
  background: var(--green-primary);
  color: #ffffff;
  border-color: var(--green-primary);
  box-shadow: 0 4px 10px rgba(27, 51, 36, 0.18);
  transform: translateY(-1px);
}

/* 🔔 Push Notification Opt-in Prompt Banner */
.push-notify-prompt {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10000;
  background: #ffffff;
  border-left: 4px solid var(--green-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  border-radius: 8px;
  padding: 14px 18px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideInDown 0.35s ease;
}

@keyframes slideInDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.push-notify-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.push-notify-icon {
  font-size: 1.6rem;
}

.push-notify-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* 🎰 Spin Wheel Offer Modal Styling */
.spin-wheel-box {
  max-width: 420px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 24px 20px !important;
}

.wheel-container {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 16px auto;
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 1.5rem;
  color: var(--yellow-primary);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.wheel-disc-svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid var(--bg-dark);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  transition: transform 3.5s cubic-bezier(0.15, 0.99, 0.18, 1);
  transform-origin: center center;
}

/* 🚪 Exit Intent Box */
.exit-intent-box {
  max-width: 440px !important;
  text-align: center;
  padding: 28px 24px !important;
}

/* 💬 WhatsApp Live Chat Widget Styles */
.wa-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: inherit;
}

.wa-chat-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.wa-badge-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff3b30;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  animation: pulseBadge 1.8s infinite;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.wa-chat-box {
  width: 320px;
  background: #e5ddd5;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  overflow: hidden;
  margin-bottom: 12px;
  animation: waSlideUp 0.3s ease;
}

@keyframes waSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.wa-chat-header {
  background: linear-gradient(135deg, #075e54, #128c7e);
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.wa-avatar-box {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  flex-shrink: 0;
}

.wa-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #25d366;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.wa-agent-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.wa-agent-status {
  font-size: 0.72rem;
  opacity: 0.9;
}

.wa-close-btn {
  margin-left: auto;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
}

.wa-close-btn:hover {
  opacity: 1;
}

.wa-chat-body {
  padding: 16px;
  max-height: 240px;
  overflow-y: auto;
  background-image: radial-gradient(#d3c6b9 1px, transparent 1px);
  background-size: 12px 12px;
}

.wa-msg-bubble {
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 0 12px 12px 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  max-width: 90%;
  position: relative;
}

.wa-msg-author {
  font-size: 0.7rem;
  font-weight: 700;
  color: #075e54;
  margin-bottom: 2px;
}

.wa-msg-text {
  font-size: 0.85rem;
  color: #333333;
  line-height: 1.4;
}

.wa-msg-time {
  font-size: 0.65rem;
  color: #888888;
  text-align: right;
  margin-top: 4px;
}

.wa-chat-footer {
  display: flex;
  background: #f0f0f0;
  padding: 8px 10px;
  gap: 6px;
  align-items: center;
}

.wa-chat-footer input {
  flex: 1;
  border: 1px solid #cccccc;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.85rem;
  outline: none;
  background: #ffffff;
}

.wa-send-btn {
  background: #128c7e;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wa-send-btn:hover {
  background: #075e54;
}
