:root {
  --bg: #fffdf9;
  --tint: #fdf3ec;
  --ink: #3a2d5c;
  --ink-soft: #6d5f92;
  --line: #eee4da;
  --pink: #ff7eb3;
  --violet: #a58bff;
  --mint: #6be6c1;
  --sun: #ffd166;
  --card: #ffffff;
  --radius: 22px;
  --shadow: 0 14px 34px rgba(109, 95, 146, 0.14);
  --font: "Avenir Next", "Nunito", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
a { color: inherit; }

/* ---------- Announcement bar ---------- */
.bar {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  padding: 8px 16px; position: relative; z-index: 30;
}
.bar__currency { position: absolute; right: 16px; }
.bar__currency select {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px; padding: 3px 10px; font-weight: 700; cursor: pointer;
}
.bar__currency option { color: var(--ink); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px 28px;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { font-weight: 900; font-size: 24px; text-decoration: none; letter-spacing: -0.5px; }
.nav__logo span { color: var(--pink); }
.nav__links { display: flex; gap: 26px; }
.nav__links a { text-decoration: none; font-weight: 700; font-size: 15px; color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--pink); }
.nav__icons { display: flex; gap: 8px; }
.iconbtn {
  position: relative; border: none; background: none; cursor: pointer;
  font-size: 19px; padding: 6px 8px; border-radius: 12px; color: var(--ink);
  transition: background .2s, transform .2s;
}
.iconbtn:hover { background: var(--tint); transform: translateY(-2px); }
.iconbtn.is-on { background: linear-gradient(120deg, var(--violet), var(--pink)); color: #fff; }
.badge {
  position: absolute; top: 0; right: 0;
  background: var(--pink); color: #fff; font-style: normal;
  font-size: 10px; font-weight: 800; min-width: 16px; height: 16px;
  border-radius: 999px; display: grid; place-items: center; padding: 0 4px;
}

/* ---------- Buttons ---------- */
.btn {
  text-decoration: none; font-weight: 800; padding: 13px 26px; border-radius: 999px;
  border: none; cursor: pointer; font-size: 15px; font-family: var(--font);
  transition: transform .2s, box-shadow .2s; display: inline-block;
}
.btn--primary { color: #fff; background: linear-gradient(120deg, var(--pink), var(--violet)); box-shadow: 0 12px 30px rgba(165,139,255,.35); }
.btn--ghost { color: var(--ink); background: #fff; box-shadow: 0 6px 18px rgba(109,95,146,.15); }
.btn:hover { transform: translateY(-3px); }

/* ---------- Stage (hero room) ---------- */
.stage {
  position: relative; width: 100%;
  height: calc(100vh - 110px); min-height: 600px;
  overflow: hidden; background: #ece2d4;
}
.stage__wall { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; cursor: crosshair; display: block; touch-action: pan-y; }
.stage__room { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.stage__ui { position: absolute; inset: 0; z-index: 3; pointer-events: none; display: flex; flex-direction: column; }
.stage__copy { margin: 56px 0 0 clamp(20px, 6vw, 88px); max-width: 560px; }
.stage__kicker {
  display: inline-block; font-weight: 800; letter-spacing: 1px; font-size: 12px; text-transform: uppercase;
  color: #fff; background: var(--ink); padding: 7px 14px; border-radius: 999px;
}
.stage__title { font-size: clamp(44px, 7.5vw, 96px); font-weight: 900; line-height: .97; margin: 16px 0 10px; overflow: hidden; }
.stage__title .char {
  display: inline-block; will-change: transform;
  background: linear-gradient(120deg, var(--pink), var(--violet) 55%, var(--mint));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stage__sub { font-size: clamp(15px, 2vw, 19px); font-weight: 600; text-shadow: 0 1px 8px rgba(255,255,255,.7); }
.stage__cta { display: flex; gap: 12px; margin-top: 18px; pointer-events: auto; flex-wrap: wrap; }
.swatches { pointer-events: auto; margin-top: auto; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; padding: 0 20px 14px; }
.swatch {
  border: 3px solid transparent; background: #fff; cursor: pointer; border-radius: 18px; padding: 6px; width: 92px;
  box-shadow: var(--shadow); transition: transform .2s, border-color .2s;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.swatch:hover { transform: translateY(-4px); }
.swatch.is-active { border-color: var(--violet); }
.swatch__img { width: 100%; height: 62px; border-radius: 12px; display: block; }
.swatch__name { font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.stage__actions { pointer-events: auto; display: flex; gap: 12px; justify-content: center; padding: 0 20px 30px; }
.stage__hint {
  position: absolute; right: 24px; top: 46%; z-index: 3;
  font-weight: 700; color: var(--ink); background: rgba(255,255,255,.75);
  padding: 8px 14px; border-radius: 999px; pointer-events: none;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(8px);} }

/* ---------- Sections ---------- */
.section { padding: 90px clamp(20px, 5vw, 72px); max-width: 1440px; margin: 0 auto; }
.section--tint { background: var(--tint); max-width: none; }
.section--tint > * { max-width: 1296px; margin-left: auto; margin-right: auto; }
.section__title { font-size: clamp(28px, 4vw, 46px); font-weight: 900; text-align: center; margin-bottom: 10px; }
.section__lead { text-align: center; color: var(--ink-soft); font-weight: 600; margin-bottom: 42px; }
.section__title--left, .section__lead--left { text-align: left; }
.section__lead--left { margin-bottom: 0; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.chip {
  display: inline-block; background: var(--pink); color: #fff; font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px; padding: 6px 12px; border-radius: 6px; margin-bottom: 14px;
}
/* hidden-until-reveal only when the animation layer (fx.js) actually loaded */
body.fx [data-reveal] { opacity: 0; }

/* ---------- Theme tiles ---------- */
.tiles { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--card);
  transition: transform .25s;
}
.tile:hover { transform: translateY(-6px); }
.tile canvas { width: 100%; height: 100%; display: block; object-fit: cover; }
.tile__label {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  font-weight: 800; font-size: 14px; padding: 7px 14px; border-radius: 999px;
}

/* ---------- Product rows ---------- */
.rowNav { display: flex; gap: 8px; }
.rowNav__btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; cursor: pointer; font-size: 20px; font-weight: 700; color: var(--ink);
  transition: background .2s, transform .2s;
}
.rowNav__btn:hover { background: var(--tint); transform: translateY(-2px); }
.row {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 22px; scrollbar-width: none;
}
.row::-webkit-scrollbar { display: none; }
.product {
  flex: 0 0 clamp(220px, 24vw, 300px); scroll-snap-align: start;
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); position: relative; will-change: transform;
}
.product__art { aspect-ratio: 4/3; overflow: hidden; }
.product__art canvas, .product__art img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .4s; }
.product:hover .product__art canvas, .product:hover .product__art img { transform: scale(1.06); }
.product__heart {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.9); font-size: 17px; color: var(--ink-soft);
  display: grid; place-items: center; transition: transform .2s, color .2s;
}
.product__heart:hover { transform: scale(1.15); }
.product__heart.is-on { color: var(--pink); }
.product__body { padding: 14px 16px 16px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product__name { font-weight: 800; font-size: 15px; line-height: 1.25; }
.product__price { font-weight: 700; font-size: 13px; color: var(--ink-soft); white-space: nowrap; }

/* ---------- Shop by room ---------- */
.rooms { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 30px; }
.room {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer; transition: transform .25s; text-align: center;
}
.room:hover { transform: translateY(-6px); }
.room canvas, .room img { width: 100%; aspect-ratio: 16/10; display: block; object-fit: cover; }
.room b { display: block; font-size: 17px; padding: 14px 10px 4px; }
.room i { display: inline-block; font-style: normal; font-size: 12px; font-weight: 700; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; margin-bottom: 16px; }

/* ---------- Custom banner + tag cloud ---------- */
.custom {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 30px;
  background: linear-gradient(120deg, #fff0f6, #efe9ff);
  border-radius: 30px; padding: clamp(28px, 5vw, 60px); box-shadow: var(--shadow);
}
.custom__img {
  width: min(300px, 100%); border-radius: 18px; display: block; margin-bottom: 18px;
  box-shadow: var(--shadow); transform: rotate(-2deg); aspect-ratio: 4/3; object-fit: cover;
}
.custom__text h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; margin-bottom: 12px; }
.custom__text p { color: var(--ink-soft); font-weight: 600; line-height: 1.6; margin-bottom: 22px; }
.custom__cloud { display: flex; justify-content: center; min-height: 300px; align-items: center; }
.tagcloud { font-family: var(--font); font-weight: 700; }
.tagcloud--item { cursor: pointer; transition: color .2s; }
.tagcloud--item:hover { color: var(--pink) !important; }

/* ---------- USP band ---------- */
.usps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px;
  max-width: 1296px; margin: 0 auto; padding: 40px clamp(20px, 5vw, 72px) 80px;
}
.usp {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: center;
}
.usp span { font-size: 30px; display: block; margin-bottom: 8px; }
.usp b { display: block; font-size: 16px; margin-bottom: 4px; }
.usp i { font-style: normal; font-size: 13px; color: var(--ink-soft); font-weight: 600; }

/* ---------- Reviews ---------- */
.reviews { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.review { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.review__stars { color: var(--sun); letter-spacing: 2px; font-size: 15px; margin-bottom: 10px; }
.review b { display: block; margin-bottom: 6px; }
.review p { color: var(--ink-soft); font-weight: 600; font-size: 14px; line-height: 1.55; margin-bottom: 12px; }
.review i { font-style: normal; font-size: 12.5px; color: var(--ink-soft); opacity: .8; }

/* ---------- Blog ---------- */
.blogs { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 26px; }
.blogcard { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; transition: transform .25s; }
.blogcard:hover { transform: translateY(-6px); }
.blogcard canvas, .blogcard img { width: 100%; aspect-ratio: 16/8; display: block; object-fit: cover; }
.blogcard b { display: block; padding: 16px 18px 6px; font-size: 16px; line-height: 1.35; }
.blogcard p { padding: 0 18px 18px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Newsletter ---------- */
.news { text-align: center; padding: 90px 24px; }
.news h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 900; margin-bottom: 8px; }
.news p { color: var(--ink-soft); font-weight: 600; margin-bottom: 24px; }
.news form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.news input {
  width: min(360px, 80vw); padding: 13px 20px; border-radius: 999px;
  border: 2px solid var(--line); font-family: var(--font); font-weight: 600; font-size: 15px;
  outline: none; transition: border-color .2s;
}
.news input:focus { border-color: var(--violet); }
.news__ok { display: none; margin-top: 16px; font-weight: 800; color: #2fae7d; }
.news.is-done form { display: none; }
.news.is-done .news__ok { display: inline-block; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: #efeaff; }
.foot__cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px;
  max-width: 1296px; margin: 0 auto; padding: 64px clamp(20px, 5vw, 72px) 40px;
}
.foot__brand p { margin-top: 14px; font-size: 14px; line-height: 1.6; opacity: .75; }
.foot .nav__logo { color: #fff; }
.foot__col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot__col b { font-size: 15px; margin-bottom: 4px; }
.foot__col a { text-decoration: none; opacity: .75; transition: opacity .2s; }
.foot__col a:hover { opacity: 1; }
.foot__col span { opacity: .75; }
.foot__pay { font-size: 12.5px; border: 1px dashed rgba(255,255,255,.35); border-radius: 10px; padding: 8px 10px; margin-top: 6px; }
.foot__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  max-width: 1296px; margin: 0 auto; padding: 18px clamp(20px, 5vw, 72px) 30px;
  border-top: 1px solid rgba(255,255,255,.15); font-size: 13px; opacity: .7;
}

/* ---------- Sub-pages ---------- */
.page { max-width: 1296px; margin: 0 auto; padding: 40px clamp(20px, 5vw, 72px) 80px; min-height: 55vh; }
.page--narrow { max-width: 860px; }
.page__head { margin-bottom: 26px; }
.page__title { font-size: clamp(30px, 4.4vw, 52px); font-weight: 900; }
.page__lead { color: var(--ink-soft); font-weight: 700; margin-top: 6px; }
.crumbs { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 22px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--pink); }
.crumbs b { color: var(--ink); }

/* product cards become links */
.product__link { text-decoration: none; color: inherit; display: block; }

/* ---------- Shop ---------- */
.shopbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 30px; }
.shopbar__search {
  flex: 1 1 240px; padding: 12px 20px; border-radius: 999px; border: 2px solid var(--line);
  font-family: var(--font); font-weight: 600; font-size: 15px; outline: none;
}
.shopbar__search:focus { border-color: var(--violet); }
.shopbar__filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.shopbar__filters select {
  padding: 10px 14px; border-radius: 999px; border: 2px solid var(--line);
  font-family: var(--font); font-weight: 700; font-size: 13.5px; color: var(--ink);
  background: #fff; cursor: pointer;
}
.shopbar__wish { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); display: inline-flex; gap: 6px; align-items: center; cursor: pointer; }
.shopgrid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.shopgrid .product { flex: none; }
.shop__empty { text-align: center; font-weight: 700; color: var(--ink-soft); padding: 60px 0; }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.pdp__stage { position: sticky; top: 90px; }
.pdp__room {
  position: relative; aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: #ece2d4;
}
.pdp__room .stage__wall { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; cursor: crosshair; }
.pdp__room .stage__room { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.pdp__stagehint { text-align: center; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-top: 10px; }
.pdp__views { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.viewbtn {
  border: 2px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 18px;
  font-family: var(--font); font-weight: 700; font-size: 13.5px; cursor: pointer; color: var(--ink-soft);
}
.viewbtn.is-active { border-color: var(--violet); color: var(--ink); }
.pdp__flat { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pdp__flat canvas, .pdp__flat img { width: 100%; display: block; }
.pdp__name { font-size: clamp(28px, 3.6vw, 44px); font-weight: 900; line-height: 1.05; }
.pdp__meta { display: flex; gap: 10px; align-items: center; margin: 10px 0 4px; }
.pdp__type { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.pdp__price { font-size: 22px; margin: 10px 0 12px; }
.pdp__price b { color: var(--pink); font-size: 30px; }
.pdp__desc { color: var(--ink-soft); font-weight: 600; line-height: 1.65; margin-bottom: 22px; }
.calc { background: var(--tint); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 20px; }
.calc__fields { display: flex; gap: 12px; align-items: center; margin: 12px 0; flex-wrap: wrap; }
.calc__fields label { font-size: 13px; font-weight: 700; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.calc__fields input {
  width: 76px; padding: 9px 12px; border-radius: 12px; border: 2px solid var(--line);
  font-family: var(--font); font-weight: 800; font-size: 15px; text-align: center; outline: none;
}
.calc__fields input:focus { border-color: var(--violet); }
.calc__out { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 700; color: var(--ink-soft); }
.calc__out b { font-size: 20px; color: var(--ink); }
.pdp__actions { display: flex; gap: 12px; align-items: center; }
.qty {
  display: inline-flex; align-items: center; gap: 4px; background: #fff; border: 2px solid var(--line);
  border-radius: 999px; padding: 4px;
}
.qty button {
  width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--tint);
  font-size: 18px; font-weight: 800; cursor: pointer; color: var(--ink);
}
.qty span { min-width: 30px; text-align: center; font-weight: 800; }
.pdp__wish { font-size: 22px; border: 2px solid var(--line); border-radius: 50%; width: 48px; height: 48px; }
.pdp__wish.is-on { color: var(--pink); border-color: var(--pink); }
.pdp__added { display: none; margin-top: 14px; font-weight: 800; color: #2fae7d; }
.pdp__added.is-show { display: inline-block; }
.pdp__added a { color: inherit; }
.pdp__specs { list-style: none; margin-top: 24px; display: grid; gap: 10px; }
.pdp__specs li { font-size: 14px; font-weight: 600; color: var(--ink-soft); }

/* ---------- Cart ---------- */
.cartwrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(20px, 4vw, 48px); align-items: start; }
.cartlist { display: grid; gap: 16px; }
.cartitem {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 16px; align-items: center;
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px;
}
.cartitem__art { border-radius: 14px; overflow: hidden; display: block; }
.cartitem__art canvas, .cartitem__art img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.cartitem__info { display: grid; gap: 4px; }
.cartitem__name { font-weight: 800; text-decoration: none; font-size: 16px; }
.cartitem__size, .cartitem__unit { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.cartitem__ctl { display: grid; gap: 10px; justify-items: end; }
.cartitem__line { font-size: 17px; }
.cartitem__rm {
  border: none; background: none; cursor: pointer; color: var(--ink-soft);
  font-size: 15px; padding: 4px; border-radius: 8px;
}
.cartitem__rm:hover { color: var(--pink); }
.summary {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 24px; display: grid; gap: 12px; position: sticky; top: 90px;
}
.summary > b { font-size: 18px; }
.summary__row { display: flex; justify-content: space-between; font-weight: 600; color: var(--ink-soft); font-size: 14.5px; }
.summary__row--total { border-top: 2px solid var(--line); padding-top: 12px; color: var(--ink); font-weight: 900; font-size: 18px; }
.summary__free { color: #2fae7d; font-weight: 800; }
.summary__item i { font-style: normal; display: block; font-size: 12px; opacity: .8; }
.summary__go { text-align: center; margin-top: 6px; }
.summary__back { text-align: center; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); text-decoration: none; }
.cart__empty { text-align: center; padding: 80px 0; display: grid; gap: 20px; justify-items: center; font-weight: 700; color: var(--ink-soft); font-size: 18px; }

/* ---------- Checkout ---------- */
.ckform { display: grid; gap: 14px; }
.ckform__legend { font-size: 17px; margin-top: 10px; }
.ckform label { display: grid; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.ckform input, .ckform select {
  padding: 12px 16px; border-radius: 14px; border: 2px solid var(--line);
  font-family: var(--font); font-weight: 600; font-size: 15px; outline: none; background: #fff; color: var(--ink);
}
.ckform input:focus, .ckform select:focus { border-color: var(--violet); }
.ckform .is-bad { border-color: #e05a5a; }
.ckform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.paybox { background: var(--tint); border-radius: var(--radius); padding: 16px 18px; display: grid; gap: 10px; }
.paybox__soon { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.paybox__demo { flex-direction: row !important; display: flex !important; align-items: center; gap: 8px; font-size: 14.5px !important; color: var(--ink) !important; }
.ckform__submit { margin-top: 8px; }
.ckform__err { color: #e05a5a; font-weight: 700; font-size: 14px; }
.ck__done { text-align: center; padding: 90px 0; display: grid; gap: 16px; justify-items: center; }
.ck__done h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; }
.ck__done p { color: var(--ink-soft); font-weight: 600; line-height: 1.7; }

/* ---------- Blog pages ---------- */
.blogs--page { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.blogcard { text-decoration: none; color: inherit; }
.blogcard__date { display: block; padding: 0 18px 18px; font-style: normal; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); opacity: .8; }
.post__title { font-size: clamp(28px, 4vw, 46px); font-weight: 900; line-height: 1.1; }
.post__date { color: var(--ink-soft); font-weight: 700; font-size: 14px; margin: 10px 0 22px; }
.post__hero { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 30px; }
.post__hero canvas, .post__hero img { width: 100%; display: block; max-height: 440px; object-fit: cover; }
.post__body h2 { font-size: 22px; font-weight: 900; margin: 28px 0 10px; }
.post__body p { color: var(--ink-soft); font-weight: 600; line-height: 1.75; font-size: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .custom { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__stage { position: static; }
  .cartwrap { grid-template-columns: 1fr; }
  .summary { position: static; }
  .cartitem { grid-template-columns: 90px 1fr auto; }
}
@media (max-width: 640px) {
  .section { padding: 64px 18px; }
  .stage { min-height: 540px; }
  .stage__cta .btn { padding: 11px 20px; font-size: 14px; }
  .foot__cols { grid-template-columns: 1fr; }
}
