/* ============================================
   KUMAR SNACKS — Shop Page CSS (shop.css)
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Pacifico&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #F5A623;
  --primary-dark:  #E8900A;
  --primary-light: #FFC94D;
  --accent:        #FF6B35;
  --black:         #1A1A1A;
  --dark:          #2D2D2D;
  --dark-bg:       #1E1E1E;
  --dark-card:     #252525;
  --text:          #333333;
  --text-muted:    #777777;
  --white:         #FFFFFF;
  --light-bg:      #FFF9F0;
  --border:        #F0E6D3;
  --success:       #22C55E;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.18);
  --radius:        14px;
  --radius-sm:     8px;
  --radius-pill:   100px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce-bar {
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 500;
  gap: 16px;
  position: relative;
  z-index: 100;
}
.announce-bar__left { display: flex; align-items: center; gap: 8px; }
.announce-bar__right { display: flex; align-items: center; gap: 10px; }
.countdown { display: flex; align-items: center; gap: 4px; }
.cd-block {
  background: var(--primary);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 26px;
  text-align: center;
}
.cd-sep { color: var(--primary); font-weight: 700; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 10px rgba(245,166,35,0.3);
}
.logo__avatar span { line-height: 1; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
}
.logo__sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: lowercase;
  letter-spacing: 1px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav__link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--primary); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__arrow { font-size: 0.7rem; }

/* Header Actions */
.header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  transition: all var(--transition);
  position: relative;
}
.icon-btn:hover { background: var(--light-bg); color: var(--primary); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  border: 2px solid var(--white);
  transform: scale(0);
  transition: transform var(--transition);
}
.cart-count.visible { transform: scale(1); }

/* Burger */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  padding: 12px 20px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-nav__link:hover { background: var(--light-bg); color: var(--primary); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--primary);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}

/* ============================================
   SHOP BANNER
   ============================================ */
.shop-banner {
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  padding: 50px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.shop-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.shop-banner__tag {
  font-family: 'Pacifico', cursive;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 8px;
  display: inline-block;
}
.shop-banner__title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.highlight { color: var(--primary); }
.banner-perks {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  flex-wrap: wrap;
}

/* Visual food floaters */
.shop-banner__visual {
  display: flex;
  gap: 30px;
  font-size: 3.8rem;
  padding-right: 40px;
}
.banner-food-item {
  animation: floatBannerFood 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}
.banner-food-item--right {
  animation-delay: 2s;
}
@keyframes floatBannerFood {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-12px) rotate(4deg); }
}

/* ============================================
   BREADCRUMB & CATALOG HEADER
   ============================================ */
.shop-main {
  padding-top: 24px;
  padding-bottom: 80px;
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }
.breadcrumb .active { color: var(--primary-dark); font-weight: 600; }

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.catalog-header__left h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
}
.catalog-header__left p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.catalog-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.showing-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-wrap label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.sort-wrap select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.sort-wrap select:focus {
  border-color: var(--primary);
}

/* ============================================
   HORIZONTAL ROUND FILTERS LIST
   ============================================ */
.horizontal-categories-filter {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: 30px;
  scrollbar-width: none; /* Firefox */
}
.horizontal-categories-filter::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}
.h-cat-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.h-cat-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.h-cat-btn.active {
  background: var(--primary-light);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.h-cat-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.h-cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.h-cat-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
}

/* ============================================
   MAIN TWO-COLUMN LAYOUT
   ============================================ */
.shop-grid-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}

/* ----- SIDEBAR FILTERS ----- */
.sidebar-filters {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 10px;
}
.sidebar-filters__header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}
.clear-all-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: underline;
  cursor: pointer;
}

.filter-box {
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 18px;
}
.filter-box h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-check-lbl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.filter-check-lbl input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--primary);
  cursor: pointer;
}
.filter-check-lbl small {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* Price range slider input */
.price-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-slider-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}
.price-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.price-slider-labels strong {
  color: var(--primary-dark);
  font-weight: 800;
}

/* Sidebar Promo card banner */
.sidebar-promo-card {
  background: linear-gradient(135deg, #FFF1D1 0%, #FFE2A6 100%);
  border: 1.5px dashed var(--primary);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sp-tag {
  background: var(--primary);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.sidebar-promo-card h4 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--black);
}
.sidebar-promo-card p {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.4;
}
.sp-btn {
  margin-top: 6px;
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.sidebar-promo-card:hover .sp-btn {
  background: var(--primary-dark);
  color: var(--black);
  transform: translateY(-1px);
}

/* ----- PRODUCTS GRID ----- */
.products-grid-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Product Card */
.prod-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

/* Emojis Image Container */
.prod-card__img-wrap {
  height: 180px;
  background: var(--light-bg);
  display: block;
  position: relative;
  border-bottom: 1.5px solid var(--border);
  overflow: hidden;
}
.prod-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Wishlist Heart overlay */
.prod-card__wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 5;
  font-size: 1.1rem;
  color: #ccc;
  transition: all var(--transition);
}
.prod-card__wish:hover {
  transform: scale(1.1);
  color: #e11d48;
}
.prod-card__wish.active {
  color: #e11d48;
}

/* Badge overlay (e.g. Bestseller, OFF) */
.prod-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}
.badge--bestseller { background: #FEF3C7; color: #92400E; }
.badge--discount   { background: #FEE2E2; color: #B91C1C; }
.badge--new        { background: #D1FAE5; color: #065F46; }

/* Info body details */
.prod-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod-card__body h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}
.prod-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 12px;
}
.star-icon { color: var(--primary); }
.review-count { color: var(--text-muted); font-weight: 500; }

.prod-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.price-wrap {
  display: flex;
  flex-direction: column;
}
.price-current {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
}
.price-old {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 2px;
}

.add-cart-btn {
  background: var(--primary-light);
  color: var(--black);
  border: 1.5px solid var(--primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.prod-card:hover .add-cart-btn {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(245,166,35,0.25);
}
.add-cart-btn:hover {
  transform: scale(1.05);
}

/* Empty search state */
.catalog-empty {
  padding: 60px 20px;
  text-align: center;
  background: var(--light-bg);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.catalog-empty__icon { font-size: 3rem; }
.catalog-empty h3 { font-size: 1.25rem; font-weight: 800; color: var(--black); }
.catalog-empty p { font-size: 0.88rem; color: var(--text-muted); max-width: 320px; margin-bottom: 12px; }

/* ----- PAGINATION ----- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.page-btn {
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  transition: all var(--transition);
}
.page-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black);
}
.page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================
   PERKS STRIP BAR
   ============================================ */
.perks-strip {
  padding: 40px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.perks-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.perk-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.perk-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}
.perk-item__icon {
  font-size: 2rem;
  line-height: 1;
}
.perk-item__info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}
.perk-item__info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-bg);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}
.logo--light .logo__name { color: var(--white); }
.footer__brand p {
  margin-top: 16px;
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 240px;
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--black); transform: translateY(-2px); }
.footer__col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--primary); }
.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-newsletter-form input {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
}
.footer-newsletter-form input:focus {
  border-color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 380px; height: 100vh;
  background: var(--white);
  z-index: 400;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-sidebar__header h3 { font-size: 1.1rem; font-weight: 800; color: var(--black); }
.cart-close-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--light-bg);
  font-size: 0.9rem;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  font-family: inherit;
}
.cart-close-btn:hover { background: #ffdddd; color: #c00; }
.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
  color: var(--text-muted);
  text-align: center;
  padding: 40px 0;
}
.cart-empty__icon { font-size: 3rem; }
.cart-empty p { font-weight: 600; color: var(--dark); }
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__emoji { font-size: 1.8rem; }
.cart-item__info { flex: 1; }
.cart-item__info h4 { font-size: 0.85rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.cart-item__info span { font-size: 0.8rem; color: var(--text-muted); }
.cart-item__price { font-weight: 800; color: var(--primary-dark); font-size: 0.9rem; }
.cart-item__remove {
  color: #ccc;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color var(--transition);
  font-family: inherit;
}
.cart-item__remove:hover { color: #e00; }
.cart-sidebar__footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.cart-total strong { font-size: 1.2rem; color: var(--primary-dark); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(245,166,35,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 100;
  font-family: inherit;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px) !important; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1100px) {
  .shop-grid-container { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .perks-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .shop-banner__inner { flex-direction: column; text-align: center; }
  .shop-banner__visual { padding-right: 0; margin-top: 20px; }
  .nav { display: none; }
  .burger { display: flex; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .announce-bar { flex-direction: column; text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
  .perks-strip__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; }
}
