:root {
  --bg: #f6f6f4;
  --surface: #ffffff;
  --ink: #141414;
  --muted: #6f6f6a;
  --line: #dfdfda;
  --accent: #315cff;
  --accent-ink: #ffffff;
  --radius: 10px;
  --shadow: 0 18px 45px rgba(20, 20, 20, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Inter", "Aptos", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 223, 218, .72);
  background: rgba(246, 246, 244, .88);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 152px;
  height: auto;
  border-radius: 0;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--surface);
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.language-switch button.active {
  background: var(--ink);
  color: #fff;
}

.cart-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--surface);
  font-weight: 800;
}

.cart-pill svg {
  width: 18px;
  height: 18px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.cart-drawer.open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, .28);
  opacity: 0;
  transition: opacity .24s ease;
}

.cart-drawer.open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100%);
  height: 100%;
  border-left: 1px solid var(--line);
  background: #fff;
  box-shadow: -24px 0 70px rgba(20, 20, 20, .16);
  transform: translateX(100%);
  transition: transform .28s ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 20px;
  font-size: 22px;
}

.cart-head button,
.cart-remove {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.cart-items {
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.cart-empty {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  color: var(--muted);
  background: var(--bg);
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.cart-item img {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.cart-item span {
  color: var(--muted);
  font-size: 13px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
}

.cart-qty button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-bottom {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 18px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.cart-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
}

.contact-buttons { display:flex; align-items:center; justify-content:flex-end; gap:10px; }
.telegram-toggle { display:inline-flex; min-height:54px; align-items:center; gap:10px; border-radius:999px; padding:0 18px; color:#fff; background:#229ed9; font-weight:800; text-decoration:none; box-shadow:var(--shadow); transition:transform .18s ease,background-color .18s ease,box-shadow .18s ease; }
.telegram-toggle:hover { background:#1789bd; transform:translateY(-2px); box-shadow:0 18px 44px rgba(20,20,20,.23); }
.telegram-toggle svg { width:22px; height:22px; }

.whatsapp-toggle {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: #25d366;
  color: #06180d;
  box-shadow: 0 16px 40px rgba(20, 20, 20, .18);
  cursor: pointer;
  font-weight: 900;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.whatsapp-toggle:hover { background:#1fbd5b; transform:translateY(-2px); box-shadow:0 18px 44px rgba(20,20,20,.23); }

.whatsapp-toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 560px) { .contact-buttons { flex-direction:column; align-items:flex-end; } .telegram-toggle,.whatsapp-toggle { min-height:48px; } }

.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: none;
  width: min(340px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(20, 20, 20, .18);
}

.whatsapp-widget.open .whatsapp-panel {
  display: block;
}

.whatsapp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #111;
  color: #fff;
}

.whatsapp-head strong {
  display: block;
}

.whatsapp-head span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

.whatsapp-close {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}

.whatsapp-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.whatsapp-body textarea {
  min-height: 110px;
}

.whatsapp-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.whatsapp-send {
  width: 100%;
  border-color: #25d366;
  background: #25d366;
  color: #06180d;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  width: min(1720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 72px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  height: clamp(520px, 46vw, 760px);
  border-radius: 18px;
  background: #111;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(26px, 5vw, 64px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease, transform .7s ease;
  transform: scale(1.02);
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide:nth-child(1) img {
  object-position: 60% center;
}

.hero-slide:nth-child(2) img {
  object-position: 62% center;
}

.hero-slide:nth-child(3) img {
  object-position: center center;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.22) 46%, rgba(0,0,0,.08)),
    linear-gradient(0deg, rgba(0,0,0,.28), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: #fff;
}

.hero-content .kicker {
  color: rgba(255,255,255,.74);
}

.hero-content h1 {
  color: #fff;
}

.hero-content .lead {
  color: rgba(255,255,255,.78);
}

.hero-content .btn.secondary {
  border-color: rgba(255,255,255,.75);
  color: #fff;
}

.slider-controls {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  right: clamp(24px, 5vw, 64px);
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.slider-dot.active {
  width: 28px;
  background: #fff;
}

.slider-arrows {
  display: flex;
  gap: 8px;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  backdrop-filter: blur(12px);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: "Aptos Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(40px, 5.8vw, 78px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -.045em;
}

.lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 19px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn.accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}


.section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

h2 {
  margin-bottom: 0;
  font-family: "Aptos Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.section-head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: var(--surface);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(49, 92, 255, .55), rgba(20, 20, 20, 0));
  opacity: 0;
  transition: opacity .28s ease;
}

.product-card:hover {
  border-color: rgba(49, 92, 255, .42);
  box-shadow: 0 24px 70px rgba(20, 20, 20, .14);
  transform: translateY(-8px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #ededeb;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.product-card:hover .product-image img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.08) rotate(.5deg);
}

.product-hover {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease;
}

.product-card:hover .product-hover {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  display: grid;
  grid-template-rows: 16px auto 1fr auto;
  gap: 8px;
  padding: 0 4px 4px;
}

.product-meta {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 16px;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 18px;
  letter-spacing: -.02em;
}

.product-card p {
  min-height: 44px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.price {
  font-weight: 900;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.icon-btn.in-cart {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: flex;
  max-width: min(380px, calc(100vw - 32px));
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(20, 20, 20, .78);
  color: #fff;
  box-shadow: 0 24px 70px rgba(20, 20, 20, .22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.98);
  transition: opacity .24s ease, transform .24s ease;
  backdrop-filter: blur(16px);
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cart-toast-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  font-weight: 900;
}

.cart-toast strong,
.cart-toast small {
  display: block;
}

.cart-toast strong {
  font-size: 14px;
  line-height: 1.25;
}

.cart-toast small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.35;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.filter.active,
.filter:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: end;
}

.feature-text {
  border-radius: 18px;
  padding: 26px;
  background: var(--ink);
  color: #fff;
}

.feature-text p {
  margin-top: 22px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.feature-list span {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 12px;
  color: rgba(255, 255, 255, .74);
}

.feature-list strong {
  color: #fff;
  line-height: 1.25;
}

.feature-note {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
}

.feature-note strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-note ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.55;
}

.feature-note li::marker {
  color: var(--accent);
}

.feature-photo {
  display: grid;
  gap: 18px;
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #e9e9e6;
}

.feature-photo .feature-note {
  margin-top: 0;
  border-color: var(--line);
  background: var(--surface);
}

.feature-photo .feature-note strong {
  color: var(--ink);
}

.feature-photo .feature-note ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.feature-photo .feature-note li {
  position: relative;
  padding-left: 18px;
}

.feature-photo .feature-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.feature-media {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(190px, .85fr);
  gap: 14px;
  min-height: 440px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  background: #e9e9e6;
}

.feature-media-main {
  object-position: center;
}

.feature-media-side {
  object-position: center;
}

.home-production {
  align-items: stretch;
}

.home-production .feature-text,
.home-production .feature-media {
  height: 100%;
}

.home-production .feature-media img {
  min-height: 0;
}

.page-hero {
  padding: 62px 0 54px;
}

.page-hero h1 {
  max-width: 980px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
}

.panel p,
.rich-text p {
  color: var(--muted);
  line-height: 1.7;
}

.about-side {
  display: grid;
  gap: 16px;
}

.about-side img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.about-side strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.about-side span {
  color: var(--muted);
  line-height: 1.55;
}

.rich-text h2 {
  margin-top: 36px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 40px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(360px, 1fr);
  gap: 18px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-link {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(49, 92, 255, .04);
  color: var(--ink);
  text-decoration: none;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.contact-link:is(button) {
  width: 100%;
  font: inherit;
  text-align: left;
}

.contact-link:hover {
  border-color: rgba(49, 92, 255, .45);
  background: rgba(49, 92, 255, .08);
  transform: translateY(-2px);
}

.contact-link-soon,
.contact-link-soon:hover {
  border-color: rgba(20, 20, 20, .08);
  background: rgba(20, 20, 20, .035);
  cursor: default;
  opacity: .78;
  transform: none;
}

.contact-link-soon .contact-icon {
  background: #d9ddea;
  color: var(--muted);
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-link strong,
.contact-link small {
  display: block;
}

.contact-link strong {
  font-size: 15px;
  line-height: 1.2;
}

.contact-link em {
  display: inline-flex;
  margin-left: 8px;
  border-radius: 999px;
  padding: 3px 7px;
  background: rgba(49, 92, 255, .1);
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .02em;
}

.contact-link small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.contact-note {
  margin-top: 18px;
  border-radius: 14px;
  padding: 16px;
  background: var(--soft);
}

.contact-note strong {
  display: block;
  margin-bottom: 6px;
}

.contact-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 12px;
}

.contact-grid .form {
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.contact-grid .form .field-row {
  gap: 12px;
}

.contact-grid .form label {
  gap: 7px;
}

.contact-grid .form input,
.contact-grid .form select {
  min-height: 48px;
  padding: 11px 12px;
}

.contact-grid .form textarea {
  min-height: 118px;
  padding: 12px;
}

.contact-grid .form .btn {
  width: fit-content;
  min-width: 180px;
  min-height: 46px;
  padding: 12px 24px;
  justify-self: start;
  border-radius: 999px;
}

.form-helper {
  align-self: end;
  margin-top: 10px;
  border-radius: 14px;
  padding: 16px;
  background: rgba(49, 92, 255, .05);
}

.form-helper strong {
  display: block;
  margin-bottom: 10px;
}

.form-helper ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.form-helper li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-helper li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 134px;
  resize: vertical;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 34px;
  align-items: start;
  padding: 26px 0 78px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #e9e9e6;
}

.gallery-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-tile video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #101010;
}

.gallery-tile:hover img {
  filter: contrast(1.03) saturate(1.04);
  transform: scale(1.035);
}

.image-lightbox {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 64px 24px 24px;
  border: 0;
  background: transparent;
}

.image-lightbox::backdrop {
  background: rgba(10, 10, 10, .72);
  backdrop-filter: blur(7px);
}

.image-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 88px);
  margin: auto;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

.image-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font: 28px/1 Arial, sans-serif;
  cursor: pointer;
}

.image-lightbox-nav {
  position: fixed;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0 0 4px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #111;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .24);
  font: 38px/1 Arial, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease;
}

.image-lightbox-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.image-lightbox-nav.previous { left: 18px; }
.image-lightbox-nav.next { right: 18px; }

.image-lightbox-nav[hidden] { display: none; }

@media (max-width: 640px) {
  .image-lightbox { padding-inline: 12px; }
  .image-lightbox-nav {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .86);
  }
  .image-lightbox-nav.previous { left: 8px; }
  .image-lightbox-nav.next { right: 8px; }
}

.product-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  border: 0;
  border-radius: 0;
  padding: 12px 0 0;
  background: transparent;
}

.product-summary h1 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.product-summary .price {
  color: var(--muted);
  font-size: 14px;
}

.product-rule {
  height: 1px;
  background: var(--line);
}

.option-group {
  display: grid;
  gap: 9px;
}

.option-group[hidden] {
  display: none !important;
}

.option-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.swatches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.swatch {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.swatch.active {
  border-color: #030509;
  background: #030509;
  color: #fff;
}

.buy-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
}

.quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 8px;
  background: var(--surface);
}

.quantity button {
  width: 26px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.buy-now {
  width: 100%;
}

.product-copy {
  display: grid;
  gap: 14px;
  color: #3f4248;
  font-size: 14px;
  line-height: 1.65;
}

.product-copy p {
  margin: 0;
  color: #3f4248;
}

.product-copy ul {
  margin: 0;
  padding-left: 20px;
}

.product-copy li::marker {
  color: var(--accent);
}

.product-specs {
  display: grid;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}

.product-specs strong {
  color: var(--ink);
}

.product-specs span {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
  color: var(--muted);
}

.about-gallery,
.learn-grid,
.quality-grid {
  display: grid;
  gap: 16px;
}

.about-gallery {
  grid-template-columns: 1.15fr .85fr;
  margin-top: 24px;
}

.about-gallery img,
.learn-card img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.about-gallery img:first-child {
  aspect-ratio: 16 / 10;
}

.about-gallery img:last-child {
  aspect-ratio: 4 / 5;
}

.learn-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.learn-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
}

.learn-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.learn-card p,
.learn-card li {
  color: var(--muted);
  line-height: 1.6;
}

.learn-card ul {
  margin: 0;
  padding-left: 18px;
}

.diagram {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.layer-bars span {
  display: block;
  height: 8px;
  margin-bottom: 4px;
  border-radius: 99px;
  background: var(--ink);
}

.infill-swatch {
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(45deg, transparent 42%, rgba(20,20,20,.18) 43% 47%, transparent 48%),
    linear-gradient(-45deg, transparent 42%, rgba(20,20,20,.18) 43% 47%, transparent 48%),
    #fff;
  background-size: 24px 24px;
}

.quality-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quality {
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.quality strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.quality span {
  color: var(--muted);
  line-height: 1.55;
}

.recommendation-cta {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 44px);
  background: #111;
  color: #fff;
}

.recommendation-cta .kicker {
  color: rgba(255,255,255,.66);
}

.recommendation-cta h2 {
  max-width: 760px;
  color: #fff;
}

.recommendation-cta p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

.recommendation-cta .btn {
  white-space: nowrap;
}

.game-hero {
  padding-bottom: 48px;
}

.game-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.game-section {
  padding-top: 34px;
}

.game-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  gap: 24px;
  align-items: start;
}

.game-card {
  display: grid;
  gap: 14px;
}

.game-topline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.game-topline > div {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: var(--surface);
}

.game-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.game-topline strong {
  font-size: 24px;
  letter-spacing: -.03em;
}

.printer-game {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f6f6f4;
  box-shadow: var(--shadow);
}

.printer-game canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
  touch-action: none;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  background: rgba(246, 246, 244, .72);
  text-align: center;
  backdrop-filter: blur(8px);
}

.game-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.game-overlay strong {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.05em;
}

.game-overlay span {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.55;
}

.game-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.game-log {
  display: grid;
  gap: 8px;
  max-height: 180px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.game-log span {
  display: block;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.game-log span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.game-info {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.game-info h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.game-info p,
.game-info li {
  color: var(--muted);
  line-height: 1.6;
}

.game-info ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: 34px;
  align-items: end;
}

.about-hero p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.about-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  background: #e9e9e6;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  gap: 34px;
  align-items: center;
}

.about-story .rich-text h2,
.about-detail .rich-text h2 {
  margin-top: 0;
}

.about-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-photo-stack img,
.about-mosaic img,
.studio-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  background: #e9e9e6;
}

.about-photo-stack img:first-child {
  aspect-ratio: 4 / 5;
  margin-top: 42px;
}

.about-photo-stack img:last-child {
  aspect-ratio: 4 / 5;
}

.about-dark {
  background: #151515;
  color: #fff;
}

.about-values {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 34px;
}

.about-values h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.12;
  max-width: 640px;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-steps article {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255,255,255,.04);
}

.about-steps strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}

.about-steps p {
  color: rgba(255,255,255,.68);
  line-height: 1.6;
}

.about-detail {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  align-items: center;
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-mosaic img {
  aspect-ratio: 4 / 5;
}

.about-mosaic img:nth-child(2),
.about-mosaic img:nth-child(3) {
  margin-top: 34px;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.studio-grid img {
  width: 100%;
  min-height: 0;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand,
.footer-col {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -.03em;
}

.footer-col strong {
  color: var(--ink);
  font-size: 14px;
}

.footer-brand span,
.footer-col span,
.footer-col a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.footer-col a {
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--accent);
}

@media (max-width: 980px) {
  .hero,
  .feature-band,
  .split,
  .about-hero,
  .about-story,
  .about-values,
  .contact-grid,
  .product-page,
  .game-shell {
    grid-template-columns: 1fr;
  }

  .recommendation-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-media {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .feature-media img {
    min-height: 320px;
  }

  .product-summary {
    position: static;
  }

  .game-info {
    position: static;
  }

  .studio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .studio-grid img:nth-child(n) {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, 1240px);
  }

  .nav {
    min-height: 68px;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 16px auto;
    display: none;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .hero {
    width: 100%;
    padding: 28px 0 48px;
  }

  .hero-slider {
    height: 540px;
    border-radius: 0;
  }

  .hero-slide {
    align-items: center;
    padding: 26px 16px 96px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    max-width: 92%;
    margin-bottom: 16px;
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.02;
  }

  .hero-content .lead {
    max-width: 94%;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.42;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-right: 74px;
  }

  .actions .btn {
    width: 100%;
  }

  .slider-controls {
    left: 16px;
    right: 16px;
    bottom: 16px;
    align-items: center;
  }

  .section {
    padding: 48px 0;
  }

  .page-hero {
    padding: 42px 0 36px;
  }

  .section-head,
  .footer-grid {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .field-row,
  .learn-grid,
  .quality-grid,
  .about-gallery,
  .about-photo-stack,
  .about-steps,
  .about-mosaic,
  .studio-grid,
  .game-topline {
    grid-template-columns: 1fr;
  }

  .product-card {
    gap: 12px;
    padding: 8px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card h3 {
    font-size: 17px;
  }

  .product-card p {
    min-height: 0;
  }

  .about-hero img {
    aspect-ratio: 4 / 3;
  }

  .about-photo-stack img:first-child,
  .about-mosaic img:nth-child(2),
  .about-mosaic img:nth-child(3) {
    margin-top: 0;
  }

  .studio-grid img:nth-child(n) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .feature-photo .feature-note ul {
    grid-template-columns: 1fr;
  }

  .product-page {
    width: 100%;
    padding-top: 0;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .feature-media {
    grid-template-columns: 1fr;
  }

  .product-summary {
    width: min(100% - 32px, 1240px);
    margin: 0 auto;
    padding: 24px 0 44px;
  }

  .product-summary h1 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .buy-row,
  .swatches {
    grid-template-columns: 1fr;
  }

  .contact-grid .form .btn {
    width: 100%;
    justify-self: stretch;
  }

  h1 {
    font-size: clamp(34px, 10vw, 52px);
    letter-spacing: -.055em;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 24px, 1240px);
  }

  .site-header {
    position: sticky;
  }

  .brand img {
    width: 124px;
  }

  .nav-actions {
    gap: 8px;
  }

  .cart-pill {
    min-height: 36px;
    padding: 0 12px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-slider {
    height: 540px;
  }

  .hero-slide {
    padding: 24px 14px 92px;
  }

  .hero-slide img {
    object-position: 65% center;
  }

  .hero-slide::after {
    background:
      linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.35) 58%, rgba(0,0,0,.12)),
      linear-gradient(0deg, rgba(0,0,0,.38), transparent 42%);
  }

  .kicker {
    font-size: 11px;
  }

  .hero-content h1 {
    max-width: 94%;
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.03;
  }

  .lead {
    font-size: 14px;
    line-height: 1.42;
  }

  .btn {
    min-height: 46px;
    padding: 12px 18px;
  }

  .section {
    padding: 42px 0;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .product-image {
    aspect-ratio: 4 / 3;
  }

  .feature-text {
    padding: 22px;
  }

  .feature-list span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .panel {
    padding: 20px;
  }

  .contact-grid {
    gap: 12px;
  }

  .contact-link {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
  }

  .contact-icon svg {
    width: 19px;
    height: 19px;
  }

  .contact-link strong {
    font-size: 14px;
  }

  .contact-link small {
    font-size: 13px;
  }

  .contact-link em {
    margin-left: 4px;
    padding: 2px 6px;
    font-size: 10px;
  }

  .contact-grid .form {
    padding: 20px;
  }

  .form-helper {
    padding: 14px;
  }

  .product-gallery {
    gap: 2px;
  }

  .gallery-tile img,
  .gallery-tile video {
    aspect-ratio: 1 / 1;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer-brand strong {
    font-size: 20px;
  }
}
/* Checkout */
.checkout-dialog{width:min(760px,calc(100% - 24px));max-height:92vh;padding:0;border:0;border-radius:24px;box-shadow:0 30px 90px rgba(0,0,0,.28)}
.checkout-dialog::backdrop{background:rgba(0,0,0,.55);backdrop-filter:blur(3px)}
.checkout-form{padding:28px;overflow:auto}.checkout-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin-bottom:22px}.checkout-head h2{margin:5px 0 0;font-size:34px}.checkout-head button{width:42px;height:42px;border:0;border-radius:50%;font-size:28px;cursor:pointer}

/* Keep every × optically centered inside its circular button. */
.cart-head button,
.cart-remove,
.whatsapp-close,
.checkout-head button {
  display: inline-grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  text-align: center;
  font-family: Arial, sans-serif;
}

.cart-head button { width: 42px; height: 42px; border-radius: 50%; }
.cart-remove { width: 32px; height: 32px; border-radius: 50%; }
.whatsapp-close { width: 34px; height: 34px; border-radius: 50%; }
.form-trap { position:fixed !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.checkout-grid .checkout-consent { display:flex; align-items:flex-start; gap:10px; font-weight:500; line-height:1.45; }
.checkout-grid .checkout-consent input { flex:0 0 auto; width:18px; height:18px; margin-top:2px; }
.checkout-consent a { color:inherit; text-underline-offset:2px; }

.legal-page { padding:72px 0 96px; }
.legal-page .legal-intro { max-width:780px; margin-bottom:34px; }
.legal-page h1 { margin:0 0 14px; font-size:clamp(38px,6vw,72px); line-height:.98; letter-spacing:-.04em; }
.legal-page .legal-intro p { color:var(--muted); font-size:18px; line-height:1.6; }
.legal-content { display:grid; gap:18px; max-width:900px; }
.legal-card { padding:26px; border:1px solid var(--line); border-radius:20px; background:#fff; }
.legal-card h2 { margin:0 0 12px; font-size:24px; }
.legal-card p,.legal-card li { color:#555; line-height:1.65; }
.legal-card ul { margin:10px 0 0; padding-left:20px; }
.legal-warning { border-color:#f0c36d; background:#fff8e8; }
@media (max-width:640px) { .legal-page { padding:46px 0 70px; } .legal-card { padding:20px; } }
.checkout-grid{display:grid;grid-template-columns:1fr 1fr;gap:15px}.checkout-grid label{display:grid;gap:7px;font-size:14px;font-weight:750}.checkout-grid .wide{grid-column:1/-1}.checkout-grid input,.checkout-grid select,.checkout-grid textarea{width:100%;padding:12px 14px;border:1px solid #ddd;border-radius:12px;font:inherit}.checkout-summary{display:grid;gap:8px;margin:20px 0;padding:15px;border-radius:14px;background:#f5f4f0}.checkout-summary>div{display:flex;justify-content:space-between;gap:18px}.checkout-total{padding-top:10px;border-top:1px solid #d7d5cf;font-size:18px}.checkout-message{min-height:22px;color:#b42318}.checkout-success{text-align:center;padding:30px 10px}.checkout-success>span{display:grid;place-items:center;width:64px;height:64px;margin:0 auto 18px;border-radius:50%;color:white;background:#237a3b;font-size:32px}.checkout-success h2{font-size:34px}
.autocomplete-field{position:relative}.autocomplete-menu{position:absolute;z-index:20;top:100%;left:0;right:0;max-height:240px;overflow:auto;margin-top:4px;padding:6px;border:1px solid #d7d7d2;border-radius:12px;background:#fff;box-shadow:0 16px 38px rgba(0,0,0,.16)}.autocomplete-menu[hidden]{display:none}.autocomplete-menu button{display:block;width:100%;padding:10px 11px;border:0;border-radius:8px;background:transparent;text-align:left;cursor:pointer;font:600 14px/1.2 Inter,ui-sans-serif,system-ui,sans-serif}.autocomplete-menu button:hover,.autocomplete-menu button:focus{background:#f0f1f5;outline:none}
@media(max-width:640px){.checkout-grid{grid-template-columns:1fr}.checkout-grid .wide{grid-column:auto}.checkout-form{padding:20px}}
@media(max-width:640px){.checkout-summary>div{align-items:flex-start;flex-direction:column;gap:4px}.checkout-summary strong{align-self:flex-end}.checkout-head h2{font-size:27px}.checkout-dialog{width:calc(100% - 16px)}}
.payment-result-page { display:grid; min-height:65vh; place-items:center; padding:60px 0; }
.payment-result-card { width:min(620px,100%); padding:44px; text-align:center; }
.payment-result-card h1 { margin:18px 0 10px; font-size:clamp(32px,6vw,52px); }
.payment-result-icon { display:grid; width:72px; height:72px; margin:0 auto; place-items:center; border-radius:50%; color:#7a5a00; background:#fff0bf; font-size:36px; font-weight:800; }
.payment-result-icon.success { color:#fff; background:#237a3b; }
.payment-result-icon.error { color:#fff; background:#b42318; }
.payment-result-card .actions { justify-content:center; margin-top:26px; }
.checkout-success .buy-now { margin:18px auto 8px; }
.checkout-success small { display:block; color:var(--muted); }
