/* ===== Téma – střídmé, čitelné (RED) ===== */
:root{
  --bg:#f7f7fb;
  --card:#fff;
  --ink:#0f172a;
  --muted:#5b6472;
  --brand:#ca1622;
  --brand-strong:#a1121b;
  --line:#e6e8ef;
  --ok:#198754;
  --radius:14px;
  --shadow:0 8px 24px rgba(15,23,42,.08);
}

/* ===== Recap pouze v rámci .recapitulation-wrapper ===== */
.recapitulation-wrapper{
  max-width:980px; margin:24px auto 40px; padding:0 16px;
  color:var(--ink);
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,"Noto Sans",Arial;
}

/* Číslo objednávky */
.recapitulation-wrapper .reca-number{
  display:block; text-align:center; width:max-content;
  margin:8px auto 14px; padding:.7rem 1.2rem;
  border-radius:999px; background:#411014; color:#ffd9db;
  font-weight:700; letter-spacing:.2px;
  font-size:clamp(1rem,.85rem + 1vw,1.25rem);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.recapitulation-wrapper .reca-number strong{ color:#fff; }

/* Nadpisy */
.recapitulation-wrapper .order-summary-heading{
  margin:22px 0 10px; font-weight:600; line-height:1.2;
  font-size:clamp(1.1rem,.9rem + .8vw,1.6rem);
  color:var(--ink);
}

/* Karty/tabulky */
.recapitulation-wrapper .table.recapitulation-table,
.recapitulation-wrapper .cart-table{
  width:100%; background:var(--card);
  border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow); border-collapse:separate; border-spacing:0; overflow:hidden;
}
.recapitulation-wrapper .recapitulation-table tr,
.recapitulation-wrapper .cart-table tr{ border-bottom:1px solid var(--line); }
.recapitulation-wrapper .recapitulation-table tr:last-child,
.recapitulation-wrapper .cart-table tr:last-child{ border-bottom:0; }

/* Buňky */
.recapitulation-wrapper .recapitulation-table th,
.recapitulation-wrapper .recapitulation-table td,
.recapitulation-wrapper .cart-table td{
  padding:16px 22px; vertical-align:middle;
}
.recapitulation-wrapper .recapitulation-table th{
  width:220px; color:var(--muted); text-align:left; font-weight:700;
}
.recapitulation-wrapper .recapitulation-table td strong{ font-weight:800; }

/* Košík (recap) – desktop */
.recapitulation-wrapper .cart-table .cart-p-image{ width:110px; }
.recapitulation-wrapper .cart-table .cart-p-image img{
  display:block; width:86px; height:86px; object-fit:cover;
  border-radius:12px; border:1px solid var(--line);
}
.recapitulation-wrapper .cart-table .p-name{ font-weight:600; }
.recapitulation-wrapper .cart-table .p-quantity{ color:var(--muted); font-weight:600; text-align:right; white-space:nowrap; }
.recapitulation-wrapper .cart-table .p-price{ font-weight:800; text-align:right; white-space:nowrap; }

/* Odznak „Dárek zdarma“ */
.recapitulation-wrapper .for-free{
  display:inline-block; background:#e8f6ee; color:var(--ok);
  font-weight:800; font-size:.85rem; padding:6px 10px; border-radius:999px; margin-bottom:6px;
}

/* Dokončení objednávky (info boxy + odkazy) */
.recapitulation-wrapper .order-summary-item{
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--radius); box-shadow:var(--shadow);
  padding:16px 18px; margin:18px 0;
}
.recapitulation-wrapper .order-summary-item.total{
  display:flex; align-items:center; gap:10px; color:var(--muted);
  border-left:4px solid var(--brand);
}
.recapitulation-wrapper .order-summary-item.summary-thx{
  text-align:center; font-weight:800;
  font-size:clamp(1.4rem,1.1rem + 1.2vw,2rem);
  padding:18px 22px;
  background:radial-gradient(120% 120% at 0% 0%, rgba(202,22,34,.06) 0, transparent 60%), var(--card);
}
.recapitulation-wrapper .order-complete-links{ text-align:center; margin-top:10px; }
.recapitulation-wrapper .order-complete-links p{ margin:10px 0; }
.recapitulation-wrapper .order-complete-links a{ color:var(--brand); text-decoration:none; font-weight:600; }
.recapitulation-wrapper .order-complete-links a:hover{ text-decoration:underline; }
.recapitulation-wrapper .order-complete-links .btn.btn-primary{
  display:inline-block; background:var(--brand); color:#fff; border:none; border-radius:999px;
  padding:.75rem 1.15rem; line-height:1;
  box-shadow:0 10px 22px rgba(202,22,34,.18);
  transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}
.recapitulation-wrapper .order-complete-links .btn.btn-primary:hover{
  background:var(--brand-strong); box-shadow:0 12px 26px rgba(202,22,34,.25); transform:translateY(-1px);
}

/* ===== Responsivita (scoped) ===== */
@media (max-width:860px){
  .recapitulation-wrapper .recapitulation-table th{ width:180px; }
}

/* Platba/Doručení – mobil */
@media (max-width:640px){
  .recapitulation-wrapper .recapitulation-table th,
  .recapitulation-wrapper .recapitulation-table td{ display:block; padding:16px 22px; }
  .recapitulation-wrapper .recapitulation-table th{ padding-bottom:6px; color:var(--muted); border-bottom:0; }
  .recapitulation-wrapper .recapitulation-table td{ padding-top:0; }
}

/* Recap — mobilní položky + toggle */
@media (max-width:720px){
  .recapitulation-wrapper .cart-table tr{
    display:grid;
    grid-template-columns:72px 1fr auto;
    grid-template-areas:
      "img name price"
      "img qty  price";
    gap:10px 12px; padding:12px 12px; align-items:start;
  }
  .recapitulation-wrapper .cart-table td{ padding:0; border:0; background:none; }

  .recapitulation-wrapper .cart-table .cart-p-image{ grid-area:img; display:grid; place-items:center; }
  .recapitulation-wrapper .cart-table .cart-p-image img{ width:72px; height:72px; border-radius:12px; }

  .recapitulation-wrapper .cart-table .p-name{ grid-area:name; align-self:start; line-height:1.25; }
  .recapitulation-wrapper .cart-table .p-name br{ display:none; }

  .recapitulation-wrapper .cart-table .p-name > span[data-testid="recapItemName"]{
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
    font-weight:800; font-size:1.02rem; margin-bottom:4px;
  }

  .recapitulation-wrapper .cart-table .p-price{
    grid-area:price; align-self:start; justify-self:end;
    font-weight:900; white-space:nowrap; font-size:1.02rem;
  }
  .recapitulation-wrapper .cart-table .p-quantity{
    grid-area:qty; color:var(--muted); font-weight:600; white-space:nowrap; margin-top:2px;
  }

  .recapitulation-wrapper .cart-table td[colspan],
  .recapitulation-wrapper .cart-table .p-name[colspan]{ grid-column:1 / -1; }

  /* toggle – jen v rekapu */
  .recapitulation-wrapper .p-extra{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
  .recapitulation-wrapper .is-open .p-extra{ max-height:600px; }

  .recapitulation-wrapper .p-toggle{
    display:inline-flex; gap:.35rem; align-items:center;
    background:transparent; border:0; padding:0;
    font-size:.92rem; font-weight:700; color:var(--brand);
    cursor:pointer;
  }
  .recapitulation-wrapper .p-toggle:after{
    content:"▾"; font-size:.85em; transform:translateY(-1px);
    transition:transform .2s ease;
  }
  .recapitulation-wrapper .is-open .p-toggle:after{ transform:rotate(180deg) translateY(1px); }
}

/* Desktop: v rekapu vždy otevřené, bez tlačítka */
@media (min-width:721px){
  .recapitulation-wrapper .p-toggle{ display:none !important; }
  .recapitulation-wrapper .p-extra{ max-height:none !important; overflow:visible !important; }
}

/* Skrytí obrázku u dárku – jen v rekapu */
.recapitulation-wrapper .cart-table tr:has(.for-free) .cart-p-image{ display:none; }

/* Odkazy v kartách (jen rekap) */
.recapitulation-wrapper .recapitulation-table a,
.recapitulation-wrapper .cart-table a{ color:var(--brand); text-decoration:none; }
.recapitulation-wrapper .recapitulation-table a:hover,
.recapitulation-wrapper .cart-table a:hover{ text-decoration:underline; }