:root {
  --bg: #eef2f6;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --shadow: 0 10px 25px rgba(2, 6, 23, .08);
  --radius: 14px;

  --green: #22c55e;
  --greenD: #16a34a;

  --max: 420px;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: #0b1220;
}

.page {
  width: min(100%, var(--max));
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
}

/* HEADER */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background: #0b1220;
  color: #fff;

  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}




.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
}

.brandLogo {
  height: 28px;
  width: auto;
  display: block;
}


.brandDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  display: inline-block;
}

/* HEADER */

.slider {
  position: relative;

  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform .35s ease;
  will-change: transform;
  touch-action: pan-y;
}

.slide {
  min-width: 100%;
  aspect-ratio: 4 / 3;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(15, 23, 42, .35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(6px);
}

.navBtn:active {
  transform: translateY(-50%) scale(.98);
}

.navPrev {
  top: 300px;
  left: 10px;
}

.navNext {
  top: 300px;
  right: 10px;
}

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(15, 23, 42, .25);
  cursor: pointer;
}

.dot.active {
  background: var(--green);
  border-color: rgba(34, 197, 94, .7);
}


.card {
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}



.productHead {
  padding: 80px 0 15px 20px;
  background: #f3f6fb;;
}

.productHead h1 {
  margin: 0;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

.productHead p {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}


.priceCapsule {
  margin: 12px 14px 0;
  display: flex;
  align-items: stretch;

  border: 2px solid #374151;
  border-radius: 18px;
  overflow: hidden;

  background: #e5e7eb;
  box-shadow: 0 6px 16px rgba(2, 6, 23, .18);
}

.priceSide {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.priceOld {
  background: #e5e7eb;
}

.priceNew {
  background: #bfe8b8;
}

.priceDivider {
  width: 2px;
  background: #374151;
}

.priceTop {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  opacity: .9;
  margin-bottom: 4px;
}

.priceNum {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b1220;
  line-height: 1.05;
}

.oldNum {
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #111827;
  opacity: .95;
}

.newNum {
  font-weight: 700;
}

.cur {
  font-size: 22px;
  font-weight: 900;
  margin-left: 4px;
}


@media (max-width:360px) {
  .priceNum {
    font-size: 22px;
  }

  .cur {
    font-size: 18px;
  }
}

.priceBox {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #fff;
}

.priceLabel {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.priceValue {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
}

.priceValue s {
  color: #94a3b8;
  font-weight: 800;
  font-size: 14px;
  margin-right: 6px;
}

.vat {
  padding: 8px 14px 0;
  font-size: 14x;
  text-align: center;
  color: black;
}

.pillWrap {
  text-align: center;
}

.pill {
  display: flex;

  width: calc(95% - 24px);
  margin: 10px auto 0 auto;

  align-items: center;
  justify-content: center;
  gap: 5px;

  padding: 5px 5px;
  border-radius: 999px;

  background: #cfeecf;
  border: 1px solid #b7e3b7;
  color: #0f172a;

  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}

.pillIcon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: green;
  border: 1px solid #b7e3b7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  color: white;
}

.pillText {
  white-space: nowrap;
}


.blockTitle {
  margin: 0;
  padding: 14px 14px 8px;
  font-size: 21px;
  font-weight: 600;
}

.blockTitle_two {
  margin: 0;
  padding: 14px 14px 8px;
  font-size: 16px;
}

.pad {
  padding: 10px 14px 14px;
  background: #f3f6fb;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  margin: 10px 0 6px;
}

input,
select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  outline: none;
}

input:focus,
select:focus {
  border-color: rgba(34, 197, 94, .55);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .15);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.formTitle {
  text-align: center;
  margin: 0;
  padding: 20px 14px 10px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}


.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}


.orderForm {
  display: grid;
  gap: 12px;
}

.field {
  width: 100%;
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  padding: 15px 15px;
  font-size: 12px;
  outline: none;
}

.field::placeholder {
  color: #7a8aa0;
  font-weight: 700;
}

.field:focus {
  border-color: #9fd79c;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
  background: #f7fbff;
}

.hint {
  margin-top: -6px;
  font-size: 12px;
  font-weight: 700;
  color: #2f3b4a;
  opacity: .9;
}


.buyBtn {
  margin: 12px 0 12px 0;
  width: 100%;

  background: #1fb400;
  color: #0b1220;
  border-radius: 12px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 38px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(2, 6, 23, .18);
  line-height: 1;
}

.buyBtn:active {
  transform: translateY(1px);
}

.buyIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  color: #0b1220;
}


@media (max-width:360px) {
  .buyBtn {
    font-size: 28px;
    padding: 16px 14px;
  }

  .buyIcon {
    width: 42px;
    height: 42px;
  }
}


.ctaRow {
  padding: 14px;
}

.btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px 14px;
  background: var(--green);
  color: #052e16;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(34, 197, 94, .25);
  transition: transform .06s ease, filter .15s ease;
}

.btn:hover {
  filter: brightness(.98);
}

.btn:active {
  transform: translateY(1px);
}


.list {
  padding: 0 14px 14px;
  display: grid;
  gap: 10px;
}

.item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f8fafc;
  overflow: hidden;
  flex: 0 0 54px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item b {
  display: block;
  font-size: 13px;
}

.item span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}


.specs {
  padding: 0 14px 14px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

td {
  padding: 10px 12px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

tr:last-child td {
  border-bottom: 0;
}

td:first-child {
  width: 55%;
  color: var(--muted);
  font-weight: 800;
  background: #fbfdff;
}



.reviewsList {
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.revRow {
  padding: 14px 14px;
  background: #ffffff;
  border: 0;
}

.revRow:nth-child(odd) {
  background: #e9eff5;
}


.revStars {
  color: #16a34a;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 8px;
}


.revRow p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: #0b1220;
  font-weight: 600;
}


.revMeta {
  margin-top: 10px;
  font-size: 10px;
  color: #111827;
  opacity: .9;
}

.revVer {
  font-weight: 800;
  text-decoration: underline;
}

/* FOOTER */
.footer {
  margin-top: 20px;
  background: #0f1b2d;
  color: #ffffff;
  padding: 24px 18px 30px;
}

.footerSection {
  margin-bottom: 28px;
}

.footerTitle {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footerText {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #e5e7eb;
}


.logoRow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


.logoBox {
  width: 70px;
  height: 48px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.logoBox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.logoYellow {
  background: #ffd400;
}


.sticky {
  position: sticky;
  bottom: 0;
  z-index: 50;
  background: rgba(238, 242, 246, .92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 10px 14px;
}





.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}


.orderForm {
  display: grid;
  gap: 12px;
}



.field::placeholder {
  color: #7a8aa0;
  font-weight: 700;
}

.field:focus {
  border-color: #9fd79c;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
  background: #f7fbff;
}

.hint {
  margin-top: -6px;
  font-size: 12px;
  font-weight: 700;
  color: #2f3b4a;
  opacity: .9;
}




.buyBtn:active {
  transform: translateY(1px);
}

.buyIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  color: #0b1220;
}


@media (max-width:360px) {
  .buyBtn {
    font-size: 28px;
    padding: 16px 14px;
  }

  .buyIcon {
    width: 42px;
    height: 42px;
  }
}



.specsList {
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.specRow {
  padding: 12px 12px;
  border-radius: 0;
  background: #ffffff;
}

.specRow:nth-child(odd) {
  background: #e9eff5;
}

.specLabel {
  font-size: 12px;
  font-weight: 700;
  color: #223042;
  opacity: .9;
}

.specValue {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #0b1220;
}

.specSubTitle {
  margin: 0;
  padding: 0 14px 8px;
  font-size: 14px;
  font-weight: 900;
  color: #0b1220;
}

.successWrap {
  padding: 24px 14px 28px;
}

.successCard {
  background: #ffffff;
  border-radius: 0;
  padding: 40px 18px 30px;
  text-align: center;
}

.successText {
  margin: 25px auto;
  font-size: 14px;
  line-height: 1.55;
  color: #0b1220;
}

.waBtn {
  margin: 22px auto 0;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d5dde6;
  color: #0b1220;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.waIcon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 34px;
}

.waIcon img {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  object-fit: contain;
  display: block;
}