/* Noryy-style storefront design
   Font: Poppins · Buttons: black, square, uppercase, .18em tracking
   Colors: #1c1c1c accent · #efefef bars · #1f1e1e footer · sale red #e53935 */

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

:root {
  --ink: #1c1c1c;
  --ink-soft: #555;
  --bg: #ffffff;
  --bg-grey: #efefef;
  --bg-dark: #1f1e1e;
  --line: #cbcbcb;
  --line-soft: #dddddd;
  --sale: #e53935;
  --tp-green: #00b67a;
  --heading: "Poppins", sans-serif;
  --body: "Poppins", sans-serif;
  --gutter: 20px;
  --sec-space: 2rem;
}
@media (min-width: 700px) { :root { --gutter: 32px; --sec-space: 3rem; } }
@media (min-width: 1000px) { :root { --gutter: 48px; } }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: -0.03em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; font-size: 13px; letter-spacing: -0.03em; }

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

/* ---------- typography ---------- */

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1.25;
}
.h1 { font-size: clamp(1.375rem, 1.15rem + 1vw, 2rem); }
.h2 { font-size: clamp(1.25rem, 1.07rem + 0.78vw, 1.75rem); }
.h3 { font-size: clamp(1.125rem, 1.03rem + 0.39vw, 1.375rem); }
.h4 { font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem); }
.h5 { font-size: 0.875rem; }
.h6 { font-size: 0.75rem; }
.text-center { text-align: center; }

.avh-empty { padding: 48px 0; color: var(--ink-soft); text-align: center; }

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

.button {
  display: inline-block;
  padding: 10px 26px;
  font: 600 12px/1.65 var(--heading);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: opacity .15s ease;
  text-align: center;
}
.button:hover { opacity: .85; }
.button--outline { background: transparent; color: var(--ink); }
.button--outline:hover { background: var(--ink); color: #fff; opacity: 1; }
.button--white { background: #fff; color: var(--ink); border-color: #fff; }
.button--block { display: block; width: 100%; }
.button:disabled { opacity: .4; cursor: not-allowed; }

.center { text-align: center; }

/* ---------- announcement bar ---------- */

.announcement {
  background: var(--bg-grey);
  color: var(--ink);
  text-align: center;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 12px;
  position: sticky;
  top: 0;
  z-index: 90;
}
.announcement__msg { display: none; }
.announcement__msg.is-active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid rgba(203, 203, 203, .4);
}
.site-header__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px var(--gutter);
}
.site-header__logo img { width: 95px; height: auto; margin: 0 auto; }
@media (min-width: 700px) { .site-header__logo img { width: 120px; } }

.site-header__left, .site-header__right { display: flex; align-items: center; gap: 20px; }
.site-header__right { justify-content: flex-end; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 0;
}
.icon-btn svg { width: 22px; height: 22px; stroke: var(--ink); stroke-width: 1.3; fill: none; }
.icon-btn:hover { opacity: .6; }
.icon-btn--desktop-only { display: none; }
@media (min-width: 1000px) { .icon-btn--desktop-only { display: inline-flex; } }

.cart-count {
  display: inline-flex;
  min-width: 17px; height: 17px;
  align-items: center; justify-content: center;
  background: var(--ink); color: #fff;
  border-radius: 50%;
  font-size: 10px; font-weight: 600;
}

.hamburger { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 4px 0; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

/* drawer nav */
.drawer-nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(380px, 92vw);
  background: #fff;
  z-index: 300;
  transform: translateX(-100%);
  transition: transform .25s ease;
  padding: 22px;
  overflow-y: auto;
}
.drawer-nav.is-open { transform: translateX(0); }
.drawer-nav__close { background: none; border: 0; font-size: 26px; margin-bottom: 14px; }
.drawer-nav details { border-bottom: 1px solid var(--line-soft); }
.drawer-nav summary, .drawer-nav > a {
  display: block;
  padding: 12px 0;
  font: 600 12px/1.6 var(--heading);
  letter-spacing: .12em;
  text-transform: uppercase;
  list-style: none;
  cursor: pointer;
}
.drawer-nav summary::-webkit-details-marker { display: none; }
.drawer-nav details a {
  display: block;
  padding: 7px 0 7px 14px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.drawer-nav__foot { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: var(--ink-soft); }

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgb(0 0 0 / .4);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* countdown bar */
.countdown-bar {
  background: var(--bg-grey);
  padding: 10px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  font: 600 11px/1.5 var(--heading);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.countdown { display: flex; gap: 8px; }
.countdown__unit { text-align: center; min-width: 34px; }
.countdown__num {
  background: var(--ink); color: #fff;
  font: 600 13px/1 var(--heading);
  padding: 5px 6px; border-radius: 2px;
  display: block;
  font-variant-numeric: tabular-nums;
}
.countdown__label { font-size: 8px; letter-spacing: .12em; margin-top: 3px; display: block; }

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

.hero { position: relative; }
.hero img { width: 100%; object-fit: cover; }
.hero__desktop { display: none; }
.hero__mobile { display: block; }
@media (min-width: 700px) { .hero__desktop { display: block; } .hero__mobile { display: none; } }
.hero a.hero__link { display: block; }

/* ---------- marquee ---------- */

.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}
.marquee__track {
  display: inline-flex;
  animation: marquee 24s linear infinite;
}
.marquee__track span {
  font: 600 12px/1.5 var(--heading);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 0 18px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

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

.section { padding: var(--sec-space) 0; }
.section--grey { background: var(--bg-grey); }
.section__head { text-align: center; margin-bottom: 22px; }

.circle-carousel-wrap { position: relative; }
.circle-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  justify-content: flex-start;
  padding: 10px 4px;
}
.circle-scroll::-webkit-scrollbar { display: none; }
.circle-item { flex: 0 0 auto; scroll-snap-align: start; text-align: center; width: 84px; }
.circle-item img {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  object-fit: cover;
  margin: 0 auto 8px;
  transition: transform .2s ease;
}
.circle-item:hover img { transform: scale(1.06); }
.circle-item__label { font: 600 10px/1.4 var(--heading); letter-spacing: .02em; display: block; }
@media (min-width: 700px) {
  .circle-item img { width: 84px; height: 84px; }
  .circle-item__label { font-size: 14px; }
}
.circle-arrow {
  position: absolute;
  top: 38px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: #fff;
  font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 5;
}
.circle-arrow--left { left: -6px; }
.circle-arrow--right { right: -6px; }
.circle-arrow:hover { background: var(--ink); color: #fff; }

/* ---------- product cards & grids ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 10px;
}
@media (min-width: 700px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 14px; } }
@media (min-width: 1150px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-grid--4up { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .product-grid--4up { grid-template-columns: repeat(4, 1fr); } }

.product-card { text-align: center; display: block; }
.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-grey);
  aspect-ratio: 1 / 1;
  margin-bottom: 8px;
}
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s ease; }
.product-card__img--hover { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .product-card__img--hover { opacity: 1; }
.product-card:hover .product-card__img:not(.product-card__img--hover) { opacity: 0; }
.product-card__title {
  display: block;
  font: 600 13px/1.5 var(--heading);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 2px;
}
.product-card__title:hover { text-decoration: underline; }
.product-card__price { font-size: 12px; }
.product-card__price .price--sale { color: var(--sale); font-weight: 600; }
.product-card__price s { color: var(--ink-soft); margin-left: 6px; }
.product-card__badge {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 2;
  background: var(--sale);
  color: #fff;
  font: 600 10px/1 var(--heading);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 8px;
}

/* horizontal product carousel */
.product-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(160px, 38vw, 240px);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.product-carousel::-webkit-scrollbar { display: none; }
.product-carousel .product-card { scroll-snap-align: start; }
.carousel-nav { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.carousel-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: #fff;
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover { background: var(--ink); color: #fff; }

/* scrolling products marquee */
.rows-marquee { overflow: hidden; display: flex; flex-direction: column; gap: 14px; }
.rows-marquee__row {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.rows-marquee__row--reverse { animation-direction: reverse; }
.rows-marquee__row .product-card { width: 220px; flex: 0 0 auto; }
.rows-marquee:hover .rows-marquee__row { animation-play-state: paused; }

/* ---------- collection list ---------- */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 1150px) { .collection-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.collection-card { position: relative; display: block; overflow: hidden; }
.collection-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .4s ease;
}
.collection-card:hover img { transform: scale(1.04); }
.collection-card__btn {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* ---------- tabs ---------- */

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-bottom: 22px;
}
.tabs-nav button {
  background: none;
  border: 0;
  font: 600 clamp(1rem, 1.4vw, 1.35rem)/1.3 var(--heading);
  letter-spacing: -.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 0;
}
.tabs-nav button.is-active { color: var(--ink); text-decoration: underline; text-underline-offset: 6px; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* ---------- community / UGC ---------- */

.ugc-marquee { overflow: hidden; }
.ugc-marquee__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.ugc-marquee:hover .ugc-marquee__track { animation-play-state: paused; }
.ugc-marquee img {
  width: 120px; height: 210px;
  object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 700px) { .ugc-marquee img { width: 210px; height: 320px; } }

/* ---------- testimonials ---------- */

.testimonials { text-align: center; }
.testimonials__stars { display: flex; justify-content: center; gap: 3px; margin: 14px 0 10px; }
.testimonials__star {
  width: 32px; height: 32px;
  background: var(--tp-green);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.testimonials__score { font-size: 14px; margin-bottom: 4px; }
.testimonials__sub {
  font: 700 clamp(1rem, 2vw, 1.3rem)/1.4 var(--heading);
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 26vw, 300px);
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  text-align: left;
  padding-bottom: 6px;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: 16px;
}
.testi-card__stars { color: var(--tp-green); letter-spacing: 2px; font-size: 13px; }
.testi-card h4 { font: 700 14px/1.4 var(--heading); margin: 8px 0 6px; letter-spacing: -.02em; }
.testi-card p { font-size: 13px; color: var(--ink-soft); margin-bottom: 10px; }
.testi-card__who { font-size: 12px; color: var(--ink-soft); }
.testi-card__who strong { color: var(--ink); }

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 26px; }
.faq__eyebrow { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 4px; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 2px;
  font: 600 13px/1.5 var(--heading);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 18px; font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 2px 16px; font-size: 13px; color: var(--ink-soft); }
.faq-item p strong { color: var(--ink); }

/* ---------- text with icons ---------- */

.icon-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 14px;
  text-align: center;
}
@media (min-width: 1000px) { .icon-features { grid-template-columns: repeat(4, 1fr); } }
.icon-feature img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 10px; }
.icon-feature h6 { font: 600 12px/1.5 var(--heading); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.icon-feature p { font-size: 12px; color: var(--ink-soft); }

/* ---------- pre-footer banner ---------- */

.prefooter img { width: 100%; object-fit: cover; }
.prefooter__desktop { display: none; }
.prefooter__mobile { display: block; }
@media (min-width: 700px) { .prefooter__desktop { display: block; } .prefooter__mobile { display: none; } }

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

.site-footer { background: var(--bg-dark); color: #fff; padding: 46px 0 20px; }
.site-footer a { color: rgb(255 255 255 / .75); }
.site-footer a:hover { color: #fff; }
.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 34px;
}
@media (min-width: 1000px) { .site-footer__cols { grid-template-columns: 1.4fr 1fr 1fr auto; } }
.site-footer h4 {
  font: 600 12px/1.6 var(--heading);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 7px; font-size: 12.5px; }
.site-footer__about p { font-size: 12.5px; color: rgb(255 255 255 / .75); max-width: 360px; }
.site-footer__img { margin-top: 18px; }
.site-footer__img img { width: 130px; }
.site-footer__bottom {
  border-top: 1px solid rgb(255 255 255 / .12);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  color: rgb(255 255 255 / .6);
}
.site-footer__social { display: flex; gap: 14px; }
.site-footer__social svg { width: 22px; height: 22px; fill: #fff; }
.site-footer__payments { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-badge {
  border: 1px solid rgb(255 255 255 / .25);
  border-radius: 3px;
  font: 600 9px/1 var(--heading);
  letter-spacing: .04em;
  padding: 5px 7px;
  color: #fff;
  background: rgb(255 255 255 / .06);
}

/* ---------- cart drawer ---------- */

#cart-drawer { position: fixed; inset: 0; z-index: 400; visibility: hidden; }
#cart-drawer.is-open { visibility: visible; }
.cd-backdrop { position: absolute; inset: 0; background: rgb(0 0 0 / .4); opacity: 0; transition: opacity .2s; }
#cart-drawer.is-open .cd-backdrop { opacity: 1; }
.cd {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(420px, 92vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .25s ease;
}
#cart-drawer.is-open .cd { transform: translateX(0); }
.cd__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
  font: 600 13px/1.5 var(--heading);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cd__close { background: none; border: 0; font-size: 26px; line-height: 1; }
.cd__body { flex: 1; overflow-y: auto; padding: 18px 22px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.cd__empty { color: var(--ink-soft); }
.cd__line { display: flex; gap: 14px; width: 100%; }
.cd__line img { width: 76px; height: 96px; object-fit: cover; background: var(--bg-grey); }
.cd__lineinfo { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.cd__linetitle { font: 600 13px/1.4 var(--heading); }
.cd__linetitle:hover { text-decoration: underline; }
.cd__linevariant { font-size: 12px; color: var(--ink-soft); }
.cd__linesku { font-size: 10px; color: var(--ink-soft); letter-spacing: .04em; }
.cd__lineprice { font-size: 13px; font-weight: 600; }
.cd__foot { border-top: 1px solid var(--line-soft); padding: 18px 22px; display: flex; flex-direction: column; gap: 10px; }
.cd__subtotal { display: flex; justify-content: space-between; font-size: 13px; }
.cd__hint { font-size: 11.5px; color: var(--ink-soft); }
.cd__hint--ok { color: #1c7c30; }

/* qty */
.qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; }
.qty__btn {
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.qty__btn:hover { background: var(--bg-grey); }
.qty__val { min-width: 18px; text-align: center; font-size: 13px; }

/* ---------- product page ---------- */

.pdp { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; padding: 36px 0; }
@media (max-width: 899px) { .pdp { grid-template-columns: 1fr; } }
.pdp__gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp__media { background: var(--bg-grey); }
.pdp__media img { width: 100%; }
.pdp__info { position: sticky; top: 24px; align-self: start; display: flex; flex-direction: column; gap: 16px; }
.pdp__title { text-transform: uppercase; }
.pdp__price { font-size: 17px; }
.pdp__price .price--sale { color: var(--sale); font-weight: 600; }
.pdp__price s { color: var(--ink-soft); margin-left: 8px; }
.pdp__option { border: 0; margin-bottom: 14px; }
.pdp__option legend { font: 600 11px/1.5 var(--heading); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.pdp__values { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp__value input { position: absolute; opacity: 0; }
.pdp__value span {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 12.5px;
  transition: all .12s;
}
.pdp__value input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.pdp__value span:hover { border-color: var(--ink); }
.pdp__stock { color: var(--sale); font-size: 12px; min-height: 16px; }
.pdp__actions { display: flex; gap: 10px; align-items: stretch; }
.pdp__actions .qty { margin: 0; border: 1px solid var(--line); padding: 4px 10px; }
.pdp__actions .button { flex: 1; }
.pdp__desc h3 { font: 600 12px/1.6 var(--heading); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.pdp__desc p { color: var(--ink-soft); font-size: 13px; }
.pdp__usp { list-style: none; border-top: 1px solid var(--line-soft); padding-top: 14px; display: flex; flex-direction: column; gap: 5px; }
.pdp__usp li { font-size: 12.5px; color: var(--ink-soft); }
.pdp__usp li::before { content: "✓  "; color: #1c7c30; }

/* ---------- shop page ---------- */

.shop-head { padding: 36px 0 6px; }
.shop-search { max-width: 420px; margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 10px; }
.chip {
  border: 1px solid var(--line);
  padding: 7px 14px;
  font: 600 11px/1.5 var(--heading);
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #fff;
}
.chip.is-active, .chip:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

/* ---------- checkout ---------- */

.checkout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 44px; padding: 36px 0; }
@media (max-width: 899px) { .checkout { grid-template-columns: 1fr; } }
.checkout h2 { font: 600 13px/1.6 var(--heading); letter-spacing: .14em; text-transform: uppercase; margin: 24px 0 12px; }
.checkout h2:first-child { margin-top: 0; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.field label { font: 600 10.5px/1.5 var(--heading); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 11px 13px;
  outline: none;
  background: #fff;
}
.field input:focus, .field select:focus { border-color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-methods { flex-direction: row; flex-wrap: wrap; gap: 10px; }
.pay { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); padding: 11px 15px; font-size: 13px; }
.pay:has(input:checked) { border-color: var(--ink); background: var(--bg-grey); }
.checkout__note { font-size: 11.5px; color: var(--ink-soft); margin: 10px 0 16px; }
.checkout__summary { position: sticky; top: 24px; align-self: start; display: flex; flex-direction: column; gap: 13px; background: var(--bg-grey); padding: 22px; }
.checkout__total { border-top: 1px solid var(--line); padding-top: 12px; font-size: 15px; font-weight: 600; }
.checkout__empty { padding: 80px 0; text-align: center; display: flex; flex-direction: column; gap: 18px; align-items: center; }

/* ---------- thank you ---------- */

.thanks { max-width: 560px; margin: 0 auto; padding: 64px 20px; text-align: center; display: flex; flex-direction: column; gap: 14px; }
.thanks__check { width: 54px; height: 54px; margin: 0 auto; background: var(--tp-green); color: #fff; border-radius: 50%; font-size: 25px; display: flex; align-items: center; justify-content: center; }
.thanks h1 { font-size: clamp(22px, 4vw, 32px); }
.thanks__items { text-align: left; border: 1px solid var(--line-soft); padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.thanks .button { align-self: center; margin-top: 8px; }

/* ---------- toast ---------- */

#toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 11px 22px;
  font-size: 12px;
  letter-spacing: .06em;
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
  z-index: 500;
}
#toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* mobile-only helpers */
.mobile-only { display: inline-flex; }
.desktop-only { display: none; }
@media (min-width: 1000px) {
  .mobile-only { display: none; }
  .desktop-only { display: inline-flex; }
}
