/* PinkBiju Landing Pages — Estilo compartilhado
   Identidade visual: rosa vibrante característico + script font para a marca.
   Mobile-first. */

:root {
  --pink: #E91E63;
  --pink-deep: #C2185B;
  --pink-soft: #F8BBD0;
  --pink-tint: #FCE4EC;
  --pink-bg: #FFF5F8;
  --gold: #D4AF37;
  --ink: #2D1B2E;
  --ink-soft: #5A4A5C;
  --border: #F5E0E8;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --shadow-sm: 0 2px 8px rgba(233, 30, 99, 0.08);
  --shadow-md: 0 8px 24px rgba(233, 30, 99, 0.15);
  --shadow-lg: 0 14px 40px rgba(233, 30, 99, 0.2);
  --radius: 14px;
  --font-base: 'Noto Serif Gujarati', Georgia, 'Times New Roman', serif;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font-family: inherit; }

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

a { color: var(--pink-deep); text-decoration: none; }
a:hover { color: var(--pink); }

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: var(--font-base);
  font-size: 30px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand small {
  display: block;
  font-family: var(--font-base);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}

.header-cta {
  background: var(--whatsapp);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, background 0.2s;
}
.header-cta:hover { background: var(--whatsapp-dark); color: var(--white); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  /* fallback se o vídeo não carregar */
  background: linear-gradient(130deg, #1C0630 0%, #5E0E3A 28%, #B5174D 62%, #C98A20 100%);
  padding: 120px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: center;
  width: 100%;
}

/* Vídeo de fundo */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Overlay gradiente: escurece levemente para garantir legibilidade do texto */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 6, 48, 0.62) 0%,
    rgba(94, 14, 58, 0.45) 50%,
    rgba(180, 30, 80, 0.30) 100%
  );
  z-index: 1;
}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlowPulse 7s ease-in-out infinite alternate;
  z-index: 2;
}
.hero::before {
  width: 600px; height: 600px; top: -250px; left: -180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 65%);
}
.hero::after {
  width: 700px; height: 700px; bottom: -320px; right: -220px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.25), transparent 65%);
  animation-delay: -3.5s;
}

@keyframes heroGlowPulse {
  0%   { opacity: 0.5; transform: scale(0.88); }
  100% { opacity: 1;   transform: scale(1.12); }
}

.hero .container { position: relative; z-index: 4; }

/* Particle layer */
.hero-particles-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.85);
  box-shadow: 0 0 8px 3px rgba(212, 175, 55, 0.45);
  animation: particleFloat var(--dur, 4s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes particleFloat {
  0%   { opacity: 0;   transform: translateY(15px)  scale(0.15) rotate(0deg); }
  15%  { opacity: 1; }
  50%  { opacity: 0.9; transform: translateY(-50px) scale(1)    rotate(180deg); }
  85%  { opacity: 0.7; }
  100% { opacity: 0;   transform: translateY(-95px) scale(0.2)  rotate(360deg); }
}

/* Star/cross sparkle variant */
.hero-particle.star {
  background: transparent;
  box-shadow: none;
}
.hero-particle.star::before,
.hero-particle.star::after {
  content: '';
  position: absolute;
  background: rgba(212, 175, 55, 0.95);
  border-radius: 2px;
}
.hero-particle.star::before { width: 100%; height: 30%; top: 35%; left: 0; }
.hero-particle.star::after  { width: 30%; height: 100%; top: 0; left: 35%; }

/* Diamond sparkle variant */
.hero-particle.diamond {
  border-radius: 2px;
  transform-origin: center;
  background: rgba(255, 230, 150, 0.9);
  box-shadow: 0 0 10px 4px rgba(255, 215, 0, 0.5);
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(233, 30, 99, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.4);
}

.hero h1 {
  font-family: var(--font-base);
  font-size: clamp(32px, 5.5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  margin-bottom: 18px;
}

.hero h1 .accent {
  font-family: var(--font-base);
  color: #FFD700;
  font-weight: inherit;
  display: inline-block;
  text-shadow: 0 2px 16px rgba(212, 175, 55, 0.6);
}

.hero p {
  font-size: clamp(15px, 1.7vw, 19px);
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  max-width: 620px;
  margin: 0 auto 30px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, box-shadow 0.2s;
}
.hero-cta:hover { background: var(--whatsapp-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero-cta::before {
  content: '';
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.711.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/></svg>") center/contain no-repeat;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 130px;
}
.trust-item strong {
  font-family: var(--font-base);
  font-size: 22px;
  color: var(--pink);
  font-weight: 700;
}
.trust-item span {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== SECTIONS ===== */
section { padding: 70px 0; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-family: var(--font-base);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}

.section-title h2 .accent {
  font-family: var(--font-base);
  color: var(--pink);
  font-weight: inherit;
}

.section-title p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

/* Grade das coleções da home: 4 colunas no desktop, 2 em telas menores —
   nunca deixa um card sobrando sozinho na última linha. */
.start-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) {
  .start-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-soft);
}

.product-card .img {
  aspect-ratio: 1 / 1;
  background: var(--pink-bg);
  position: relative;
  overflow: hidden;
}

.product-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .img img { transform: scale(1.05); }

.product-card .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.product-card .body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card h3 {
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  min-height: 39px;
}

.product-card .price {
  font-family: var(--font-base);
  font-size: 22px;
  font-weight: 700;
  color: var(--pink);
}
.product-card .price small {
  font-family: var(--font-base);
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 400;
  display: block;
}

.product-card .cta {
  margin-top: auto;
  background: var(--whatsapp);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.product-card .cta:hover { background: var(--whatsapp-dark); color: var(--white); }

/* ===== UPSELL / OFFER BOX ===== */
.offer-box {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: var(--white);
  padding: 50px 30px;
  border-radius: var(--radius);
  text-align: center;
  margin: 50px 0;
  box-shadow: var(--shadow-md);
}

.offer-box h3 {
  font-family: var(--font-base);
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 14px;
}

.offer-box h3 .accent {
  font-family: var(--font-base);
  color: var(--pink-tint);
  font-weight: inherit;
}

.offer-box p {
  font-size: 16px;
  opacity: 0.95;
  max-width: 520px;
  margin: 0 auto 26px;
}

.offer-box .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--pink-deep);
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s;
}
.offer-box .cta:hover { transform: translateY(-2px); color: var(--pink-deep); }

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--pink-bg);
  text-align: center;
  padding: 70px 20px;
}

.cta-final h2 {
  font-family: var(--font-base);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
  color: var(--ink);
}

.cta-final h2 .accent {
  font-family: var(--font-base);
  color: var(--pink);
  font-weight: inherit;
}

.cta-final p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 30px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: #BFA8C4;
  padding: 50px 0 28px;
  font-size: 14px;
}

.site-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.site-footer .container > div {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer h4 {
  font-family: var(--font-base);
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.site-footer p, .site-footer a {
  color: #BFA8C4;
  margin-bottom: 6px;
  display: block;
}
.site-footer a:hover { color: var(--white); }

.site-footer .copyright {
  border-top: 1px solid #3D2840;
  margin-top: 30px;
  padding-top: 22px;
  text-align: center;
  grid-column: 1 / -1;
  color: #8A7090;
  font-size: 12px;
}

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--whatsapp);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.08); color: var(--white); }
.float-wa svg { width: 32px; height: 32px; }

/* ===== BANNER DE COOKIES (LGPD) ===== */
.consent-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  z-index: 200;
}

.consent-texto {
  flex: 1 1 320px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.consent-texto a { color: var(--pink-deep); font-weight: 600; text-decoration: underline; }

.consent-botoes { display: flex; gap: 10px; flex: 0 0 auto; }

.consent-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--pink);
  cursor: pointer;
  transition: opacity 0.2s;
}
.consent-btn:hover { opacity: 0.85; }
.consent-btn--aceitar { background: var(--pink); color: var(--white); }
.consent-btn--recusar { background: transparent; color: var(--pink-deep); }

/* o botão flutuante do WhatsApp sobe enquanto o banner estiver aberto */
body.consent-aberto .float-wa { bottom: 130px; }

@media (max-width: 520px) {
  .consent-banner { flex-direction: column; align-items: stretch; }
  .consent-botoes { justify-content: stretch; }
  .consent-btn { flex: 1; }
  body.consent-aberto .float-wa { bottom: 175px; }
}

/* ===== PÁGINA DE TEXTO (privacidade) ===== */
.texto-legal { padding: 60px 0 70px; }
.texto-legal .container { max-width: 760px; }
.texto-legal h1 {
  font-family: var(--font-base);
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 8px;
}
.texto-legal .atualizado { font-size: 13px; color: var(--ink-soft); margin-bottom: 32px; }
.texto-legal h2 {
  font-family: var(--font-base);
  font-size: 20px;
  color: var(--ink);
  margin: 32px 0 10px;
}
.texto-legal p, .texto-legal li { font-size: 15px; line-height: 1.75; color: var(--ink-soft); }
.texto-legal p { margin-bottom: 12px; }
.texto-legal ul { margin: 0 0 12px 20px; }
.texto-legal li { margin-bottom: 6px; }
.texto-legal a { color: var(--pink-deep); font-weight: 600; }

/* ===== FAQ ===== */
.faq-section { background: var(--white); padding: 70px 0; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--pink-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-sm);
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-family: var(--font-base);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.35;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--pink-deep); }

.faq-item > summary::after {
  content: "+";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--pink-soft);
  color: var(--pink);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s;
}
.faq-item[open] > summary::after {
  content: "−";
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.faq-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  padding: 0 20px 18px;
}

/* ===== TEAM SECTION ===== */
.team-section { background: var(--pink-bg); padding: 70px 0; }

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-base);
  font-size: 42px;
  color: var(--white);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* foto como <img> (e não background) para permitir loading="lazy" */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
}


.team-card h4 {
  font-family: var(--font-base);
  font-size: 17px;
  color: var(--ink);
  margin: 0;
}

.team-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== TEMA ARRAIÁ (overrides) ===== */

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero { padding: 60px 0 50px; min-height: 420px; }
  section { padding: 50px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card .body { padding: 12px; }
  .product-card h3 { font-size: 13px; min-height: 34px; }
  .product-card .price { font-size: 18px; }
  .product-card .cta { padding: 8px 12px; font-size: 12px; }
  .trust-item strong { font-size: 18px; }
  .trust-item span { font-size: 10px; }
  .header-cta span.hide-mobile { display: none; }
  .brand { font-size: 26px; }
  .brand small { font-size: 9px; letter-spacing: 2px; }
}

/* ===== Escolhidos da Semana ===== */
.weekly-pick { background: linear-gradient(135deg, var(--pink-bg) 0%, var(--pink-tint) 100%); }
.weekly-card {
  display: flex; flex-wrap: wrap; align-items: center; gap: 32px;
  background: var(--white); border-radius: 24px; padding: 24px;
  box-shadow: var(--shadow-lg); max-width: 880px; margin: 0 auto;
  border: 1px solid var(--pink-soft);
}
.weekly-img { position: relative; flex: 1 1 280px; min-width: 250px; }
.weekly-img img { width: 100%; border-radius: 16px; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.weekly-badge {
  position: absolute; top: 14px; left: 14px; background: var(--pink); color: var(--white);
  font-weight: 800; font-size: 15px; padding: 8px 14px; border-radius: 999px;
  letter-spacing: .5px; box-shadow: 0 4px 14px rgba(233, 30, 99, .45);
}
.weekly-info { flex: 1 1 300px; }
.weekly-eyebrow {
  display: inline-block; color: var(--pink-deep); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.weekly-info h3 { font-size: 26px; color: var(--ink); margin: 0 0 10px; }
.weekly-info > p { color: var(--ink-soft); font-size: 15px; margin-bottom: 18px; }
.weekly-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.price-old { color: var(--ink-soft); text-decoration: line-through; font-size: 18px; }
.price-new { color: var(--pink); font-weight: 800; font-size: 32px; }
.weekly-note { display: block; margin-top: 12px; font-size: 12px; color: var(--ink-soft); }
@media (max-width: 600px) {
  .weekly-card { padding: 16px; }
  .weekly-info h3 { font-size: 22px; }
  .price-new { font-size: 28px; }
}
