/* ===== Smokers Center — Premium Hookah & More =====
   Palette: #000 / #FFF / #F0B42D
   Direction: RTL  ·  Lang: Arabic
============================================= */

:root {
  --black: #000000;
  --ink: #0a0a0a;
  --surface: #ffffff;
  --soft: #f6f6f6;
  --line: #e9e9e9;
  --muted: #6b6b6b;
  --gold: #F0B42D;
  --gold-deep: #d99e1f;
  --gold-soft: #fff4d6;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 60px rgba(0, 0, 0, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1240px;
  --transition: 280ms cubic-bezier(0.25, 1, 0.5, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Tajawal', 'DejaVu Sans', system-ui, sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP STRIP ===== */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(240, 180, 45, 0.15);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .gold { color: var(--gold); }

/* ===== HEADER ===== */
.header {
  background: var(--black);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 0 rgba(240, 180, 45, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo {
  width: 62px;
  height: 62px;
  background: #fff;
  border-radius: 14px;
  padding: 4px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(240, 180, 45, 0.2);
  flex-shrink: 0;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text { line-height: 1.1; }
.brand-text .ar {
  display: block;
  color: var(--gold);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.2px;
}
.brand-text .en {
  display: block;
  color: #cfcfcf;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 6px;
}
.nav a {
  position: relative;
  padding: 10px 14px;
  color: #f3f3f3;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav a:hover { color: var(--gold); background: rgba(240, 180, 45, 0.08); }
.nav a.active { color: var(--gold); }
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 14px;
  left: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  color: var(--black);
  position: relative;
  transition: var(--transition);
}
.icon-btn:hover { background: #fff; color: var(--black); transform: translateY(-2px); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  background: #000;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #fff;
}
.menu-toggle svg { width: 26px; height: 26px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(240, 180, 45, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 180, 45, 0.12), transparent 55%),
    linear-gradient(180deg, #000 0%, #0d0d0d 100%);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(240, 180, 45, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(240, 180, 45, 0.4);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 26px;
  font-weight: 600;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  color: var(--gold);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero .subtitle {
  font-size: clamp(18px, 1.8vw, 22px);
  color: #f0f0f0;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.5;
}
.hero .subtitle span { color: var(--gold); font-weight: 700; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(240, 180, 45, 0.3);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(240, 180, 45, 0.45);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stats .stat strong {
  display: block;
  font-size: 32px;
  color: var(--gold);
  font-weight: 800;
}
.hero-stats .stat span { color: #cfcfcf; font-size: 14px; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}
.hero-image {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240, 180, 45, 0.28) 0%, transparent 65%);
  display: grid;
  place-items: center;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(240, 180, 45, 0.3);
  animation: rotate 30s linear infinite;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(240, 180, 45, 0.2);
  animation: rotate 22s linear infinite reverse;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-image img {
  position: relative;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(240, 180, 45, 0.45));
  background: #fff;
  border-radius: 50%;
  padding: 22px;
  box-shadow: 0 0 0 1px rgba(240, 180, 45, 0.4), 0 30px 80px rgba(240, 180, 45, 0.25);
}

.hero-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 180, 45, 0.25);
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero-tag.t1 { top: 0; right: 0; }
.hero-tag.t2 { top: 0; left: 0; }
.hero-tag.t3 { bottom: 0; left: 50%; transform: translateX(-50%); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-light { background: var(--soft); }
.section-dark { background: var(--black); color: #fff; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head .left { max-width: 600px; }
.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.section-title.on-dark { color: #fff; }
.section-title .accent { color: var(--gold); }
.section-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}
.section-sub.on-dark { color: rgba(255, 255, 255, 0.7); }

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  padding: 12px 22px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  transition: var(--transition);
}
.see-all:hover { background: var(--gold); border-color: var(--gold); }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.product-media img.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card:hover .product-media img.product-img { transform: scale(1.06); }
.product-media svg {
  width: 50%;
  color: #c5c5c5;
  transition: var(--transition);
}
.product-card:hover .product-media svg {
  transform: scale(1.08);
  color: var(--gold-deep);
}
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.product-badge.dark { background: var(--black); color: var(--gold); }

.wishlist-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.wishlist-btn:hover { background: var(--gold); transform: scale(1.1); }
.wishlist-btn svg { width: 18px; height: 18px; color: var(--ink); }

.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.3;
}
.product-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 14px;
}
.product-stars span { color: var(--muted); margin-right: 6px; font-size: 12px; }

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}
.product-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold-deep);
  font-family: 'Cairo', sans-serif;
}
.product-price small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-decoration: line-through;
  margin-right: 8px;
}
.product-price span { font-size: 14px; color: var(--muted); font-weight: 600; }

.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.btn-cart:hover { background: var(--gold); color: var(--black); }
.btn-cart svg { width: 16px; height: 16px; }

/* ===== CATEGORY CARDS ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.category-card:hover::before { transform: scaleX(1); transform-origin: left; }

.category-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 100%);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.category-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--gold);
  opacity: 0.4;
  transition: var(--transition);
  pointer-events: none;
}
.category-card:hover .category-icon {
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(240, 180, 45, 0.25);
}
.category-card:hover .category-icon::after { opacity: 0.9; transform: rotate(12deg); inset: -10px; }
.category-icon svg {
  width: 50px;
  color: var(--gold);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.category-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.25, 1, 0.5, 1);
}
.category-card:hover .category-icon img { transform: scale(1.1); }
.category-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.category-card p {
  font-size: 13px;
  color: var(--muted);
}

/* ===== ABOUT SECTION ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 22px;
  line-height: 1.2;
}
.about-text h2 .accent { color: var(--gold); }
.about-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature .check {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-feature .check svg { width: 18px; height: 18px; }
.about-feature h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.about-feature p { font-size: 13px; color: var(--muted); margin: 0; }

.about-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(240, 180, 45, 0.3) 0%, transparent 60%);
}
.about-visual svg {
  position: relative;
  width: 55%;
  color: var(--gold);
  filter: drop-shadow(0 20px 40px rgba(240, 180, 45, 0.4));
}
.about-visual img {
  position: relative;
  width: 72%;
  height: 72%;
  object-fit: contain;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(240, 180, 45, 0.3);
}
.about-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 22px;
  border-radius: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge strong { display: block; font-size: 24px; }
.about-badge span { font-size: 12px; opacity: 0.8; }

/* ===== BENEFITS STRIP ===== */
.benefits {
  background: var(--black);
  color: #fff;
  padding: 36px 0;
  border-top: 1px solid rgba(240, 180, 45, 0.1);
  border-bottom: 1px solid rgba(240, 180, 45, 0.1);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 14px;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(240, 180, 45, 0.12);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit h4 { font-size: 15px; font-weight: 800; margin-bottom: 2px; }
.benefit p { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin: 0; }

/* ===== PRODUCTS PAGE — TITLE BAND ===== */
.page-band {
  background: var(--soft);
  padding: 60px 0 30px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-band .crumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.page-band .crumbs a:hover { color: var(--gold-deep); }
.page-band h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 8px;
}
.page-band h1 .accent { color: var(--gold-deep); }
.page-band p { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ===== FILTER BAR ===== */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: sticky;
  top: 88px;
  z-index: 20;
}
.filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: var(--transition);
}
.chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.filter-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}
.sort-select {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 9px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: #fff;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.social-row a:hover { background: var(--gold); color: var(--black); }
.social-row a svg { width: 18px; height: 18px; }

.footer h4 {
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer ul a:hover { color: var(--gold); transform: translateX(-4px); }

.footer-contact .item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  align-items: flex-start;
}
.footer-contact .item svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.footer-bottom .pay { display: flex; gap: 8px; align-items: center; }
.footer-bottom .pay span {
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--black);
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  border-right: 4px solid var(--gold);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 100;
  font-weight: 600;
}
.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.toast svg { width: 22px; height: 22px; color: var(--gold); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: all 700ms cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: auto; padding-bottom: 8px; }
  .hero-image { max-width: 300px; }
  .hero-tags {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    width: 100%;
  }
  .hero-tag {
    position: static;
    inset: auto;
    top: auto; right: auto; bottom: auto; left: auto;
    padding: 10px 14px;
    font-size: 12px;
  }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .section { padding: 70px 0; }
  .hero { padding: 70px 0 80px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--black);
    flex-direction: column;
    padding: 18px;
    gap: 4px;
    border-top: 1px solid rgba(240, 180, 45, 0.15);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; border-radius: 10px; }
  .nav a.active::after { display: none; }
  .filter-bar { top: 76px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .topbar { font-size: 11px; }
  .topbar .container > span:first-child { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; flex-wrap: wrap; }
  .hero-stats .stat strong { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .icons .icon-btn:not(.cart) { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
