/** Shopify CDN: Minification failed

Line 747:8 Expected identifier but found whitespace
Line 747:9 Unexpected "10px"

**/
/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  color: #111;
  -webkit-tap-highlight-color: transparent;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== UTILITY ===== */
.mobile-only  { display: block; }
.desktop-only { display: none; }

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, #111, #333);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.top-bar strong { color: #ffd700; }

/* ===================================================
   DESKTOP HEADER
   =================================================== */
.desktop-header { display: none; }

.dh-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.dh-logo {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #111, #444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.dh-nav {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.dh-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.dh-nav a:hover { background: #f0f0f0; color: #111; }

.dh-search {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 380px;
}
.dh-search input {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border-radius: 30px;
  border: 2px solid #e0e0e0;
  font-size: 14px;
  outline: none;
  transition: border .2s;
  font-family: inherit;
}
.dh-search input:focus { border-color: #111; }
.dh-search button {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  padding: 0;
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  max-height: 400px;
  overflow-y: auto;
  z-index: 500;
  display: none;
}
.search-dropdown.open { display: block; }

.dh-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.location-chip {
  font-size: 13px;
  color: #555;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .2s;
  white-space: nowrap;
}
.location-chip:hover { background: #f0f0f0; }

.dh-icon-btn {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  border: 1.5px solid #ddd;
  background: #fff;
  transition: all .2s;
  white-space: nowrap;
}
.dh-icon-btn:hover { border-color: #111; color: #111; }

.dh-cart-btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #111;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
  white-space: nowrap;
}
.dh-cart-btn:hover { background: #333; }
.dh-cart-btn .cart-count {
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Desktop Location Bar */
.desktop-location-bar {
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
}
.dlb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
}

/* ===================================================
   MOBILE HEADER
   =================================================== */
.mobile-header {
  background: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.menu-btn { font-size: 22px; cursor: pointer; }
.logo {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #111, #444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.icons { display: flex; gap: 18px; font-size: 22px; align-items: center; }
.icons span { cursor: pointer; position: relative; }
.cart-icon { position: relative; }
.cart-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: #e74c3c; color: #fff;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Search Box */
.mobile-search-box { padding: 10px 14px; background: #fff; }
.mobile-search-box input {
  width: 100%; padding: 12px 18px;
  border-radius: 30px; border: 1px solid #ddd;
  font-size: 14px; outline: none;
  background: #f8f8f8; font-family: inherit;
  transition: border .2s;
}
.mobile-search-box input:focus { border-color: #111; background: #fff; }

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 0; left: -300px;
  width: 280px; height: 100vh;
  background: #fff;
  z-index: 200;
  transition: left .3s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,.1);
  overflow-y: auto;
}
.sidebar.open { left: 0; }
.sidebar-header {
  padding: 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #eee;
}
.sidebar-header h3 { font-size: 20px; font-weight: 600; }
.close-btn { font-size: 20px; cursor: pointer; padding: 4px; }
.sidebar-nav a {
  display: block; padding: 14px 20px;
  color: #333; font-size: 15px;
  transition: background .2s;
  border-bottom: 1px solid #f5f5f5;
}
.sidebar-nav a:hover { background: #f8f8f8; }
.sidebar-nav hr { margin: 10px 20px; border: none; border-top: 1px solid #eee; }

.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 150; display: none;
}
.overlay.show { display: block; }

/* ===== MOBILE SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed; top: 0; left: 0; right: 0;
  background: #fff; z-index: 120;
  padding: 16px 16px 0;
  transform: translateY(-100%);
  transition: transform .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  max-height: 80vh; overflow-y: auto;
}
.search-overlay.open { transform: translateY(0); }
.search-header { display: flex; gap: 12px; align-items: center; }
.search-header input {
  flex: 1; padding: 12px 18px;
  border-radius: 30px; border: 2px solid #111;
  font-size: 15px; outline: none; font-family: inherit;
}
.search-results { margin-top: 12px; }
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-bottom: 1px solid #eee;
  cursor: pointer; transition: background .2s;
}
.search-result-item:hover { background: #f8f8f8; }
.search-result-item img {
  width: 44px; height: 44px; border-radius: 10px;
  object-fit: cover; background: #f0f0f0;
}

/* ===== LOCATION BAR ===== */
.location-bar {
  background: #fff;
  display: flex; justify-content: space-between;
  padding: 10px 14px; font-size: 12px; color: #555;
  border-bottom: 1px solid #eee;
}
.location-bar div { cursor: pointer; }

/* ===================================================
   PAGE WRAPPER
   =================================================== */
.page-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  margin: 14px;
  background: linear-gradient(135deg, #e7e7e7, #d4d4d4);
  border-radius: 24px;
  padding: 30px 24px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.hero-content { flex: 1; }
.hero-tag {
  display: inline-block;
  background: #111; color: #fff;
  padding: 6px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 600; margin-bottom: 12px;
}
.hero h1 { font-size: 36px; line-height: 1.15; margin-bottom: 12px; font-weight: 700; }
.hero p { font-size: 14px; margin-bottom: 22px; color: #555; line-height: 1.5; }
.hero-image { font-size: 80px; opacity: .8; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-buttons button {
  padding: 12px 22px; border: none; border-radius: 30px;
  font-weight: 600; font-size: 13px; font-family: inherit;
  transition: transform .2s, box-shadow .2s;
}
.hero-buttons button:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.dark-btn { background: #111; color: #fff; }
.light-btn { background: #fff; color: #111; box-shadow: 0 2px 8px rgba(0,0,0,.1); }

/* ===================================================
   SECTIONS
   =================================================== */
.section { padding: 14px; }
.section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.section-title { font-size: 22px; font-weight: 700; }
.section-header a { font-size: 13px; color: #666; font-weight: 500; }

/* ===== CATEGORIES ===== */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat-card {
  background: #fff; border-radius: 16px; padding: 16px 8px;
  text-align: center; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid #eee;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.cat-icon { font-size: 32px; margin-bottom: 8px; }
.cat-name { font-size: 12px; font-weight: 500; color: #333; }

/* ===== FLASH SALE ===== */
.flash-sale {
  margin: 14px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  border-radius: 24px; padding: 28px 24px;
  color: #fff; position: relative; overflow: hidden;
}
.flash-sale::before {
  content: '⚡'; position: absolute;
  font-size: 120px; right: -20px; top: -20px; opacity: .1;
}
.flash-label {
  background: rgba(255,255,255,.2);
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; display: inline-block; margin-bottom: 12px;
}
.flash-content h3 { font-size: 28px; margin-bottom: 8px; }
.flash-content p { font-size: 14px; margin-bottom: 18px; opacity: .9; }
.flash-content button {
  padding: 12px 28px; border: none; border-radius: 30px;
  background: #fff; color: #ee5a5a;
  font-weight: 700; font-size: 14px; font-family: inherit;
  transition: transform .2s;
}
.flash-content button:hover { transform: scale(1.05); }

/* ===== PRODUCTS GRID ===== */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.card {
  background: #fff; border-radius: 18px; padding: 12px;
  border: 1px solid #f0f0f0; position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  animation: fadeInUp .4s ease forwards;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.card-badge {
  position: absolute; top: 10px; left: 10px;
  background: #e74c3c; color: #fff;
  padding: 4px 10px; border-radius: 12px;
  font-size: 10px; font-weight: 700; z-index: 2;
}
.card-wishlist {
  position: absolute; top: 10px; right: 10px;
  background: #fff; width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1); z-index: 2;
}
.image {
  height: 150px;
  background: linear-gradient(135deg, #ececec, #e0e0e0);
  border-radius: 14px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; overflow: hidden;
}
.image img { width:100%; height:100%; object-fit:cover; border-radius:14px; }
.price { font-weight: 700; margin-bottom: 4px; font-size: 16px; }
.old-price { font-size: 12px; color: #999; text-decoration: line-through; margin-left: 6px; font-weight: 400; }
.product-title { font-size: 13px; margin-bottom: 4px; color: #333; line-height: 1.3; }
.product-weight { font-size: 12px; color: #888; margin-bottom: 6px; }
.rating { font-size: 12px; color: #f39c12; margin-bottom: 10px; }
.rating span { color: #ccc; margin-left: 4px; font-size: 11px; }
.add-to-cart {
  width: 100%; padding: 10px;
  border: 1.5px solid #111; background: #fff; color: #111;
  border-radius: 12px; font-weight: 600; font-size: 13px; font-family: inherit;
  transition: all .2s;
}
.add-to-cart:hover { background: #111; color: #fff; }
.add-to-cart.added { background: #27ae60; border-color: #27ae60; color: #fff; }

/* ===== RECIPE BANNER ===== */
.recipe-banner {
  margin: 14px;
  background: linear-gradient(135deg, #e8e1d6, #ddd5c7);
  padding: 30px 24px; border-radius: 24px; text-align: center;
}
.recipe-icon { font-size: 50px; margin-bottom: 10px; }
.recipe-tag {
  display: inline-block; background: #111; color: #fff;
  padding: 6px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 600; margin-bottom: 12px;
}
.recipe-banner h2 { font-size: 32px; margin-bottom: 10px; font-weight: 700; }
.recipe-banner p { font-size: 14px; color: #555; margin-bottom: 20px; }
.recipe-banner button {
  padding: 12px 28px; border: none; border-radius: 30px;
  background: #fff; font-weight: 700; font-size: 14px; font-family: inherit;
  box-shadow: 0 2px 10px rgba(0,0,0,.1); transition: transform .2s;
}
.recipe-banner button:hover { transform: scale(1.05); }

/* ===== BRANDS ===== */
.brands { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.brands::-webkit-scrollbar { display: none; }
.brand {
  background: #fff; padding: 12px 20px; border-radius: 30px;
  font-size: 13px; font-weight: 600; color: #333;
  border: 1px solid #eee; white-space: nowrap; cursor: pointer;
  transition: all .2s;
}
.brand:hover { background: #111; color: #fff; border-color: #111; }

/* ===== TESTIMONIALS ===== */
.testimonials { display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; }
.testimonials::-webkit-scrollbar { display: none; }
.testi-card {
  background: #fff; border-radius: 18px; padding: 20px;
  min-width: 260px; border: 1px solid #eee;
}
.stars { font-size: 14px; margin-bottom: 10px; }
.testi-card p { font-size: 14px; color: #444; line-height: 1.5; margin-bottom: 12px; }
.testi-user { font-size: 13px; font-weight: 600; color: #111; }

/* ===== NEWSLETTER ===== */
.newsletter { background: #fff; padding: 30px 20px; text-align: center; }
.newsletter-icon { font-size: 40px; margin-bottom: 10px; }
.newsletter h2 { font-size: 22px; margin-bottom: 8px; }
.newsletter > p { color: #666; font-size: 14px; margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 10px; margin-bottom: 16px; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form input {
  flex: 1; padding: 14px; border-radius: 12px;
  border: 1px solid #ccc; font-size: 14px; outline: none; font-family: inherit;
}
.newsletter-form button {
  padding: 14px 24px; border: none;
  background: #111; color: #fff; border-radius: 12px;
  font-weight: 600; font-size: 14px; font-family: inherit;
  transition: background .2s; white-space: nowrap;
}
.newsletter-form button:hover { background: #333; }
.newsletter-benefits { display: flex; justify-content: center; gap: 20px; font-size: 12px; color: #666; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #111; color: #fff; padding: 40px 20px 100px; }
.footer-top h3 { font-size: 24px; margin-bottom: 10px; font-weight: 700; }
.footer-top > p { font-size: 14px; line-height: 1.6; color: #aaa; margin-bottom: 16px; }
.social-links { display: flex; gap: 16px; font-size: 24px; margin-bottom: 24px; }
.social-links span { cursor: pointer; transition: transform .2s; }
.social-links span:hover { transform: scale(1.2); }
.footer-links {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; margin-bottom: 24px;
}
.footer-col h4 { font-size: 14px; margin-bottom: 12px; color: #fff; }
.footer-col a { display: block; font-size: 13px; color: #aaa; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-address h4 { font-size: 14px; margin-bottom: 10px; }
.footer-address p { font-size: 13px; line-height: 1.8; color: #aaa; }
.footer-bottom { margin-top: 24px; padding-top: 20px; border-top: 1px solid #333; text-align: center; }
.footer-bottom p { font-size: 12px; color: #666; margin-bottom: 4px; }

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
  position: fixed; top: 0; right: -380px;
  width: 360px; height: 100vh;
  background: #fff; z-index: 300;
  transition: right .3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,.12);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  padding: 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #eee;
}
.cart-header h3 { font-size: 18px; font-weight: 600; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 40px 20px; color: #999; font-size: 14px; }
.cart-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid #eee; align-items: center;
}
.cart-item-img {
  width: 60px; height: 60px; background: #f0f0f0;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0; overflow: hidden;
}
.cart-item-img img { width:100%; height:100%; object-fit:cover; border-radius:12px; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 13px; margin-bottom: 4px; }
.cart-item-info p { font-size: 12px; color: #666; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #ddd; background: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-qty span { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { color: #e74c3c; cursor: pointer; font-size: 18px; }
.cart-footer { padding: 16px; border-top: 1px solid #eee; background: #f8f8f8; }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.checkout-btn {
  width: 100%; padding: 14px; border: none;
  background: #111; color: #fff; border-radius: 12px;
  font-weight: 700; font-size: 15px; font-family: inherit;
  transition: background .2s;
}
.checkout-btn:hover { background: #333; }

/* ===== BOTTOM NAV (mobile only) ===== */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #111; color: #fff;
  display: flex; justify-content: space-around;
  padding: 10px 0 14px; font-size: 13px; z-index: 100;
  border-top: 1px solid #333;
}
.nav-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 3px; cursor: pointer; padding: 4px 12px; border-radius: 12px;
  transition: all .2s; position: relative; opacity: .6;
}
.nav-item.active { opacity: 1; background: rgba(255,255,255,.1); }
.nav-item span:first-child { font-size: 20px; }
.nav-item span:last-child { font-size: 11px; }
.nav-badge {
  position: absolute; top: -4px; right: 4px;
  background: #e74c3c; color: #fff;
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #111; color: #fff;
  padding: 12px 24px; border-radius: 30px;
  font-size: 14px; font-weight: 500; z-index: 400;
  opacity: 0; transition: all .3s ease;
  pointer-events: none; white-space: nowrap; max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   DESKTOP RESPONSIVE — 900px and above
   =================================================== */
@media (min-width: 900px) {

  .mobile-only  { display: none !important; }
  .desktop-only { display: block; }
  .mobile-header { display: none; }
  .mobile-search-box { display: none; }
  .bottom-nav { display: none; }

  .desktop-header {
    display: block;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky; top: 0; z-index: 100;
  }

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

  .toast { bottom: 30px; }

  /* ---- Hero ---- */
  .hero {
    margin: 24px 0;
    border-radius: 28px;
    padding: 60px 60px;
    min-height: 380px;
  }
  .hero h1 { font-size: 58px; }
  .hero p { font-size: 16px; max-width: 480px; }
  .hero-image { font-size: 140px; }
  .hero-buttons button { padding: 14px 30px; font-size: 15px; }

  /* ---- Categories ---- */
  .categories { grid-template-columns: repeat(8, 1fr); gap: 14px; }
  .cat-card { padding: 20px 10px; }
  .cat-icon { font-size: 38px; }
  .cat-name { font-size: 13px; }

  /* ---- Flash Sale ---- */
  .flash-sale { margin: 24px 0; padding: 40px 60px; border-radius: 28px; display: flex; align-items: center; justify-content: space-between; }
  .flash-sale::before { font-size: 200px; right: 40px; }
  .flash-content h3 { font-size: 42px; }

  /* ---- Products ---- */
  .products { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .image { height: 200px; font-size: 80px; }
  .price { font-size: 18px; }
  .product-title { font-size: 14px; }
  .add-to-cart { padding: 12px; font-size: 14px; }

  /* ---- Recipe Banner ---- */
  .recipe-banner { margin: 24px 0; padding: 50px; border-radius: 28px; }
  .recipe-banner h2 { font-size: 44px; }
  .recipe-icon { font-size: 70px; }

  /* ---- Testimonials ---- */
  .testimonials { overflow-x: visible; display: grid; grid-template-columns: repeat(3, 1fr); }
  .testi-card { min-width: unset; }

  /* ---- Section ---- */
  .section { padding: 24px 0; }
  .section-title { font-size: 28px; }

  /* ---- Brands ---- */
  .brands { overflow-x: visible; flex-wrap: wrap; }

  /* ---- Newsletter ---- */
  .newsletter { padding: 60px 40px; border-radius: 24px; margin: 24px 0; }
  .newsletter h2 { font-size: 32px; }

  /* ---- Footer ---- */
  .footer {
    padding-bottom: 60px;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-top: 10px;
  }
  .footer-top { margin-bottom: 0; }
  .footer-links { display: contents; }
  .footer-address { margin-bottom: 0; }
  .footer-bottom { max-width: 1280px; margin: 24px auto 0; padding: 20px 0 0; border-top: 1px solid #333; display: flex; justify-content: space-between; }
  .footer-links { grid-template-columns: unset; gap: unset; display: contents; }

  /* ---- Cart sidebar wider ---- */
  .cart-sidebar { width: 420px; right: -440px; }
  .cart-sidebar.open { right: 0; }
}

/* ===================================================
   TABLET — 600px to 899px
   =================================================== */
@media (min-width: 600px) and (max-width: 899px) {
  body { padding-bottom: 80px; }
  .categories { grid-template-columns: repeat(4, 1fr); }
  .products { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 44px; }
  .hero-image { font-size: 100px; }
  .flash-sale { padding: 32px 36px; }
  .flash-content h3 { font-size: 34px; }
  .testi-card { min-width: 280px; }
}

/* ===== MOBILE (max 599px) ===== */
@media (max-width: 599px) {
  body { padding-bottom: 80px; }
  .footer { padding-bottom: 100px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 30px; }
  .categories { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cat-card { padding: 12px 4px; }
  .cat-icon { font-size: 26px; }
}
padding: 10px 0 calc(14px + env(safe-area-inset-bottom));
