/* ==========================================================================
   Meals By Marsha - Clover POS Online Ordering & Checkout Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-warm: #FAF7F2;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F3EEE7;
  --bg-dark: #121513;

  --color-primary: #D95A3F;       /* Warm Terracotta Accent */
  --color-primary-hover: #C2482F;
  --color-sage: #2D5A27;          /* Deep Sage Basil */
  --color-sage-light: #EAF2EA;
  --color-gold: #C69255;          /* Warm Honey Gold */

  --text-dark: #1C1917;
  --text-secondary: #57534E;
  --text-muted: #78716C;

  --border-subtle: rgba(217, 90, 63, 0.15);
  --border-light: rgba(0, 0, 0, 0.08);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-card: 0 8px 24px -6px rgba(45, 30, 15, 0.06);
  --shadow-hover: 0 16px 36px -8px rgba(217, 90, 63, 0.18);
  --shadow-drawer: -10px 0 40px rgba(0, 0, 0, 0.2);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-warm);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Push category sections below the sticky header when scrolled to */
.category-block {
  scroll-margin-top: 120px;
}

/* Hero Ordering Banner */
.order-hero {
  background: linear-gradient(135deg, #121513 0%, #1C231E 100%);
  color: #fff;
  padding: 2.5rem 0 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.order-hero-badge {
  display: inline-block;
  background: rgba(217, 90, 63, 0.2);
  color: #FB923C;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  margin-bottom: 0.6rem;
}

.order-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.order-hero-sub {
  color: #A1A1AA;
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.6;
}

.order-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Header & Clover POS Status Header */
.order-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clover-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #047857;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  flex-shrink: 0;
}

.cart-toggle-btn {
  height: 42px;
  padding: 0 1.25rem;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 90, 63, 0.3);
  transition: var(--transition-fast);
}

.cart-toggle-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.cart-badge-count {
  background: #fff;
  color: var(--color-primary);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

/* Category Nav Sub-Bar */
.category-nav {
  display: flex;
  align-items: center;
  min-height: 59px;
  box-sizing: border-box;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.65rem 0;
  border-top: 1px solid var(--border-light);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.cat-tab {
  height: 38px;
  padding: 0 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.cat-tab:hover, .cat-tab.active {
  background: var(--color-sage);
  color: #fff;
}

/* Main Layout */
.ordering-layout {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2rem 0 6rem 0;
}

.category-block {
  margin-bottom: 3rem;
}

.category-block-header {
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 0.65rem;
}

.category-block-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
}

.category-block-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.2rem;
}

/* Items Grid */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.item-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  cursor: pointer;
  user-select: none;
}

.item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(217, 90, 63, 0.3);
}

.item-card-body {
  flex-grow: 1;
  margin-bottom: 0.85rem;
}

.item-card-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.item-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.item-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-light);
}

.item-card-price {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-sage);
  white-space: nowrap;
}

.btn-add-item {
  height: 38px;
  width: 38px;
  min-width: 38px;
  padding: 0;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(217, 90, 63, 0.25);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-add-item:hover {
  background: var(--color-primary-hover);
}

.item-controls-wrapper {
  display: inline-flex;
  flex-shrink: 0;
}

/* Modifier Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 400;
  background: rgba(18, 21, 19, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-item-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.modal-item-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mod-group {
  margin-bottom: 1.5rem;

  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
}

.mod-group-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.live-choice-count {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
}

.live-modifier-quantity-row {
  justify-content: space-between;
}

.live-modifier-quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.live-modifier-quantity-controls [data-modifier-quantity] {
  min-width: 1rem;
  text-align: center;
}

.mod-option-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  cursor: pointer;
}

.mod-option-row input[type="radio"], .mod-option-row input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
}

.mod-option-row:has(input:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
}

.mod-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #D1D5DB;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.special-notes-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #D1D5DB;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.btn-confirm-add {
  width: 100%;
  padding: 0.9rem;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

/* Slide-out Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: var(--bg-surface);
  box-shadow: var(--shadow-drawer);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

.cart-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty-msg {
  text-align: center;
  color: var(--text-muted);
  margin-top: 4rem;
  font-size: 1rem;
}

.cart-item-row {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-head {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
}

.cart-item-mods {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #D1D5DB;
  background: var(--bg-subtle);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.qty-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
}
.qty-btn svg {
  pointer-events: none;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.btn-checkout {
  width: 100%;
  padding: 0.95rem;
  border-radius: var(--radius-full);
  background: var(--color-sage);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

/* Receipt Modal */
.receipt-card {
  text-align: center;
}

.receipt-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.receipt-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.receipt-order-id {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.receipt-details {
  background: var(--bg-subtle);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Settings Button & Server Status Indicator */
.settings-btn {
  background: rgba(217, 90, 63, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(217, 90, 63, 0.3);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.settings-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.hero-action-btn {
  height: 46px;
  padding: 0 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-action-btn.primary {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(217, 90, 63, 0.4);
}

.hero-action-btn.primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.hero-action-btn.outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.hero-action-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Mod Option Rows (QSR Choice Cards) */
.mod-option-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 0.5rem;
  background: var(--bg-surface);
  cursor: pointer;
  min-height: 46px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 0.2s, background-color 0.2s;
}

.mod-option-row:hover, .mod-option-row:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(217, 90, 63, 0.05);
}

.mod-option-row input[type="radio"], .mod-option-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.status-dot.online {
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
}

.status-dot.offline {
  background: #F59E0B;
  box-shadow: 0 0 10px #F59E0B;
}

.clover-status-badge.connected {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #047857;
}

/* ==========================================================================
   Floating Mobile Cart / Bag Bar (Top QSR UX Pattern - McDonald's / Chipotle)
   ========================================================================== */
.mobile-cart-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 1rem;
  background: rgba(18, 21, 19, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-cart-bar.visible {
  transform: translateY(0);
}

.mobile-cart-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-cart-info {
  display: flex;
  flex-direction: column;
}

.mobile-cart-count {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #A3E635;
}

.mobile-cart-total {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.mobile-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(217, 90, 63, 0.4);
}

body.modal-open {
  overflow: hidden !important;
}

/* ==========================================================================
   Mobile Responsive Styles (< 768px and < 480px)
   ========================================================================== */
@media (max-width: 768px) {
  .mobile-cart-bar {
    display: block;
  }

  .header-top {
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.65rem 0;
  }

  .brand-badge {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .clover-status-badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }

  .cart-toggle-btn {
    height: 38px;
    padding: 0 0.85rem;
    font-size: 0.82rem;
  }

  .hero-action-btn {
    width: 100%;
  }

  .category-nav {
    padding: 0.5rem 0;
    gap: 0.4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-nav::-webkit-scrollbar {
    display: none;
  }

  .cat-tab {
    height: 36px;
    padding: 0 0.9rem;
    font-size: 0.82rem;
  }

  .ordering-layout {
    padding: 1.25rem 0 7rem 0;
  }

  .category-block {
    margin-bottom: 2rem;
  }

  .items-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .item-card {
    padding: 1rem;
  }

  .item-card-name {
    font-size: 1.2rem;
  }

  .item-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .btn-add-item {
    width: 38px;
    min-width: 38px;
    padding: 0;
    height: 38px;
    font-size: 1.35rem;
  }

  /* Slide-up Cart Sheet on Mobile */
  .cart-drawer {
    top: auto;
    bottom: -100%;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 88vh;
    border-radius: 20px 20px 0 0;
    transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .cart-drawer.open {
    bottom: 0;
    right: 0;
  }

  .cart-header {
    padding: 1.1rem 1.25rem;
    border-radius: 20px 20px 0 0;
  }

  .cart-title {
    font-size: 1.35rem;
  }

  .cart-footer {
    padding: 1.1rem 1.25rem;
  }

  .btn-checkout {
    min-height: 48px;
    font-size: 1rem;
  }

  /* Mobile Modals (Bottom Sheet overlay) */
  .modal-card {
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 1.25rem;
    position: fixed;
    bottom: 0;
    top: auto;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .modal.active .modal-card {
    transform: translateY(0);
  }

  .mod-select, .special-notes-input {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    min-height: 46px;
  }

  .btn-confirm-add {
    min-height: 48px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  .brand-badge {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }

  .cart-toggle-btn span:not(.cart-badge-count) {
    display: none; /* Show cart icon and count badge on very small screens */
  }

  .cart-toggle-btn {
    padding: 0 0.65rem;
  }
}
