/* ============================================================
   MARIS — Design System
   Art Nosirov Studio · 2026
   ============================================================ */

/* ── Fonts ── */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces_72pt-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces_72pt-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces_72pt-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces_72pt-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces_72pt-ThinItalic.ttf') format('truetype');
  font-weight: 100; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'MonterayHeritage';
  src: url('../fonts/MonterayHeritage.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ── Tokens ── */
:root {
  --blue:       #4878B8;
  --blue-dark:  #1B3A5C;
  --blue-mid:   #2D5F96;
  --red:        #C13B3B;
  --gold:       #C8A553;
  --cream:      #F5EDD8;
  --off-white:  #F8F5EF;
  --text:       #1A1A1A;
  --text-mid:   #444444;
  --text-light: #888888;
  --white:      #FFFFFF;
  --border:     rgba(0,0,0,0.08);

  /* Product colours */
  --col-tail-off:  #C13B3B;   /* red */
  --col-tail-on:   #D4732A;   /* orange */
  --col-hlso:      #3A6EA8;   /* blue */
  --col-cocktail:  #C8A553;   /* gold */
  --col-tiger:     #2D6B4A;   /* green */

  --radius:   8px;
  --radius-lg:16px;
  --shadow:   0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:0 4px 32px rgba(0,0,0,0.12);

  --max-w: 1240px;
  --px:    clamp(16px, 5vw, 60px);
  --nav-h: 72px;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
}
.display {
  font-family: 'MonterayHeritage', serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  color: var(--white);
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.6);
  letter-spacing: -0.01em;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
}
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover { background: #a83232; }
.btn--outline-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn--outline-dark {
  border: 1.5px solid var(--text);
  color: var(--text);
}
.btn--outline-dark:hover { background: var(--text); color: var(--white); }
.btn--ghost-red {
  color: var(--red);
  padding: 0;
  font-weight: 500;
}
.btn--ghost-red::after { content: ' →'; }
.btn--ghost-red:hover { opacity: 0.75; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: var(--blue-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__cta { flex-shrink: 0; }
/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}
.lang-btn.active,
.lang-btn:hover {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--blue-dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-style: italic;
}

/* ── Footer ── */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer__wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--blue), var(--gold));
  opacity: 0.6;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand .nav__logo { margin-bottom: 12px; }
.footer__brand p { font-size: 13px; line-height: 1.7; max-width: 240px; }
.footer__col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer__certs {
  display: flex;
  gap: 12px;
}
.cert-badge {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--blue-dark);
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(72,120,184,0.25) 0%, transparent 60%),
    url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,92,0.6) 0%, rgba(27,58,92,0.3) 60%, transparent 100%);
}
.hero__content {
  position: relative;
  max-width: 600px;
}
.hero__eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
}
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Section header ── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

/* ── Product card ── */
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card__img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
}
.product-card__img img {
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
  transition: transform 0.3s;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__coming {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}
.product-card__body {
  padding: 20px 24px 24px;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.product-card__name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}
.product-card__size {
  font-size: 13px;
  color: var(--text-mid);
}

/* ── Products grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Filter tabs ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

/* ── Recipe card ── */
.recipe-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.recipe-card__img {
  aspect-ratio: 16/10;
  background: var(--cream);
  overflow: hidden;
}
.recipe-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.recipe-card:hover .recipe-card__img img { transform: scale(1.05); }
.recipe-card__body { padding: 20px 24px 24px; }
.recipe-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.recipe-card__name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.25;
}
.recipe-card__meta {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  gap: 16px;
}

/* ── Recipes grid ── */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Stat block ── */
.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat__num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1;
}
.stat__label {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 4px;
}

/* ── Cert badges ── */
.certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cert {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-mid);
}

/* ── Retailer card ── */
.retailer-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.retailer-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.retailer-card img {
  max-height: 40px;
  max-width: 140px;
  width: 100%;
  object-fit: contain;
  overflow: hidden;
}
.retailer-card {
  overflow: hidden;
}
.retailer-detail__logo img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  overflow: hidden;
}
.retailer-card span {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-dark);
}

/* ── Map ── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: var(--cream);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── CTA band ── */
.cta-band {
  background: var(--red);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 12px;
}
.cta-band p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 28px;
}
.btn--white {
  background: var(--white);
  color: var(--red);
  font-weight: 600;
}
.btn--white:hover { background: var(--cream); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--blue-dark);
  padding: 120px 0 64px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(72,120,184,0.35) 0%, transparent 65%);
}
.page-hero__content { position: relative; }
.page-hero__eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 520px;
  line-height: 1.65;
}

/* ── Product detail ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-detail__visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.product-detail__visual img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.2));
}
.product-detail__info { display: flex; flex-direction: column; gap: 24px; }
.product-detail__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.product-detail__name {
  font-size: clamp(32px, 4vw, 52px);
  font-style: italic;
}
.product-detail__specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.spec-row dt { color: var(--text-mid); }
.spec-row dd { font-weight: 500; }

/* ── Recipe detail ── */
.recipe-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}
.recipe-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
}
.recipe-ingredients {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  align-self: start;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.recipe-ingredients h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.ingredient-list { display: flex; flex-direction: column; gap: 10px; }
.ingredient {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.ingredient:last-child { border-bottom: none; }
.ingredient__amount { font-weight: 500; color: var(--blue-dark); }
.recipe-steps { counter-reset: steps; }
.step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  counter-increment: steps;
}
.step::before {
  content: counter(steps);
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  min-width: 40px;
  flex-shrink: 0;
}
.step p { font-size: 16px; line-height: 1.7; padding-top: 4px; }

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.contact-item a, .contact-item p {
  font-size: 20px;
  font-family: 'Fraunces', serif;
  color: var(--blue-dark);
}
.form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-mid); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.4; }

/* ── Principles ── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.principle {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
}
.principle__icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.principle h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.principle p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── Where to buy ── */
.retailers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
  .recipe-layout { grid-template-columns: 1fr; }
  .recipe-ingredients { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 56px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .retailers-grid { grid-template-columns: 1fr; }
  .stats { gap: 24px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .recipe-hero-img { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}

/* ── Recipe video embed ── */
.recipe-video {
  margin-bottom: 48px;
}
.recipe-video__wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-dark);
}
.recipe-video__wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Hero background images ── */
.page-hero { background-size: cover; background-position: center; }

/* ── Nav logo SVG ── */
.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);  /* keep it white on any background */
}

/* ── Footer logo ── */
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 12px;
}
.footer__emblem  { height: 48px; width: auto; }
.footer__wordmark { height: 28px; width: auto; filter: brightness(0) invert(1); }

/* ── Product card image — bigger ── */
