/* ==========================================================================
   SWEET SPOT MARKET CAFE - MODERN D2C DESIGN SYSTEM
   Featuring Clean 'Outfit' & 'Plus Jakarta Sans' Typography (Balanced Light Weight)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  --dark-cocoa: #2b0b10;
  --dark-chocolate: #1c0609;
  --dark-chocolate-hover: #3b0e15;
  
  --canadian-red: #d52b1e;
  --canadian-red-hover: #b81d24;
  
  --honey-gold: #d52b1e;
  --honey-gold-light: #e63946;
  --honey-gold-bg: #fff0f2;
  
  --rose-accent: #d52b1e;
  --rose-bg: #fff0f2;
  
  --bg-vanilla: #fcf8f8;
  --bg-card: #ffffff;
  --bg-card-alt: #fdf5f5;
  --border-subtle: #ebd5d7;
  
  --text-main: #23080c;
  --text-muted: #694449;
  --text-light: #9e757a;
  
  /* Modern Clean Typography Tokens */
  --font-heading: 'Outfit', -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, sans-serif;
  --font-serif: 'Outfit', -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(28, 6, 9, 0.05);
  --shadow-md: 0 6px 20px rgba(28, 6, 9, 0.09);
  --shadow-lg: 0 16px 40px rgba(28, 6, 9, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--text-main);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  width: 100%;
  height: 100%;
  display: block;
}

/* 1. Announcement Bar */
.announcement-bar {
  background: var(--canadian-red) !important;
  color: #ffffff !important;
  font-size: 0.8rem !important;
  padding: 0.5rem 1rem !important;
  text-align: center !important;
  font-weight: 600 !important;
  display: block !important;
  line-height: 1.4 !important;
  letter-spacing: 0.02em !important;
  width: 100% !important;
  box-sizing: border-box !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.announcement-bar span {
  display: inline-block !important;
  color: #ffffff !important;
  max-width: 100% !important;
  word-wrap: break-word !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 0.75rem !important;
    padding: 0.45rem 0.75rem !important;
    line-height: 1.35 !important;
  }
}

.announcement-bar strong {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

/* 2. Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  min-height: 64px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.header-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  width: 165px;
  height: 52px;
  z-index: 200;
}

.brand-logo {
  width: 155px; 
  height: 155px;
  object-fit: contain;
  border-radius: 50%; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28); 
  position: absolute;
  top: -24px;
  left: 0;
  pointer-events: auto;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 250 !important;
}

.brand-logo:hover {
  transform: scale(1.06);
}

/* Sticky Scrolled State for Logo Positioning */
.site-header.is-scrolled .brand-logo {
  width: 54px;
  height: 54px;
  top: -1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brand-text {
  display: none !important;
}

.brand-text p {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--honey-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-cocoa);
  padding: 0.35rem 0.5rem;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--honey-gold-light);
}

/* Header Quick Search Form with Live Autocomplete */
.header-search-form {
  margin-left: 0.5rem;
  position: relative;
}

.header-search-box {
  display: flex;
  align-items: center;
  background: #f8f6f3;
  border: 1.5px solid var(--border-subtle);
  border-radius: 22px;
  padding: 0.35rem 0.6rem 0.35rem 1rem;
  transition: all 0.25s ease;
}

.header-search-box:focus-within {
  border-color: var(--honey-gold);
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(212, 163, 115, 0.25);
}

.header-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.88rem;
  color: var(--dark-chocolate);
  width: 220px;
  transition: width 0.3s ease;
}

.header-search-input:focus {
  width: 280px;
}

.header-search-btn {
  border: none;
  background: transparent;
  color: var(--dark-chocolate);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.header-search-btn:hover {
  color: var(--honey-gold-light);
}

/* Live Search Autocomplete Dropdown Popup */
.header-search-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  right: 0;
  min-width: 320px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(44, 26, 16, 0.18);
  z-index: 1000;
  display: none;
  overflow: hidden;
  max-height: 380px;
  overflow-y: auto;
}

.search-drop-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: var(--dark-chocolate);
  transition: background 0.2s ease;
}

.search-drop-item:last-child {
  border-bottom: none;
}

.search-drop-item:hover {
  background: var(--honey-gold-bg);
}

.search-drop-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
}

.search-drop-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.search-drop-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--dark-chocolate);
  line-height: 1.2;
}

.search-drop-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: #a66019;
}

.search-drop-empty {
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 120;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-cocoa);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-vanilla);
  color: var(--honey-gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  background: var(--bg-vanilla);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-chocolate);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.header-login-btn:hover {
  background: var(--dark-chocolate);
  color: #ffffff;
  border-color: var(--dark-chocolate);
}

.cart-trigger-btn {
  background: var(--dark-chocolate);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  white-space: nowrap;
}

.cart-trigger-btn:hover {
  background: var(--dark-chocolate-hover);
}

.cart-badge {
  background: #d52b1e;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
  margin-left: 2px;
}

.mobile-hamburger {
  display: none;
  font-size: 1.4rem;
  color: var(--dark-chocolate);
  padding: 0.2rem;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 320px;
  background: #ffffff;
  z-index: 250;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0,0,0,0.15);
}

.mobile-drawer.active {
  transform: translateX(0);
}

/* 3. HERO SLIDER (DESKTOP UPDATED ASPECT-RATIO 6744x2533) */
.full-hero-slider-section {
  position: relative;
  width: 100%;
  background: var(--dark-chocolate);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0.5rem;
}

.full-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 6744 / 2533;
  min-height: 260px;
}

.full-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
  display: flex;
  align-items: center;
}

.full-hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: absolute;
}

.full-slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.full-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 15, 7, 0.88) 0%, rgba(26, 15, 7, 0.45) 50%, rgba(26, 15, 7, 0.15) 100%);
  z-index: 2;
}

.full-slide-content-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  max-width: 1360px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.full-slide-text-box {
  max-width: 560px;
  color: #ffffff;
}

.full-slide-tag {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.2vw, 0.88rem);
  font-weight: 600;
  color: var(--honey-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.full-slide-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.full-slide-title em {
  font-style: normal;
  color: var(--honey-gold-light);
  font-weight: 600;
}

.full-slide-subtitle {
  font-size: clamp(0.85rem, 1.25vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}

.btn-full-slide-cta {
  background: var(--honey-gold);
  color: var(--dark-chocolate);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  padding: clamp(0.5rem, 1vw, 0.85rem) clamp(1.2rem, 2vw, 2rem);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-full-slide-cta:hover {
  background: var(--honey-gold-light);
  transform: translateY(-2px);
}

.full-slider-arrow {
  display: none !important;
}

.full-slider-arrow:hover {
  background: var(--honey-gold);
  color: var(--dark-chocolate);
}

.full-slider-arrow.prev { left: 1rem; }
.full-slider-arrow.next { right: 1rem; }

.full-slider-dots {
  position: absolute;
  bottom: clamp(0.4rem, 1.2vw, 1rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--honey-gold);
  width: 28px;
  border-radius: var(--radius-full);
}

/* Category Pages Responsive Hero Banner */
.category-page-hero {
  background: var(--bg-vanilla);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 1.5rem;
  text-align: center;
}

.category-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.category-hero-title {
  font-size: 3.2rem;
}

.category-hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .category-page-hero {
    padding: 1.25rem 1rem !important;
  }

  .category-hero-title {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }

  .category-hero-desc {
    font-size: 0.85rem !important;
    margin-top: 0.35rem !important;
    line-height: 1.35 !important;
  }
}

/* 4. Sub-Hero USPs Feature Bar */
.usps-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 1rem;
}

.usps-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.usp-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.usp-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-vanilla);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.usp-card-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-chocolate);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.usp-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 5. Section Base Container */
.bento-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.tc-section-tag {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--canadian-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tc-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.tc-section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--dark-chocolate);
  margin-top: 0.2rem;
  line-height: 1.15;
}

.tc-section-title em {
  font-style: normal;
  color: var(--canadian-red);
}

.tc-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff !important;
  background: var(--canadian-red);
  border: 1px solid var(--canadian-red);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(213, 43, 30, 0.25);
}

.tc-view-all-link:hover {
  background: var(--canadian-red-hover);
  color: #ffffff !important;
  border-color: var(--canadian-red-hover);
  transform: translateY(-1px);
}

/* 6. True-Crunch Product Cards Grid (STRICT 5 COLUMNS ON DESKTOP - 5+5 LAYOUT) */
.products-tc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  margin-top: 1.5rem;
  width: 100%;
}

.products-tc-grid.refresh-grid {
  grid-template-columns: repeat(3, 1fr);
}

.products-tc-grid.combo-grid-4col {
  grid-template-columns: repeat(4, 1fr);
}

.tc-product-card {
  background: #f9f9f9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tc-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(44, 26, 16, 0.12);
  border-color: var(--honey-gold);
}

.tc-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  padding: 0.25rem;
}

.tc-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.tc-product-card:hover .tc-img {
  transform: scale(1.05);
}

.tc-badge-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--honey-gold-bg) !important;
  color: #8c5b2a !important;
  border: 1px solid rgba(212, 163, 115, 0.4);
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tc-wishlist-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.tc-card-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tc-rating-row {
  display: none !important;
}

.tc-product-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark-chocolate);
  margin-bottom: 0.35rem;
  line-height: 1.2;
  cursor: pointer;
}

.tc-product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tc-price-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  margin-bottom: 0.65rem;
}

.tc-price-current {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--canadian-red);
}

.tc-price-old {
  display: none !important;
}

.tc-card-buttons {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  width: 100%;
}

.btn-tc-add {
  flex: 1.2;
  background: var(--canadian-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 0.55rem 0.35rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.btn-tc-add:hover {
  background: var(--canadian-red-hover);
}

.btn-text-mobile {
  display: none;
}

.btn-tc-add:hover {
  background: var(--dark-chocolate-hover);
}

.btn-tc-view {
  flex: 0.8;
  background: var(--bg-vanilla);
  border: 1px solid var(--border-subtle);
  color: var(--dark-cocoa);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 0.55rem 0.35rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
}

.btn-tc-view:hover {
  background: var(--honey-gold-bg);
  border-color: var(--honey-gold);
  color: var(--dark-chocolate);
}

.btn-tc-add, .btn-tc-view, .tc-qty-stepper {
  min-height: 32px;
  box-sizing: border-box;
}

.tc-qty-stepper {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark-chocolate);
  color: #ffffff;
  border-radius: 0;
  padding: 0;
  min-height: 32px;
  height: 32px;
}

.product-detail-btn-container {
  width: 100%;
  max-width: 240px;
}

.product-detail-btn-container .btn-tc-add,
.product-detail-btn-container .tc-qty-stepper {
  width: 100% !important;
  max-width: 240px !important;
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 25px !important;
}

.product-detail-btn-container .tc-qty-stepper .stepper-btn {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  margin: 2px !important;
}

.stepper-btn {
  width: 30px;
  height: 100%;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
}

.stepper-btn svg {
  display: block;
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.stepper-btn:hover {
  background: var(--honey-gold);
  color: var(--dark-chocolate);
}

.stepper-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  padding: 0 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* 7. Dark Highlight Section */
.dark-highlight-section {
  background: linear-gradient(135deg, #7a0c16 0%, #a31525 50%, #540810 100%);
  color: #ffffff;
  padding: 3.5rem 1rem;
  margin: 2rem 0;
}

.dh-container {
  max-width: 1360px;
  margin: 0 auto;
  text-align: center;
}

.dh-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
}

.dh-title em {
  font-style: normal;
  color: #f7d070 !important;
  font-weight: 700;
}

.dh-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 600px;
  margin: 0.75rem auto 2rem auto;
}

.dh-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.8rem;
}

.dh-stat-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #f7d070 !important;
}

.dh-stat-lbl {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 8. Customer Support Cards */
.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1360px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.support-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 0px;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.support-icon {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-chocolate);
  margin-bottom: 0.25rem;
}

.support-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cart-page-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .cart-page-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* 9. Slide-Over Cart Drawer & Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 15, 7, 0.6);
  backdrop-filter: blur(4px);
  z-index: 99998 !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  z-index: 99999 !important;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-vanilla);
  font-family: var(--font-heading);
}

.close-btn {
  background: #fdf0f2;
  border: 1px solid rgba(213, 43, 30, 0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--canadian-red);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.close-btn:hover {
  background: var(--canadian-red);
  color: #ffffff;
  border-color: var(--canadian-red);
  transform: scale(1.08);
}

.free-delivery-banner {
  background: var(--honey-gold-bg);
  border-bottom: 1px solid rgba(212, 163, 115, 0.3);
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
}

.progress-bar-track {
  width: 100%;
  height: 5px;
  background: #ebd9c5;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.3rem;
}

.progress-bar-fill {
  height: 100%;
  background: var(--dark-chocolate);
  width: 0%;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--bg-card-alt);
  align-items: center;
}

.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-card-alt);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-full);
}

.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-vanilla);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.summary-row.total {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-chocolate);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-subtle);
}

.toast-container {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
}

.toast {
  background: var(--dark-chocolate);
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* 10. NATIVE MOBILE APP BOTTOM NAVIGATION BAR (< 768px) */
.mobile-app-bottom-nav {
  display: flex !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  z-index: 99990;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}

.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition);
  flex: 1;
}

.app-nav-icon {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 2px;
}

.app-nav-item.active {
  color: var(--dark-chocolate);
  font-weight: 700;
}

.app-cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--canadian-red);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 99px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* 11. Footer */
.site-footer {
  background: linear-gradient(135deg, #7a0c16 0%, #a31525 50%, #540810 100%);
  color: #ffffff;
  padding: 3rem 1rem 1.5rem 1rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 1rem;
}

.footer-col p, .footer-col li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0.5rem;
  list-style: none;
}

.footer-col a {
  color: #f7d070 !important;
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8) !important;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* 📱 RESPONSIVE GRID BREAKPOINTS */
@media (max-width: 1200px) {
  .products-tc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .products-tc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
    font-size: 0.85rem;
  }

  .mobile-app-bottom-nav {
    display: flex !important;
  }

  .announcement-bar {
    font-size: 0.72rem;
    padding: 0.4rem 0.6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 1.3;
  }

  .announcement-bar span:first-child,
  .announcement-bar span:last-child {
    display: none !important;
  }

  .header-container {
    padding: 0.4rem 0.75rem;
  }
  
  .brand-link {
    width: 82px;
    height: 40px;
  }

  .brand-logo {
    width: 82px; 
    height: 82px;
    top: -17px;
    left: 0;
    margin-bottom: 0;
  }

  .site-header.is-scrolled .brand-logo {
    top: -10px;
  }


  .brand-text h1 {
    font-size: 1.15rem;
  }

  .brand-text p {
    display: none;
  }

  .fulfillment-toggle,
  .header-actions {
    display: none !important;
  }

  .main-nav {
    display: none;
  }

  .header-search-form {
    display: block !important;
    margin: 0 0.25rem 0 0.5rem;
    flex: 1;
    max-width: 100% !important;
    position: static !important;
  }

  .header-search-box {
    padding: 0.35rem 0.65rem 0.35rem 0.85rem !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1.5px solid var(--canadian-red) !important;
    box-shadow: 0 2px 8px rgba(213, 43, 30, 0.12) !important;
  }

  .header-search-input {
    width: 100% !important;
    font-size: 0.82rem !important;
    color: var(--dark-chocolate) !important;
  }

  .header-search-input::placeholder {
    color: #888888 !important;
  }

  .header-search-input:focus {
    width: 100% !important;
  }

  .header-search-dropdown {
    position: absolute !important;
    top: 63px !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100vw - 20px) !important;
    box-sizing: border-box !important;
    z-index: 9999 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  }

  .mobile-hamburger {
    display: block;
  }

  .full-slider-wrapper {
    aspect-ratio: 800 / 1111;
    min-height: auto;
  }

  .full-slide-overlay {
    display: none !important;
  }

  .full-slide-content-container {
    display: none !important;
  }

  .full-slider-arrow {
    display: none !important;
  }

  .usps-container {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .usp-card-title {
    font-size: 0.75rem;
  }

  .usp-card-sub {
    font-size: 0.68rem;
  }

  .bento-section {
    padding: 1.5rem 0.75rem;
  }

  .tc-section-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 0.4rem !important;
    margin-bottom: 0.85rem !important;
  }

  .tc-section-tag {
    font-size: 0.65rem;
  }

  .tc-section-title {
    font-size: 1.2rem !important;
    line-height: 1.1;
  }

  .tc-view-all-link {
    font-size: 0.62rem !important;
    padding: 0.28rem 0.6rem !important;
    white-space: nowrap !important;
  }

  .products-tc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    margin-top: 0.75rem;
    width: 100%;
  }

  .products-tc-grid.combo-grid-4col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }

  .products-tc-grid:not(.combo-grid-4col):not(.refresh-grid) .tc-product-card:nth-child(10) {
    display: none !important;
  }

  .support-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
    margin: 1rem auto !important;
    padding: 0 0.75rem !important;
  }
  
  .support-card {
    padding: 0.85rem 0.5rem !important;
  }
  
  .support-icon {
    font-size: 1.35rem !important;
    margin-bottom: 0.2rem !important;
  }
  
  .support-title {
    font-size: 0.9rem !important;
  }
  
  .support-sub {
    font-size: 0.68rem !important;
  }

  .tc-product-card {
    width: 100%;
  }

  .tc-card-info {
    padding: 0.45rem;
  }

  .tc-badge-tag, .tc-wishlist-btn {
    display: none !important;
  }

  .tc-rating-row {
    display: none !important;
  }

  .tc-product-title {
    font-size: 0.76rem;
    line-height: 1.2;
    margin-bottom: 0.2rem;
  }

  .tc-product-desc {
    display: none;
  }

  .tc-price-row {
    margin-bottom: 0.35rem;
    white-space: nowrap;
    gap: 0.2rem;
  }

  .tc-price-current {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .tc-price-old {
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .tc-card-buttons {
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
  }

  .btn-tc-add, .btn-tc-view, .tc-qty-stepper {
    width: 100%;
    flex: none;
    font-size: 0.62rem;
    padding: 0.3rem 0.15rem;
    min-height: 24px;
    height: 24px;
  }

  .btn-text-desktop {
    display: none !important;
  }

  .btn-text-mobile {
    display: inline !important;
  }

  .stepper-btn {
    width: 22px;
  }

  .stepper-val {
    font-size: 0.75rem;
  }

  .dh-title {
    font-size: 1.5rem;
  }

  .dh-sub {
    font-size: 0.8rem;
    margin: 0.5rem auto 1.25rem auto;
  }

  .dh-stat-val {
    font-size: 1.6rem;
  }

  .dh-stat-lbl {
    font-size: 0.68rem;
  }

  .dh-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .support-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .support-title {
    font-size: 0.9rem;
  }

  .support-sub {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .usps-container {
    grid-template-columns: 1fr;
  }
  .support-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FULL-WIDTH SPLIT TRANSPARENCY & QUALITY SHOWCASE SECTION
   ========================================================================== */
.split-feature-section {
  width: 100%;
  margin: 2rem 0;
  background: #ffffff;
}

.split-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  width: 100%;
}

/* Left Column: Dark Canadian Crimson / Dark Espresso Box */
.split-feature-content {
  background: linear-gradient(135deg, #7a0c16 0%, #a31525 50%, #540810 100%);
  color: #ffffff;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-tag {
  display: inline-block;
  color: #f7d070 !important;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.split-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}

.split-title em {
  font-style: normal;
  color: #f7d070 !important;
}

.split-desc {
  font-size: 0.95rem;
  color: #e5cdcf;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 580px;
}

/* Accordion List */
.split-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.split-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.split-accordion-item:last-child {
  border-bottom: none;
}

.split-accordion-header {
  padding: 1.1rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.2s ease;
}

.split-accordion-header::-webkit-details-marker {
  display: none;
}

.split-accordion-header:hover {
  color: #ffb3ba;
}

.accordion-icon {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ff9fa8;
}

.split-accordion-body {
  padding-bottom: 1.1rem;
  font-size: 0.88rem;
  color: #d1b5b8;
  line-height: 1.55;
}

/* Trust Badges Row */
.split-badges-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.5rem;
}

.split-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.badge-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.badge-sub {
  display: block;
  font-size: 0.72rem;
  color: #d1b5b8;
}

/* Right Column: Full Height Image */
.split-feature-media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.split-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .split-feature-grid {
    grid-template-columns: 1fr;
  }
  .split-feature-content {
    padding: 2.5rem 1.5rem;
  }
  .split-title {
    font-size: 1.75rem;
  }
  .split-feature-media {
    height: 350px;
  }
  .split-badges-row {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .split-feature-section {
    margin: 1rem 0 !important;
  }
  .split-feature-content {
    padding: 1.75rem 1.1rem 0.75rem 1.1rem !important;
  }
  .split-accordion-list {
    margin-bottom: 0.5rem !important;
  }
  .split-badges-row {
    display: none !important;
  }
}

/* ==========================================================================
   SHOP ALL PAGE (menu.php) ENHANCEMENTS
   ========================================================================== */
.shop-page-wrapper {
  background: #fdfaf7;
  min-height: 80vh;
}

.shop-hero-banner {
  background: linear-gradient(135deg, #1b0609 0%, #3a0d13 50%, #d52b1e 100%);
  color: #ffffff;
  padding: 3rem 1rem;
  text-align: center;
}

.shop-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.shop-hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.shop-hero-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.shop-hero-title em {
  font-style: normal;
  color: #ffb3ba;
}

.shop-hero-sub {
  font-size: 0.95rem;
  color: #f7cbd0;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.shop-search-wrapper {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.shop-search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--dark-chocolate);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.shop-search-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.shop-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
  opacity: 0.7;
}

/* Category Filter Pill Scroll */
.category-pill-scroll {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  margin-bottom: 1rem;
}

.category-pill-scroll::-webkit-scrollbar {
  height: 4px;
}

.category-pill-scroll::-webkit-scrollbar-thumb {
  background: rgba(213, 43, 30, 0.3);
  border-radius: 4px;
}

.pill-filter-btn {
  white-space: nowrap;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--dark-chocolate);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pill-filter-btn:hover {
  background: #fdf0f2;
  border-color: var(--canadian-red);
  color: var(--canadian-red);
}

.pill-filter-btn.active {
  background: var(--canadian-red);
  color: #ffffff;
  border-color: var(--canadian-red);
  box-shadow: 0 4px 12px rgba(213, 43, 30, 0.3);
}

.dietary-filter-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0;
  border-top: none;
}

@media (max-width: 768px) {
  .dietary-filter-row {
    justify-content: flex-start;
  }
}

.dietary-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
}

.allergen-pill-btn {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e0e0e0;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.allergen-pill-btn:hover {
  border-color: var(--canadian-red);
  color: var(--canadian-red);
}

.allergen-pill-btn.active {
  background: #fdf0f2;
  border-color: var(--canadian-red);
  color: var(--canadian-red);
  font-weight: 700;
}


.nav-dropdown {
  position: relative;
  display: inline-block;
}

.mega-menu-2col {
  position: absolute;
  top: calc(100% + 23px);
  left: -120px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(27, 6, 9, 0.16);
  padding: 1rem;
  width: 540px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.25rem; 
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 120;
}

.nav-dropdown:hover .mega-menu-2col {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-2col::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: transparent;
}

.mega-cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding-right: 1rem;
}

.mega-cat-header {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  color: #888888;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem 0.5rem 0.5rem;
}

.mega-cat-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.90rem;
  color: #2b1a10;
  text-decoration: none;
  transition: all 0.15s ease;
}

.mega-cat-link:hover, .mega-cat-link.mega-active {
  background: #fdf0f2;
  color: var(--canadian-red);
}

.mega-cat-link svg {
  flex-shrink: 0;
}

.mega-hot-tag {
  font-size: 0.6rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--canadian-red);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  margin-left: auto;
}

.mega-featured-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 285px;
}

.mega-featured-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mega-featured-card.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.mega-featured-content {
  position: relative;
  z-index: 2;
}

.mega-featured-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--canadian-red);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mega-featured-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.mega-featured-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.85rem;
}

.mega-featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: #ffffff;
  color: #1b0609;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mega-featured-btn:hover {
  background: var(--canadian-red);
  color: #ffffff;
}

/* APP DRAWER STYLES */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.drawer-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b0609;
  line-height: 1.1;
}

.drawer-brand-status {
  font-size: 0.7rem;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 2px;
}

.drawer-close-btn {
  background: #fdf0f2;
  border: 1px solid rgba(213, 43, 30, 0.25);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  color: var(--canadian-red);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.drawer-close-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.drawer-close-btn:hover {
  background: var(--canadian-red);
  color: #ffffff;
  border-color: var(--canadian-red);
  transform: scale(1.06);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.drawer-section-title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  color: #888888;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.65rem 0.25rem 0.65rem;
}

.drawer-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.65rem 0.85rem !important;
  border-radius: 12px !important;
  font-family: var(--font-heading) !important;
  font-size: 0.9rem !important;
  color: #2b1a10 !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
}

.drawer-item:hover, .drawer-item.active {
  background: #f7f6f4 !important;
  color: var(--canadian-red) !important;
}

.drawer-icon {
  width: 24px;
  height: 24px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.drawer-item:hover .drawer-icon, .drawer-item.active .drawer-icon {
  background: transparent;
}

.drawer-label {
  flex: 1;
}

.drawer-badge {
  font-size: 0.6rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--canadian-red);
  padding: 0.12rem 0.4rem;
  border-radius: 8px;
}

.drawer-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #faf8f5;
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
}

/* ==========================================================================
   12. LUXURY 2-COLUMN CHECKOUT PAGE STYLES
   ========================================================================== */
.checkout-container {
  max-width: 1100px;
  margin: 0 auto;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

.checkout-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #1b0609;
  margin: 0;
}

.checkout-back-link {
  color: var(--canadian-red);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.checkout-back-link:hover {
  text-decoration: underline;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.checkout-summary-card {
  background: #faf8f5;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.checkout-form-card {
  background: #ffffff;
  padding: 1.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.checkout-section-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #1b0609;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-item-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-item-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.checkout-item-details {
  flex: 1;
}

.checkout-item-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #1b0609;
  line-height: 1.25;
}

.checkout-item-qty {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.checkout-item-price {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--canadian-red);
}

.checkout-totals-table {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-subtle);
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: #555555;
  margin-bottom: 0.5rem;
}

.checkout-total-row.grand-total {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--canadian-red);
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 2px solid var(--border-subtle);
}

.checkout-trust-badge {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #2b1a10;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dcd6cd;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #1b0609;
  background: #ffffff;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.form-control:focus {
  border-color: var(--canadian-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(213, 43, 30, 0.12);
}

.checkout-submit-btn {
  display: block;
  width: 100%;
  padding: 0.95rem;
  background: linear-gradient(135deg, #d52b1e 0%, #b82318 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(213, 43, 30, 0.3);
  margin-top: 1.5rem;
}

.checkout-submit-btn:hover {
  background: linear-gradient(135deg, #b82318 0%, #9e1c12 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(213, 43, 30, 0.4);
}

@media (max-width: 868px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .checkout-title {
    font-size: 1.35rem;
  }
  .checkout-form-card, .checkout-summary-card {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   13. LUXURY ORDER STATUS & TRACKER STYLES
   ========================================================================== */
.order-status-container {
  max-width: 850px;
  margin: 0 auto;
}

.order-status-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.order-success-icon {
  width: 64px;
  height: 64px;
  background: #ecfdf5;
  color: #059669;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.order-number-pill {
  display: inline-block;
  background: #f4f2ee;
  color: #1b0609;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  margin-top: 0.5rem;
}

.order-stepper-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 2.5rem 0;
  padding: 0 1rem;
}

.order-stepper-track::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 3rem;
  right: 3rem;
  height: 3px;
  background: #e2e8f0;
  z-index: 1;
}

.order-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #cbd5e1;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.order-step.completed .step-circle {
  background: #059669;
  border-color: #059669;
  color: #ffffff;
}

.order-step.active .step-circle {
  background: var(--canadian-red);
  border-color: var(--canadian-red);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(213, 43, 30, 0.2);
}

.step-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
}

.order-step.completed .step-label,
.order-step.active .step-label {
  color: #1b0609;
}

.order-receipt-card {
  background: #faf8f5;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: left;
  margin: 2rem 0;
}.print-receipt-header {
  display: none;
}

@media (max-width: 640px) {
  .order-status-card {
    padding: 1.5rem 1rem;
  }
  .order-stepper-track {
    padding: 0;
  }
  .order-stepper-track::before {
    left: 1.5rem;
    right: 1.5rem;
  }
  .step-label {
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   14. PRINT STYLES (1-Page Crisp Printable Receipt)
   ========================================================================== */
@page {
  size: A4 portrait;
  margin: 5mm;
}

@media print {
  html, body {
    height: auto !important;
    min-height: 0 !important;
    max-height: 100% !important;
    overflow: hidden !important;
    background: #ffffff !important;
    color: #000000 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 10.5pt !important;
  }

  /* Hide unnecessary site chrome and footer completely */
  .announcement-bar,
  .site-header,
  .site-footer,
  footer,
  header,
  nav,
  aside,
  .mobile-app-bottom-nav,
  .modal-overlay,
  .cart-drawer,
  .no-print {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
  }

  .shop-page-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    background: #ffffff !important;
    page-break-after: avoid !important;
    page-break-inside: avoid !important;
  }

  .order-status-container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    page-break-after: avoid !important;
    page-break-inside: avoid !important;
  }

  .print-receipt-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.75rem !important;
    padding-bottom: 0.65rem !important;
  }

  .order-status-card {
    box-shadow: none !important;
    border: 1px solid #cccccc !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    page-break-after: avoid !important;
    page-break-inside: avoid !important;
  }

  .order-success-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.35rem !important;
    margin-bottom: 0.35rem !important;
  }

  .order-status-card h1 {
    font-size: 1.5rem !important;
    margin-bottom: 0.15rem !important;
  }

  .order-number-pill {
    padding: 0.2rem 0.65rem !important;
    font-size: 0.8rem !important;
    background: #f0f0f0 !important;
  }

  .order-stepper-track {
    margin: 0.85rem 0 !important;
  }

  .step-circle {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
  }

  .step-label {
    font-size: 0.75rem !important;
  }

  .order-receipt-card {
    margin: 0.85rem 0 0 0 !important;
    padding: 0.85rem !important;
    background: #fafafa !important;
    border: 1px solid #dddddd !important;
  }

  .checkout-totals-table {
    margin-top: 0.65rem !important;
    padding-top: 0.5rem !important;
  }

  .checkout-total-row {
    font-size: 0.85rem !important;
    margin-bottom: 0.3rem !important;
  }

  .checkout-total-row.grand-total {
    font-size: 1.1rem !important;
    margin-top: 0.4rem !important;
    padding-top: 0.4rem !important;
  }
}
