@charset "UTF-8";

/* ==========================================================================
   Al Panda Chocolate — alpandastore.com
   Written RTL-first. Every directional value uses a logical property, so the
   English LTR pass is dir="ltr" on <html> and nothing else.
   ========================================================================== */

/* ---------------------------------------------------------------- fonts */

@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Black.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ---------------------------------------------------------------- tokens */

:root {
  /* Brand, sampled from the app's app_colors.dart */
  --yellow:        #F7BE10;
  --yellow-deep:   #E0A400;
  --yellow-soft:   #FEF6DE;
  --yellow-wash:   #FFFBEF;
  --navy:          #1B2A36;
  --navy-soft:     #314454;

  /* Yellow is unreadable as text on white — this is the readable member of the family */
  --gold-ink:      #7A5600;

  --ink:           #16202A;
  --ink-2:         #55636F;
  --ink-3:         #8A96A1;

  --paper:         #FFFFFF;
  --paper-2:       #FAF9F6;
  --paper-3:       #F4F2ED;
  --line:          #E8E5DD;
  --line-2:        #D8D4C9;

  --ok:            #1D8F5A;
  --danger:        #D94B2B;
  --wa:            #25D366;
  --wa-deep:       #1EB855;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(22,32,42,.05);
  --shadow:    0 2px 4px rgba(22,32,42,.04), 0 12px 28px -18px rgba(22,32,42,.28);
  --shadow-lg: 0 4px 8px rgba(22,32,42,.05), 0 28px 60px -30px rgba(22,32,42,.36);

  --shell: 1180px;
  --head-h: 68px;
}

/* ---------------------------------------------------------------- base */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cairo", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;               /* nothing may scroll the body sideways */
}

img, svg, picture, video { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3 { margin: 0; line-height: 1.25; text-wrap: balance; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-ink); }

:focus-visible {
  outline: 3px solid var(--yellow-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; inset-block-start: -100px; inset-inline-start: 12px;
  z-index: 200; background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 600;
}
.skip:focus { inset-block-start: 0; color: #fff; }

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

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 24px;
  border: 1px solid transparent; border-radius: 999px;
  font: inherit; font-weight: 700; font-size: 15px;
  cursor: pointer; white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--yellow); color: var(--navy); }
.btn-primary:hover { background: var(--yellow-deep); color: var(--navy); }

.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { background: var(--paper-3); border-color: var(--ink-3); color: var(--ink); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-deep); color: #fff; }

.btn-sm { min-height: 40px; padding: 0 18px; font-size: 14px; }

.btn.is-disabled { opacity: .42; pointer-events: none; }

/* ---------------------------------------------------------------- store badges */

.badges { display: flex; flex-wrap: wrap; gap: 12px; }

.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  min-height: 52px; padding-inline: 18px 22px;
  background: var(--navy); color: #fff;
  border-radius: 14px;
  transition: background-color .18s ease, transform .18s ease;
}
.store-badge:hover { background: #101a23; color: #fff; transform: translateY(-1px); }

.store-glyph { width: 24px; height: 24px; flex: 0 0 auto; }

.store-text { display: flex; flex-direction: column; line-height: 1.15; text-align: start; }
.store-text small { font-size: 10.5px; opacity: .78; font-weight: 400; letter-spacing: .02em; }
.store-text strong { font-size: 15px; font-weight: 700; }

.badges-lg .store-badge { min-height: 60px; padding-inline: 22px 26px; }
.badges-lg .store-glyph { width: 28px; height: 28px; }
.badges-lg .store-text strong { font-size: 17px; }

/* ---------------------------------------------------------------- header */

.site-head {
  position: sticky; inset-block-start: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.6) blur(10px);
  border-block-end: 1px solid var(--line);
}
.head-inner {
  min-height: var(--head-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand img { width: 130px; height: auto; }
.brand:hover { color: inherit; }

.head-nav { display: flex; align-items: center; gap: 6px; }
.head-nav > a {
  padding: 8px 12px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
}
.head-nav > a:hover { color: var(--ink); background: var(--paper-3); }
.head-nav > a.btn { color: var(--navy); }
.head-nav .lang {
  border: 1px solid var(--line-2);
  font-weight: 700; color: var(--ink);
}

@media (max-width: 560px) {
  .brand img { width: 104px; }
  .head-nav { gap: 2px; }
  .head-nav > a { padding: 8px 9px; font-size: 13.5px; }
  .hide-sm { display: none; }
}

/* ---------------------------------------------------------------- phone frame */

.phone {
  border: 9px solid var(--navy);
  border-radius: 34px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  line-height: 0;
}
.phone img { width: 100%; border-radius: 26px; }
.phone-sm { border-width: 7px; border-radius: 26px; box-shadow: var(--shadow); }
.phone-sm img { border-radius: 20px; }

/* ---------------------------------------------------------------- hero */

.hero {
  position: relative;
  padding-block: 56px 64px;
  background: linear-gradient(180deg, var(--yellow-wash) 0%, var(--paper) 100%);
  overflow: hidden;
}
/* Soft yellow blob, echoing the app's own splash screen */
.hero::before {
  content: "";
  position: absolute;
  inset-block-start: -160px; inset-inline-end: -120px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(247,190,16,.34), rgba(247,190,16,0) 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 48px; align-items: center;
}
.hero-copy { min-width: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--yellow);
  color: var(--gold-ink);
  padding: 7px 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700;
  box-shadow: var(--shadow-sm);
  margin-block-end: 22px;
}
.hero-badge .ico { width: 18px; height: 18px; flex: 0 0 auto; }

.hero h1 {
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 900; letter-spacing: -.01em; line-height: 1.18;
  margin-block-end: 18px;
}
.hero-body {
  font-size: clamp(16px, 1.7vw, 18.5px);
  color: var(--ink-2);
  max-width: 46ch;
  margin-block-end: 30px;
}

.hero-qr {
  display: inline-flex; align-items: center; gap: 14px;
  margin-block-start: 26px; padding: 12px 18px 12px 12px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm);
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
}
.hero-qr img { width: 76px; height: 76px; border-radius: 8px; }

.hero-shot { display: flex; justify-content: center; }
.hero-shot .phone { width: min(320px, 78%); }

@media (max-width: 900px) {
  .hero { padding-block: 40px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-shot { order: -1; }
  .hero-shot .phone { width: min(260px, 62%); }
  .hero-qr { display: none; }     /* pointless on the device it points at */
}

/* ---------------------------------------------------------------- sections */

.sec-title {
  font-size: clamp(23px, 3vw, 33px);
  font-weight: 800; letter-spacing: -.01em;
}
.sec-sub { color: var(--ink-2); margin-block-start: 8px; max-width: 56ch; }

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-block-end: 28px; flex-wrap: wrap;
}
.sec-head .btn-ghost { flex: 0 0 auto; }

/* why -------------------------------------------------------------------- */
/* The one dark band on the page. Everything around it is white or near-white, so this
   is what stops the page reading as one long scroll of cards. */

.why {
  position: relative;
  isolation: isolate;
  padding-block: 88px;
  background: var(--navy);
  color: #EEF3F7;
  overflow: hidden;
}

.why-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

/* Warm glow behind the cards so the navy isn't flat */
.why-bg::before {
  content: "";
  position: absolute;
  inset-block-start: -30%;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: min(1100px, 130%);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(247,190,16,.20), rgba(247,190,16,0) 62%);
}

/* Fine diagonal weave — visible as texture, never as a pattern you notice */
.why-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.028) 0 1px,
    transparent 1px 11px
  );
}

/* The brand mark, large and almost invisible */
.why-mark {
  position: absolute;
  inset-block-end: -70px;
  inset-inline-start: -60px;
  width: clamp(260px, 34vw, 440px);
  height: auto;
  opacity: .06;
  transform: rotate(-8deg);
}

.why-inner { position: relative; }

.why-head { max-width: 60ch; margin-block-end: 40px; }
.why .sec-title { color: #FFFFFF; }
.why-sub { color: #9FB0BF; margin-block-start: 10px; font-size: 17px; }

.why-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.why-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: 30px 24px 28px;
  transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
}
.why-card:hover {
  background: rgba(255,255,255,.075);
  border-color: rgba(247,190,16,.42);
  transform: translateY(-3px);
}

.why-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 16px;
  background: rgba(247,190,16,.14);
  border: 1px solid rgba(247,190,16,.32);
  color: var(--yellow);
  margin-block-end: 18px;
  transition: background-color .22s ease, color .22s ease;
}
.why-card:hover .why-ico { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.why-ico svg { width: 27px; height: 27px; }

.why-card h3 { font-size: 18px; color: #FFFFFF; margin-block-end: 8px; }
.why-card p { color: #A9B8C5; font-size: 14.5px; line-height: 1.7; }

@media (max-width: 1020px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .why { padding-block: 56px; }
  .why-head { margin-block-end: 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 22px 20px; }
  .why-ico { width: 46px; height: 46px; border-radius: 14px; margin-block-end: 14px; }
  .why-ico svg { width: 23px; height: 23px; }
  .why-mark { inset-block-end: -40px; opacity: .045; }
}

/* catalog rail ------------------------------------------------------------ */

.catalog { padding-block: 64px; background: var(--paper-2); border-block: 1px solid var(--line); }

.rail { position: relative; }
.rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 218px;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  padding-block-end: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.rail-track > * { scroll-snap-align: start; }
.rail-track::-webkit-scrollbar { height: 8px; }
.rail-track::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
.rail-track::-webkit-scrollbar-track { background: transparent; }

.rail-btn {
  position: absolute; inset-block-start: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background-color .18s ease, opacity .18s ease;
}
.rail-btn:hover { background: var(--paper-3); }
.rail-btn svg { width: 20px; height: 20px; }
.rail-btn[disabled] { opacity: 0; pointer-events: none; }
.rail-prev { inset-inline-start: -18px; }
.rail-next { inset-inline-end: -18px; }
/* The chevrons are drawn LTR; mirror them for Arabic. */
[dir="rtl"] .rail-btn svg { transform: scaleX(-1); }

.rail-more { display: none; margin-block-start: 22px; }

@media (max-width: 1220px) {
  .rail-prev { inset-inline-start: 4px; }
  .rail-next { inset-inline-end: 4px; }
}
@media (max-width: 760px) {
  .catalog { padding-block: 44px; }
  .rail-btn { display: none; }
  .rail-track { grid-auto-columns: 46vw; gap: 12px; }
  .rail-more { display: block; }
  .sec-head .btn-ghost { display: none; }
}

/* product card ------------------------------------------------------------ */

.pcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.pcard:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-2px); }

.pcard-media {
  position: relative;
  aspect-ratio: 1 / 1;              /* fixed box: cards never jump as images load */
  background: var(--paper-3);
  display: grid; place-items: center;
}
.pcard-media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }

.pcard-noimg {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--line);
}

.tag {
  position: absolute; inset-block-start: 8px; inset-inline-start: 8px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; line-height: 1.7;
}
.tag-new   { background: var(--yellow-soft); color: var(--gold-ink); }
.tag-offer { background: #FCE9E3; color: var(--danger); }
.tag-out   { background: var(--navy); color: #fff; }

.pcard-body { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.pcard-name {
  font-size: 14.5px; font-weight: 600; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2lh;
}
.pcard-pack { font-size: 12.5px; color: var(--ink-3); }
.pcard-price { margin-block-start: auto; padding-block-start: 6px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.pcard-price .amount { font-size: 18px; font-weight: 800; color: var(--ink); }
.pcard-price .cur { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.pcard-price del { font-size: 12.5px; color: var(--ink-3); }

/* how it works ------------------------------------------------------------ */

.how { padding-block: 68px; background: var(--paper); }
.how .sec-title { margin-block-end: 34px; }

.how-list { display: flex; flex-direction: column; gap: 12px; }
.how-step {
  display: grid; grid-template-columns: 1fr 240px;
  gap: 28px; align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px 34px;
}
.how-step:nth-child(even) { direction: inherit; }
.how-step:nth-child(even) .how-shot { order: -1; }

.how-num {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  font-weight: 800; font-size: 17px;
  margin-block-end: 14px;
}
.how-text h3 { font-size: 20px; margin-block-end: 8px; }
.how-text p { color: var(--ink-2); max-width: 46ch; }
.how-badges { margin-block-start: 20px; }
.how-shot { display: flex; justify-content: center; }
.how-shot .phone { width: 200px; }

@media (max-width: 760px) {
  .how { padding-block: 44px; }
  .how-step { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; text-align: start; }
  .how-step .how-shot,
  .how-step:nth-child(even) .how-shot { order: 0; }
  .how-shot .phone { width: 168px; }
}

/* gallery ---------------------------------------------------------------- */

.gallery { padding-block: 64px; background: var(--paper-2); border-block: 1px solid var(--line); }
.gallery .sec-sub { margin-block-end: 28px; }

.gal-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 200px;
  gap: 18px; overflow-x: auto; padding-block-end: 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.gal-item { scroll-snap-align: center; }
.gal-track::-webkit-scrollbar { height: 8px; }
.gal-track::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }

@media (max-width: 560px) {
  .gallery { padding-block: 44px; }
  .gal-track { grid-auto-columns: 152px; gap: 12px; }
}

/* cta band ---------------------------------------------------------------- */

.cta { background: var(--yellow); color: var(--navy); padding-block: 56px; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta h2 { font-size: clamp(24px, 3.2vw, 36px); font-weight: 900; }
.cta p { margin-block-start: 8px; font-size: 17px; color: #4a3a05; }

@media (max-width: 760px) {
  .cta { padding-block: 40px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
}

/* notice ------------------------------------------------------------------ */

.notice {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.notice h1, .notice h3 { font-size: 20px; }
.notice p { color: var(--ink-2); max-width: 46ch; }

/* ---------------------------------------------------------------- products page */

.plist { padding-block: 40px 72px; }
.plist-head { margin-block-end: 22px; }
.plist-head h1 { font-size: clamp(24px, 3.4vw, 36px); font-weight: 900; }
.plist-count { color: var(--ink-3); font-size: 14px; margin-block-start: 4px; }

.filters {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-block-end: 26px;
}
.field { display: flex; }
.field-search {
  flex: 1 1 320px; gap: 8px;
  background: var(--paper); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 5px 5px 5px 18px;
  padding-inline: 18px 5px;
}
.field-search input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  font: inherit; font-size: 15px; color: var(--ink);
}
.field-search input:focus { outline: none; }
.field-search:focus-within { border-color: var(--yellow-deep); }

.field-cat { flex: 0 1 260px; }
.field-cat select {
  width: 100%; min-height: 50px;
  border: 1px solid var(--line-2); border-radius: 999px;
  background: var(--paper); color: var(--ink);
  font: inherit; font-size: 15px; font-weight: 600;
  padding-inline: 18px 40px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355636F' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: left 16px center;
}
[dir="ltr"] .field-cat select { background-position: right 16px center; }

.pgrid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
@media (max-width: 620px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .plist { padding-block: 28px 56px; }
}

.pager {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-block-start: 36px; flex-wrap: wrap;
}
.pager-at { font-size: 14px; color: var(--ink-2); font-variant-numeric: tabular-nums; }

/* quick view -------------------------------------------------------------- */

.qv { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.qv[hidden] { display: none; }
.qv-backdrop { position: absolute; inset: 0; background: rgba(22,32,42,.55); backdrop-filter: blur(2px); }

.qv-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 720px);
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 300px 1fr;
  gap: 0;
}
.qv-media { background: var(--paper-3); display: grid; place-items: center; padding: 22px; }
.qv-media img { width: 100%; height: auto; object-fit: contain; }
.qv-body { padding: 30px 30px 26px; display: flex; flex-direction: column; gap: 12px; }
.qv-body h2 { font-size: 21px; line-height: 1.45; }
.qv-price { font-size: 26px; font-weight: 900; }
.qv-packs { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--ink-2); }
.qv-packs strong { color: var(--ink); font-weight: 700; display: block; margin-block-end: 2px; font-size: 13px; }
.qv-packs span { display: block; }
.qv-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-block-start: 8px; }

.qv-close {
  position: absolute; inset-block-start: 12px; inset-inline-end: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line-2); color: var(--ink);
  cursor: pointer; z-index: 2;
}
.qv-close:hover { background: var(--paper-3); }
.qv-close svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .qv { padding: 0; place-items: end stretch; }
  .qv-panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
  .qv-media { padding: 30px 30px 10px; }
  .qv-media img { max-width: 220px; }
  .qv-body { padding: 18px 22px 28px; }
}

/* ---------------------------------------------------------------- footer */

.site-foot { background: var(--navy); color: #C9D3DC; padding-block: 48px 0; }

.foot-inner {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px; align-items: start;
  padding-block-end: 36px;
}
.logo-chip {
  display: inline-block; background: #fff;
  padding: 12px 18px; border-radius: var(--r);
  margin-block-end: 14px;
}
.logo-chip img { width: 148px; height: auto; }
.foot-brand p { font-size: 14px; color: #94A3B0; max-width: 34ch; }

.foot-links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.foot-links a { color: #C9D3DC; }
.foot-links a:hover { color: var(--yellow); }

.foot-stores .store-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.foot-stores .store-badge:hover { background: rgba(255,255,255,.15); }

.foot-legal {
  border-block-start: 1px solid rgba(255,255,255,.12);
  padding-block: 20px 26px;
  font-size: 13px; color: #7E8C99;
}

@media (max-width: 860px) {
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .site-foot { padding-block-start: 36px; }
  .foot-inner { grid-template-columns: 1fr; gap: 26px; }
}

/* ---------------------------------------------------------------- whatsapp fab */

.wa-fab {
  position: fixed; z-index: 150;
  inset-block-end: 20px; inset-inline-end: 20px;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.42);
  transition: transform .18s ease, background-color .18s ease;
}
.wa-fab:hover { background: var(--wa-deep); color: #fff; transform: scale(1.06); }
.wa-fab svg { width: 30px; height: 30px; fill: currentColor; }

@media (max-width: 560px) {
  .wa-fab {
    width: 52px; height: 52px;
    inset-block-end: max(16px, env(safe-area-inset-bottom));
    inset-inline-end: 16px;
  }
  .wa-fab svg { width: 27px; height: 27px; }
}

/* ---------------------------------------------------------------- print */

@media print {
  .site-head, .wa-fab, .qv, .cta, .rail-btn { display: none !important; }
  body { background: #fff; }
}
