/* === KATALOG PRODUK DIGITAL — VIBRANT PREMIUM EDITION === */
/* Semua warna, tipografi, spacing didefinisikan di :root */

:root {
  /* === WARNA VIBRANT PREMIUM === */
  --color-primary:       #0f172a; /* Slate 900 - Text Utama */
  --color-secondary:     #64748b; /* Slate 500 - Text Sekunder */
  --color-tertiary:      #94a3b8; /* Slate 400 - Text Tersier */
  
  /* Aksen Utama (Violet/Pink modern gradient look) */
  --color-accent:        #8b5cf6; /* Violet 500 */
  --color-accent-hover:  #7c3aed; /* Violet 600 */
  
  --color-success:       #10b981; /* Emerald 500 */
  --color-warning:       #f59e0b; /* Amber 500 */
  --color-danger:        #ef4444; /* Red 500 */

  --color-bg-primary:    #ffffff;
  --color-bg-secondary:  #f8fafc; /* Slate 50 */
  --color-bg-tertiary:   #f1f5f9; /* Slate 100 */
  
  --color-border:        #e2e8f0;
  --color-border-hover:  #cbd5e1;

  /* === TIPOGRAFI === */
  --font-display:  "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-text:     "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --text-hero:     clamp(3.5rem, 8vw, 5.5rem);
  --text-section:  clamp(2rem, 5vw, 3rem);
  --text-title:    1.25rem;
  --text-body:     1.0625rem;
  --text-caption:  0.875rem;
  --text-micro:    0.75rem;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 800;

  /* === SPACING & LAYOUT === */
  --space-xs:   6px;
  --space-sm:   12px;
  --space-md:   20px;
  --space-lg:   32px;
  --space-xl:   48px;
  --space-2xl:  64px;
  --space-3xl:  100px;

  --max-width:        1280px;
  --max-width-narrow: 980px;
  --section-px:       clamp(1.5rem, 5vw, 3rem);
  
  --card-radius:      24px;
  --button-radius:    999px;
  --badge-radius:     999px;

  /* === ANIMASI & EFEK === */
  --transition-fast:  0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
  --shadow-card: 0 10px 30px rgba(139, 92, 246, 0.08); /* Colored shadow */
  --shadow-hover: 0 20px 40px rgba(139, 92, 246, 0.15); /* Colorful glow hover */
  --shadow-modal: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* IMPORT GOOGLE FONTS UNTUK TAMPILAN LEBIH CANTIK */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ==============================
   RESET & BASE
   ============================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-text);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: 1.6;
  color: var(--color-primary);
  background-color: var(--color-bg-secondary);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 40%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==============================
   NAVBAR (GLASSMORPHISM CANTIK)
   ============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  padding-inline: var(--section-px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(200%) blur(20px);
  -webkit-backdrop-filter: saturate(200%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-base);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-title);
  color: var(--color-primary);
}

.navbar__brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.navbar__search {
  flex: 0 1 400px;
  position: relative;
  margin: 0 var(--space-md);
}

.navbar__search-input {
  width: 100%;
  height: 44px;
  padding: 0 var(--space-md) 0 44px;
  border: 2px solid transparent;
  border-radius: var(--button-radius);
  background: var(--color-bg-tertiary);
  font-family: var(--font-text);
  font-size: var(--text-caption);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.navbar__search-input:focus {
  outline: none;
  background: var(--color-bg-primary);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.navbar__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-secondary);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__action-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color-secondary);
  background: var(--color-bg-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.navbar__action-link:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 92, 246, 0.15);
}

/* ==============================
   HERO SECTION (VIBRANT & COLORFUL)
   ============================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 70px;
  background: #0f172a;
}

/* Efek Mesh Gradient Warna-warni di Background Hero */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0f172a;
  background-image: 
    radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.5) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.5) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.5) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(16, 185, 129, 0.3) 0px, transparent 50%);
  filter: blur(60px);
  opacity: 0.8;
  animation: bg-pulse 10s ease-in-out infinite alternate;
}

@keyframes bg-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.8));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) var(--section-px);
  max-width: 1000px;
}

.hero__store-name {
  font-size: var(--text-hero);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-md);
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  line-height: 1.1;
}

/* Gradient Text untuk Tagline */
.hero__tagline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-lg);
  background: linear-gradient(to right, #a78bfa, #f472b6, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero__product-count {
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-2xl);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

/* BUTTONS BERWARNA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--button-radius);
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  font-family: var(--font-display);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.btn:active { transform: scale(0.95); }

.btn--primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.5);
  transform: translateY(-3px);
}

.btn--outline-white {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn--wa {
  background: #10b981; /* Warna hijau WA yang segar */
  color: #fff;
  width: 100%;
  padding: 14px;
  font-size: var(--text-body);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
.btn--wa:hover {
  background: #059669;
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}
.btn--wa:disabled {
  background: var(--color-border);
  color: var(--color-secondary);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ==============================
   FILTER & SORT (COLORFUL PILLS)
   ============================== */
.filter-bar {
  position: sticky;
  top: 70px;
  z-index: 900;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  padding: 20px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.filter-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.filter-bar__tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.filter-bar__tabs::-webkit-scrollbar { display: none; }

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--button-radius);
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
  font-family: var(--font-display);
  color: var(--color-secondary);
  background: var(--color-bg-primary);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.filter-tab:hover {
  color: var(--color-accent);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}
.filter-tab--active {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}
.filter-tab--active:hover {
  color: #fff;
  border-color: transparent;
}

.filter-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.filter-bar__sort-select {
  appearance: none;
  padding: 10px 40px 10px 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--button-radius);
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
  font-family: var(--font-display);
  color: var(--color-primary);
  background: var(--color-bg-primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.filter-bar__sort-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.filter-bar__count {
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
  color: var(--color-accent);
  background: rgba(139, 92, 246, 0.1);
  padding: 6px 12px;
  border-radius: 12px;
}

/* ==============================
   PRODUCT GRID & COLORFUL CARDS
   ============================== */
.products {
  padding: var(--space-xl) 0 100px;
  background: var(--color-bg-secondary);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--color-bg-primary);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Colorful Glow on Hover */
.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: var(--shadow-hover);
}

.product-card--habis {
  opacity: 0.6;
}
.product-card--habis:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  padding: var(--space-xl);
  background: radial-gradient(circle, var(--color-bg-primary) 0%, var(--color-bg-tertiary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
  filter: drop-shadow(0 20px 25px rgba(0,0,0,0.15));
}

.product-card:hover .product-card__image {
  transform: scale(1.1) rotate(2deg);
}

/* COLORFUL BADGES */
.product-card__badge {
  position: absolute;
  top: 20px; left: 20px;
  padding: 8px 16px;
  border-radius: var(--badge-radius);
  font-size: 12px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.badge--terlaris { 
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%); 
  color: #fff; 
}
.badge--baru { 
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); 
  color: #fff; 
}
.badge--diskon { 
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%); 
  color: #fff; 
}

.product-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #ffffff;
}

.product-card__name {
  font-size: 1.35rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}
.product-card:hover .product-card__name {
  color: var(--color-accent);
}

.product-card__desc {
  font-size: var(--text-caption);
  color: var(--color-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-card__meta {
  font-size: 12px;
  color: var(--color-tertiary);
  font-weight: var(--weight-semibold);
  margin-bottom: 24px;
  background: var(--color-bg-tertiary);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: auto;
}

.product-card__price {
  font-size: 1.75rem;
  font-weight: var(--weight-bold);
  font-family: var(--font-display);
  background: linear-gradient(135deg, #0f172a 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-card__price-original {
  font-size: var(--text-caption);
  color: var(--color-tertiary);
  text-decoration: line-through;
  font-weight: var(--weight-semibold);
}

/* ==============================
   EMPTY STATE
   ============================== */
.empty-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 0;
}
.empty-state--visible { display: flex; }
.empty-state__icon { 
  width: 100px; height: 100px; 
  color: var(--color-accent); 
  margin-bottom: 24px; 
  opacity: 0.5;
}
.empty-state__title { font-size: var(--text-section); font-weight: var(--weight-bold); margin-bottom: 12px; color: var(--color-primary); }
.empty-state__text { font-size: var(--text-title); color: var(--color-secondary); margin-bottom: 32px; }

/* ==============================
   INFO STRIP (COLORFUL & FUN)
   ============================== */
.info-strip {
  padding: 100px 0;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
}
.info-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.info-strip__item {
  padding: 40px;
  border-radius: 32px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.info-strip__item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(139, 92, 246, 0.2);
}
.info-strip__icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  color: var(--color-accent);
}
.info-strip__item:nth-child(2) .info-strip__icon { color: #ec4899; }
.info-strip__item:nth-child(3) .info-strip__icon { color: #10b981; }

.info-strip__title { font-size: var(--text-title); font-family: var(--font-display); font-weight: var(--weight-bold); margin-bottom: 12px; }
.info-strip__text { color: var(--color-secondary); font-size: var(--text-body); }

/* ==============================
   FOOTER CTA (GRADIENT)
   ============================== */
.cta-footer {
  padding: 120px 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Dekorasi shape di footer */
.cta-footer::before {
  content: ''; position: absolute; top: -50px; left: -50px; width: 300px; height: 300px;
  background: rgba(255,255,255,0.1); border-radius: 50%; blur(40px);
}
.cta-footer::after {
  content: ''; position: absolute; bottom: -100px; right: -50px; width: 400px; height: 400px;
  background: rgba(255,255,255,0.1); border-radius: 50%; blur(60px);
}
.cta-footer .container { position: relative; z-index: 2; }
.cta-footer__heading { font-size: var(--text-section); font-weight: var(--weight-bold); margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.cta-footer__sub { font-size: var(--text-title); font-weight: var(--weight-medium); opacity: 0.9; margin-bottom: 48px; }
.cta-footer__actions { display: flex; justify-content: center; gap: 20px; }
.cta-footer .btn--white { color: #8b5cf6; font-weight: var(--weight-bold); }

.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 40px 0;
  font-size: var(--text-caption);
}
.site-footer__link { color: #fff; font-weight: var(--weight-bold); transition: color 0.3s; }
.site-footer__link:hover { color: #ec4899; }

/* ==============================
   QUICK VIEW MODAL (CANTIK)
   ============================== */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition-base);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
}
.modal__content {
  position: relative;
  background: var(--color-bg-primary);
  border-radius: 40px;
  width: 100%; max-width: 1000px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-modal);
  transform: scale(0.95) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 48px;
  border: 1px solid var(--color-border);
}
.modal.is-open .modal__content { transform: scale(1) translateY(0); }
.modal__close {
  position: absolute; top: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.modal__close:hover { background: #ffe4e6; color: #e11d48; transform: rotate(90deg); }

.modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.modal__image-wrap img { 
  width: 100%; border-radius: 32px; 
  background: radial-gradient(circle, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%); 
  padding: 40px; 
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}
.modal__title { font-size: 2.75rem; font-family: var(--font-display); font-weight: var(--weight-bold); line-height: 1.1; margin-bottom: 20px; color: var(--color-primary); }
.modal__price { 
  font-size: 2rem; font-weight: var(--weight-bold); 
  background: linear-gradient(135deg, #0f172a 0%, #8b5cf6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
}
.modal__price-wrap { display: flex; align-items: baseline; gap: 16px; margin-bottom: 30px; }
.modal__desc { font-size: 1.1rem; color: var(--color-secondary); margin-bottom: 40px; line-height: 1.7; }
.modal__meta-list {
  background: var(--color-bg-secondary);
  padding: 24px; border-radius: 20px;
  border: 1px solid var(--color-border);
}
.modal__meta-list li { 
  padding: 12px 0; border-bottom: 1px dashed var(--color-border); 
  display: flex; justify-content: space-between; font-size: var(--text-body); 
  color: var(--color-secondary);
}
.modal__meta-list li:last-child { border-bottom: none; }
.modal__meta-list li span { font-weight: var(--weight-bold); color: var(--color-primary); }
.modal__actions { margin-top: 40px; }

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero { min-height: 500px; }
  .modal__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .filter-bar__inner { flex-direction: column; align-items: stretch; }
  .filter-bar__tabs { overflow-x: auto; padding-bottom: 12px; }
  .info-strip__grid { grid-template-columns: 1fr; }
  .cta-footer__actions { flex-direction: column; }
  .modal__content { padding: 32px 24px; }
  .product-card__body { padding: 20px; }
}
