/*!
 * StandesamtFotograf.de – Form (form) – CLEANED (aggressive)
 * Source: app.css
 * Method: keep only selectors used in index.html and buchung-app.js (plus base element rules)
 * Date: 2026-01-15
 */

:root{
  /* Colors (StandesamtFotograf.de) */
  --color-beige-light:#FAF8F3;
  --color-beige:#f1ece3;
  --color-gold:#d6a550;
  --color-gold-dark:#b38e2c;
  --color-black:#111;
  --color-white:#fff;
  --color-text:#222;
  --color-gray:#777;
  --color-caption:#666;
  --color-green:#25d366;
  --color-green-dark:#1ebe5d;
  --color-pink:#D61E5C;

  /* Layout */
  --app-max: 1040px;         /* <= change once and freeze */
  --pad: 16px;

  /* Radius (closer to your main site: less “round”) */
  --r-card: 10px;
  --r-input: 10px;
  --r-pill: 999px;

  /* Shadows / borders */
  --border-soft: rgba(17,17,17,.10);
  --shadow-soft: 0 10px 26px rgba(0,0,0,.06);
  --shadow-card: 0 10px 20px rgba(0,0,0,.06);
  
  --link: var(--color-gold-dark); /* или что у тебя там */
}

a{
  color: var(--link);
  text-decoration-color: color-mix(in srgb, var(--link) 60%, transparent);
}

a:hover{ text-decoration-color: var(--link);

  --t: .18s ease;
}
*{box-sizing:border-box}
html, body{margin:0;padding:0}
body{
  min-height:100%;
  background:var(--color-beige-light);
  color:var(--color-text);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;
  line-height:1.5;
}
img{max-width:100%;height:auto}
a{color:var(--color-gold-dark);text-decoration-thickness:1px;text-underline-offset:3px}
a:hover{color:var(--color-gold)}
strong{font-weight:600}
.app{
  max-width:var(--app-max);
  margin:0 auto;
  padding:18px var(--pad) 28px;
}
.app__header{margin:2px 0 14px}
.brand{display:inline-block;font-weight:700;letter-spacing:.2px}
.app__sub{margin:6px 0 0;color:var(--color-caption);font-size:.98rem}
form.form{margin-top:10px}
fieldset{
  border:1px solid var(--border-soft);
  border-radius:var(--r-card);
  background:var(--color-white);
  box-shadow:var(--shadow-soft);
  padding:18px 18px 16px;
  margin:14px 0;
}
@media (max-width:560px){
fieldset{padding:16px 14px 14px}

}
legend{
  padding:4px 10px;
  border-radius:var(--r-pill);
  background:var(--color-beige);
  color:#444;
  border:1px solid rgba(17,17,17,.06);
  font-size:.85rem;
  font-weight:600;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
@media (max-width:900px){
.grid-2{grid-template-columns:1fr}

}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], input[type="time"], select, textarea{
  width:100%;
  border:1px solid rgba(17,17,17,.16);
  border-radius:var(--r-input);
  padding:12px 12px;
  background:#fff;
  color:var(--color-text);
  font:inherit;
  outline:none;
  transition:border-color var(--t), box-shadow var(--t);
}
textarea{min-height:120px;resize:vertical}
::placeholder{color:rgba(34,34,34,.50)}
input:focus, select:focus, textarea:focus{
  border-color:var(--color-gold);
  box-shadow:0 0 0 4px rgba(214,165,80,.18);
}
.hidden{display:none!important}

#paketCards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:8px 0 6px;
}
@media (max-width:980px){
#paketCards{grid-template-columns:1fr}

}

#extrasToggle{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border:1px solid rgba(214,165,80,.55);
  border-radius:999px;
  background:rgba(241,236,227,.30);
  color:var(--color-gold-dark);
  font-weight:600;
  text-decoration:none;
}
#extrasToggle:hover{ background:rgba(241,236,227,.55); }
#extrasToggle:focus{
  outline:none;
  box-shadow:0 0 0 4px rgba(214,165,80,.18);
}
#extrasPanel{ margin-top:10px; }
#couponRow.hint--ok, #couponInfo.hint--ok{
  background:rgba(37,211,102,.10);
  border:1px solid rgba(37,211,102,.25);
  border-left:4px solid rgba(37,211,102,.80);
  padding:10px 12px;
  border-radius:var(--r-card);
  color:#444;
  margin-top:10px;
}
#couponRow.hint--bad, #couponInfo.hint--bad{
  background:rgba(214,30,92,.08);
  border:1px solid rgba(214,30,92,.18);
  border-left:4px solid rgba(214,30,92,.65);
  padding:10px 12px;
  border-radius:var(--r-card);
  color:#444;
  margin-top:10px;
}
.totals{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(17,17,17,.08);
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:flex-start;
}
.price-break{
  display:flex;
  gap:8px;
  align-items:baseline;
  color:#444;
  font-size:.98rem;
  min-width:180px;
}
.price-break span{opacity:.75;min-width:64px}
.price-break strong{font-weight:800;color:var(--color-black)}
.price-break.total{margin-left:auto}
@media (max-width:900px){
.price-break.total{margin-left:0}

}
#sumExtrasList{
  flex-basis:100%;
  margin:2px 0 0;
  padding-left:18px;
  color:#444;
}
#sumExtrasList li{margin:4px 0}
:root{
  --color-gold-light:#fdf5c0;  /* нужно для градиента */
  --transition-base:.2s ease;
}
a, a:visited{
  color: var(--color-gold-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover{ color: var(--color-gold); }
input[type="checkbox"], input[type="radio"]{
  accent-color: var(--color-gold);
}
input[type="checkbox"]:focus-visible, input[type="radio"]:focus-visible{
  outline: 3px solid rgba(214,165,80,.22);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:0.75rem 1.5rem;
  font-family: var(--font-base, system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif);
  font-size:1rem;
  font-weight:600;
  border-radius: var(--r-pill, 999px);
  border:none;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
  color: var(--color-white, #fff);

  background-color: var(--color-gold, #d6a550);
  background-image: linear-gradient(
    90deg,
    var(--color-gold-dark, #b38e2c),
    var(--color-gold-light),
    var(--color-gold-dark, #b38e2c)
  );
  background-size:100% 100%;

  box-shadow:0 6px 16px rgba(0,0,0,.06);
  white-space:normal;

  transition: background-color var(--transition-base),
              color var(--transition-base),
              box-shadow var(--transition-base),
              transform var(--transition-base);
}
.btn-primary{ color: var(--color-white, #fff); }
@media (max-width:560px){
#buchungForm button[type="submit"].btn{ width:100%; }

}
#buchungForm button[type="submit"].btn, #buchungForm button[type="submit"].btn.btn-primary{
  margin-top: 16px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-pill, 999px);
  color: #fff;

  /* hardcoded gradient = не сломается даже если переменные/каскад где-то поедут */
  background-color: #d6a550 !important;
  background-image: linear-gradient(90deg, #b38e2c, #fdf5c0, #b38e2c) !important;
  background-size: 100% 100% !important;

  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
#buchungForm button[type="submit"].btn:hover, #buchungForm button[type="submit"].btn:focus-visible{
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transform: scale(1.03);
  outline: none;
}
#buchungForm button[type="submit"].btn, #buchungForm button[type="submit"].btn-primary, #buchungForm button[type="submit"].btn.btn-primary{
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(90deg,
    var(--color-gold-dark, #b38e2c),
    var(--color-gold-light, #fdf5c0),
    var(--color-gold-dark, #b38e2c)
  ) !important;
  background-color: var(--color-gold, #d6a550) !important;
  background-size: 100% 100% !important;
  border-radius: var(--r-pill, 999px) !important;
  margin-top: 14px;
}
.page-wrap{
  max-width: var(--app-max);
  margin: 0 auto;
  padding: 24px var(--pad);
}
@media (min-width: 1100px){
.page-wrap{ max-width: 1040px; }

}
.card-section{
  background:#fff;
  border:1px solid rgba(17,17,17,0.10);
  border-radius:16px;
  padding:18px 18px 16px;
  margin:18px 0;
  box-shadow: 0 8px 20px rgba(17,17,17,0.04);
}
.card-section__head{
  margin:-28px 0 12px;
}
.card-section__badge{
  display:inline-block;
  background:var(--color-beige, #f1ece3);
  border:1px solid rgba(17,17,17,0.10);
  border-radius:999px;
  padding:6px 12px;
  font-weight:600;
  font-size:14px;
}

/* =========================================================
   Type cards – single source of truth
   JS может ставить классы: .active / .selected / .is-active
   ========================================================= */

.type-cards{
  display:grid;
  gap:12px;
  grid-template-columns:1fr;
  margin-top:10px;
}
@media (min-width: 900px){
  .type-cards{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.type-card{
  appearance:none;
  -webkit-appearance:none;
  background:#fff;
  border:1px solid rgba(17,17,17,0.12);
  border-radius:var(--r-card);
  padding:12px 14px;
  text-align:left;
  cursor:pointer;
  font-weight:600;

  box-shadow:var(--shadow-card);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t), background var(--t);

  /* mobile: уменьшает “двойные” клики/зумы */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select:none;
}

/* hover только на устройствах, где он реально есть */
@media (hover:hover) and (pointer:fine){
  .type-card:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0,0,0,.08);
  }
}

/* лёгкая обратная связь при тапе */
.type-card:active{
  transform: translateY(0);
}

.type-card.active,
.type-card.selected,
.type-card.is-active{
  border-color: rgba(214,165,80,.95);
  background: rgba(241,236,227,.55);
  box-shadow: 0 0 0 3px rgba(214,165,80,.16), 0 14px 26px rgba(0,0,0,.08);
}



.form-grid{ display:grid; gap:14px; }
.form-grid--2{ grid-template-columns: 1fr; }
@media (min-width: 900px){
.form-grid--2{ grid-template-columns: 1fr 1fr; }

}

.type-selected{
  margin-top:12px;
  padding:14px 14px;
  border:1px solid rgba(17,17,17,0.12);
  border-radius:12px;
  background: rgba(241,236,227,0.22);
}
.type-selected__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.link-accent{
  background:none;
  border:0;
  padding:0;
  color: var(--gold, #d6a550);
  text-decoration: underline;
  cursor:pointer;
  font-weight:600;
}
.type-selected{
  margin-top:12px;
  padding:14px 14px;
  border:1px solid rgba(17,17,17,0.12);
  border-radius:12px;
  background: rgba(241,236,227,0.22);
}
.type-selected__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.type-selected__left{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
:root{
  --color-pink:#D61E5C; /* accent */
  --tip-bg:#111;
  --tip-fg:#fff;
}
.tip{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.tip__i{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid var(--color-gold, #d6a550);
  background: var(--color-beige-light, #FAF8F3);

  color: var(--color-gold-dark, #b38e2c);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  user-select: none;
}
@media (hover:hover) and (pointer:fine){
.tip__i{ cursor: help; }

}
.tip__bubble{
  display: none;
  max-height: calc(100vh - 24px);
  overflow: auto;
  position: fixed;
  z-index: 9999;

  max-width: min(360px, calc(100vw - 24px));
  padding: 12px 14px;
  border-radius: 12px;

  background: var(--tip-bg);
  color: var(--tip-fg);

  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  font-size: 14px;
  line-height: 1.35;
}
.tip__bubble::before{
  content:"";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--tip-bg);
  transform: rotate(45deg);
  top:  var(--arrow-top, -5px);
  left: var(--arrow-left, 18px);
}
@media (hover:hover) and (pointer:fine){
.tip:hover .tip__bubble{ display:block; }
.tip:hover .tip__i{
    border-color: var(--color-pink);
    color: var(--color-pink);
  }

}
.tip.is-open .tip__bubble{ display:block; }
.tip.is-open .tip__i{
  border-color: var(--color-pink);
  color: var(--color-pink);
  box-shadow: 0 0 0 4px rgba(214,30,92,.12);
}
.tip__i:focus-visible{
  outline: none;
  border-color: var(--color-pink);
  box-shadow: 0 0 0 4px rgba(214,30,92,.12);
}

#extrasToggle{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border:1px solid rgba(214,165,80,.55);
  border-radius:999px;
  background:rgba(241,236,227,.30);
  color:var(--color-gold-dark);
  font-weight:600;
  text-decoration:none;
}
#extrasToggle:hover{ background:rgba(241,236,227,.55); }
#extrasToggle:focus{
  outline:none;
  box-shadow:0 0 0 4px rgba(214,165,80,.18);
}
#extrasPanel{ margin-top:10px; }
.extras__box{
  padding:14px;
  border:1px dashed rgba(17,17,17,.18);
  border-radius:var(--r-card);
  background:rgba(241,236,227,.45);
}
.extras__check{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 12px;
  color:var(--color-black);
  cursor:pointer;
}
.extras__check input{
  width:18px;
  height:18px;
  margin:0;
  accent-color:var(--color-gold-dark);
}
.extras__check-title{
  display:flex;
  align-items:baseline;
  gap:.45rem;
  flex-wrap:wrap;
  font-weight:800;
}
.extras__sub{
  font-weight:600;
  color:rgba(17,17,17,.55);
}
.extras__price{
  font-weight:400;
  color:rgba(17,17,17,.60);
  font-size:.92rem;
}
.extras__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media (max-width: 720px){
.extras__grid{ grid-template-columns:1fr; }
}
.extras__field{ display:block; }
.extras__label{
  display:block;
  font-weight:800;
  margin:0 0 8px;
  color:var(--color-black);
}
.extras__input{
  width:100%;
  border:1px solid rgba(17,17,17,.16);
  border-radius:var(--r-input);
  padding:12px 12px;
  background:#fff;
  color:var(--color-text);
  font:inherit;
  outline:none;
  transition:border-color var(--t), box-shadow var(--t);
}
.extras__hint{
  display:block;
  margin-top:8px;
  font-size:.92rem;
  color:rgba(17,17,17,.60);
}
.extras__sum{
  margin-top:12px;
  font-weight:600;
  color:rgba(17,17,17,.70);
}
.extras__sum strong{
  color:var(--color-black);
  font-weight:900;
}

.type-selected{
  margin-top:12px;
  padding:14px 14px;
  border:1px solid rgba(17,17,17,0.12);
  border-radius:12px;
  background: rgba(241,236,227,0.22);
}
.type-selected__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.type-selected__label{ color: rgba(17,17,17,0.6); }
.link-accent{
  background:none;
  border:0;
  padding:0;
  color: var(--gold, #d6a550);
  text-decoration: underline;
  cursor:pointer;
  font-weight:600;
}
.type-selected{
  margin-top:12px;
  padding:14px 14px;
  border:1px solid rgba(17,17,17,0.12);
  border-radius:12px;
  background: rgba(241,236,227,0.22);
}
.type-selected__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.type-selected__left{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.type-selected__label{ color: rgba(17,17,17,0.6); }
.tip{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.tip__i{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid var(--color-gold, #d6a550);
  background: var(--color-beige-light, #FAF8F3);

  color: var(--color-gold-dark, #b38e2c);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  user-select: none;
}
@media (hover:hover) and (pointer:fine){
.tip__i{ cursor: help; }
}
.tip__bubble{
  display: none;
  max-height: calc(100vh - 24px);
  overflow: auto;
  position: fixed;
  z-index: 9999;

  max-width: min(360px, calc(100vw - 24px));
  padding: 12px 14px;
  border-radius: 12px;

  background: var(--tip-bg);
  color: var(--tip-fg);

  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  font-size: 14px;
  line-height: 1.35;
}
.tip__bubble::before{
  content:"";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--tip-bg);
  transform: rotate(45deg);
  top:  var(--arrow-top, -5px);
  left: var(--arrow-left, 18px);
}
@media (hover:hover) and (pointer:fine){
.tip:hover .tip__bubble{ display:block; }
.tip:hover .tip__i{
    border-color: var(--color-pink);
    color: var(--color-pink);
  }
}
.tip.is-open .tip__bubble{ display:block; }
.tip.is-open .tip__i{
  border-color: var(--color-pink);
  color: var(--color-pink);
  box-shadow: 0 0 0 4px rgba(214,30,92,.12);
}
.tip__i:focus-visible{
  outline: none;
  border-color: var(--color-pink);
  box-shadow: 0 0 0 4px rgba(214,30,92,.12);
}

/* ===============================
   Overrides – Checkout polish
   =============================== */

/* --- верхняя строка доверия --- */
.top-trust{
  margin:.35rem 0 0;
  font-size:.92rem;
  opacity:.75;
}

/* --- финальный блок (Bestätigung) --- */
#sec-confirm .totals{
  margin-top: 1rem;
  padding-top: .75rem;
}

/* приглушаем строки, кроме итога */
#sec-confirm .totals .price-break{
  font-size: .95rem;
  color: rgba(17,17,17,.62);
}

/* список extras – чуть компактнее */
#sec-confirm #sumExtrasList{
  margin: .6rem 0 0;
  padding-left: 1.1rem;
  color: rgba(17,17,17,.72);
}
#sec-confirm #sumExtrasList li{ margin:.25rem 0; }

/* линия + усиленный Gesamt */
#sec-confirm .totals .price-break.total{
  margin-top: .75rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(17,17,17,.12);
  color: #111;
}
#sec-confirm .totals .price-break.total strong{
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .2px;
}

/* --- CTA ближе к итогу, шире --- */
#sec-confirm .btn.btn-primary{
  margin-top: 1rem;
  width: 100%;
  max-width: 520px;
}
@media (min-width: 820px){
  #sec-confirm .btn.btn-primary{ width: 60%; }
}

/* текст доверия под кнопкой */
#sec-confirm .text-muted{
  margin-top: .55rem !important;
  opacity: .72 !important;
}

/* --- Extras: выравнивание чекбокса и усиление суммы --- */
.extras__field label,
.extras label{
  display:flex;
  align-items:center;
  gap:.55rem;
}
.extras__field input[type="checkbox"],
.extras input[type="checkbox"]{
  transform: translateY(1px);
}

/* “Extras gesamt …” — заметнее */
#extrasSum,
.extras__sum,
.extras__total{
  font-weight: 700;
  color: rgba(17,17,17,.88);
}

/* --- Gutschein: ссылка заметнее, инпут по высоте как остальные --- */
#gcLink,
.link-btn,
.link-accent{
  font-weight:400;                 /* или 500 */
  color: var(--gold-dark, #b38e2c);/* как у обычных ссылок */
}

#gutschein,
input#gutschein{
  height: 44px;
  padding: 10px 12px;
}

/* Unified link style */
a,
.link-accent {
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover,
.link-accent:hover {
  color: var(--color-gold);
}

/* ===== Polish (2026-01-15) ===== */
/* Links: make all accent-links consistent (less bold, like legal links) */
.link-accent{font-weight:500;}

 
 

/* Wunschtermin: helper text a bit calmer */
.helper{opacity:.7;}

/* =========================================================
   Pakete – single source of truth (cards)
   Markup (JS): .paket-cards -> .paket-card
               .paket-card__badge(.--best) .paket-title .paket-price
               .paket-card__meta .paket-desc ul.checklist li
   ========================================================= */

.paket-cards{
  display:grid;
  gap:16px;
}
@media (min-width: 860px){
  .paket-cards{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.paket-card{
  position:relative;
  border:1px solid rgba(17,17,17,.10);
  border-radius:var(--r-card);
  padding:12px 12px 10px; /* tighter than before */
  background:#fff;
  box-shadow:var(--shadow-card);
  cursor:pointer;
  transition:transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.paket-card:hover{
  transform:translateY(-1px);
  border-color:rgba(214,165,80,.75);
  box-shadow:0 14px 26px rgba(0,0,0,.08);
}
.paket-card.active{
  border-color:rgba(214,165,80,.95);
  background:rgba(241,236,227,.55);
  box-shadow:0 0 0 3px rgba(214,165,80,.16), 0 14px 26px rgba(0,0,0,.08);
}
.paket-card.active::after{
  content:"✓";
  position:absolute;
  top:10px;
  right:10px;
  width:24px;
  height:24px;
  border-radius:999px;
  background:var(--color-gold);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:13px;
}

/* top badge (Meistgebucht) */
.paket-card__badge{
  display:table;
  margin:0 auto 8px;
  padding:4px 10px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid rgba(214,165,80,.35);
  background:rgba(214,165,80,.16);
  color:var(--color-gold-dark);
}
.paket-card__badge--best{
  border-color:rgba(214,165,80,.55);
  background:rgba(214,165,80,.22);
}

/* title & price */
.paket-title{ font-weight:800; margin:0 0 4px; text-align:center; }
.paket-price{ font-weight:800; color:var(--color-gold-dark); margin:0 0 10px; text-align:center; }

/* meta line */
.paket-card__meta{
  margin:0 0 10px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(17,17,17,.10);
  line-height:1.35;
  text-align:center;
}
.paket-card.active .paket-card__meta{
  border-bottom-color:rgba(214,165,80,.28);
}

/* checklist */
.paket-desc{ text-align:left; }
.paket-card .checklist{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.55rem;
  color:var(--color-caption);
}
.paket-card .checklist li{
  position:relative;
  padding-left:22px;
  line-height:1.35;
}
.paket-card .checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--color-gold-dark);
  font-weight:900;
  line-height:1.1;
}

/* make the selected price stronger but keep non-selected compact */
.paket-card .paket-price{ font-size:1.25rem; line-height:1.05; }
.paket-card.active .paket-price{ font-size:2.15rem; line-height:1.02; }

@media (max-width: 520px){
  .paket-card{ padding:11px 11px 9px; }
  .paket-card.active .paket-price{ font-size:2.05rem; }
}

