/* ============================================================
   WOW Rochester — Liquid Glass Design System  v1.0
   Apple-inspired UI with frosted glass effects
   ============================================================ */

:root {
  --glass-bg:           rgba(255, 255, 255, 0.72);
  --glass-bg-strong:    rgba(255, 255, 255, 0.88);
  --glass-bg-subtle:    rgba(255, 255, 255, 0.45);
  --glass-border:       1px solid rgba(255, 255, 255, 0.65);
  --glass-border-dark:  1px solid rgba(0, 0, 0, 0.07);
  --glass-shadow:       0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  --glass-shadow-lg:    0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
  --glass-blur:         blur(20px);
  --glass-blur-strong:  blur(40px);

  --bg-base:        #f5f5f7;
  --text-primary:   #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary:  #aeaeb2;
  --accent:         #34b37a;
  --accent-hover:   #289962;
  --accent-light:   rgba(52, 179, 122, 0.12);
  --danger:         #ff3b30;
  --warning:        #ff9500;
  --success:        #34c759;
  --info:           #007aff;

  --radius-xs:  8px;
  --radius-sm:  12px;
  --radius-md:  16px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --nav-height: 68px;
}

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

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display',
               'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
}

a { color: inherit; }
img { display: block; }

/* ---- Background ---- */
.bg-mesh {
  background-color: #f5f5f7;
  background-image:
    radial-gradient(at 20% 20%, rgba(52, 179, 122, 0.09) 0px, transparent 50%),
    radial-gradient(at 80% 10%, rgba(0, 122, 255, 0.06) 0px, transparent 50%),
    radial-gradient(at 55% 80%, rgba(52, 179, 122, 0.06) 0px, transparent 45%);
  min-height: 100vh;
}

/* ---- Glass surfaces ---- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.glass-card-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow-lg);
}

.glass-card-subtle {
  background: var(--glass-bg-subtle);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

/* ============================================================
   STICKY HEADER
============================================================ */
.glass-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 301;
}
.glass-header {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 300;
}
@media (max-width: 1023px) {
  .glass-header { top: 38px; }
}

/* ---- Announcement topbar ---- */
.glass-topbar {
  background: linear-gradient(90deg, #1a6644 0%, var(--accent) 50%, #1a6644 100%);
  background-size: 200% 100%;
  animation: topbarShimmer 6s linear infinite;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 16px;
  min-height: 34px;
  flex-wrap: wrap;
}
@keyframes topbarShimmer {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.glass-topbar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 12px; font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.glass-topbar a:hover { color: #fff; }
.glass-topbar-center {
  color: rgba(255,255,255,0.95);
  text-align: center;
  flex: 1 1 auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 12px;
}

/* topbar pulsating live dot */
.topbar-pulse-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
.topbar-pulse-dot::before,
.topbar-pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
}
.topbar-pulse-dot::after {
  animation: topbarPulse 1.8s ease-out infinite;
  opacity: 0;
}
@keyframes topbarPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.8); opacity: 0; }
}
@media (max-width: 480px) {
  .glass-topbar {
    font-size: 11px;
    gap: 8px;
    padding: 6px 12px;
    min-height: 38px;
  }
  .glass-topbar a { font-size: 11px; }
}

/* ---- Main nav bar — transparent by default ---- */
.glass-nav {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  height: var(--nav-height);
  transition:
    height      0.35s cubic-bezier(0.4,0,0.2,1),
    background  0.35s ease,
    border-color 0.35s ease,
    box-shadow  0.35s ease;
}

.glass-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Logo ---- */
.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex; align-items: center;
}
.nav-logo img {
  height: 36px;
  width: auto;
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.25s ease;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.15));
}
.nav-logo:hover img { transform: scale(1.05); }

/* ---- Desktop nav links — bubble pill buttons ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1.5px solid transparent;
  background: rgba(255,255,255,0.0);
  white-space: nowrap;
  transition:
    color       0.22s ease,
    background  0.22s ease,
    border-color 0.22s ease,
    transform   0.22s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow  0.22s ease;
  overflow: hidden;
}

/* Gradient fill layer — behind text via z-index */
.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent) 0%, #2dd4bf 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.22s ease;
}

.nav-link:hover {
  color: #fff;
  border-color: transparent;
  background: transparent;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(52,179,122,0.35), 0 2px 8px rgba(52,179,122,0.2);
}
.nav-link:hover::before { opacity: 1; }

/* Active state */
.nav-link.active {
  color: var(--accent);
  background: rgba(52,179,122,0.1);
  border-color: rgba(52,179,122,0.25);
}

/* ---- Nav action icons ---- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1), color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}
.nav-icon-btn:hover {
  background: rgba(52,179,122,0.12);
  color: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(52,179,122,0.25);
}

.nav-cart-wrap { overflow: visible; }

.nav-cart-count {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--accent);
  color: white;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  line-height: 1;
  border: 1.5px solid rgba(255,255,255,0.9);
  animation: cartBounce 0.35s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes cartBounce {
  0%,100% { transform: scale(1); }
  40%      { transform: scale(1.35); }
  70%      { transform: scale(0.9); }
}

/* ---- Scroll state — frosted glass appears ---- */
#mainNav.nav-scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 8px 30px rgba(0,0,0,0.07);
  height: 54px;
}
#mainNav.nav-scrolled .glass-nav-inner { height: 54px; }
#mainNav.nav-scrolled .nav-logo img    { height: 28px; }

/* ---- Mobile hamburger ---- */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 12px;
  border: none;
  background: rgba(0,0,0,0.04);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger:hover { background: rgba(0,0,0,0.08); }

.hamburger-line {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
  transition:
    transform 0.3s cubic-bezier(0.4,0,0.2,1),
    opacity   0.2s ease,
    width     0.2s ease;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile drawer overlay ---- */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 290;
}

/* ---- Drawer panel ---- */
.mobile-drawer-panel {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: min(300px, 82vw);
  background: rgba(252,252,253,0.97);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow: 12px 0 60px rgba(0,0,0,0.18);
  padding: 0;
  overflow-y: auto;
  z-index: 295;
  display: flex;
  flex-direction: column;
}

/* Drawer top gradient accent stripe */
.mobile-drawer-panel::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #2dd4bf);
  flex-shrink: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.drawer-close-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-close-btn:hover { background: rgba(0,0,0,0.10); transform: rotate(90deg); }

.drawer-section-label {
  padding: 18px 20px 6px;
  font-size: 10px;
  font-weight: 800;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  letter-spacing: -0.01em;
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
}
.drawer-link:hover {
  background: rgba(52,179,122,0.07);
  color: var(--accent);
  transform: translateX(3px);
}
.drawer-link svg { flex-shrink: 0; opacity: 0.6; transition: opacity 0.18s; }
.drawer-link:hover svg { opacity: 1; }

/* ---- Page offset for fixed header ---- */
.page-content {
  /* desktop: topbar (34px) + nav (68px) */
  padding-top: calc(34px + var(--nav-height));
}
/* mobile: hide the main nav header — bottom tab bar handles nav — but keep topbar */
@media (max-width: 1023px) {
  .glass-header { display: none !important; }
  .page-content { padding-top: 38px; }
}

/* ---- Containers ---- */
.page-section    { max-width: 1280px; margin: 0 auto; padding: 48px 24px; contain: layout; }
.page-section-sm { max-width:  520px; margin: 0 auto; padding: 64px 24px; contain: layout; }
.page-section-md { max-width:  800px; margin: 0 auto; padding: 48px 24px; contain: layout; }

/* ---- Buttons ---- */
.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: inherit;
  -webkit-appearance: none;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(52, 179, 122, 0.32);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary-lg  { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-primary-sm  { padding: 8px 16px; font-size: 13px; border-radius: 10px; }
.btn-primary-full { width: 100%; }

.btn-ghost {
  background: rgba(0,0,0,0.06);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}
.btn-ghost:hover { background: rgba(0,0,0,0.09); transform: translateY(-1px); }

.btn-danger {
  background: var(--danger);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}
.btn-danger:hover { background: #d93025; transform: translateY(-1px); }

/* ---- Form elements ---- */
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.glass-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.glass-input::placeholder { color: var(--text-tertiary); }
.glass-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.glass-select {
  width: 100%;
  padding: 11px 36px 11px 14px;
  background: rgba(255,255,255,0.8)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E")
    no-repeat right 14px center;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.glass-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.glass-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  resize: vertical;
  min-height: 90px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.glass-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.glass-date-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  -webkit-appearance: auto;
  appearance: auto;
}
.glass-date-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

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

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
}

/* ---- Alerts ---- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.alert-error   { background: rgba(255,59,48,0.1);   color: #c0392b; border: 1px solid rgba(255,59,48,0.2); }
.alert-success { background: rgba(52,199,89,0.1);   color: #1e7e34; border: 1px solid rgba(52,199,89,0.2); }
.alert-warning { background: rgba(255,149,0,0.1);   color: #b36200; border: 1px solid rgba(255,149,0,0.2); }

/* ---- Typography ---- */
.section-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.page-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

/* ---- Hero ---- */
.hero-wrap {
  text-align: center;
  padding: 56px 24px 40px;
  max-width: 680px;
  margin: 0 auto;
}
.hero-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
}

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

.product-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow-lg);
}

.product-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(0,0,0,0.03);
}
.product-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.04); }

.product-card-body { padding: 14px 16px 18px; }
.product-card-title {
  font-size: 14px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.product-card-price { font-size: 13px; color: var(--text-secondary); }
.product-card-price strong { color: var(--accent); }

.sold-out-badge {
  display: inline-block;
  background: rgba(255,59,48,0.1);
  color: var(--danger);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---- Category pills ---- */
.cat-pills-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.cat-pills-row::-webkit-scrollbar { display: none; }

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.cat-pill:hover {
  background: white;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 2px 12px rgba(52,179,122,0.18);
}
.cat-pill--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 14px rgba(52,179,122,0.30);
}
.cat-pill--active:hover {
  background: var(--accent-hover, #289962);
  border-color: var(--accent-hover, #289962);
  color: #fff;
}
.cat-pill svg { flex-shrink: 0; opacity: 0.75; }
.cat-pill--active svg { opacity: 1; }

@media (max-width: 640px) {
  .cat-pills-row {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .cat-pill { padding: 7px 14px; font-size: 12.5px; }
}

/* ---- Filter/sort bar ---- */
.filter-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 32px 0;
}
.pag-btn {
  min-width: 36px; height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-xs);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.pag-btn:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.pag-btn.active { background: var(--accent); color: white; border-color: transparent; }
.pag-btn-icon { min-width: 36px; padding: 0; }

/* ---- Cart items ---- */
.cart-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: flex-start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 90px; height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-title {
  font-size: 15px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.cart-item-meta { font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }
.cart-item-price { font-size: 14px; font-weight: 600; color: var(--accent); }
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

/* Cart page layout helpers */
.cart-items-card {
  padding: 8px 24px;
}
.cart-img-box {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0,0,0,0.04);
}
.cart-qty-select {
  width: 72px;
  padding: 8px 28px 8px 10px;
}

/* ---- Stock indicator ---- */
.stock-in   { color: var(--success); font-weight: 600; font-size: 13px; }
.stock-low  { color: var(--warning); font-weight: 600; font-size: 13px; }
.stock-out  { color: var(--danger);  font-weight: 600; font-size: 13px; }

/* ---- Order summary panel ---- */
.order-summary-panel {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow-lg);
  padding: 28px;
  position: sticky;
  top: calc(36px + var(--nav-height) + 20px);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.summary-row + .summary-row { border-top: 1px solid rgba(0,0,0,0.05); }
.summary-row.total {
  font-size: 16px; font-weight: 700;
  color: var(--text-primary);
}
.summary-row dd { font-weight: 600; color: var(--text-primary); }

/* ---- Coupon input row ---- */
.coupon-row {
  margin: 12px 0 4px;
}
.coupon-input-wrap {
  display: flex;
  gap: 8px;
}
.coupon-input-wrap input {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  padding: 9px 12px;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 8px;
  font-size: 13px;
  background: rgba(255,255,255,0.7);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.coupon-input-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52,179,122,0.15);
}
.coupon-input-wrap button {
  padding: 9px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.coupon-input-wrap button:hover { background: #2a9464; }
.coupon-input-wrap button:disabled { opacity: 0.6; cursor: default; }
.coupon-feedback {
  font-size: 12px;
  margin-top: 5px;
  min-height: 16px;
}
.coupon-feedback--error { color: #c0392b; }

/* ---- Table ---- */
.glass-table-wrap {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}
.glass-table { width: 100%; border-collapse: collapse; }
.glass-table th {
  text-align: left;
  font-size: 11px; font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 14px 20px;
  background: rgba(0,0,0,0.02);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.glass-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--text-primary);
}
.glass-table tbody tr:last-child td { border-bottom: none; }
.glass-table tbody tr:hover td { background: rgba(0,0,0,0.015); }

/* ---- Status badges ---- */
.status-badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.01em;
}
.s-received       { background: rgba(0,122,255,0.1);    color: #007aff; }
.s-processing     { background: rgba(255,149,0,0.1);    color: #ff9500; }
.s-delivered,
.s-pickedup       { background: rgba(52,199,89,0.1);    color: #34c759; }
.s-outfordelivery { background: rgba(90,200,250,0.18);  color: #0066cc; }
.s-readyforpickup { background: rgba(175,82,222,0.12);  color: #8e44ad; }

/* ---- Age gate modal ---- */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25), 0 16px 32px rgba(0,0,0,0.12);
  padding: 52px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.age-gate-title {
  font-size: 30px; font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.age-gate-body {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.65; margin-bottom: 36px;
}
.age-gate-actions { display: flex; gap: 12px; justify-content: center; margin-bottom: 20px; }
.age-gate-disclaimer { font-size: 12px; color: var(--text-tertiary); }

/* ---- WowToast Notification System ---- */
#wow-toast-container {
  position: fixed;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
/* Desktop: bottom-right, slides in from right */
@media (min-width: 640px) {
  #wow-toast-container { bottom: 28px; right: 24px; align-items: flex-end; }
}
/* Mobile: top-center, slides down from above (like iOS) */
@media (max-width: 639px) {
  #wow-toast-container {
    top: 72px;
    left: 12px;
    right: 12px;
    align-items: stretch;
  }
}
.wow-toast {
  pointer-events: all;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.16), 0 4px 16px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
  cursor: pointer;
  width: 340px;
  will-change: transform, opacity;
  /* Desktop default: hidden off right edge */
  transform: translateX(calc(100% + 28px));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
/* Mobile: hidden above viewport */
@media (max-width: 639px) {
  .wow-toast {
    width: 100%;
    transform: translateY(-120px);
    opacity: 0;
  }
}
/* Visible state */
.wow-toast.wow-toast--visible {
  transform: translateX(0);
  opacity: 1;
}
@media (max-width: 639px) {
  .wow-toast.wow-toast--visible {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Exit: desktop right, mobile up */
.wow-toast.wow-toast--out {
  transform: translateX(calc(100% + 28px));
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4,0,1,1), opacity 0.25s ease;
}
@media (max-width: 639px) {
  .wow-toast.wow-toast--out {
    transform: translateY(-120px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4,0,1,1), opacity 0.25s ease;
  }
}
.wow-toast__body {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 15px 15px 16px;
}
.wow-toast__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wow-toast__icon svg {
  animation: wt-icon-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.12s both;
}
@keyframes wt-icon-pop {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.wow-toast__icon--success { background: rgba(52,179,122,0.13); color: #34b37a; }
.wow-toast__icon--remove  { background: rgba(239,68,68,0.11);  color: #ef4444; }
.wow-toast__icon--update  { background: rgba(99,102,241,0.11); color: #6366f1; }
.wow-toast__icon--error   { background: rgba(239,68,68,0.11);  color: #ef4444; }
.wow-toast__icon--info    { background: rgba(59,130,246,0.11); color: #3b82f6; }
.wow-toast__icon--warning { background: rgba(245,158,11,0.11); color: #f59e0b; }
.wow-toast__content { flex: 1; min-width: 0; }
.wow-toast__title {
  font-size: 14px; font-weight: 700; color: #1a1a2e;
  letter-spacing: -0.01em; line-height: 1.3; margin: 0;
}
.wow-toast__sub {
  font-size: 12px; color: #94a3b8;
  margin: 3px 0 0; line-height: 1.4;
}
.wow-toast__close {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #bbb;
  transition: background 0.15s, color 0.15s;
}
.wow-toast__close:hover { background: rgba(0,0,0,0.1); color: #666; }
.wow-toast__track {
  height: 3px;
  background: rgba(0,0,0,0.05);
}
.wow-toast__bar {
  height: 3px;
  transform-origin: left center;
  animation: wt-drain linear forwards;
}
@keyframes wt-drain {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}
.wow-toast__bar--success { background: linear-gradient(90deg,#34b37a,#68d9a4); }
.wow-toast__bar--remove  { background: linear-gradient(90deg,#ef4444,#f87171); }
.wow-toast__bar--update  { background: linear-gradient(90deg,#6366f1,#a5b4fc); }
.wow-toast__bar--error   { background: linear-gradient(90deg,#ef4444,#f87171); }
.wow-toast__bar--info    { background: linear-gradient(90deg,#3b82f6,#93c5fd); }
.wow-toast__bar--warning { background: linear-gradient(90deg,#f59e0b,#fcd34d); }

/* ---- Profile ---- */
.profile-avatar-wrap {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px; font-weight: 800;
  color: var(--accent);
}
.profile-name {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.profile-meta { font-size: 14px; color: var(--text-secondary); margin-bottom: 2px; }

/* ---- Product detail gallery ---- */
.pdp-gallery { display: flex; flex-direction: column-reverse; gap: 12px; }
.pdp-thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pdp-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  background: rgba(0,0,0,0.03);
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb[aria-selected="true"],
.pdp-thumb:focus { border-color: var(--accent); outline: none; }

.pdp-main-img {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(0,0,0,0.03);
}
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }

/* ---- Featured Products Carousel (Swiper-based) ---- */
.prod-carousel-section { padding: 24px 20px 28px; }
.prod-carousel-title {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  text-align: center; color: var(--text-primary); margin: 0 0 20px;
}
/* track area anchors the arrow buttons relative to the carousel, not the title */
.prod-carousel-track-area { position: relative; }

/* arrow nav buttons */
.prod-nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 14px rgba(0,0,0,0.13);
  cursor: pointer;
  touch-action: manipulation;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  transition: background 0.18s ease, border-color 0.18s ease,
              color 0.18s ease, box-shadow 0.18s ease,
              transform 0.2s cubic-bezier(.34,1.56,.64,1);
}
.prod-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 22px rgba(52,179,122,0.4);
  transform: translateY(-50%) scale(1.1);
}
.prod-nav-prev { left: 4px; }
.prod-nav-next { right: 4px; }
/* smaller on mobile but always visible */
@media (max-width: 479px) {
  .prod-nav-btn { width: 32px; height: 32px; }
  .prod-nav-btn svg { width: 16px; height: 16px; }
}

/* clip wrapper: overflow-x hides ghost slides left/right but overflow-y is visible
   so cards can lift on hover without being cut off */
.prod-swiper-clip { overflow-x: hidden; overflow-y: visible; padding: 0 44px; }
/* let swiper breathe — padding gives cards room to scale/lift without clipping */
.prod-swiper { overflow: visible !important; padding: 10px 0 18px; }
.prod-card-slide { width: 192px; }
@media (min-width: 640px)  { .prod-card-slide { width: 220px; } }
@media (min-width: 1024px) { .prod-card-slide { width: 240px; } }

.prod-card {
  display: block; text-decoration: none;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  user-select: none;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s ease;
}
.prod-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0,0,0,0.2);
}
.prod-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(0,0,0,0.05);
}
.prod-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-card-img-wrap img { transform: scale(1.07); }
.prod-card-no-img { width: 100%; height: 100%; background: var(--glass-strong-bg, rgba(0,0,0,0.08)); }

.prod-card-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px;
}
.prod-card-badge.sold-out { background: rgba(220,38,38,0.88); color: #fff; }
.prod-card-badge.on-sale  { background: rgba(255,59,48,0.92); color: #fff; left: auto; right: 10px; }
.prod-card-badge.is-new   { background: rgba(0,122,255,0.92); color: #fff; }

.prod-card-body { padding: 12px 14px 16px; }
.prod-card-name {
  font-size: 14px; font-weight: 700; color: var(--text-primary);
  margin: 0 0 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.prod-card-price {
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin: 0 0 12px;
}
.prod-card-btn {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 8px 0; border-radius: 99px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.prod-card:hover .prod-card-btn { opacity: 0.88; transform: scale(0.97); }

/* ---- Brands carousel ---- */
.brands-section {
  background: rgba(255,255,255,0.92);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  padding: 24px 0;
  margin: 0 auto;
}
.brands-track { display: flex; align-items: center; will-change: transform; }
.brand-item {
  flex-shrink: 0;
  width: 140px;
  margin-right: 32px;
  opacity: 0.5;
  transition: opacity 0.2s;
  display: flex; align-items: center; justify-content: center;
  user-select: none;
}
.brand-item:hover { opacity: 0.8; }
.brand-item img { max-height: 50px; width: auto; object-fit: contain; }

/* ---- Header stream block ---- */
.stream-header-section {
  text-align: center;
  padding: 24px 24px 8px;
}

/* ---- Divider ---- */
.glass-divider {
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 24px 0;
}

/* ---- Footer ---- */
.glass-footer {
  background: rgba(29,29,31,0.97);
  color: rgba(255,255,255,0.55);
  padding: 60px 24px 40px;
  margin-top: 80px;
}
.glass-footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-nav {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 8px 28px;
  margin-bottom: 36px;
}
.footer-nav-link {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-link:hover { color: #fff; }
.footer-social {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 28px;
}
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-social-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
.footer-copyright {
  text-align: center; font-size: 13px;
  color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.footer-legal {
  text-align: center; font-size: 12px;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  max-width: 700px; margin: 0 auto;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.42s ease forwards; }

@keyframes glassSlideIn {
  from { opacity: 0; transform: translateX(-100%); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes glassSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-100%); }
}
@keyframes fadeSlow {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.14); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.22); }

/* ============================================================
   NAV — DESKTOP BUTTONS
============================================================ */
.nav-link-btn {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.5);
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-link-btn:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.18);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.nav-cta-btn {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, #2dd4bf 100%);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease, filter 0.22s ease;
  box-shadow: 0 4px 14px rgba(52,179,122,0.4);
  white-space: nowrap;
}
.nav-cta-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(52,179,122,0.5);
  filter: brightness(1.06);
}

/* ============================================================
   NAV — HAMBURGER BUTTON
============================================================ */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.18s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(0,0,0,0.06); }

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease,
              width 0.2s ease;
  transform-origin: center;
}
/* When open (Alpine sets aria-expanded="true") */
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   NAV — SCROLL SHRINK STATE
============================================================ */
#mainNav.nav-scrolled {
  padding-top: 0;
  padding-bottom: 0;
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.07);
}
#mainNav.nav-scrolled .glass-nav-inner {
  height: 52px;
}
#mainNav.nav-scrolled .nav-logo img {
  height: 28px;
}

/* ============================================================
   MOBILE BOTTOM NAV TAB BAR
============================================================ */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-top: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 -1px 0 rgba(0,0,0,0.06), 0 -8px 30px rgba(0,0,0,0.07);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  height: calc(60px + env(safe-area-inset-bottom, 0px));
}

.bottom-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(0,0,0,0.35);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.22s ease, transform 0.22s ease;
  padding: 8px 4px 6px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* Active indicator bar at top */
.bottom-tab::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 28px; height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--accent);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.bottom-tab:hover { color: var(--accent); transform: translateY(-1px); }
.bottom-tab-active {
  color: var(--accent) !important;
  transform: translateY(-2px);
}
.bottom-tab-active::before { transform: translateX(-50%) scaleX(1); }
.bottom-tab-active .bottom-tab-icon { transform: scale(1.12); }

.bottom-tab-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.bottom-tab-label {
  font-size: 10px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

/* Cart badge */
.bottom-tab-badge {
  position: absolute;
  top: -4px; right: -7px;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  background: var(--danger);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  line-height: 1;
  border: 2px solid rgba(255,255,255,0.95);
  animation: cartBounce 0.35s cubic-bezier(0.36,0.07,0.19,0.97);
}

/* CTA tab (Sign Up) */
.bottom-tab-cta { color: var(--accent) !important; }

/* Cart special tab — slightly larger icon */
.bottom-tab-cart .bottom-tab-icon svg { width: 24px; height: 24px; }

/* Body padding so content isn't hidden behind bottom nav */
@media (max-width: 1023px) {
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
}

/* ---- Responsive helpers ---- */
@media (max-width: 1023px) { .desktop-only { display: none !important; } }
@media (min-width: 1024px) { .mobile-only  { display: none !important; } }

/* ============================================================
   MOBILE DROPDOWN NAV
============================================================ */
.nav-dropdown {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(250,250,252,0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.06);
  border-radius: 0 0 22px 22px;
  padding: 12px 16px 28px;
  transform-origin: top;
  z-index: 200;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Alpine enter/leave transition classes */
.nav-drop-in  { transition: opacity 0.22s ease, transform 0.26s cubic-bezier(0.16,1,0.3,1); }
.nav-drop-out { transition: opacity 0.16s ease, transform 0.16s ease; }
.nav-drop-hidden { opacity: 0; transform: scaleY(0.93) translateY(-8px); }
.nav-drop-shown  { opacity: 1; transform: scaleY(1)    translateY(0); }

/* Section labels */
.nav-drop-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(0,0,0,0.36);
  padding: 0 4px; margin: 14px 0 6px;
}
.nav-drop-label:first-child { margin-top: 4px; }

/* Link group card */
.nav-drop-group {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* Individual link row */
.nav-drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.12s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 52px;
}
.nav-drop-item:last-child { border-bottom: none; }
.nav-drop-item:active { background: rgba(52,179,122,0.06); }

/* Icon bubble */
.nav-drop-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Label */
.nav-drop-text {
  flex: 1; font-size: 15px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}

/* Chevron */
.nav-drop-arrow { color: rgba(0,0,0,0.22); flex-shrink: 0; }

/* Cart count badge inside the dropdown */
.nav-drop-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; border-radius: 99px;
}

/* Info row at the bottom (About / Contact / Call) */
.nav-drop-info-row {
  display: flex; gap: 8px; margin-top: 14px;
}
.nav-drop-info-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 11px 8px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.12s;
  -webkit-tap-highlight-color: transparent;
}
.nav-drop-info-btn:active { background: rgba(0,0,0,0.08); }
.nav-drop-info-call { color: var(--accent) !important; border-color: rgba(52,179,122,0.2); background: rgba(52,179,122,0.06); }

@media (max-width: 640px) {
  .product-grid        { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .page-section        { padding: 24px 16px; }
  .age-gate-card       { padding: 36px 24px; }
  .hero-title          { font-size: 30px; }
  .cart-item-img       { width: 68px; height: 68px; }
  .order-summary-panel { position: static; padding: 20px 16px; }
  .pdp-thumb-row       { grid-template-columns: repeat(3, 1fr); }

  /* Cart page: contain horizontal overflow */
  .cart-combined-layout { overflow-x: hidden; }
  .cart-items-card { padding: 8px 12px; overflow: hidden; }
  .cart-img-box { width: 70px; height: 70px; }

  /* Cart items: grid layout — columns can never overflow their container */
  .cart-item {
    display: grid;
    grid-template-columns: 28px 70px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    align-items: start;
  }
  .cart-item:last-child { border-bottom: none; }
  .cart-item-check  { grid-column: 1; grid-row: 1; display: flex; align-items: flex-start; padding-top: 4px; }
  .cart-img-box     { grid-column: 2; grid-row: 1; }
  .cart-item-body   { grid-column: 3; grid-row: 1; min-width: 0; overflow: hidden; }

  /* Actions row: spans all 3 columns, uses its own sub-grid */
  .cart-item-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 72px 1fr 1fr;
    gap: 6px;
    margin-top: 10px;
    /* override desktop flex properties */
    flex-direction: unset;
    align-items: unset;
    flex-shrink: unset;
  }
  .cart-qty-select {
    width: 100%;
    padding: 8px 24px 8px 10px;
    font-size: 13px;
  }
  .cart-item-actions .btn-ghost,
  .cart-item-actions .btn-danger {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 8px 6px;
    transform: none !important;
  }

  /* Deal nudge: stack CTA below text on very narrow screens */
  .deal-nudge-top { flex-wrap: wrap; gap: 8px; }
  .deal-nudge-icon { align-self: flex-start; }
  .deal-nudge-cta { margin-left: auto; flex-shrink: 0; }

  /* Tighten smart-pill text on small screens */
  .smart-pill-val  { font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 160px; }
  .smart-pill-sub  { font-size: 10px; }
  .smart-pill-link { font-size: 11px; flex-shrink: 0; }

  /* Coupon row on mobile */
  .coupon-input-wrap { gap: 6px; }
  .coupon-input-wrap button { padding: 9px 12px; font-size: 12px; }

  /* PDP mobile centering */
  .pdp-layout > div:last-child { text-align: center; }
  .pdp-layout > div:last-child h1 { text-align: center; }
  .pdp-layout > div:last-child p  { text-align: center; }
  .pdp-pill-group { justify-content: center; }
  #pdp-price-display { justify-content: center; }
  #pdp-price-display .pdp-price-option { justify-content: center; }
  #pdp-sale-badge { text-align: center; }
  .pdp-layout .glass-divider + div { text-align: left; }

  /* Category block mobile overrides */
  .cat-block { text-align: left; }
  .cat-block__header { text-align: left; }
  .cat-info-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Category Description Blocks  (v=15)
   Animated glass cards per product type: Flower, Edible,
   Concentrate, Vape, Accessory
   ============================================================ */

/* ── Entrance animation ── */
@keyframes catBlockIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes catPillIn {
  from { opacity: 0; transform: translateY(6px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
@keyframes catCardIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes catGlow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.7; }
}

/* ── Base block wrapper ── */
.cat-block {
  margin: 20px 0 8px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  animation: catBlockIn 0.55s cubic-bezier(0.34,1.2,0.64,1) both;
  position: relative;
}

/* Subtle top accent line by category */
.cat-block::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: var(--cat-accent, var(--accent));
  opacity: 0.85;
  animation: catGlow 3s ease-in-out infinite;
}

/* Accent colors per type */
.cat-block--flower      { --cat-accent: linear-gradient(90deg, #34b37a, #6ee7b7); }
.cat-block--edible      { --cat-accent: linear-gradient(90deg, #f59e0b, #fbbf24); }
.cat-block--concentrate { --cat-accent: linear-gradient(90deg, #8b5cf6, #c4b5fd); }
.cat-block--vape        { --cat-accent: linear-gradient(90deg, #3b82f6, #93c5fd); }
.cat-block--accessory   { --cat-accent: linear-gradient(90deg, #64748b, #94a3b8); }

/* ── Compact expandable image at top of card ── */
.cat-block__img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
  transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.cat-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.cat-block__img-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.40);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s, transform 0.15s;
}
.cat-block__img-btn:hover {
  background: rgba(0,0,0,0.60);
  transform: scale(1.08);
}

/* ── Product title injected at top of card ── */
.cat-block__product-title {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.cat-block__new-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,122,255,0.08);
  border: 1px solid rgba(0,122,255,0.22);
  border-radius: 99px;
  padding: 4px 11px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #007aff;
  letter-spacing: 0.04em;
}
.cat-block__h1 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0 0 0;
  line-height: 1.2;
}
.cat-block__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 8px 0 0;
}

/* ── Header row ── */
.cat-block__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 0;
  flex-wrap: wrap;
}

.cat-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  color: #fff;
}
.cat-block--flower      .cat-block__icon { background: linear-gradient(135deg, #34b37a, #6ee7b7); }
.cat-block--edible      .cat-block__icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.cat-block--concentrate .cat-block__icon { background: linear-gradient(135deg, #8b5cf6, #c4b5fd); }
.cat-block--vape        .cat-block__icon { background: linear-gradient(135deg, #3b82f6, #93c5fd); }
.cat-block--accessory   .cat-block__icon { background: linear-gradient(135deg, #64748b, #94a3b8); }

.cat-block__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── Strain type badge ── */
.cat-strain {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: auto;
}
.cat-strain--sativa      { background: rgba(239,68,68,0.14);  color: #b91c1c; border: 1px solid rgba(239,68,68,0.32); }
.cat-strain--indica      { background: rgba(59,130,246,0.14); color: #1d4ed8; border: 1px solid rgba(59,130,246,0.32); }
.cat-strain--hybrid      { background: linear-gradient(135deg, rgba(239,68,68,0.14) 0%, rgba(59,130,246,0.14) 100%); color: #6d28d9; border: 1px solid rgba(139,92,246,0.3); }
.cat-strain--indica_dom  { background: rgba(59,130,246,0.10); color: #1e40af; border: 1px solid rgba(59,130,246,0.22); }
.cat-strain--sativa_dom  { background: rgba(239,68,68,0.10);  color: #991b1b; border: 1px solid rgba(239,68,68,0.22); }
.cat-strain--cbd         { background: rgba(110,231,183,0.2); color: #065f46; border: 1px solid rgba(52,211,153,0.3); }

/* ── Body ── */
.cat-block__body {
  padding: 14px 18px 18px;
}

/* ── Section label ── */
.cat-section {
  margin-bottom: 12px;
}
.cat-section:last-child {
  margin-bottom: 0;
}
.cat-section__label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 8px;
}

/* ── Pill tags ── */
.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  animation: catPillIn 0.4s cubic-bezier(0.34,1.4,0.64,1) both;
}
.cat-pill:nth-child(1)  { animation-delay: 0.05s; }
.cat-pill:nth-child(2)  { animation-delay: 0.10s; }
.cat-pill:nth-child(3)  { animation-delay: 0.15s; }
.cat-pill:nth-child(4)  { animation-delay: 0.20s; }
.cat-pill:nth-child(5)  { animation-delay: 0.25s; }
.cat-pill:nth-child(6)  { animation-delay: 0.30s; }
.cat-pill:nth-child(7)  { animation-delay: 0.35s; }
.cat-pill:nth-child(8)  { animation-delay: 0.40s; }

/* Effect pills — green */
.cat-pill--effect {
  background: rgba(52,179,122,0.12);
  color: #166534;
  border: 1px solid rgba(52,179,122,0.28);
}
.cat-pill--effect:hover {
  background: rgba(52,179,122,0.2);
}

/* Aroma pills — amber/warm */
.cat-pill--aroma {
  background: rgba(251,146,60,0.12);
  color: #9a3412;
  border: 1px solid rgba(251,146,60,0.28);
}
.cat-pill--aroma:hover {
  background: rgba(251,146,60,0.2);
}

/* Flavor pills — berry/pink */
.cat-pill--flavor {
  background: rgba(244,114,182,0.12);
  color: #9d174d;
  border: 1px solid rgba(244,114,182,0.28);
}
.cat-pill--flavor:hover {
  background: rgba(244,114,182,0.2);
}

/* ── THC % badge ── */
.cat-thc-badge {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #166534;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  padding: 4px 12px;
}

/* ── Terpene dots ── */
.cat-terpenes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-terpene {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(139,92,246,0.1);
  color: #5b21b6;
  border: 1px solid rgba(139,92,246,0.22);
  opacity: 0;
  animation: catPillIn 0.4s cubic-bezier(0.34,1.4,0.64,1) both;
}
.cat-terpene::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  flex-shrink: 0;
}
.cat-terpene:nth-child(1) { animation-delay: 0.05s; }
.cat-terpene:nth-child(2) { animation-delay: 0.10s; }
.cat-terpene:nth-child(3) { animation-delay: 0.15s; }
.cat-terpene:nth-child(4) { animation-delay: 0.20s; }
.cat-terpene:nth-child(5) { animation-delay: 0.25s; }
.cat-terpene:nth-child(6) { animation-delay: 0.30s; }

/* ── Info card grid (Edible / Concentrate / Vape) ── */
.cat-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cat-info-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  animation: catCardIn 0.45s cubic-bezier(0.34,1.2,0.64,1) both;
}
.cat-info-card:nth-child(1) { animation-delay: 0.08s; }
.cat-info-card:nth-child(2) { animation-delay: 0.14s; }
.cat-info-card:nth-child(3) { animation-delay: 0.20s; }

.cat-info-card > svg {
  color: var(--accent);
  flex-shrink: 0;
}
.cat-info-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  line-height: 1;
}
.cat-info-card__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

/* ── Ingredients text ── */
.cat-ingredients {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  padding: 10px 14px;
  background: rgba(0,0,0,0.025);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.05);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .cat-info-grid { grid-template-columns: 1fr 1fr; }
  .cat-block__header { padding: 12px 14px 0; }
  .cat-block__body   { padding: 12px 14px 16px; }
  .cat-block__title  { font-size: 11px; }
}
