/* Sillage — disaini stiil (Cormorant Garamond + Archivo, kreem + ink + kuld) */

:root {
  --ink:      #1B1712;
  --cream:    #F4EFE7;
  --paper:    #FFFDF9;
  --gold:     #A16B36;
  --gold-dk:  #7E5124;
  --sand:     #D7C9B2;
  --sand-2:   #E4D8C4;
  --line:     #EFE6D6;
  --taupe:    #8A7E6C;
  --taupe-2:  #6C6355;
  --muted:    #A99D8B;
  --amber:    #C7A46A;
  --green:    #4E8A4E;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Archivo', system-ui, -apple-system, Segoe UI, sans-serif;
  --wrap: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dk); }
button { font-family: inherit; }
input { font-family: inherit; }
::placeholder { color: #9A9084; }
::selection { background: #E8D9C1; }
img { max-width: 100%; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(120% 80% at 50% -10%, #FBF7F0 0%, #F4EFE7 55%, #EFE8DC 100%);
}

/* ---- Announce ---- */
.announce {
  background: var(--ink);
  color: #EAD9BE;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 16px;
}

/* ---- Header ---- */
.header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 60px);
  max-width: var(--wrap); margin: 0 auto; width: 100%;
}
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand__mark {
  font-family: var(--serif); font-weight: 600; font-size: 25px;
  letter-spacing: 0.16em; color: var(--ink); cursor: pointer;
}
.brand__tag {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--taupe-2);
}
.cart-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 16px; border: 1px solid #DBCEB9; border-radius: 999px;
  background: var(--paper); cursor: pointer;
}
.cart-btn__label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--taupe-2);
}
.cart-btn__count {
  min-width: 22px; height: 22px; display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--ink); color: var(--cream); border-radius: 999px;
  font-size: 12px; font-weight: 700; padding: 0 6px;
}

/* ---- Main ---- */
.main {
  flex: 1; width: 100%; max-width: var(--wrap);
  margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px);
}

/* ---- Hero ---- */
.hero { text-align: center; padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 56px); }
.hero__eyebrow {
  font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin: 0 0 22px;
}
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(42px, 7.5vw, 92px); line-height: 0.98; letter-spacing: -0.01em;
  margin: 0 auto; max-width: 14ch; color: var(--ink);
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--taupe-2);
  max-width: 52ch; margin: 26px auto 0;
}

/* ---- Search ---- */
.search { max-width: 640px; margin: 44px auto 0; }
.search__box {
  display: flex; align-items: center; gap: 14px;
  background: var(--paper); border: 1px solid var(--sand); border-radius: 999px;
  padding: 8px 8px 8px 26px;
  box-shadow: 0 24px 48px -28px rgba(60, 42, 20, 0.35);
}
.search__box:focus-within { border-color: var(--amber); }
.search__icon { flex-shrink: 0; }
.search__input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 17px; color: var(--ink); padding: 12px 0; min-width: 0;
}
.search__btn {
  border: none; background: var(--ink); color: var(--cream);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
}
.search__btn:hover { background: var(--gold-dk); }

.chips {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.chips__label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.chip {
  border: 1px solid var(--sand); background: var(--paper); color: var(--taupe-2);
  font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 999px; cursor: pointer;
  transition: border-color .15s, color .15s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-dk); }

/* ---- Trust row ---- */
.trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 26px; margin-top: 34px;
}
.trust__item {
  display: flex; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe); font-weight: 600;
}
.trust__diamond { width: 5px; height: 5px; background: var(--amber); transform: rotate(45deg); }

/* ---- Results ---- */
.results-wrap { padding-bottom: clamp(40px, 6vw, 80px); }
.results__label {
  text-align: center; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin: 0 0 32px;
}
.results { display: flex; flex-direction: column; gap: 28px; max-width: 1080px; margin: 0 auto; }

.result {
  background: var(--paper); border: 1px solid var(--sand-2); border-radius: 10px;
  overflow: hidden; box-shadow: 0 30px 60px -44px rgba(60, 42, 20, 0.4);
  animation: rise .4s ease both;
}
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.result__head {
  padding: clamp(22px, 3vw, 32px) clamp(22px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
}
.result__title-row {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.result__title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 3vw, 36px);
  margin: 0; color: var(--ink);
}
.result__title span { color: var(--taupe); }
.result__family {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dk); font-weight: 600;
  border: 1px solid #E0CDAF; border-radius: 999px; padding: 6px 14px; background: #FBF4E7;
  white-space: nowrap;
}

.pyramid { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 18px; }
.pyramid__col { min-width: 110px; }
.pyramid__label {
  margin: 0 0 5px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: #B3A891; font-weight: 700;
}
.pyramid__val { margin: 0; font-size: 14px; color: #5A5147; }

.result__body { display: flex; flex-wrap: wrap; }
.side {
  flex: 1; min-width: 290px; padding: clamp(24px, 3vw, 40px);
  display: flex; gap: 24px; align-items: center;
}
.side--orig { border-right: 1px solid var(--line); }
.side--ours {
  background: linear-gradient(180deg, #FBF3E6 0%, #F7EAD5 100%); position: relative;
}
.side__info { flex: 1; min-width: 0; }
.side__label {
  margin: 0 0 10px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.side--ours .side__label {
  letter-spacing: 0.18em; color: var(--gold);
  display: flex; align-items: center; gap: 8px;
}
.dot { width: 8px; height: 8px; border-radius: 999px; background: var(--green); display: inline-block; flex-shrink: 0; }
.side__orig-name { margin: 0; font-size: 15px; color: var(--taupe-2); line-height: 1.5; }
.side__price-orig {
  margin: 16px 0 4px; font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--taupe);
}
.side__meta { margin: 0; font-size: 13px; color: var(--muted); }
.side--ours .side__meta { color: #7E7263; }
.side__dupe-name {
  margin: 0; font-family: var(--serif); font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600; color: var(--ink);
}
.side__dupe-sub { margin: 6px 0 0; font-size: 13px; color: #7E7263; line-height: 1.5; }
.price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-top: 18px; flex-wrap: wrap;
}
.side__price-ours {
  margin: 0; font-family: var(--serif); font-size: 40px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.price-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.save-badge {
  background: var(--ink); color: var(--cream); font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; padding: 7px 14px; border-radius: 999px; white-space: nowrap;
}
.add-btn {
  border: none; background: var(--ink); color: var(--cream);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  padding: 15px 30px; border-radius: 999px; cursor: pointer; transition: background .15s;
}
.add-btn:hover { background: var(--gold-dk); }
.add-btn.is-added { background: var(--green); }

/* ---- Bottle graphic ---- */
.bottle { position: relative; width: 78px; height: 126px; flex-shrink: 0; }
.bottle__cap { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 30px; height: 20px; border-radius: 4px 4px 3px 3px; }
.bottle__neck { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 18px; height: 12px; }
.bottle__body { position: absolute; top: 28px; left: 0; right: 0; bottom: 0; border-radius: 9px 9px 12px 12px; }
.bottle__label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center;
}
/* original bottle */
.bottle--orig .bottle__cap { background: linear-gradient(180deg, #4A4136, #2C251C); }
.bottle--orig .bottle__neck { background: #CDBFA6; }
.bottle--orig .bottle__body {
  background: linear-gradient(135deg, #F0E8D9 0%, #DBCBB1 55%, #EADDC6 100%);
  border: 1px solid #D0C0A6;
  box-shadow: inset 5px 5px 12px rgba(255,255,255,0.6), inset -5px -7px 14px rgba(120,100,70,0.16);
}
.bottle--orig .bottle__label {
  width: 78%; padding: 9px 4px; background: rgba(255,253,249,0.92); border: 1px solid var(--sand-2);
}
.bottle--orig .bottle__initial { font-family: var(--serif); font-size: 24px; color: var(--taupe); line-height: 1; }
/* ours bottle */
.bottle--ours .bottle__cap { background: linear-gradient(180deg, #2C251C, #15110C); }
.bottle--ours .bottle__neck { background: #A9773F; }
.bottle--ours .bottle__body {
  background: linear-gradient(135deg, #E7B978 0%, #C7883B 55%, #B5762C 100%);
  border: 1px solid #A9773F;
  box-shadow: inset 5px 5px 12px rgba(255,240,215,0.55), inset -5px -8px 16px rgba(90,55,15,0.3);
}
.bottle--ours .bottle__label {
  width: 80%; padding: 8px 4px; background: rgba(27,23,18,0.9); border: 1px solid rgba(255,235,205,0.35);
}
.bottle--ours .bottle__esans { font-size: 8px; letter-spacing: 0.28em; color: #E7CFA6; text-transform: uppercase; }
.bottle--ours .bottle__no { font-family: var(--serif); font-size: 20px; color: var(--cream); line-height: 1.15; }

/* ---- State (empty / loading / error) ---- */
.state { text-align: center; max-width: 44ch; margin: 0 auto; padding: 24px 0; }
.state__title { font-family: var(--serif); font-size: 30px; color: var(--ink); margin: 0 0 10px; }
.state__body { font-size: 15px; color: var(--taupe-2); margin: 0; }
.spinner {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2.5px solid var(--sand); border-top-color: var(--gold);
  margin: 8px auto 0; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- How ---- */
.how { padding: clamp(24px, 4vw, 40px) 0 clamp(56px, 8vw, 96px); }
.how__label {
  text-align: center; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin: 0 0 40px;
}
.steps { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.step { flex: 1; min-width: 240px; max-width: 340px; text-align: center; padding: 8px; }
.step__num { font-family: var(--serif); font-size: 46px; color: #D9C7A8; margin: 0 0 8px; font-weight: 600; }
.step__title { font-family: var(--serif); font-size: 24px; color: var(--ink); margin: 0 0 10px; font-weight: 600; }
.step__body { font-size: 15px; color: var(--taupe-2); line-height: 1.6; margin: 0; }

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--sand-2); padding: 34px clamp(20px, 5vw, 60px);
  max-width: var(--wrap); margin: 0 auto; width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 20px 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__mark { font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: 0.16em; color: var(--ink); }
.footer__tag { font-size: 13px; color: var(--taupe); font-style: italic; font-family: var(--serif); }
.footer__contact { display: flex; flex-direction: column; gap: 5px; font-size: 14px; }
.footer__contact a { color: var(--gold-dk); }
.footer__contact a:hover { color: var(--gold); }
.footer__contact span { color: var(--taupe-2); }
.footer__copy { font-size: 13px; color: var(--muted); align-self: flex-end; }

/* ---- Searching state: hide suggestions + how ---- */
body.is-searching .chips,
body.is-searching .trust,
body.is-searching .about,
body.is-searching .guide,
body.is-searching .how { display: none; }

/* ---- About / millega leht tegeleb ---- */
.about { padding: clamp(8px, 2vw, 24px) 0 clamp(40px, 6vw, 72px); }
.about__grid { display: flex; flex-wrap: wrap; gap: 32px; align-items: stretch; }
.about__main { flex: 2; min-width: 300px; }
.about__eyebrow { margin: 0 0 12px; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.about__title { margin: 0 0 18px; font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4vw, 42px); line-height: 1.05; color: var(--ink); }
.about__text { margin: 0 0 14px; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.65; color: var(--taupe-2); max-width: 60ch; }
.about__slogan { margin: 20px 0 0; font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 26px); color: var(--gold-dk); }
.about__salon {
  flex: 1; min-width: 240px; background: var(--ink); color: #EFE3CE;
  border-radius: 10px; padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; justify-content: center;
}
.about__salon-label { margin: 0 0 12px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: #B7A98C; font-weight: 600; }
.about__salon-addr { margin: 0 0 14px; font-family: var(--serif); font-size: 28px; font-weight: 600; color: #F4EFE7; line-height: 1.2; }
.about__salon-text { margin: 0; font-size: 14px; line-height: 1.6; color: #D8C8AC; }

.brands { margin-top: clamp(32px, 4vw, 48px); text-align: center; }
.brands__label { margin: 0 0 18px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.brands__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; }
.brands__item {
  font-family: var(--serif); font-size: 18px; color: var(--taupe-2);
  padding: 4px 4px; position: relative;
}
.brands__item:not(:last-of-type)::after { content: '·'; margin-left: 14px; color: var(--sand); }
.brands__more { align-self: center; font-size: 13px; color: var(--gold); font-weight: 600; }

/* ---- Kuidas tellida ---- */
.guide { padding: clamp(24px, 4vw, 40px) 0 clamp(40px, 6vw, 72px); border-top: 1px solid var(--sand-2); }
.guide__label { text-align: center; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 36px; }
.guide__steps { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.gstep {
  flex: 1; min-width: 190px; max-width: 220px; background: var(--paper);
  border: 1px solid var(--sand-2); border-radius: 10px; padding: 22px 20px;
}
.gstep__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px; background: var(--ink); color: var(--cream);
  font-size: 14px; font-weight: 700; margin: 0 0 12px;
}
.gstep__title { margin: 0 0 8px; font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.15; }
.gstep__body { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--taupe-2); }
.guide__note { max-width: 62ch; margin: 30px auto 0; text-align: center; font-size: 13px; line-height: 1.6; color: var(--taupe); }

/* ---- Ostukorvi leht ---- */
.cart { padding: clamp(28px, 4vw, 56px) 0 clamp(56px, 8vw, 90px); }
.cart__inner { max-width: 1060px; margin: 0 auto; }
.cart__back {
  display: inline-flex; align-items: center; gap: 8px; border: none; background: transparent;
  color: var(--gold-dk); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; padding: 0;
}
.cart__back:hover { color: var(--gold); }
.cart__title { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 5vw, 52px); margin: 14px 0 4px; color: var(--ink); }
.cart__count { margin: 0 0 30px; color: var(--taupe); font-size: 15px; }

.cart-empty-box { text-align: center; background: var(--paper); border: 1px solid var(--sand-2); border-radius: 10px; padding: 60px 24px; }
.cart-empty-box__title { font-family: var(--serif); font-size: 26px; color: var(--ink); margin: 0 0 8px; }
.cart-empty-box__sub { font-size: 15px; color: var(--taupe-2); margin: 0 0 22px; }
.btn-dark { border: none; background: var(--ink); color: var(--cream); font-size: 14px; font-weight: 600; padding: 14px 28px; border-radius: 999px; cursor: pointer; }
.btn-dark:hover { background: var(--gold-dk); }

.cart-grid { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; }

/* toodete nimekiri */
.cart-list {
  flex: 2; min-width: 300px; background: var(--paper); border: 1px solid var(--sand-2);
  border-radius: 10px; overflow: hidden; box-shadow: 0 30px 60px -46px rgba(60,42,20,0.4);
}
.citem { display: flex; gap: 18px; align-items: center; padding: 20px clamp(18px, 3vw, 26px); border-bottom: 1px solid var(--line); }
.citem__main { flex: 1; min-width: 0; }
.citem__name { margin: 0; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.citem__sub { margin: 3px 0 0; font-size: 13px; color: var(--taupe); }
.citem__total { margin: 0; font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); min-width: 78px; text-align: right; }
.citem__remove { border: none; background: none; color: var(--muted); font-size: 11px; cursor: pointer; text-decoration: underline; padding: 4px 0 0; }
.cart-list__stock { padding: 18px clamp(18px, 3vw, 26px); display: flex; align-items: center; gap: 10px; color: var(--green); font-size: 13px; font-weight: 600; }

/* mini pudel ostukorvis */
.cbottle { position: relative; width: 46px; height: 74px; flex-shrink: 0; }
.cbottle__cap { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 18px; height: 12px; background: linear-gradient(180deg, #2C251C, #15110C); border-radius: 3px 3px 2px 2px; }
.cbottle__neck { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 11px; height: 7px; background: #A9773F; }
.cbottle__body {
  position: absolute; top: 17px; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #E7B978, #C7883B 55%, #B5762C); border: 1px solid #A9773F;
  border-radius: 6px 6px 8px 8px; box-shadow: inset 3px 3px 7px rgba(255,240,215,0.5);
  display: flex; align-items: center; justify-content: center;
}
.cbottle__no { font-family: var(--serif); font-size: 11px; color: var(--cream); line-height: 1; }

/* kogus */
.qty { display: flex; align-items: center; border: 1px solid #E0D4BF; border-radius: 999px; overflow: hidden; background: #FBF6EC; }
.qty__btn { width: 32px; height: 34px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 16px; border: none; background: none; cursor: pointer; padding: 0; }
.qty__btn:hover { color: var(--ink); }
.qty__n { min-width: 26px; text-align: center; font-size: 14px; font-weight: 600; color: var(--ink); }

/* kokkuvõte + makse */
.cart-summary { flex: 1; min-width: 290px; background: var(--ink); color: #EFE3CE; border-radius: 10px; padding: clamp(24px, 3vw, 32px); }
.cart-summary__title { margin: 0 0 22px; font-family: var(--serif); font-size: 26px; color: var(--cream); font-weight: 600; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; color: #D8C8AC; }
.cart-summary__row .is-free { color: #93C993; font-weight: 600; }
.cart-summary__hr { border-top: 1px solid rgba(255,255,255,0.14); margin: 18px 0; }
.cart-summary__total { display: flex; justify-content: space-between; align-items: baseline; }
.cart-summary__total span:first-child { font-size: 15px; letter-spacing: 0.02em; }
.cart-summary__total-val { font-family: var(--serif); font-size: 34px; font-weight: 700; color: #E7B978; }
.cart-summary__save { margin: 10px 0 0; font-size: 12px; color: #93C993; }
.cart-summary__method { margin: 28px 0 12px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #B7A98C; font-weight: 600; }

.banks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bank { display: flex; align-items: center; gap: 10px; background: var(--paper); border-radius: 8px; padding: 10px 12px; cursor: pointer; border: 2px solid transparent; }
.bank:hover, .bank.is-sel { border-color: var(--gold); }
.bank__badge { width: 30px; height: 30px; flex-shrink: 0; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 0.02em; }
.bank__name { font-size: 13px; font-weight: 600; color: #2C261E; }

.cards { display: flex; gap: 10px; }
.card-tile { flex: 1; background: var(--paper); border-radius: 8px; padding: 12px; text-align: center; font-size: 14px; font-weight: 800; cursor: pointer; border: 2px solid transparent; }
.card-tile--visa { color: #1A1F71; letter-spacing: 0.06em; }
.card-tile--mc { color: #EB4B1F; letter-spacing: 0.04em; }
.card-tile:hover, .card-tile.is-sel { border-color: var(--gold); }

.btn-pay { width: 100%; margin-top: 22px; border: none; background: var(--gold); color: #FFF7EB; font-size: 15px; font-weight: 700; letter-spacing: 0.03em; padding: 16px; border-radius: 999px; cursor: pointer; }
.btn-pay:hover { background: var(--gold-dk); }
.btn-pay:disabled { opacity: .6; cursor: not-allowed; }
.cart-summary__secure { margin: 12px 0 0; text-align: center; font-size: 11px; color: #8E8168; }

/* kinnitus */
.cart-confirm { text-align: center; background: var(--paper); border: 1px solid var(--sand-2); border-radius: 10px; padding: clamp(40px, 6vw, 70px) 24px; max-width: 560px; margin: 0 auto; }
.cart-confirm__check { width: 60px; height: 60px; border-radius: 999px; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 18px; }
.cart-confirm__title { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--ink); margin: 0 0 10px; }
.cart-confirm__text { font-size: 15px; color: var(--taupe-2); margin: 0 0 6px; }
.cart-confirm__text b { color: var(--gold-dk); letter-spacing: 0.04em; }

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .side--orig { border-right: none; border-bottom: 1px solid var(--line); }
  .nav { gap: 16px; }
  .brand__tag { display: none; }
  .header { padding: 20px; }
}
