/* ========================================
   SAI SPICE & SUPERETTE — MAIN STYLESHEET
   ======================================== */

:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --red-light: #e74c3c;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --green: #27ae60;
  --orange: #e67e22;
  --white: #ffffff;
  --off-white: #faf9f7;
  --light-gray: #f4f3f0;
  --mid-gray: #e8e6e1;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --footer-bg: #1c1008;
  --header-h: 72px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.35); }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }
.mt-1 { margin-top: 12px; }

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: #fff; font-size: 0.875rem; font-weight: 500; padding: 8px 0;
  position: relative; z-index: 100;
}
.announcement-bar .container { display: flex; align-items: center; justify-content: center; gap: 16px; }
.announcement-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1rem; cursor: pointer; padding: 2px 6px; transition: color var(--transition); }
.announcement-close:hover { color: #fff; }
.announcement-bar.hidden { display: none; }

/* ---- HEADER ---- */
.site-header { position: sticky; top: 0; z-index: 90; background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.header-top { background: var(--red-dark); padding: 7px 0; font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.header-top-inner { display: flex; align-items: center; justify-content: space-between; }
.header-contact-links { display: flex; gap: 20px; }
.header-contact-links a { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.85); transition: color var(--transition); }
.header-contact-links a:hover { color: #fff; }
.header-tagline { color: rgba(255,255,255,0.65); font-size: 0.78rem; }
.header-main { padding: 12px 0; background: #fff; }
.header-main-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--red); }
.logo-sub { font-size: 0.7rem; font-weight: 500; color: var(--text-light); letter-spacing: 0.05em; text-transform: uppercase; }

/* Nav */
.site-nav .nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: 6px; font-weight: 500; font-size: 0.9rem; color: var(--text-dark); display: flex; align-items: center; gap: 4px; transition: all var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--red); background: rgba(192,57,43,0.06); }
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 200px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition); z-index: 200;
  border: 1px solid var(--mid-gray);
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 9px 14px; border-radius: 6px; font-size: 0.875rem; color: var(--text-mid); transition: all var(--transition); }
.dropdown-menu li a:hover { background: rgba(192,57,43,0.07); color: var(--red); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-search { background: none; border: none; cursor: pointer; color: var(--text-mid); padding: 8px; border-radius: 6px; transition: all var(--transition); display: flex; }
.btn-search:hover { color: var(--red); background: rgba(192,57,43,0.07); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }

/* Search Bar */
.search-bar-container { background: var(--off-white); border-top: 1px solid var(--mid-gray); padding: 12px 0; display: none; }
.search-bar-container.open { display: block; }
.search-form { display: flex; gap: 0; border-radius: 8px; overflow: hidden; border: 2px solid var(--red); background: #fff; }
.search-input { flex: 1; padding: 12px 16px; font-size: 0.95rem; border: none; outline: none; background: transparent; }
.search-submit { background: var(--red); color: #fff; border: none; padding: 12px 24px; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.search-submit:hover { background: var(--red-dark); }

/* Mobile Menu */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 300; opacity: 0; visibility: hidden; transition: all var(--transition); }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: #fff;
  z-index: 310; padding: 24px; box-shadow: var(--shadow-lg); transition: right var(--transition);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-mid); float: right; margin-bottom: 24px; }
.mobile-nav-list { clear: both; margin-top: 16px; }
.mobile-nav-list li a { display: block; padding: 14px 0; border-bottom: 1px solid var(--mid-gray); font-size: 1rem; font-weight: 500; color: var(--text-dark); transition: color var(--transition); }
.mobile-nav-list li a:hover { color: var(--red); }
.mobile-store-info { margin-top: 24px; font-size: 0.875rem; color: var(--text-mid); line-height: 2; }

/* ---- HERO ---- */
.hero { position: relative; overflow: hidden; height: 600px; background: #111; }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.hero-slide.active { opacity: 1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%); }
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-content .container { max-width: 600px; }
.hero-badge { display: inline-block; background: var(--gold); color: #1a1a1a; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.hero-badge-red { background: var(--red); color: #fff; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.hero-title-accent { color: var(--gold-light); }
.hero-desc { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 28px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-nav { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-nav-btn { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all var(--transition); }
.hero-nav-btn.active { background: #fff; width: 28px; border-radius: 5px; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 2.5rem; line-height: 1; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); backdrop-filter: blur(4px); }
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* ---- QUICK INFO STRIP ---- */
.quick-info-strip { background: var(--red); padding: 20px 0; }
.quick-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quick-info-item { display: flex; align-items: center; gap: 12px; color: #fff; }
.qi-icon { font-size: 1.6rem; }
.qi-text strong { display: block; font-size: 0.9rem; font-weight: 600; }
.qi-text span { font-size: 0.78rem; opacity: 0.85; }

/* ---- SECTION COMMON ---- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--text-dark); }
.section-desc { margin-top: 12px; color: var(--text-light); font-size: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.text-accent { color: var(--red); }
.section-cta { text-align: center; margin-top: 40px; }

/* ---- SPECIALS ---- */
.specials-section { padding: 80px 0; background: var(--off-white); }
.specials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.special-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); position: relative; }
.special-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.special-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 4px; z-index: 2; }
.special-badge-green { background: var(--green); }
.special-badge-orange { background: var(--orange); }
.special-img-wrap { height: 200px; overflow: hidden; }
.special-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.special-card:hover .special-img { transform: scale(1.06); }
.special-info { padding: 16px; }
.special-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.special-desc { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.4; }
.special-price-row { display: flex; align-items: baseline; gap: 10px; }
.special-price { font-size: 1.4rem; font-weight: 800; color: var(--red); }
.price-unit { font-size: 0.75rem; font-weight: 500; }
.special-was { font-size: 0.8rem; color: var(--text-light); text-decoration: line-through; }

/* ---- CATEGORIES ---- */
.categories-section { padding: 80px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.category-img-wrap { position: relative; height: 220px; overflow: hidden; }
.category-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover .category-img { transform: scale(1.07); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(192,57,43,0.85) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity var(--transition); }
.category-overlay span { color: #fff; font-weight: 600; font-size: 0.875rem; }
.category-card:hover .category-overlay { opacity: 1; }
.category-label { background: #fff; padding: 14px 16px; font-weight: 700; font-size: 0.95rem; color: var(--text-dark); text-align: center; }

/* ---- INFO SECTION ---- */
.info-section { padding: 80px 0; background: linear-gradient(135deg, #1c1008 0%, #3a1c08 100%); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.info-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 36px 28px; color: #fff; }
.info-card-icon { font-size: 2rem; margin-bottom: 16px; }
.info-card-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; font-size: 0.875rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hours-table td:last-child { text-align: right; }
.info-note { font-size: 0.78rem; opacity: 0.65; margin-top: 12px; }
.store-address { font-size: 0.95rem; line-height: 1.8; opacity: 0.9; margin-bottom: 20px; }
.info-card p { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; margin-bottom: 20px; }

/* ---- WHY SECTION ---- */
.why-section { padding: 80px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: all var(--transition); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* ---- FOOTER ---- */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.8); }
.footer-top { padding: 64px 0 40px; }
.footer-top-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; }
.footer-logo-name { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; font-weight: 700; }
.footer-logo-sub { display: block; font-size: 0.65rem; color: var(--gold-light); letter-spacing: 0.06em; text-transform: uppercase; }
.footer-brand-desc { font-size: 0.85rem; line-height: 1.7; opacity: 0.7; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.875rem; opacity: 0.75; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--gold-light); }
.footer-hours { display: flex; flex-direction: column; gap: 6px; }
.footer-hours li { display: flex; justify-content: space-between; font-size: 0.875rem; opacity: 0.75; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.8rem; opacity: 0.55; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; opacity: 0.55; transition: opacity var(--transition); }
.footer-bottom-links a:hover { opacity: 1; }

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 1100px) {
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Small tablet */
@media (max-width: 900px) {
  .quick-info-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .header-tagline { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-img { height: 280px; }
  .contact-layout { grid-template-columns: 1fr; }
  .info-card { padding: 28px 20px; }
  .specials-full-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.8rem; }
}

/* Mobile */
@media (max-width: 640px) {
  /* Layout */
  .container { padding: 0 16px; }
  
  /* Header */
  .header-contact-links { display: none; }
  .logo-name { font-size: 1.1rem; }
  .logo-img { width: 42px; height: 42px; }

  /* Announcement bar */
  .announcement-bar { font-size: 0.78rem; padding: 6px 0; }

  /* Hero */
  .hero { height: 420px; }
  .hero-arrow { display: none; }
  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: 0.9rem; margin-bottom: 20px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-badge { font-size: 0.68rem; padding: 4px 10px; }
  .hero-content .container { max-width: 100%; padding: 0 20px; }

  /* Quick info */
  .quick-info-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .quick-info-strip { padding: 16px 0; }
  .qi-text strong { font-size: 0.8rem; }
  .qi-text span { font-size: 0.72rem; }

  /* Sections */
  .specials-section, .categories-section, .why-section, .info-section { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.6rem; }
  .section-cta { margin-top: 28px; }

  /* Specials */
  .specials-grid { grid-template-columns: 1fr; }
  .specials-full-grid { grid-template-columns: 1fr; }
  .special-img-wrap { height: 180px; }

  /* Categories */
  .categories-grid { grid-template-columns: 1fr; }
  .category-img-wrap { height: 180px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px 20px; }

  /* Info section */
  .info-grid { grid-template-columns: 1fr; }
  .info-card { padding: 24px 18px; }

  /* Shop */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-img-wrap { height: 140px; }
  .product-info { padding: 10px 12px; }
  .product-name { font-size: 0.82rem; }
  .product-desc { font-size: 0.72rem; }
  .product-price { font-size: 0.95rem; }
  .sidebar-cats { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .sidebar-cat-link { padding: 7px 12px; font-size: 0.8rem; }
  .shop-cat-title { font-size: 1.2rem; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 16px; }
  .contact-info-card { padding: 20px 16px; gap: 12px; }

  /* About */
  .story-grid { grid-template-columns: 1fr; }
  .story-img { height: 220px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 24px 16px; }

  /* Page hero (inner pages) */
  .page-hero { padding: 56px 0 40px; }
  .page-hero-title { font-size: 1.8rem; }

  /* Footer */
  .footer-top-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { padding: 40px 0 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Buttons */
  .btn { padding: 11px 22px; font-size: 0.875rem; }
  .btn-sm { padding: 8px 16px; font-size: 0.8rem; }
}

/* Very small phones */
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
  .quick-info-grid { grid-template-columns: 1fr; }
  .hero { height: 380px; }
  .hero-title { font-size: 1.5rem; }
  .logo-name { font-size: 1rem; }
}

/* ---- LUCIDE ICONS ---- */
i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; }
i[data-lucide] svg { display: block; }

/* Inline icons — used in text/paragraphs */
.icon-inline { width: 16px; height: 16px; vertical-align: middle; margin-right: 4px; }
.icon-inline svg { width: 16px; height: 16px; }

/* Card icons — used as standalone decorative icons in cards/sections */
.icon-card { width: 36px; height: 36px; color: var(--red); }
.icon-card svg { width: 36px; height: 36px; stroke-width: 1.5; }

/* Overrides for specific contexts */
.qi-icon .icon-card { color: #fff; width: 28px; height: 28px; }
.qi-icon .icon-card svg { width: 28px; height: 28px; }

.why-icon .icon-card { color: var(--red); width: 40px; height: 40px; }
.why-icon .icon-card svg { width: 40px; height: 40px; }

.value-icon .icon-card { color: var(--red); width: 40px; height: 40px; }
.value-icon .icon-card svg { width: 40px; height: 40px; }

.info-card-icon .icon-card { color: var(--gold-light); width: 32px; height: 32px; }
.info-card-icon .icon-card svg { width: 32px; height: 32px; }

.ci-icon .icon-card { color: var(--red); width: 28px; height: 28px; }
.ci-icon .icon-card svg { width: 28px; height: 28px; }

.sidebar-cat-link .icon-card { width: 16px; height: 16px; margin-right: 4px; color: var(--red); }
.sidebar-cat-link .icon-card svg { width: 16px; height: 16px; }

.shop-cat-title .icon-card { width: 22px; height: 22px; margin-right: 8px; vertical-align: middle; }
.shop-cat-title .icon-card svg { width: 22px; height: 22px; }

.specials-cat-title .icon-card { width: 22px; height: 22px; margin-right: 8px; vertical-align: middle; }
.specials-cat-title .icon-card svg { width: 22px; height: 22px; }

/* Mobile store info icons */
.mobile-store-info .icon-inline { color: var(--red); }
