/* Reset & Basic Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main.container,
.layout-container,
.menu-container,
.pdp-container {
  flex: 1;
}

/* Box Layout Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Primary Brand Colors */
:root {
  --primary-red: #e31837;
  --dark-red: #c4142f;
  --dark-gray: #1a1f24;
  --bg-light: #f4f6f8;
  --border-gray: #e0e0e0;
  --text-main: #222222;
  --text-muted: #666666;
}

/* 1. Dark Promotional Banner */
.promo-banner {
  background-color: var(--dark-gray);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}

.promo-banner span {
  margin: 0 20px;
}

.promo-banner a {
  color: #ffffff;
  text-decoration: underline;
  margin-left: 5px;
}

.nav-arrow {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

/* Header Container */
.header-container {
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}

/* 2. Main Header (Logo, Search, Account) */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px;
  gap: 20px;
}

/* Logo */
.logo {
  flex-shrink: 0;
}
.logo a {
  display: flex;
  align-items: center;
}
.logo img {
  width: 200px;
  height: auto;
}

/* Search Bar (Pill Shape) */
.search-container {
  flex-grow: 1;
  max-width: 800px;
  position: relative;
}

.search-container input {
  width: 100%;
  background-color: #f2f4f6;
  border: 1px solid #e2e5e8;
  border-radius: 50px;
  padding: 14px 20px;
  padding-right: 60px;
  font-size: 16px;
  outline: none;
  color: #333;
  transition: all 0.2s ease;
}

.search-container input:focus {
  background-color: #fff;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 1px var(--primary-red);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 40px;
  background-color: var(--primary-red);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background-color 0.2s ease;
}

.search-btn:hover {
  background-color: var(--dark-red);
}

/* Autosuggest Dropdown */
.autosuggest {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-gray);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 300;
  display: none;
  overflow: hidden;
}

.autosuggest.open {
  display: block;
}

.autosuggest-section {
  padding: 10px 0;
}

.autosuggest-section + .autosuggest-section {
  border-top: 1px solid var(--border-gray);
}

.autosuggest-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  padding: 6px 18px;
}

.autosuggest-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px;
  text-decoration: none;
  color: var(--text-main);
  transition: background-color 0.1s;
}

.autosuggest-item:hover,
.autosuggest-item.active {
  background-color: var(--bg-light);
}

.autosuggest-thumb {
  width: 44px;
  height: 44px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.autosuggest-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.autosuggest-info {
  flex: 1;
  min-width: 0;
}

.autosuggest-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.autosuggest-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.autosuggest-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-gray);
  flex-shrink: 0;
}

.autosuggest-price.on-sale {
  color: var(--primary-red);
}

.autosuggest-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.1s;
}

.autosuggest-cat:hover {
  background-color: var(--bg-light);
}

.autosuggest-cat svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.autosuggest-footer {
  border-top: 1px solid var(--border-gray);
  padding: 12px 18px;
  text-align: center;
}

.autosuggest-footer a {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-red);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.autosuggest-footer a:hover {
  text-decoration: underline;
}

/* User Controls (Store, Sign In, Cart) */
.user-controls {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
}

.store-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.store-icon {
  font-size: 24px;
  color: #555;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 13px;
  color: #333;
  text-align: left;
}

.store-text strong {
  font-size: 16px;
  color: #111;
}

.account-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.btn-outline {
  border: 1px solid #333;
  background: transparent;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-outline:hover {
  background: #f4f4f4;
}

.account-greeting {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.account-greeting:hover {
  color: var(--primary-red);
}

.account-greeting svg {
  flex-shrink: 0;
}

.link-plain {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.link-plain:hover {
  text-decoration: underline;
  color: var(--primary-red);
}

.cart-icon {
  font-size: 26px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
  position: relative;
}

.cart-icon:hover {
  color: var(--primary-red);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--primary-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* 3. Bottom Navigation */
.bottom-nav {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #ffffff;
  height: 50px;
  font-size: 14px;
  position: relative;
}

.nav-categories {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-categories > li > a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}

.nav-categories > li > a:hover,
.nav-categories > li > a.nav-active {
  color: var(--primary-red);
}

/* Down Caret for dropdowns */
.has-dropdown > a::after {
  content: "\2304";
  font-size: 16px;
  position: relative;
  top: -3px;
  font-weight: normal;
}

.brand-red-text {
  color: var(--primary-red) !important;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background-color: #ccc;
  margin: 0 20px;
}

/* Quick Links */
.quick-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.quick-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 13.5px;
}

.quick-links a:hover,
.quick-links a.nav-active {
  color: var(--primary-red);
}

/* Mega Menu */
.has-mega {
  position: static;
}

.has-mega > a {
  position: relative;
  z-index: 201;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: white;
  border-top: 3px solid var(--primary-red);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  padding-top: 0;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  display: flex;
  gap: 0;
  padding-top: 35px;
  padding-bottom: 40px;
}

.mega-col {
  flex: 1;
  padding: 0 28px;
  border-right: 1px solid var(--border-gray);
}

.mega-col:first-child {
  padding-left: 0;
}

.mega-col:last-of-type {
  border-right: none;
}

.mega-heading {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dark-gray);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-red);
  display: inline-block;
}

.mega-heading--spaced {
  margin-top: 24px;
}

.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-col ul li {
  margin-bottom: 10px;
}

.mega-col ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
  display: inline-block;
}

.mega-col ul li a:hover {
  color: var(--primary-red);
}

.mega-promo {
  flex: 0 0 240px;
  padding-left: 28px;
}

.mega-promo-card {
  background: var(--dark-gray);
  color: white;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mega-promo-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-red);
  margin-bottom: 14px;
}

.mega-promo-card h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.mega-promo-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 20px;
}

.mega-promo-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  text-decoration: none;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 2px;
  display: inline-block;
  width: max-content;
  transition: color 0.2s;
}

.mega-promo-link:hover {
  color: var(--primary-red);
}

/* Sticky Class (legacy - now using CSS sticky on .header-container) */

/* ===================== */
/* Store Drawer           */
/* ===================== */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.store-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: white;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.store-drawer.open {
  transform: translateX(0);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
}

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

.drawer-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-gray);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.drawer-close:hover {
  color: var(--dark-gray);
}

.drawer-search {
  padding: 20px 28px 0 28px;
}

.drawer-search input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #bbb;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}

.drawer-search input:focus {
  border-color: var(--dark-gray);
  border-width: 2px;
  padding: 13px 15px;
}

.drawer-hint {
  padding: 14px 28px 0 28px;
  font-size: 13px;
  color: var(--text-muted);
}

.drawer-store-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 28px 28px 28px;
}

.store-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border: 1px solid var(--border-gray);
  margin-top: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.store-option:hover {
  border-color: #aaa;
  background-color: var(--bg-light);
}

.store-option.selected,
.store-option:has(input:checked) {
  border-color: var(--dark-gray);
  border-width: 2px;
  padding: 17px 15px;
  background-color: var(--bg-light);
}

.store-option input[type="radio"] {
  display: none;
}

.store-option-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.store-option-info strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 3px;
}

.store-option-info span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.store-hours {
  color: #2e7d32 !important;
  font-weight: 600;
  margin-top: 4px;
}

.store-check {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  opacity: 0;
  transition: opacity 0.15s;
}

.store-option:has(input:checked) .store-check {
  opacity: 1;
}

/* ===================== */
/* Footer                */
/* ===================== */

.site-footer {
  background-color: var(--dark-gray);
  color: #ccc;
}

.footer-inner {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #3a4149;
}

.footer-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 160px;
}

.footer-col:first-child {
  flex: 1.4;
  min-width: 220px;
}

.footer-logo img {
  width: 160px;
  height: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: #999;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-hours li {
  font-size: 14px;
  color: #999;
}

.footer-address {
  margin-top: 14px;
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid #333;
  background-color: #13171b;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal span {
  color: #555;
  font-weight: 600;
}

/* Footer Copyright */
.footer-copyright {
  background-color: #0e1115;
  text-align: center;
  padding: 14px 20px;
}

.footer-copyright p {
  font-size: 12px;
  color: #555;
}

/* ===================== */
/* Breadcrumbs           */
/* ===================== */

.breadcrumbs-container {
  padding: 20px 20px;
  font-size: 13px;
  color: var(--text-muted);
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-gray);
}

.breadcrumbs-container .container {
  padding-top: 0;
  padding-bottom: 0;
}

.breadcrumbs a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: var(--primary-red);
  text-decoration: underline;
}

/* ===================== */
/* Search Results Page    */
/* ===================== */

.search-header-wrapper {
  background-color: white;
  border-bottom: 1px solid var(--border-gray);
}

.search-header-inner {
  padding: 30px 20px 35px 20px;
}

.search-header-inner .breadcrumbs {
  margin-bottom: 15px;
}

.search-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.search-result-count {
  font-size: 15px;
  color: var(--text-muted);
}

.search-refine-form {
  margin-top: 4px;
}

.search-refine-input {
  display: flex;
  border: 1px solid var(--border-gray);
}

.search-refine-input input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  font-size: 14px;
  outline: none;
  color: var(--text-main);
}

.search-refine-btn {
  background: var(--dark-gray);
  border: none;
  padding: 0 14px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.search-refine-btn:hover {
  background: var(--primary-red);
}

.search-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.search-empty svg {
  margin-bottom: 20px;
}

.search-empty h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.search-empty p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.search-suggestions h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.suggestion-tags a {
  padding: 8px 18px;
  border: 1px solid var(--border-gray);
  text-decoration: none;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}

.suggestion-tags a:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

/* ===================== */
/* Category Page         */
/* ===================== */

.category-header-wrapper {
  background-color: white;
  border-bottom: 1px solid var(--border-gray);
}

.category-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px 40px 20px;
}

.category-header-inner .breadcrumbs {
  margin-bottom: 15px;
}

.category-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.layout-container {
  display: flex;
  padding: 40px 20px;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sidebar Filters */
.sidebar {
  flex: 0 0 260px;
}

.filter-group {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-gray);
  padding-bottom: 20px;
}

.filter-group h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 15px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-main);
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-gray);
  background-color: white;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
  border-radius: 0;
  transition: all 0.2s;
}

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

.filter-option input[type="checkbox"]:checked::after {
  content: "\2713";
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: bold;
}

.filter-count {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 12px;
}

/* Sort Bar */
.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background-color: white;
  padding: 15px 20px;
  border: 1px solid var(--border-gray);
}

.results-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.sort-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.sort-select {
  padding: 8px 12px;
  border: 1px solid var(--border-gray);
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  border-radius: 0;
  background-color: white;
}

.sort-select:focus {
  border-color: var(--dark-gray);
}

.main-content {
  flex-grow: 1;
  min-width: 0;
}

/* AJAX loading state */
#product-results {
  transition: opacity 0.15s ease;
}

#product-results.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Empty filter results */
.empty-filters-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-filters-message p {
  font-size: 16px;
  margin-bottom: 16px;
}

.btn-clear-filters {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s;
}

.btn-clear-filters:hover {
  background: var(--dark-red);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

/* ===================== */
/* Product Card          */
/* ===================== */

.product-card {
  background: white;
  border: 1px solid var(--border-gray);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s;
}

.product-card:hover {
  border-color: #c0c0c0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-card a.product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.points-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--dark-gray);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
}

.product-image {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-details {
  padding: 0 16px 16px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card .product-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 4px;
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-size {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-card .product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stars { color: var(--dark-gray); font-size: 13px; letter-spacing: 1px; }
.stars-empty { color: #ccc; }
.review-count { font-size: 12px; color: var(--text-muted); }

.product-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 16px;
}

.price-tag-icon { color: var(--primary-red); width: 14px; height: 14px; }
.price-current { font-size: 16px; font-weight: 700; color: var(--primary-red); }
.price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.price-standard { font-size: 16px; font-weight: 700; color: var(--dark-gray); }

.btn-add-cart {
  background-color: var(--dark-gray);
  color: white;
  border: none;
  width: calc(100% - 32px);
  margin: 0 16px 16px 16px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

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

/* ===================== */
/* Pagination            */
/* ===================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 50px;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: white;
  border: 1px solid var(--border-gray);
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.page-btn:hover {
  border-color: var(--dark-gray);
}

.page-btn.active {
  background-color: var(--dark-gray);
  color: white;
  border-color: var(--dark-gray);
}

.page-next {
  width: auto;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 13px;
}

/* ===================== */
/* Kitchen Menu Page     */
/* ===================== */

.kitchen-hero {
  background: linear-gradient(rgba(26, 31, 36, 0.9), rgba(26, 31, 36, 0.9));
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px solid var(--primary-red);
}

.kitchen-hero h1 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.kitchen-hero p {
  font-size: 18px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.menu-container {
  display: flex;
  padding: 50px 20px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sidebar Navigation */
.menu-nav {
  flex: 0 0 250px;
  position: sticky;
  top: 160px;
  height: max-content;
}

.menu-nav h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--dark-gray);
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 10px;
  display: inline-block;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 15px;
  border: 1px solid transparent;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list a:hover {
  background-color: white;
  border-color: var(--border-gray);
  color: var(--primary-red);
}

.nav-list a.active {
  background-color: var(--dark-gray);
  color: white;
  border-color: var(--dark-gray);
}

.menu-content {
  flex-grow: 1;
}

.menu-section {
  margin-bottom: 60px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* Food Grid */
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
}

/* ===================== */
/* Kitchen Card          */
/* ===================== */

.food-card {
  background: white;
  border: 1px solid var(--border-gray);
  display: flex;
  height: 180px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.food-card:hover {
  border-color: #bbb;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.food-image {
  flex: 0 0 160px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid var(--border-gray);
}

.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.food-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.food-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.food-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-gray);
}

.food-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.pairing-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-gray);
  background-color: var(--bg-light);
  padding: 4px 8px;
  border: 1px solid var(--border-gray);
  width: max-content;
  text-decoration: none;
  transition: border-color 0.2s;
}

.pairing-tag:hover {
  border-color: var(--primary-red);
}

.pairing-tag span {
  color: var(--primary-red);
}

.card-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.btn-add {
  background-color: var(--primary-red);
  color: white;
  border: none;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-add:hover {
  background-color: var(--dark-red);
}

/* ===================== */
/* Product Detail Page   */
/* ===================== */

.pdp-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 60px;
}

.pdp-image-gallery {
  flex: 1;
  position: relative;
}

.main-image {
  width: 100%;
  height: 600px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px;
}

.main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.points-badge-large {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--dark-gray);
  color: white;
  font-size: 16px;
  font-weight: 800;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.pdp-details {
  flex: 1;
  max-width: 550px;
}

.brand-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.pdp-details .product-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-gray);
  line-height: 1.1;
  margin-bottom: 15px;
  height: auto;
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
}

.pdp-details .product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 14px;
}

.pdp-details .stars {
  font-size: 16px;
  letter-spacing: 2px;
}

.review-link {
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
}

.review-link:hover {
  color: var(--primary-red);
}

.price-container {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-gray);
}

.price-container .price-current {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.price-container .price-old {
  font-size: 18px;
  margin-bottom: 3px;
}

/* Add to Cart Form */
.add-to-cart-form {
  margin-bottom: 30px;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-bottom: 10px;
  display: block;
}

.size-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.size-option {
  position: relative;
}

.size-option input {
  display: none;
}

.size-label {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid var(--border-gray);
  background-color: white;
  color: var(--text-main);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0;
}

.size-option input:checked + .size-label {
  border-color: var(--primary-red);
  background-color: var(--primary-red);
  color: white;
}

.size-option input:not(:checked) + .size-label:hover {
  border-color: var(--dark-gray);
}

.action-row {
  display: flex;
  gap: 15px;
  height: 50px;
  margin-bottom: 25px;
}

.quantity-selector {
  display: flex;
  border: 2px solid var(--border-gray);
  width: 120px;
}

.qty-btn {
  background: none;
  border: none;
  width: 35px;
  font-size: 20px;
  font-weight: bold;
  color: var(--dark-gray);
  cursor: pointer;
  transition: background-color 0.2s;
}

.qty-btn:hover {
  background-color: var(--bg-light);
}

.qty-input {
  width: 50px;
  border: none;
  border-left: 1px solid var(--border-gray);
  border-right: 1px solid var(--border-gray);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-submit {
  flex-grow: 1;
  background-color: var(--primary-red);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-submit:hover {
  background-color: var(--dark-red);
}

/* Fulfillment Box */
.fulfillment-box {
  border: 1px solid var(--border-gray);
  background-color: var(--bg-light);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fulfillment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.fulfillment-icon {
  font-size: 20px;
  line-height: 1;
}

.fulfillment-text strong {
  display: block;
  color: var(--dark-gray);
  margin-bottom: 2px;
}

.fulfillment-text span {
  color: #2e7d32;
  font-weight: 600;
}

/* PDP Lower Section */
.pdp-lower {
  max-width: 1400px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}

.tabs {
  display: flex;
  border-bottom: 2px solid var(--border-gray);
  margin-bottom: 30px;
}

.tab-btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.tab-btn.active {
  color: var(--dark-gray);
  border-bottom-color: var(--primary-red);
}

.tab-btn:hover:not(.active) {
  color: var(--dark-gray);
}

.content-grid {
  display: flex;
  gap: 60px;
}

.description-col {
  flex: 2;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
}

.description-col p {
  margin-bottom: 20px;
}

.specs-col {
  flex: 1;
  background-color: var(--bg-light);
  padding: 30px;
  border: 1px solid var(--border-gray);
}

.specs-col h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 10px;
  display: inline-block;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-gray);
  font-size: 14px;
}

.spec-label {
  font-weight: 700;
  color: var(--text-muted);
}

.spec-value {
  font-weight: 600;
  color: var(--dark-gray);
  text-align: right;
}

/* ===================== */
/* Home Hero Section     */
/* ===================== */

.hero-container {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  margin-bottom: 80px;
}

.hero-inner {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 50%;
  color: white;
}

.hero-tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffcccc;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #fff0f0;
}

.btn-dark {
  background-color: var(--dark-gray);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  transition: background-color 0.2s, transform 0.2s;
}

.btn-dark:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* Floating Rewards Card */
.hero-signup-card {
  position: absolute;
  right: 20px;
  bottom: -40px;
  background: white;
  padding: 40px;
  width: 380px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border-top: 4px solid var(--dark-gray);
}

.hero-signup-card h3 {
  color: var(--dark-gray);
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-outline-red {
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  text-decoration: none;
  padding: 10px 24px;
  font-weight: bold;
  transition: all 0.2s;
}

.btn-outline-red:hover {
  background-color: var(--primary-red);
  color: white;
}

.link-text {
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.link-text:hover {
  text-decoration: underline;
  color: var(--primary-red);
}

/* SMS deals signup card in the hero */
.hero-signup-lede {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero-signup-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.hero-signup-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 2px solid var(--dark-gray);
  font-size: 15px;
  font-family: inherit;
}

.hero-signup-input:focus {
  outline: none;
  border-color: var(--primary-red);
}

.hero-signup-form .btn-outline-red {
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  white-space: nowrap;
}

.hero-signup-success {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-red);
}

.hero-signup-error {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-red);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Featured Deals Section */
.deals-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.section-header h2 {
  font-size: 28px;
  color: var(--dark-gray);
  font-weight: 800;
  text-transform: uppercase;
}

.view-all {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.view-all:hover {
  text-decoration: underline;
}

.deals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.deal-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: white;
  display: flex;
  transition: transform 0.2s, box-shadow 0.2s;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Feature Card (left, spans both rows) */
.deal-card--feature {
  grid-row: 1 / 3;
  background-color: var(--dark-gray);
  flex-direction: column;
  justify-content: flex-end;
}

.deal-card--feature .deal-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--dark-gray) 0%, transparent 60%),
    var(--deal-bg) center/cover no-repeat;
}

.deal-card--feature .deal-body {
  position: relative;
  z-index: 2;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.deal-card--feature .deal-save {
  font-size: 100px;
  font-weight: 800;
  color: white;
  opacity: 0.06;
  position: absolute;
  top: 25px;
  right: 30px;
  line-height: 1;
  letter-spacing: -3px;
  z-index: 2;
  transition: opacity 0.3s;
}

.deal-card--feature:hover .deal-save {
  opacity: 0.1;
}

.deal-card--feature .deal-tag {
  background-color: var(--primary-red);
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: max-content;
}

.deal-card--feature .deal-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 10px;
}

.deal-card--feature .deal-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  max-width: 360px;
  margin-bottom: 28px;
}

.deal-card--feature .deal-cta {
  display: inline-block;
  background-color: white;
  color: var(--dark-gray);
  text-decoration: none;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s, color 0.2s;
  width: max-content;
}

.deal-card--feature .deal-cta:hover {
  background-color: var(--primary-red);
  color: white;
}

.deal-card--feature::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-red);
  z-index: 3;
}

/* Compact Cards (right column) */
.deal-card--compact {
  display: flex;
  align-items: stretch;
}

.deal-card--compact .deal-visual {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
}

.deal-card--compact .deal-visual-bg {
  position: absolute;
  inset: 0;
  background: var(--deal-bg) center/cover no-repeat;
}

.deal-card--compact .deal-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 50%, var(--dark-gray) 100%);
}

.deal-card--compact .deal-watermark {
  position: absolute;
  z-index: 1;
  font-size: 64px;
  font-weight: 800;
  color: white;
  opacity: 0.08;
  bottom: -8px;
  left: 12px;
  line-height: 1;
  letter-spacing: -2px;
  transition: opacity 0.3s;
}

.deal-card--compact:hover .deal-watermark {
  opacity: 0.14;
}

.deal-card--compact .deal-info-block {
  flex: 1;
  background: var(--dark-gray);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deal-card--compact .deal-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.deal-card--compact .deal-tag::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--primary-red);
  flex-shrink: 0;
}

.deal-card--compact .deal-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
  color: white;
}

.deal-card--compact .deal-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  margin-bottom: 18px;
}

.deal-card--compact .deal-cta {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  text-decoration: none;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 2px;
  width: max-content;
  transition: color 0.2s;
}

.deal-card--compact .deal-cta:hover {
  color: var(--primary-red);
}

/* ===================== */
/* Shop by Category       */
/* ===================== */

.categories-section {
  margin-bottom: 80px;
}

.categories-section .section-header {
  align-items: center;
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  background: white;
  border: 2px solid var(--dark-gray);
  color: var(--dark-gray);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-arrow:hover {
  background-color: var(--dark-gray);
  color: white;
}

.category-carousel {
  overflow: visible;
}

.category-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 12px 0;
}

.category-carousel-track::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 0 0 160px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card-bg {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.category-card-bg img {
  width: auto;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
}

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

.category-card-name {
  background-color: var(--dark-gray);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 14px;
  text-align: center;
  border-top: 3px solid var(--primary-red);
}

@media (max-width: 600px) {
  .category-card {
    flex: 0 0 130px;
  }
  .category-card-bg {
    height: 130px;
  }
  .category-card-name {
    font-size: 12px;
    padding: 10px 10px;
  }
}

/* ===================== */
/* Product Row Sections   */
/* ===================== */

.product-row-section {
  margin-bottom: 80px;
}

.product-carousel {
  overflow: hidden;
}

.product-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
}

.product-carousel-track::-webkit-scrollbar {
  display: none;
}

.product-carousel-item {
  flex: 0 0 230px;
}

.product-carousel-item .product-card {
  height: 100%;
}

.btn-view-more {
  color: var(--primary-red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-left: 4px;
  white-space: nowrap;
  transition: color 0.2s;
}

.btn-view-more:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .product-carousel-item {
    flex: 0 0 200px;
  }
}

/* ===================== */
/* Login Page             */
/* ===================== */

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  min-height: 100vh;
}

.login-card {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.login-logo {
  margin-bottom: 40px;
}

.login-logo img {
  width: 180px;
  height: auto;
}

.login-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 35px;
}

.login-form {
  text-align: left;
}

.form-field {
  position: relative;
  margin-bottom: 20px;
}

.form-field input {
  width: 100%;
  padding: 18px 16px 8px 16px;
  font-size: 16px;
  border: 1px solid #bbb;
  border-radius: 4px;
  outline: none;
  background: transparent;
  color: var(--text-main);
  transition: border-color 0.2s;
}

.form-field input:focus {
  border-color: var(--dark-gray);
  border-width: 2px;
  padding: 17px 15px 7px 15px;
}

.form-field label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.15s ease;
  background: white;
  padding: 0 4px;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-gray);
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  text-decoration: underline;
}

.password-toggle:hover {
  color: var(--primary-red);
}

.forgot-row {
  text-align: right;
  margin-top: -12px;
  margin-bottom: 20px;
}

.forgot-link {
  font-size: 14px;
  color: var(--text-main);
  text-decoration: underline;
  font-weight: 500;
}

.forgot-link:hover {
  color: var(--primary-red);
}

.keep-signed-in {
  margin-bottom: 28px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #999;
  border-radius: 3px;
  background: white;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.15s;
}

.checkbox-label input[type="checkbox"]:checked {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: "\2713";
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: bold;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #999;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  cursor: help;
  flex-shrink: 0;
}

.btn-sign-in {
  width: 100%;
  padding: 16px;
  background-color: var(--dark-gray);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 4px;
}

.btn-sign-in:hover {
  background-color: #000;
}

.login-footer {
  margin-top: 28px;
  font-size: 15px;
  color: var(--text-main);
  font-weight: 500;
}

.login-footer a {
  color: var(--text-main);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 8px;
}

.login-footer a:hover {
  color: var(--primary-red);
}

/* Registration Page Additions */

.login-subheading {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: -20px;
  margin-bottom: 35px;
  line-height: 1.5;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-field {
  flex: 1;
}

.password-requirements {
  margin-top: -10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: left;
}

.password-requirements p {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.password-requirements ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.password-requirements li {
  padding-left: 20px;
  position: relative;
}

.password-requirements li::before {
  content: "\2022";
  position: absolute;
  left: 6px;
  color: #bbb;
}

.password-requirements li.met::before {
  content: "\2713";
  color: #2e7d32;
  left: 4px;
  font-weight: bold;
}

.password-requirements li.met {
  color: #2e7d32;
}

.form-field-date {
  text-align: left;
  margin-bottom: 24px;
}

.dob-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-field-date input[type="date"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #bbb;
  border-radius: 4px;
  outline: none;
  color: var(--text-main);
  background: transparent;
  transition: border-color 0.2s;
}

.form-field-date input[type="date"]:focus {
  border-color: var(--dark-gray);
  border-width: 2px;
  padding: 13px 15px;
}

.field-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.inline-link {
  color: var(--text-main);
  text-decoration: underline;
  font-weight: 600;
}

.inline-link:hover {
  color: var(--primary-red);
}

/* ===================== */
/* Email Signup Section   */
/* ===================== */

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

.email-signup-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.email-signup-text {
  flex: 1;
}

.email-signup-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.email-signup-text p {
  font-size: 16px;
  color: #b0b8c1;
  line-height: 1.6;
}

.email-signup-form {
  flex: 1;
  max-width: 480px;
}

.email-signup-fields {
  display: flex;
  gap: 0;
}

.email-signup-fields input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  font-size: 16px;
  border: 2px solid #3a4149;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background: #2a3038;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

.email-signup-fields input[type="email"]::placeholder {
  color: #6b7785;
}

.email-signup-fields input[type="email"]:focus {
  border-color: var(--primary-red);
}

.btn-signup {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background-color: var(--primary-red);
  border: 2px solid var(--primary-red);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.btn-signup:hover {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
}

.email-signup-fine-print {
  font-size: 13px;
  color: #6b7785;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .email-signup-inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .email-signup-form {
    max-width: 100%;
    width: 100%;
  }
  .email-signup-fields {
    flex-direction: column;
    gap: 12px;
  }
  .email-signup-fields input[type="email"] {
    border-right: 2px solid #3a4149;
    border-radius: 4px;
  }
  .btn-signup {
    border-radius: 4px;
    width: 100%;
  }
}

/* ===================== */
/* Responsive            */
/* ===================== */

@media (max-width: 950px) {
  .hero-inner {
    flex-direction: column;
    min-height: auto;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .hero-signup-card {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .deals-grid {
    grid-template-columns: 1fr;
  }
  .deal-card--feature {
    grid-row: auto;
    min-height: 360px;
  }
  .deal-card--feature .deal-save {
    font-size: 72px;
  }
  .deal-card--feature .deal-title {
    font-size: 32px;
  }
  .deal-card--compact {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .deal-card--compact {
    flex-direction: column;
  }
  .deal-card--compact .deal-visual {
    flex: 0 0 120px;
  }
  .deal-card--compact .deal-visual::after {
    background: linear-gradient(to bottom, transparent 40%, var(--dark-gray) 100%);
  }
  .deal-card--feature .deal-body {
    padding: 30px;
  }
}

@media (max-width: 1024px) {
  .menu-container {
    flex-direction: column;
  }
  .menu-nav {
    flex: none;
    position: static;
    margin-bottom: 30px;
  }
  .nav-list {
    flex-direction: row;
    overflow-x: auto;
  }
  .nav-list a {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .pdp-container { flex-direction: column; gap: 30px; }
  .pdp-details { max-width: 100%; }
  .main-image { height: 400px; }
  .content-grid { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .food-grid {
    grid-template-columns: 1fr;
  }
  .food-card {
    height: auto;
    min-height: 160px;
  }
  .food-image {
    flex: 0 0 120px;
  }
}

/* ===================== */
/* Admin Inline Editing   */
/* ===================== */

.product-title-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.product-title-row .product-title {
  flex: 1;
}

.admin-edit-btn {
  flex-shrink: 0;
  background: none;
  border: 2px solid var(--dark-gray);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-gray);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  margin-top: 6px;
  white-space: nowrap;
}

.admin-edit-btn:hover {
  background-color: var(--dark-gray);
  color: white;
}

/* Edit Drawer */
.edit-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100%;
  height: 100vh;
  background: white;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
}

.edit-drawer.open {
  transform: translateX(0);
}

.edit-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
}

.edit-field {
  margin-bottom: 20px;
}

.edit-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.edit-field input[type="text"],
.edit-field input[type="number"],
.edit-field textarea,
.edit-field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  outline: none;
  color: var(--text-main);
  background: white;
  transition: border-color 0.2s;
}

.edit-field input:focus,
.edit-field textarea:focus,
.edit-field select:focus {
  border-color: var(--dark-gray);
  box-shadow: 0 0 0 1px var(--dark-gray);
}

.edit-field textarea {
  resize: vertical;
  line-height: 1.5;
}

.edit-field select {
  cursor: pointer;
}

.edit-field input::placeholder,
.edit-field textarea::placeholder {
  color: #bbb;
}

.edit-field-row {
  display: flex;
  gap: 16px;
}

.edit-field-row .edit-field {
  flex: 1;
}

.edit-section-label {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-gray);
  margin-bottom: 18px;
  margin-top: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-red);
  display: inline-block;
}

.edit-drawer-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border-gray);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  background: white;
}

.admin-cancel-btn {
  background: white;
  border: 2px solid var(--border-gray);
  color: var(--text-main);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.admin-cancel-btn:hover {
  border-color: var(--dark-gray);
  background-color: var(--bg-light);
}

.admin-save-btn {
  background-color: var(--primary-red);
  border: 2px solid var(--primary-red);
  color: white;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}

.admin-save-btn:hover {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
}

.admin-save-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===================== */
/* Today's Specials Page */
/* ===================== */

/* Hero */
.specials-hero {
  background: var(--dark-gray);
  color: white;
  padding: 70px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.specials-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -10%;
  width: 120%;
  height: 220%;
  background: radial-gradient(ellipse at center, rgba(227, 24, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.specials-hero-inner {
  position: relative;
  z-index: 1;
}

.specials-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-red);
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  margin-bottom: 24px;
}

.specials-hero h1 {
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.specials-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* Countdown Timer */
.specials-hero-timer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.timer-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
}

.timer-blocks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 20px 10px;
  min-width: 72px;
}

.timer-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.timer-unit {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.timer-sep {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-red);
  margin-top: -8px;
}

/* Quick Nav Pills */
.specials-nav-bar {
  background: white;
  border-bottom: 1px solid var(--border-gray);
  position: sticky;
  top: 0;
  z-index: 90;
}

.specials-pills {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.specials-pills::-webkit-scrollbar {
  display: none;
}

.specials-pill {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-muted);
  border: 2px solid var(--border-gray);
  white-space: nowrap;
  transition: all 0.2s;
}

.specials-pill:hover {
  border-color: var(--dark-gray);
  color: var(--dark-gray);
}

.specials-pill--active {
  background: var(--dark-gray);
  border-color: var(--dark-gray);
  color: white;
}

.specials-pill--active:hover {
  color: white;
}

/* Section Headers */
.specials-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.specials-section + .specials-section {
  padding-top: 0;
}

.specials-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border-gray);
}

.specials-section-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.specials-section-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--primary-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.specials-section-icon--dark {
  background: var(--dark-gray);
}

.specials-section-icon--green {
  background: #2e7d32;
}

.specials-section-icon--gold {
  background: #b8860b;
}

.specials-section-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.specials-section-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.specials-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 8px 16px;
  border: 1px solid var(--border-gray);
  white-space: nowrap;
  margin-top: 4px;
}

/* Promo Strip */
.specials-promo-strip {
  background: var(--dark-gray);
  border-top: 4px solid var(--primary-red);
}

.specials-promo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 30px;
}

.specials-promo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.specials-promo-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.specials-promo-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.specials-promo-cta {
  display: inline-block;
  background: white;
  color: var(--dark-gray);
  text-decoration: none;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}

.specials-promo-cta:hover {
  background: var(--primary-red);
  color: white;
}

@media (max-width: 768px) {
  .specials-hero h1 {
    font-size: 36px;
  }
  .specials-hero p {
    font-size: 16px;
  }
  .timer-block {
    min-width: 60px;
    padding: 10px 14px 8px;
  }
  .timer-num {
    font-size: 26px;
  }
  .specials-promo-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  .specials-section-header {
    flex-direction: column;
    gap: 12px;
  }
  .specials-count {
    align-self: flex-start;
  }
}

/* ===================== */
/* Admin Edit Link       */
/* ===================== */

.section-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border: 2px solid var(--primary-red);
  transition: background-color 0.2s, color 0.2s;
}

.admin-edit-link:hover {
  background-color: var(--primary-red);
  color: white;
}

.admin-edit-link svg {
  flex-shrink: 0;
}

/* ========================== */
/* Manage Featured Deals Page */
/* ========================== */

.manage-page {
  background: var(--bg-light);
  min-height: 100vh;
  padding-bottom: 80px;
}

.manage-container {
  max-width: 900px;
  padding-top: 40px;
}

.manage-header {
  margin-bottom: 36px;
}

.manage-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.manage-back:hover {
  color: var(--primary-red);
}

.manage-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

.manage-subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

.manage-deals-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.manage-deal-card {
  background: white;
  border: 1px solid var(--border-gray);
}

.manage-deal-card--new {
  border-style: dashed;
  border-color: #ccc;
}

.manage-deal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-gray);
  background: #fafbfc;
}

.manage-deal-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  background: var(--dark-gray);
  color: white;
}

.manage-deal-badge--feature {
  background: var(--primary-red);
}

.manage-deal-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-gray);
}

.manage-deal-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.manage-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s, opacity 0.2s;
}

.manage-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.manage-btn--save {
  background: var(--primary-red);
  color: white;
}

.manage-btn--save:hover {
  background: var(--dark-red);
}

.manage-btn--delete {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-gray);
}

.manage-btn--delete:hover {
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.manage-btn--cancel {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-gray);
}

.manage-btn--cancel:hover {
  border-color: var(--dark-gray);
  color: var(--dark-gray);
}

.manage-btn--add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--dark-gray);
  border: 2px dashed var(--border-gray);
  padding: 14px 28px;
  font-size: 14px;
  width: 100%;
  justify-content: center;
}

.manage-btn--add:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.manage-deal-body {
  display: flex;
  gap: 28px;
  padding: 24px;
}

.manage-deal-preview {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.manage-deal-thumb {
  width: 200px;
  height: 150px;
  background: #f0f0f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manage-deal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manage-deal-thumb-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #bbb;
}

.manage-deal-thumb-empty span {
  font-size: 12px;
}

.manage-file-upload {
  display: flex;
  gap: 8px;
  align-items: center;
}

.manage-file-upload input[type="file"] {
  display: none;
}

.manage-file-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border: 1px solid var(--border-gray);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.manage-file-label:hover {
  border-color: var(--dark-gray);
  color: var(--dark-gray);
}

.manage-file-clear {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-red);
  cursor: pointer;
  padding: 6px 8px;
}

.manage-file-clear:hover {
  text-decoration: underline;
}

.manage-deal-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.manage-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.manage-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.manage-field-hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #aaa;
}

.manage-field input,
.manage-field textarea,
.manage-field select {
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid var(--border-gray);
  background: white;
  color: var(--text-main);
  font-family: inherit;
  transition: border-color 0.2s;
}

.manage-field input:focus,
.manage-field textarea:focus,
.manage-field select:focus {
  outline: none;
  border-color: var(--primary-red);
}

.manage-field textarea {
  resize: vertical;
}

.manage-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.manage-deal-status {
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  min-height: 0;
  overflow: hidden;
  transition: padding 0.2s;
}

.manage-deal-status:not(:empty) {
  padding: 10px 24px;
}

.manage-deal-status--success {
  color: #2e7d32;
  background: #e8f5e9;
}

.manage-deal-status--error {
  color: var(--primary-red);
  background: #fce4ec;
}

.manage-add-section {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .manage-deal-body {
    flex-direction: column;
  }
  .manage-deal-preview {
    flex: none;
  }
  .manage-deal-thumb {
    width: 100%;
  }
  .manage-field-row {
    grid-template-columns: 1fr;
  }
  .manage-deal-header {
    flex-wrap: wrap;
  }
}

/* ===================== */
/* Mobile Menu           */
/* ===================== */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--dark-gray);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85%;
  height: 100vh;
  background: white;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15);
}

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

.mobile-menu-logo {
  width: 140px;
  height: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.mobile-menu-nav a {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}

.mobile-menu-nav a:hover {
  background-color: var(--bg-light);
  color: var(--primary-red);
}

.mobile-menu-divider {
  height: 1px;
  background-color: var(--border-gray);
  margin: 0 24px;
}

.mobile-menu-secondary {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.mobile-menu-secondary a {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.mobile-menu-secondary a:hover {
  color: var(--primary-red);
}

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-gray);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-store {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.mobile-menu-store strong {
  color: var(--dark-gray);
}

.mobile-menu-store svg {
  flex-shrink: 0;
  color: var(--primary-red);
}

.mobile-menu-store:hover {
  color: var(--primary-red);
}

.mobile-menu-account {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
}

.mobile-menu-account:hover {
  color: var(--primary-red);
}

/* =============================== */
/* Mobile Responsive: Header       */
/* =============================== */

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .promo-banner {
    font-size: 12px;
    padding: 8px 12px;
  }

  .promo-banner span {
    margin: 0 8px;
  }

  .main-header {
    padding: 10px 16px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .mobile-menu-btn {
    flex: 1;
    justify-content: flex-start;
  }

  .logo {
    flex: 0 0 auto;
    text-align: center;
  }

  .logo img {
    width: 130px;
  }

  .user-controls {
    flex: 1;
    justify-content: flex-end;
    gap: 16px;
  }

  .search-container {
    order: 10;
    flex-basis: 100%;
    max-width: 100%;
  }

  .search-container input {
    padding: 12px 16px;
    padding-right: 50px;
    font-size: 14px;
  }

  .main-header > .user-controls > .store-selector {
    display: none;
  }

  .account-actions .btn-outline,
  .account-actions .account-greeting span {
    display: none;
  }

  .account-actions .account-greeting {
    gap: 0;
  }

  .bottom-nav {
    display: none;
  }
}

/* =============================== */
/* Mobile Responsive: Home Page    */
/* =============================== */

@media (max-width: 768px) {
  .hero-container {
    margin-bottom: 40px;
  }

  .hero-inner {
    padding-top: 35px;
    padding-bottom: 35px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .hero-tagline {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .btn-dark {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-signup-card {
    padding: 28px;
    width: 100%;
    max-width: 100%;
  }

  .hero-signup-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .deals-section {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header-actions {
    gap: 12px;
  }

  .categories-section {
    margin-bottom: 40px;
  }

  .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .product-row-section {
    margin-bottom: 40px;
  }

  .deal-card--feature .deal-body {
    padding: 24px;
  }

  .deal-card--feature .deal-title {
    font-size: 26px;
  }

  .deal-card--feature .deal-desc {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .deal-card--feature .deal-save {
    font-size: 60px;
  }

  .deal-card--compact .deal-info-block {
    padding: 20px;
  }

  .deal-card--compact .deal-title {
    font-size: 20px;
  }

  .deal-card--compact .deal-desc {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

/* =============================== */
/* Mobile Responsive: Footer       */
/* =============================== */

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

  .footer-col:first-child {
    flex: none;
    min-width: auto;
  }

  .footer-col {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .email-signup-section {
    padding: 50px 0;
  }

  .email-signup-text h2 {
    font-size: 24px;
  }

  .email-signup-text p {
    font-size: 14px;
  }

  .footer-inner {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
  }
}

/* =============================== */
/* Mobile Responsive: Category Page */
/* =============================== */

.mobile-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border-gray);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-gray);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: border-color 0.2s;
  width: 100%;
}

.mobile-filter-toggle:hover {
  border-color: var(--dark-gray);
}

.mobile-filter-toggle svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .category-header-inner {
    padding: 20px 16px 24px 16px;
  }

  .category-title {
    font-size: 26px;
  }

  .layout-container {
    flex-direction: column;
    padding: 20px 16px;
    gap: 0;
  }

  .mobile-filter-toggle {
    display: flex;
    margin-bottom: 16px;
  }

  .sidebar {
    flex: none;
    display: none;
    border: 1px solid var(--border-gray);
    border-top: none;
    background: white;
    padding: 20px;
    margin-top: -17px;
    margin-bottom: 16px;
  }

  .sidebar.open {
    display: block;
  }

  .sort-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
  }

  .sort-controls {
    width: 100%;
  }

  .sort-controls label {
    flex-shrink: 0;
  }

  .sort-select {
    flex: 1;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-image {
    height: 180px;
    padding: 10px;
  }

  .product-details {
    padding: 0 10px 10px 10px;
  }

  .product-card .product-title {
    font-size: 12px;
    height: 34px;
  }

  .product-size {
    font-size: 11px;
  }

  .product-price-row {
    margin-bottom: 10px;
  }

  .price-current,
  .price-standard {
    font-size: 14px;
  }

  .price-old {
    font-size: 12px;
  }

  .btn-add-cart {
    padding: 8px;
    font-size: 12px;
    width: calc(100% - 20px);
    margin: 0 10px 10px 10px;
  }

  .points-badge {
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .pagination {
    margin-top: 30px;
    gap: 4px;
  }

  .page-btn {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .page-next {
    padding: 0 14px;
    font-size: 12px;
  }
}

/* =============================== */
/* Cart Page                       */
/* =============================== */

.cart-page {
  padding: 30px 5%;
  min-height: 60vh;
}

.cart-page h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty svg {
  margin-bottom: 16px;
}

.cart-empty h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-gray);
}

.cart-item:first-child {
  border-top: 1px solid var(--border-gray);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-name {
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  font-size: 15px;
}

.cart-item-name:hover {
  color: var(--primary-red);
}

.cart-item-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.cart-item-meta span + span::before {
  content: " · ";
}

.cart-item-customizations {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.customization-tag {
  display: inline-block;
  background: #f0f0f0;
  padding: 2px 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.cart-item-price {
  font-size: 14px;
  white-space: nowrap;
}

.cart-item-price .custom-cost {
  font-size: 12px;
  color: var(--text-muted);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-gray);
}

.cart-item-quantity .qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-quantity .qty-btn:hover {
  background: #e0e0e0;
}

.cart-item-quantity .qty-display {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.cart-item-total {
  font-weight: 700;
  font-size: 15px;
  min-width: 70px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
}

.cart-item-remove:hover {
  color: var(--primary-red);
}

.cart-summary {
  background: #f9f9f9;
  padding: 24px;
  border: 1px solid var(--border-gray);
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.summary-total {
  border-top: 2px solid var(--text-main);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 18px;
}

.cart-continue-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

/* =============================== */
/* Checkout Page                   */
/* =============================== */

.checkout-page {
  padding: 30px 5%;
  min-height: 60vh;
}

.checkout-page h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

.checkout-section {
  margin-bottom: 28px;
}

.checkout-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-gray);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-gray);
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

.field-error {
  color: var(--primary-red);
  font-size: 13px;
  margin-bottom: 8px;
}

.fulfillment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fulfillment-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--border-gray);
  cursor: pointer;
}

.fulfillment-radio:has(input:checked) {
  border-color: var(--primary-red);
  background: #fff5f5;
}

.fulfillment-radio input {
  margin-top: 3px;
}

.radio-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.radio-label strong {
  font-size: 14px;
}

.radio-label span {
  font-size: 13px;
  color: var(--text-muted);
}

.kitchen-notice {
  background: #fffde7;
  padding: 10px 14px;
  border-left: 3px solid #ffc107;
  font-size: 13px;
}

.payment-stub-notice {
  background: #f0f7ff;
  padding: 14px;
  border-left: 3px solid #2196f3;
  font-size: 13px;
}

.payment-stub-notice strong {
  display: block;
  margin-bottom: 4px;
}

.payment-stub-notice p {
  margin: 0;
  color: var(--text-muted);
}

/* Delivery Address Section */
.delivery-address-section {
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-gray);
}

.delivery-address-section h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.delivery-address-row {
  display: flex;
  gap: 12px;
}

.delivery-quote-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--dark-gray);
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

.delivery-quote-btn:hover {
  background: #333;
}

.delivery-quote-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.delivery-quote-result {
  margin-top: 12px;
  padding: 12px 14px;
  background: #e8f5e9;
  border-left: 3px solid #4caf50;
  font-size: 13px;
}

.delivery-quote-result strong {
  display: block;
  margin-bottom: 4px;
  color: #2e7d32;
}

.delivery-quote-error {
  margin-top: 12px;
  padding: 12px 14px;
  background: #fce4ec;
  border-left: 3px solid var(--primary-red);
  font-size: 13px;
  color: var(--primary-red);
}

.delivery-fee-line {
  color: var(--text-muted);
}

/* Age Verification Notice */
.age-verification-notice {
  margin-top: 12px;
  padding: 12px 14px;
  background: #fff3e0;
  border-left: 3px solid #ff9800;
  font-size: 13px;
}

.age-verification-notice strong {
  display: block;
  margin-bottom: 4px;
  color: #e65100;
}

.age-verification-notice p {
  margin: 0;
  color: var(--text-muted);
}

/* Delivery Info Section */
.delivery-info {
  padding-bottom: 16px;
}

/* Tracking Page */
.tracking-page {
  padding: 30px 5%;
  max-width: 700px;
  margin: 0 auto;
  min-height: 60vh;
}

.tracking-page h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tracking-details {
  margin-top: 24px;
}

.tracking-status-section {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gray);
}

.tracking-link-section {
  margin-bottom: 24px;
  text-align: center;
}

.tracking-live-btn {
  padding: 14px 28px;
  font-size: 16px;
}

.tracking-link-note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.checkout-summary {
  position: sticky;
  top: 100px;
}

.checkout-summary .cart-summary {
  position: static;
}

.summary-items {
  border-bottom: 1px solid var(--border-gray);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

.summary-item-name {
  flex: 1;
  margin-right: 12px;
}

.summary-item-customizations {
  padding: 0 0 4px 0;
}

/* =============================== */
/* Confirmation Page               */
/* =============================== */

.confirmation-page {
  padding: 30px 5%;
  max-width: 700px;
  margin: 0 auto;
  min-height: 60vh;
}

.confirmation-header {
  text-align: center;
  padding: 30px 0;
}

.confirmation-checkmark {
  margin-bottom: 12px;
}

.confirmation-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.order-number-display {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.confirmation-note {
  color: var(--text-muted);
  font-size: 14px;
}

.confirmation-details {
  margin-top: 20px;
}

.confirmation-section {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gray);
}

.confirmation-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

.confirmation-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
}

.confirmation-item-info {
  flex: 1;
}

.confirmation-item-name {
  font-size: 14px;
}

.confirmation-item-customs {
  margin-top: 4px;
}

.confirmation-item-price {
  font-weight: 600;
  font-size: 14px;
}

/* =============================== */
/* Kitchen Customization Options   */
/* =============================== */

.customization-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

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

.customization-option input[type="radio"] {
  accent-color: var(--primary-red);
}

.customization-label {
  font-size: 14px;
}

/* =============================== */
/* Cart Responsive                 */
/* =============================== */

@media (max-width: 900px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .checkout-summary {
    position: static;
  }

  .cart-item {
    grid-template-columns: 60px 1fr auto;
    gap: 10px;
  }

  .cart-item-price,
  .cart-item-total {
    display: none;
  }

  .cart-item-remove {
    position: absolute;
    top: 0;
    right: 0;
  }

  .cart-item {
    position: relative;
  }
}

/* =============================== */
/* Messages                        */
/* =============================== */

.messages-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.message {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

.message-success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}

.message-error {
  background: #fce4ec;
  color: var(--primary-red);
  border-left: 4px solid var(--primary-red);
}

.message-info {
  background: #e3f2fd;
  color: #1565c0;
  border-left: 4px solid #1565c0;
}

.message-warning {
  background: #fff8e1;
  color: #e65100;
  border-left: 4px solid #e65100;
}

/* =============================== */
/* Account Dropdown (Header)       */
/* =============================== */

.account-dropdown-wrapper {
  position: relative;
}

.account-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--border-gray);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s, visibility 0.15s, transform 0.15s;
}

.account-dropdown-wrapper:hover .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown-item {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.15s, color 0.15s;
}

.account-dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-red);
}

.account-dropdown-logout {
  color: var(--text-muted);
}

.account-dropdown-divider {
  height: 1px;
  background: var(--border-gray);
  margin: 4px 0;
}

/* =============================== */
/* Login Page Error                */
/* =============================== */

.login-error {
  background: #fce4ec;
  color: var(--primary-red);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
  border-left: 4px solid var(--primary-red);
}

.form-field .field-error {
  display: block;
  margin-top: 4px;
}

/* =============================== */
/* Account Pages                   */
/* =============================== */

.account-page {
  min-height: 60vh;
  padding: 30px 0;
}

.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.account-sidebar {
  border: 1px solid var(--border-gray);
  background: white;
}

.account-sidebar-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--border-gray);
}

.account-avatar {
  width: 48px;
  height: 48px;
  background: var(--dark-gray);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

.account-user-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.account-user-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-user-email {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-nav {
  padding: 8px 0;
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  background: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  text-align: left;
}

.account-nav-link:hover {
  background: var(--bg-light);
  color: var(--text-main);
}

.account-nav-link.active {
  color: var(--primary-red);
  border-left-color: var(--primary-red);
  background: #fff5f5;
}

.account-nav-link svg {
  flex-shrink: 0;
  color: inherit;
}

.account-nav-logout {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-gray);
  margin-top: 4px;
  padding-top: 4px;
}

/* Main Content */
.account-main {
  min-width: 0;
}

.account-page-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 24px;
}

.account-back-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.account-back-link:hover {
  color: var(--primary-red);
}

/* Rewards Banner */
.rewards-banner {
  background: var(--dark-gray);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.rewards-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rewards-banner-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rewards-banner-points {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-red);
}

.rewards-banner-link {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.rewards-banner-link:hover {
  color: var(--primary-red);
}

/* Stats Cards */
.account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  border: 1px solid var(--border-gray);
  padding: 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Account Sections */
.account-section {
  margin-bottom: 32px;
}

.account-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-gray);
}

.account-section-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-gray);
  text-transform: uppercase;
}

.account-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gray);
}

/* Empty State */
.account-empty-state {
  text-align: center;
  padding: 50px 20px;
  border: 1px solid var(--border-gray);
}

.account-empty-state p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-dark {
  display: inline-block;
  background: var(--dark-gray);
  color: white;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-dark:hover {
  background: #000;
}

.btn-outline-dark {
  display: inline-block;
  background: white;
  color: var(--dark-gray);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--dark-gray);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.btn-outline-dark:hover {
  background: var(--dark-gray);
  color: white;
}

/* =============================== */
/* Order Cards                     */
/* =============================== */

.order-card {
  border: 1px solid var(--border-gray);
  margin-bottom: 12px;
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fafbfc;
  border-bottom: 1px solid var(--border-gray);
}

.order-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.order-card-number {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-gray);
}

.order-card-date {
  font-size: 13px;
  color: var(--text-muted);
}

.order-status-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
}

.order-status--pending {
  background: #fff3e0;
  color: #e65100;
}

.order-status--confirmed {
  background: #e3f2fd;
  color: #1565c0;
}

.order-status--preparing {
  background: #f3e5f5;
  color: #7b1fa2;
}

.order-status--ready {
  background: #e8f5e9;
  color: #2e7d32;
}

.order-status--completed {
  background: var(--dark-gray);
  color: white;
}

.order-status--cancelled {
  background: #fce4ec;
  color: var(--primary-red);
}

.order-status--out_for_delivery {
  background: #e0f2f1;
  color: #00695c;
}

.order-card-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.order-card-body {
  padding: 16px 20px;
}

.order-card-items {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.order-card-item {
  display: inline;
}

.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-card-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
}

.order-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-red);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-card-link:hover {
  text-decoration: underline;
}

/* =============================== */
/* Order Filter Tabs               */
/* =============================== */

.order-filter-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.order-filter-tabs::-webkit-scrollbar {
  display: none;
}

.order-filter-tab {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--border-gray);
  white-space: nowrap;
  transition: all 0.2s;
}

.order-filter-tab:hover {
  border-color: var(--dark-gray);
  color: var(--dark-gray);
}

.order-filter-tab.active {
  background: var(--dark-gray);
  border-color: var(--dark-gray);
  color: white;
}

/* =============================== */
/* Order Detail                    */
/* =============================== */

.order-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.order-detail-date {
  font-size: 14px;
  color: var(--text-muted);
}

/* =============================== */
/* Profile Page                    */
/* =============================== */

.profile-card {
  border: 1px solid var(--border-gray);
  margin-bottom: 24px;
}

.profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-gray);
}

.profile-row:last-child {
  border-bottom: none;
}

.profile-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.profile-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.profile-actions {
  display: flex;
  gap: 12px;
}

/* =============================== */
/* Account Forms                   */
/* =============================== */

.account-form {
  max-width: 500px;
}

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

.account-form .form-group input[type="text"],
.account-form .form-group input[type="email"],
.account-form .form-group input[type="tel"],
.account-form .form-group input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid var(--border-gray);
  outline: none;
  color: var(--text-main);
  transition: border-color 0.2s;
}

.account-form .form-group input:focus {
  border-color: var(--dark-gray);
}

.account-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

/* =============================== */
/* Rewards Page                    */
/* =============================== */

.rewards-total-card {
  background: var(--dark-gray);
  padding: 40px;
  text-align: center;
  margin-bottom: 32px;
}

.rewards-total-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.rewards-total-points {
  display: block;
  font-size: 64px;
  font-weight: 800;
  color: var(--primary-red);
}

.rewards-history-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-gray);
}

.rewards-history-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rewards-history-date {
  font-size: 13px;
  color: var(--text-muted);
}

.rewards-history-order {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-gray);
  text-decoration: none;
}

.rewards-history-order:hover {
  color: var(--primary-red);
}

.rewards-history-items {
  font-size: 13px;
  color: var(--text-muted);
}

.rewards-history-points {
  font-size: 16px;
  font-weight: 800;
  color: #2e7d32;
  white-space: nowrap;
}

/* =============================== */
/* Account Pages Responsive        */
/* =============================== */

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

  .account-sidebar {
    order: -1;
  }

  .account-sidebar-user {
    padding: 16px;
  }

  .account-nav {
    display: flex;
    overflow-x: auto;
    padding: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

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

  .account-nav-link {
    border-left: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    padding: 12px 16px;
    flex-shrink: 0;
  }

  .account-nav-link.active {
    border-left-color: transparent;
    border-bottom-color: var(--primary-red);
  }

  .account-nav-logout {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    border-left: 1px solid var(--border-gray);
  }

  .rewards-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }

  .rewards-banner-content {
    flex-direction: column;
    gap: 4px;
  }

  .account-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-detail-header {
    flex-direction: column;
    gap: 12px;
  }

  .profile-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .profile-actions {
    flex-direction: column;
  }

  .profile-actions .btn-dark,
  .profile-actions .btn-outline-dark {
    text-align: center;
  }

  .rewards-total-card {
    padding: 30px 20px;
  }

  .rewards-total-points {
    font-size: 48px;
  }

  .rewards-history-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ===================== */
/* Age Gate              */
/* ===================== */

.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

body.age-gate-active {
  overflow: hidden;
}

.age-gate-card {
  background: var(--dark-gray);
  color: #ffffff;
  width: 100%;
  max-width: 440px;
  padding: 48px 40px 36px;
  text-align: center;
}

.age-gate-logo {
  height: 48px;
  margin-bottom: 32px;
}

.age-gate-headline {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.age-gate-subtext {
  font-size: 14px;
  color: #adb5bd;
  margin-bottom: 28px;
  line-height: 1.5;
}

.age-gate-selects {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.age-gate-selects select {
  flex: 1;
  padding: 12px 10px;
  font-size: 14px;
  border: 2px solid #333a42;
  background: #13171b;
  color: #ffffff;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23adb5bd' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.age-gate-selects select:focus {
  outline: none;
  border-color: var(--primary-red);
}

.age-gate-error {
  color: var(--primary-red);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  min-height: 20px;
}

.age-gate-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary-red);
  color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s ease;
}

.age-gate-submit:hover {
  background: var(--dark-red);
}

.age-gate-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.age-gate-under21 {
  display: inline-block;
  margin-top: 18px;
  color: #adb5bd;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
}

.age-gate-under21:hover {
  color: #ffffff;
}

.age-gate-disclaimer {
  margin-top: 24px;
  font-size: 11px;
  color: #666b73;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .age-gate-card {
    padding: 36px 24px 28px;
  }

  .age-gate-headline {
    font-size: 19px;
  }

  .age-gate-selects {
    flex-direction: column;
  }
}

/* Employment Page */
.employment-page {
  padding: 30px 5%;
  max-width: 760px;
  margin: 0 auto;
  min-height: 60vh;
}

.employment-header {
  margin-bottom: 32px;
}

.employment-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.employment-header p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.employment-form .form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.employment-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-gray);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.employment-form select:focus {
  outline: none;
  border-color: var(--primary-red);
}

.employment-form input[type="file"] {
  font-size: 14px;
  padding: 8px 0;
}

.employment-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.employment-success {
  text-align: center;
  padding: 60px 20px;
}

.employment-success h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.employment-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.employment-success .btn-submit {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .employment-form .form-row-half {
    grid-template-columns: 1fr;
  }
}

/* =============================== */
/* Staff Dashboard — Touch-first   */
/* =============================== */

.staff-body {
  background: var(--bg-light);
  -webkit-tap-highlight-color: rgba(0,0,0,0.05);
  -webkit-text-size-adjust: 100%;
}

/* Header */
.staff-header {
  background: var(--dark-gray);
  border-bottom: 3px solid var(--primary-red);
  position: sticky;
  top: 0;
  z-index: 100;
}

.staff-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.staff-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.staff-logo img {
  height: 30px;
  width: auto;
}

.staff-badge {
  background: var(--primary-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 8px;
  border-radius: 3px;
}

.staff-nav {
  display: flex;
  gap: 4px;
  margin-left: 24px;
}

.staff-nav-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.staff-nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.staff-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.staff-user-name {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.staff-logout-btn {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s;
}

.staff-logout-btn:active {
  background: rgba(255,255,255,0.1);
}

/* Main */
.staff-main {
  flex: 1;
  padding: 20px 0 40px;
}

.staff-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Stat Cards (tappable) ─── */

.staff-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.staff-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  padding: 18px 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.1s;
  -webkit-user-select: none;
  user-select: none;
}

.staff-stat-card:active {
  transform: scale(0.97);
}

.staff-stat--active-ring {
  border-color: var(--dark-gray);
  box-shadow: 0 0 0 1px var(--dark-gray);
}

.staff-stat--pending.staff-stat--active-ring { border-color: #e65100; box-shadow: 0 0 0 1px #e65100; }
.staff-stat--preparing.staff-stat--active-ring { border-color: #7b1fa2; box-shadow: 0 0 0 1px #7b1fa2; }
.staff-stat--ready.staff-stat--active-ring { border-color: #2e7d32; box-shadow: 0 0 0 1px #2e7d32; }

.staff-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-gray);
  line-height: 1;
  margin-bottom: 4px;
}

.staff-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.staff-stat--pending .staff-stat-number { color: #e65100; }
.staff-stat--preparing .staff-stat-number { color: #7b1fa2; }
.staff-stat--ready .staff-stat-number { color: #2e7d32; }

/* ─── Segmented controls ─── */

.staff-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.staff-seg-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.staff-seg-scroll::-webkit-scrollbar { display: none; }

.staff-seg {
  display: inline-flex;
  background: #e9ecef;
  border-radius: 10px;
  padding: 3px;
  min-width: 100%;
}

.staff-seg--compact {
  min-width: 0;
  align-self: flex-start;
}

.staff-seg-item {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.2s;
  -webkit-user-select: none;
  user-select: none;
}

.staff-seg-item:active {
  opacity: 0.7;
}

.staff-seg-item--on {
  background: #fff;
  color: var(--dark-gray);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
}

/* ─── Order Cards (queue) ─── */

.staff-order-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staff-order-card {
  display: block;
  background: #fff;
  border: 1.5px solid var(--border-gray);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.1s, box-shadow 0.15s;
  -webkit-user-select: none;
  user-select: none;
}

.staff-order-card:active {
  transform: scale(0.985);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.staff-order-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.staff-order-card-id {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark-gray);
  letter-spacing: 0.5px;
}

.staff-order-card-time {
  font-size: 13px;
  color: var(--text-muted);
}

.staff-order-card-middle {
  margin-bottom: 12px;
}

.staff-order-card-customer {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}

.staff-order-card-summary {
  font-size: 14px;
  color: var(--text-muted);
}

.staff-order-card-bottom {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ─── Shared badge styles ─── */

.staff-fulfillment-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.staff-fulfillment--pickup {
  background: #e8f5e9;
  color: #2e7d32;
}

.staff-fulfillment--delivery {
  background: #e3f2fd;
  color: #1565c0;
}

.staff-paid-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 6px;
}

.staff-paid--yes {
  background: #e8f5e9;
  color: #2e7d32;
}

.staff-paid--no {
  background: #fff3e0;
  color: #e65100;
}

/* Empty state */
.staff-empty {
  background: #fff;
  border: 1.5px solid var(--border-gray);
  border-radius: 12px;
  padding: 80px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
}

.staff-empty-icon {
  margin-bottom: 16px;
  opacity: 0.3;
}

/* ─── Toast ─── */

.staff-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 1000;
  text-align: center;
  max-width: 90vw;
}

.staff-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.staff-toast--success {
  background: var(--dark-gray);
  color: #fff;
}

.staff-toast--error {
  background: var(--primary-red);
  color: #fff;
}

.staff-toast--info {
  background: var(--dark-gray);
  color: #fff;
}

/* =============================== */
/* Staff Order Detail               */
/* =============================== */

.staff-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  margin-bottom: 8px;
  -webkit-user-select: none;
  user-select: none;
}

.staff-back-link:active {
  color: var(--primary-red);
}

/* Hero header */
.staff-detail-hero {
  background: #fff;
  border: 1.5px solid var(--border-gray);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.staff-detail-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.staff-detail-hero h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-gray);
  letter-spacing: 0.5px;
}

.staff-detail-hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.staff-detail-hero-meta {
  font-size: 15px;
  color: var(--text-muted);
}

.staff-detail-hero-sep {
  margin: 0 6px;
  opacity: 0.4;
}

/* Action buttons — big touch targets */
.staff-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.staff-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s, opacity 0.15s;
  -webkit-user-select: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 56px;
}

.staff-action-btn:active {
  transform: scale(0.97);
}

.staff-action-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.staff-action-btn--loading {
  opacity: 0.6;
}

.staff-action-btn--advance {
  background: var(--dark-gray);
  color: #fff;
}

.staff-action-btn--payment {
  background: #e3f2fd;
  color: #1565c0;
}

.staff-action-btn--cancel {
  background: #fce4ec;
  color: var(--primary-red);
}

/* Detail sections */
.staff-detail-sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Cards */
.staff-card {
  background: #fff;
  border: 1.5px solid var(--border-gray);
  border-radius: 12px;
  overflow: hidden;
}

.staff-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-gray);
  background: var(--bg-light);
}

.staff-card-header h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.staff-card-count {
  background: var(--dark-gray);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
}

.staff-card-body {
  padding: 16px 20px;
}

.staff-card-body--flush {
  padding: 0;
}

/* Item rows in detail */
.staff-item-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.staff-item-row:last-child {
  border-bottom: none;
}

.staff-item-qty {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-gray);
  background: var(--bg-light);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-item-info {
  flex: 1;
  min-width: 0;
}

.staff-item-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.staff-item-size {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 13px;
}

.staff-item-customizations {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.staff-item-customizations span {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 3px 10px;
  border-radius: 100px;
}

.staff-item-price {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-gray);
}

/* Definition list style for info cards */
.staff-dl {
  display: flex;
  flex-direction: column;
}

.staff-dl-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid #f5f5f5;
  gap: 16px;
}

.staff-dl-row:last-child {
  border-bottom: none;
}

.staff-dl-row dt {
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.staff-dl-row dd {
  text-align: right;
  word-break: break-word;
}

.staff-dl-row dd a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
}

.staff-dl-row dd a:active {
  text-decoration: underline;
}

.staff-dl-note {
  text-align: right;
  color: var(--text-main);
  font-style: italic;
}

.staff-dl-row--total {
  font-weight: 700;
  font-size: 17px;
  color: var(--dark-gray);
  border-top: 2px solid var(--border-gray);
  margin-top: 4px;
  padding-top: 14px;
}

.staff-mono {
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
  font-size: 13px;
}

/* Detail grid for info cards */
.staff-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =============================== */
/* Staff Responsive                 */
/* =============================== */

@media (max-width: 1024px) {
  .staff-detail-grid {
    grid-template-columns: 1fr;
  }
}

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

  .staff-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .staff-stats {
    gap: 8px;
  }

  .staff-stat-card {
    padding: 14px 8px;
  }

  .staff-stat-number {
    font-size: 28px;
  }

  .staff-actions {
    grid-template-columns: 1fr;
  }

  .staff-detail-hero-top {
    flex-direction: column;
  }
}

/* ===================== Wholesale Page ===================== */

.wholesale-hero {
  background: var(--dark-gray);
  color: #fff;
  padding: 80px 5%;
}

.wholesale-hero-content {
  max-width: 620px;
}

.wholesale-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-red);
  margin-bottom: 16px;
}

.wholesale-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.wholesale-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 28px;
}

.wholesale-features {
  padding: 64px 5%;
}

.wholesale-section-title {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

.wholesale-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wholesale-feature-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
}

.wholesale-feature-icon {
  margin-bottom: 16px;
}

.wholesale-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wholesale-feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.wholesale-how-it-works {
  padding: 64px 5%;
  background: var(--bg-light);
}

.wholesale-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.wholesale-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.wholesale-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wholesale-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.wholesale-images {
  padding: 48px 5%;
}

.wholesale-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.wholesale-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-light);
  border: 2px dashed var(--border-gray);
  border-radius: 6px;
  padding: 60px 20px;
  color: #999;
  font-size: 14px;
  font-weight: 600;
}

.wholesale-image-sub {
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
}

.wholesale-contact {
  padding: 64px 5%;
  max-width: 720px;
  margin: 0 auto;
}

.wholesale-contact-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.wholesale-form .checkout-section {
  margin-bottom: 24px;
}

.wholesale-form .form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .wholesale-hero {
    padding: 48px 5%;
  }

  .wholesale-hero h1 {
    font-size: 28px;
  }

  .wholesale-features-grid,
  .wholesale-steps {
    grid-template-columns: 1fr;
  }

  .wholesale-images-grid {
    grid-template-columns: 1fr;
  }

  .wholesale-form .form-row-half {
    grid-template-columns: 1fr;
  }
}

/* ===================== SMS Signup Page ===================== */

.sms-page {
  background: #fff;
}

.sms-hero {
  background: var(--dark-gray);
  color: #fff;
  padding: 72px 5%;
}

.sms-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sms-hero-content {
  max-width: 560px;
}

.sms-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-red);
  margin-bottom: 16px;
}

.sms-hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.sms-hero p {
  font-size: 16px;
  line-height: 1.65;
  color: #d0d0d0;
  margin-bottom: 24px;
}

.sms-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sms-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #f1f1f1;
}

.sms-phone-preview {
  display: flex;
  justify-content: center;
}

.sms-phone {
  width: 280px;
  background: #111;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  position: relative;
}

.sms-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.sms-phone-screen {
  background: #f2f3f5;
  border-radius: 26px;
  padding: 36px 14px 22px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sms-phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 12px;
  border-bottom: 1px solid #e1e3e6;
}

.sms-phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.sms-phone-contact {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sms-phone-contact strong {
  font-size: 13px;
  color: #1a1f24;
}

.sms-phone-contact span {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

.sms-phone-bubble {
  background: #fff;
  border-radius: 16px 16px 16px 4px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #222;
  max-width: 88%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.sms-phone-bubble--secondary {
  background: transparent;
  box-shadow: none;
  color: #888;
  font-size: 11px;
  padding: 4px 14px;
}

.sms-phone-link {
  color: var(--primary-red);
  font-weight: 600;
  text-decoration: underline;
}

.sms-features {
  padding: 64px 5%;
}

.sms-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sms-feature-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  background: #fff;
}

.sms-feature-icon {
  margin-bottom: 14px;
}

.sms-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sms-feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.sms-signup {
  padding: 16px 5% 64px;
  max-width: 720px;
  margin: 0 auto;
}

.sms-signup-card {
  background: var(--bg-light);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  padding: 40px 36px;
}

.sms-signup-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.sms-signup-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.sms-signup-form .form-group {
  margin-bottom: 16px;
}

.sms-optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 13px;
}

.sms-store-picker {
  border: none;
  padding: 8px 0 4px;
  margin: 12px 0 20px;
}

.sms-store-picker legend {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  padding: 0;
}

.sms-store-picker-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.sms-store-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sms-store-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}

.sms-store-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sms-store-option-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.sms-store-option-body strong {
  font-size: 14px;
  color: #1a1f24;
}

.sms-store-option-body span {
  font-size: 12px;
  color: var(--text-muted);
}

.sms-store-check {
  display: none;
  color: var(--primary-red);
  font-weight: 800;
  font-size: 16px;
}

.sms-store-option:has(input[type="checkbox"]:checked) {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 1px var(--primary-red);
  background: #fff;
}

.sms-store-option:has(input[type="checkbox"]:checked) .sms-store-check {
  display: inline;
}

.sms-store-select-all {
  display: inline-block;
  margin-top: 14px;
  padding: 0;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-red);
  cursor: pointer;
  text-decoration: underline;
}

.sms-store-select-all:hover {
  opacity: 0.8;
}

.sms-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 8px 0 20px;
}

.sms-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.sms-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

.sms-fineprint {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.55;
}

.sms-fineprint a {
  color: var(--text-muted);
  text-decoration: underline;
}

.sms-signup-success {
  text-align: center;
  padding: 24px 0 8px;
}

.sms-signup-success-icon {
  margin-bottom: 12px;
}

.sms-signup-success h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.sms-signup-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto;
}

.sms-faq {
  padding: 16px 5% 80px;
}

.sms-section-title {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
}

.sms-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  max-width: 920px;
  margin: 0 auto;
}

.sms-faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sms-faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 880px) {
  .sms-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sms-hero h1 {
    font-size: 32px;
  }

  .sms-features-grid {
    grid-template-columns: 1fr;
  }

  .sms-store-options {
    grid-template-columns: 1fr;
  }

  .sms-faq-grid {
    grid-template-columns: 1fr;
  }

  .sms-signup-card {
    padding: 32px 22px;
  }
}

/* ===================== */
/* Catalog Mode          */
/* ===================== */

a.btn-add-cart,
a.btn-add {
  display: block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

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

.catalog-mode-notice {
  border: 1px solid var(--border-gray);
  background-color: var(--bg-light);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
}

.catalog-mode-notice .catalog-mode-icon {
  font-size: 24px;
  line-height: 1;
}

.catalog-mode-notice .catalog-mode-text strong {
  display: block;
  color: var(--dark-gray);
  margin-bottom: 4px;
  font-size: 15px;
}

.catalog-mode-notice .catalog-mode-text span {
  font-size: 14px;
  color: var(--medium-gray);
}
