:root {
  --bg: #070a13;
  --bg-2: #0b1020;
  --panel: #10162a;
  --panel-2: #151d35;
  --text: #f5f7ff;
  --muted: #aab3ca;
  --line: rgba(255, 255, 255, 0.09);
  --blue: #52c7ff;
  --violet: #7e73ff;
  --soft-blue: #dff5ff;
  --image-bg: #f4f4f4;
  --success: #65d8ad;
  --warning: #f2c86c;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(126, 115, 255, 0.18), transparent 31rem),
    radial-gradient(circle at 88% 12%, rgba(82, 199, 255, 0.14), transparent 32rem),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(1220px, calc(100% - 32px));
  margin-inline: auto;
}

.topline {
  padding: 10px 16px;
  text-align: center;
  color: #dce7ff;
  background: linear-gradient(90deg, #10172d, #18244a, #10172d);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 10, 19, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: block;
  overflow: hidden;
  background: #05070d;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-copy strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.brand-copy span {
  display: block;
  margin-top: 5px;
  color: #bac5dd;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d2daf0;
  font-size: 14px;
}

.nav-links a:hover { color: var(--blue); }

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.lang-switch a {
  min-width: 38px;
  height: 36px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #9daac4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.lang-switch a:hover { color: #eef7ff; }
.lang-switch a.is-active {
  color: #071020;
  background: linear-gradient(135deg,var(--blue),var(--violet));
  box-shadow: 0 7px 18px rgba(82,199,255,.18);
}

.header-status {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #c7d2eb;
  font-size: 12px;
}

.hero { padding: 74px 0 62px; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(82, 199, 255, 0.22);
  border-radius: 999px;
  background: rgba(82, 199, 255, 0.08);
  color: #cfeeff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue);
}

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

h1 {
  margin: 21px 0 20px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: 0.91;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero-gradient {
  color: transparent;
  background: linear-gradient(96deg, #ffffff 0%, #8edcff 50%, #a28fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  border: 0;
  border-radius: 15px;
  padding: 15px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-weight: 850;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #071020;
  box-shadow: 0 18px 38px rgba(82, 199, 255, 0.2);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-products {
  min-height: 560px;
  padding: 56px 24px 24px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 35%, rgba(82, 199, 255, 0.16), transparent 22rem),
    linear-gradient(145deg, #0b1020, #111a35);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-showcase-title {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #d8e9ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-product {
  overflow: hidden;
  position: relative;
  border-radius: 22px;
  background: var(--image-bg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-product.large { grid-row: 1 / 3; }
.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-product-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 11px;
  color: #0b1020;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 850;
}

.catalog { padding: 32px 0 90px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 11px 0 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 470px;
  margin-bottom: 3px;
  color: var(--muted);
  line-height: 1.65;
}

.catalog-tools {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.search {
  min-width: min(360px, 100%);
  position: relative;
}

.search input {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 44px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.search input:focus { border-color: rgba(82, 199, 255, 0.5); }
.search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #9eabc8;
}

.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-button {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d3dcf2;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 13px;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #071020;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(82, 199, 255, 0.32);
}

.product-media {
  aspect-ratio: 1 / 1;
  background: var(--image-bg);
  overflow: hidden;
  cursor: pointer;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Original source photo is shown as supplied: no crop, filter or background removal. */
}

.product-content {
  padding: 17px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-category {
  margin-bottom: 7px;
  color: #8fdcff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-title {
  margin: 0 0 5px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.product-subtitle {
  min-height: 36px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.product-strength { font-size: 18px; font-weight: 900; }
.product-price {
  color: #c5cee3;
  font-size: 11px;
  text-align: right;
}

.product-actions {
  margin-top: auto;
  padding-top: 13px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.product-button {
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.product-button:hover { border-color: rgba(82, 199, 255, 0.4); }
.product-button.buy {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #071020;
  font-weight: 900;
}
.product-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.empty {
  grid-column: 1 / -1;
  padding: 54px 22px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 22px;
  color: var(--muted);
}

.production-strip { padding: 0 0 92px; }
.production-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 25%, rgba(126, 115, 255, 0.14), transparent 20rem),
    linear-gradient(135deg, #0d1427, #101a34);
}

.production-card h3 {
  margin-bottom: 9px;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.production-card p { color: var(--muted); line-height: 1.7; }
.production-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.production-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: #dce5f8;
  font-size: 13px;
}


/* Contact and customer support */
.contact-section {
  padding: 92px 0 102px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(126,115,255,.13), transparent 27rem),
    radial-gradient(circle at 12% 72%, rgba(82,199,255,.09), transparent 25rem),
    rgba(5,9,20,.42);
  scroll-margin-top: 104px;
}
.contact-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg,#0c1326,#101a34);
  box-shadow: var(--shadow);
}
.contact-intro {
  padding: 9px 8px 9px 4px;
  display: flex;
  flex-direction: column;
}
.contact-intro h2 {
  margin: 19px 0 14px;
  max-width: 530px;
  font-size: clamp(38px,5vw,62px);
  line-height: .98;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.contact-intro > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.support-hours {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.support-hours-icon {
  min-width: 74px;
  height: 46px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg,var(--blue),var(--violet));
  color: #071020;
  font-weight: 950;
  font-size: 14px;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.support-hours > div strong,
.support-hours > div span,
.support-hours > div small { display: block; }
.support-hours > div strong { margin-bottom: 5px; color: #f3f7ff; font-size: 14px; }
.support-hours > div span { color: #d4def3; font-size: 13px; }
.support-hours > div small { margin-top: 6px; max-width: 470px; color: #8f9bb7; font-size: 11px; line-height: 1.55; }
.support-hours-icon {
  display: grid;
  place-items: center;
  align-self: center;
  text-align: center;
  line-height: 1;
  color: #071020;
}
.contact-options { display: grid; gap: 14px; }
.contact-card {
  min-width: 0;
  padding: 22px;
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  grid-template-areas: "icon copy" "button button";
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}
.contact-card:hover { border-color: rgba(82,199,255,.28); }
.contact-icon {
  grid-area: icon;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(82,199,255,.11);
  color: var(--blue);
  font-size: 22px;
  font-weight: 950;
}
.contact-card-copy { grid-area: copy; min-width: 0; }
.contact-label {
  display: block;
  margin-bottom: 7px;
  color: #8fdcff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact-card h3 {
  margin: 0 0 8px;
  overflow-wrap: anywhere;
  font-size: 21px;
  letter-spacing: -.025em;
}
.contact-card p { margin: 0; color: #aeb9cf; font-size: 12px; line-height: 1.62; }
.contact-button { grid-area: button; width: 100%; min-height: 49px; }
@media (max-width: 900px) {
  .contact-panel { grid-template-columns: 1fr; }
  .support-hours { margin-top: 28px; }
}
@media (max-width: 620px) {
  .contact-section { padding: 70px 0 78px; }
  .contact-panel { padding: 22px 18px; border-radius: 24px; }
  .contact-intro h2 { font-size: 39px; }
  .contact-card { padding: 18px; }
}

.footer {
  padding: 38px 0 44px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: end;
}

.footer p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #c9d4ec;
  font-size: 12px;
  text-align: center;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
  transition: 0.2s ease;
}
.overlay.is-open { opacity: 1; visibility: visible; }

.modal {
  position: fixed;
  z-index: 90;
  top: 50%;
  left: 50%;
  width: min(850px, calc(100% - 26px));
  max-height: calc(100vh - 30px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -47%) scale(0.98);
  transition: 0.2s ease;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #0c1224;
  box-shadow: var(--shadow);
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.86);
  color: #11182a;
  cursor: pointer;
  font-size: 22px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image {
  min-height: 500px;
  background: var(--image-bg);
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-content { padding: 40px 32px; }
.modal-content h3 {
  margin: 14px 0 8px;
  font-size: 38px;
  letter-spacing: -0.045em;
}
.modal-subtitle { color: var(--muted); line-height: 1.6; }
.modal-strength {
  margin: 22px 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 24px;
  font-weight: 900;
}
.modal-note {
  color: #c6d0e7;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .header-status { display: none; }
  .hero { padding-top: 46px; }
  .hero-products { min-height: 450px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading { display: block; }
  .section-heading p { margin-top: 15px; }
  .production-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: center; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-image { min-height: 390px; }
}

@media (max-width: 520px) { .promo-form { grid-template-columns: 1fr; } .promo-form button { width: 100%; }
  .container { width: min(100% - 22px, 1220px); }
  .brand-copy strong { font-size: 18px; letter-spacing: 0.08em; }
  h1 { font-size: 49px; }
  .hero-actions .btn { width: 100%; }
  .hero-products { min-height: 520px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.2fr 0.8fr; padding: 50px 12px 12px; }
  .hero-product.large { grid-row: 1; grid-column: 1 / 3; }
  .product-grid { grid-template-columns: 1fr; }
  .catalog-tools { align-items: stretch; }
  .filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 3px; }
  .filter-button { white-space: nowrap; }
  .production-list { grid-template-columns: 1fr; }
  .modal-content { padding: 28px 20px; }
}


/* Final catalog, cart and checkout */
button, input, select, textarea { font: inherit; }
button { color: inherit; }
body.is-locked { overflow: hidden; }
.cart-trigger {
  min-height: 46px; padding: 0 13px 0 17px; display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 15px; color: var(--text); background: rgba(255,255,255,.045); cursor: pointer; font-weight: 800;
}
.cart-trigger strong { min-width: 25px; height: 25px; padding: 0 7px; display: grid; place-items: center; border-radius: 999px; color: #071020; background: linear-gradient(135deg,var(--blue),var(--violet)); font-size: 12px; }
.hero-meta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-meta span { padding: 10px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.045); color: #d5e3fb; font-size: 12px; font-weight: 700; }
.product-price { color: #ffffff; font-size: 16px; font-weight: 900; }
.production-item.done { border-color: rgba(80,220,175,.18); color: #d9fff1; background: rgba(80,220,175,.055); }
.modal-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.modal-detail-row .modal-strength { margin: 0; }
.modal-price { padding: 15px; display: grid; place-items: center; border: 1px solid rgba(82,199,255,.25); border-radius: 15px; background: rgba(82,199,255,.07); color: #fff; font-size: 24px; font-weight: 900; }
.modal-buy { width: 100%; margin-top: 18px; }
.cart-drawer { position: fixed; z-index: 95; inset: 0 0 0 auto; width: min(470px,100%); display: flex; flex-direction: column; background: #0a1020; border-left: 1px solid var(--line); box-shadow: -24px 0 70px rgba(0,0,0,.45); transform: translateX(104%); transition: transform .24s ease; }
.cart-drawer.is-open { transform: translateX(0); }
.cart-head, .checkout-head { padding: 22px; display: flex; justify-content: space-between; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.cart-head h3, .checkout-head h3 { margin: 9px 0 0; font-size: 28px; }
.drawer-close { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.04); cursor: pointer; font-size: 22px; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 22px; }
.cart-item { padding: 14px 0; display: grid; grid-template-columns: 72px 1fr auto; gap: 13px; align-items: center; border-bottom: 1px solid var(--line); }
.cart-thumb { width: 72px; height: 78px; overflow: hidden; border-radius: 13px; background: var(--image-bg); }
.cart-thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-content h4 { margin: 0 0 5px; font-size: 14px; }
.cart-item-content h4 span { display: block; color: var(--muted); font-size: 11px; margin-top: 3px; }
.cart-line-price { color: var(--muted); font-size: 12px; }
.quantity-control { display: flex; align-items: center; gap: 9px; margin-top: 9px; }
.quantity-control button { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.035); cursor: pointer; }
.quantity-control strong { min-width: 18px; text-align: center; font-size: 12px; }
.cart-item-side { align-self: stretch; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 12px; font-size: 13px; }
.remove-item { width: 29px; height: 29px; border: 0; border-radius: 9px; color: #aeb8ce; background: rgba(255,255,255,.035); cursor: pointer; }
.cart-empty { min-height: 380px; display: grid; align-content: center; justify-items: center; text-align: center; color: var(--muted); }
.cart-empty h4 { margin: 14px 0 5px; color: var(--text); font-size: 20px; }
.cart-empty p { margin: 0; }
.empty-cart-icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 23px; background: rgba(82,199,255,.08); font-size: 30px; }

.cart-upsell {
  margin: 0 16px 14px;
  padding: 12px;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(82,199,255,.24);
  border-radius: 16px;
  background: linear-gradient(135deg,rgba(82,199,255,.09),rgba(126,115,255,.07));
}
.cart-upsell[hidden] { display: none; }
.cart-upsell-image {
  width: 58px;
  height: 64px;
  padding: 3px;
  overflow: hidden;
  border-radius: 11px;
  background: #f4f4f4;
}
.cart-upsell-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-upsell-copy { min-width: 0; }
.cart-upsell-copy span {
  display: block;
  margin-bottom: 3px;
  color: #8fdcff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cart-upsell-copy strong { display: block; color: var(--text); font-size: 13px; }
.cart-upsell-copy small { display: block; margin-top: 3px; color: #9eabc8; font-size: 10px; line-height: 1.4; }
.cart-upsell-button {
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg,var(--blue),var(--violet));
  color: #071020;
  cursor: pointer;
  font-size: 11px;
  font-weight: 950;
}
.cart-upsell-button:hover { filter: brightness(1.06); }
.cart-summary { padding: 20px 22px 24px; border-top: 1px solid var(--line); background: #0d1428; }
.promo-box {
  margin: 0 0 17px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
}
.promo-label { display: block; margin-bottom: 8px; color: #dce8ff; font-size: 12px; font-weight: 800; }
.promo-form { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; }
.promo-form input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: #080e1d;
  color: var(--text);
  font: inherit;
  text-transform: uppercase;
}
.promo-form input:focus { border-color: rgba(82,199,255,.55); box-shadow: 0 0 0 3px rgba(82,199,255,.1); }
.promo-form button {
  height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(82,199,255,.32);
  border-radius: 11px;
  background: rgba(82,199,255,.11);
  color: #dff5ff;
  font-weight: 850;
  cursor: pointer;
}
.promo-form button:hover { background: rgba(82,199,255,.18); }
.promo-feedback { min-height: 18px; margin-top: 8px; color: #9eabc8; font-size: 11px; line-height: 1.45; }
.promo-feedback.is-success { color: #75e6b5; }
.promo-feedback.is-error { color: #ff9b9b; }
.promo-remove {
  margin-left: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  cursor: pointer;
}
.summary-row.discount { color: #75e6b5; font-weight: 800; }

.summary-row { margin-bottom: 10px; display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 13px; }
.summary-row.total { margin: 17px 0; padding-top: 15px; border-top: 1px solid var(--line); color: var(--text); font-size: 19px; font-weight: 900; }
.shipping-note { margin: 0 0 16px; color: #9eabc8; font-size: 11px; }
.checkout-button, .checkout-submit { width: 100%; }
.checkout-button:disabled { opacity: .4; cursor: not-allowed; }
.checkout-modal { position: fixed; z-index: 100; top: 50%; left: 50%; width: min(980px,calc(100% - 26px)); max-height: calc(100vh - 28px); overflow-y: auto; opacity: 0; visibility: hidden; transform: translate(-50%,-47%) scale(.985); transition: .22s ease; border: 1px solid var(--line); border-radius: 25px; background: #0b1122; box-shadow: var(--shadow); }
.checkout-modal.is-open { opacity: 1; visibility: visible; transform: translate(-50%,-50%) scale(1); }
.checkout-grid { display: grid; grid-template-columns: 1.2fr .8fr; }
.checkout-fields { padding: 24px; }
.checkout-summary { padding: 24px; border-left: 1px solid var(--line); background: rgba(255,255,255,.02); }
.form-title { margin-bottom: 17px; font-weight: 900; font-size: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid label { display: block; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label > span { display: block; margin: 0 0 7px 2px; color: #c9d4ec; font-size: 11px; font-weight: 750; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 12px; outline: none; color: var(--text); background: #080d19; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: rgba(82,199,255,.5); box-shadow: 0 0 0 3px rgba(82,199,255,.06); }
.form-grid select option { background: #0b1122; }
.checkout-items { margin-bottom: 15px; max-height: 240px; overflow-y: auto; }
.checkout-item { padding: 9px 0; display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.checkout-item strong { color: var(--text); white-space: nowrap; }
.research-check { margin: 14px 0; display: flex; gap: 9px; align-items: flex-start; color: var(--muted); font-size: 11px; line-height: 1.55; }
.research-check input { margin-top: 3px; accent-color: var(--blue); }
.checkout-success { display: none; padding: 58px 24px 66px; text-align: center; }
.checkout-success.is-visible { display: block; }
.success-icon { width: 82px; height: 82px; margin: 0 auto 19px; display: grid; place-items: center; border-radius: 26px; background: linear-gradient(135deg,var(--blue),var(--violet)); color: #071020; font-size: 38px; font-weight: 900; }
.checkout-success h3 { margin: 0 0 9px; font-size: 32px; }
.checkout-success p { max-width: 570px; margin: 0 auto; color: var(--muted); line-height: 1.65; }
.order-number { display: inline-block; margin: 21px auto; padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px; color: #8fdcff; letter-spacing: .08em; }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 24px; padding: 13px 17px; opacity: 0; visibility: hidden; transform: translate(-50%,24px); transition: .2s ease; border-radius: 13px; background: linear-gradient(135deg,var(--blue),var(--violet)); color: #071020; box-shadow: 0 18px 45px rgba(0,0,0,.4); font-size: 13px; font-weight: 900; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%,0); }
@media (max-width: 760px) { .checkout-grid { grid-template-columns: 1fr; } .checkout-summary { border-left: 0; border-top: 1px solid var(--line); } }
@media (max-width: 520px) { .cart-trigger span { display:none; } .cart-upsell { grid-template-columns: 50px minmax(0,1fr); } .cart-upsell-image { width: 50px; height: 56px; } .cart-upsell-button { grid-column: 1 / -1; width: 100%; } .modal-detail-row, .form-grid { grid-template-columns: 1fr; } .form-grid label.full { grid-column: auto; } .checkout-fields, .checkout-summary { padding: 18px; } }



/* Shipping, carriers and claims */
.shipping-section {
  padding: 92px 0 104px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 26%, rgba(82, 199, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(126, 115, 255, 0.12), transparent 30rem),
    rgba(4, 8, 20, 0.34);
}
.shipping-heading { margin-bottom: 30px; }
.shipping-heading h2 { max-width: 760px; }
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shipping-card {
  min-height: 238px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.shipping-card.featured {
  border-color: rgba(101, 216, 173, .28);
  background: linear-gradient(160deg, rgba(101,216,173,.1), rgba(255,255,255,.018));
}
.shipping-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #071020;
  font-size: 21px;
  font-weight: 950;
}
.shipping-card.featured .shipping-icon { background: var(--success); }
.shipping-card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.025em; }
.shipping-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.66; }
.carrier-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.carrier-pills span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: #e8efff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.claims-banner {
  margin: 19px 0 54px;
  padding: 24px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(242, 200, 108, .22);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(242,200,108,.09), rgba(255,255,255,.025));
}
.claims-banner strong { display: block; margin-bottom: 7px; color: #ffe2a2; font-size: 18px; }
.claims-banner p { max-width: 820px; margin: 0; color: #bbc5dc; font-size: 13px; line-height: 1.65; }
.claims-banner .btn { white-space: nowrap; }
.faq-wrap {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 48px;
  align-items: start;
  scroll-margin-top: 110px;
}
.faq-intro h3 { margin: 16px 0 12px; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.045em; line-height: 1; }
.faq-intro p { max-width: 390px; color: var(--muted); line-height: 1.65; }
.faq-list { display: grid; gap: 10px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.025);
  overflow: hidden;
}
.faq-list details[open] { border-color: rgba(82,199,255,.24); background: rgba(82,199,255,.035); }
.faq-list summary {
  padding: 19px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 820;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 22px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-answer { padding: 0 20px 20px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.legal-policy-note {
  margin: 25px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #8793ae;
  font-size: 11px;
  line-height: 1.6;
}
.checkout-delivery-note {
  margin: 15px 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
}
.checkout-delivery-note strong { display: block; margin-bottom: 4px; color: #dff5ff; font-size: 12px; }
.checkout-delivery-note span { display: block; color: #9eabc8; font-size: 11px; line-height: 1.52; }
@media (max-width: 900px) {
  .shipping-grid { grid-template-columns: 1fr; }
  .shipping-card { min-height: 0; }
  .faq-wrap { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 620px) {
  .shipping-section { padding: 70px 0 78px; }
  .claims-banner { display: block; }
  .claims-banner .btn { width: 100%; margin-top: 18px; }
}

/* Shared link/button normalization */
.product-button { display: grid; place-items: center; text-decoration: none; }

/* Product detail page */
.detail-body {
  min-height: 100vh;
}
.detail-header .brand { flex-shrink: 0; }
.detail-nav-actions { display: flex; align-items: center; gap: 10px; }
.detail-cart-link {
  min-height: 46px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.045);
  font-size: 13px;
  font-weight: 850;
}
.detail-cart-link strong {
  min-width: 25px;
  height: 25px;
  padding: 0 7px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #071020;
  background: linear-gradient(135deg,var(--blue),var(--violet));
  font-size: 12px;
}
.product-detail-main { padding: 42px 0 96px; }
.detail-breadcrumb {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9eabc8;
  font-size: 12px;
}
.detail-breadcrumb a:hover { color: var(--blue); }
.detail-breadcrumb span { color: #59647d; }
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  gap: 34px;
  align-items: stretch;
}
.detail-image-card {
  min-height: 610px;
  padding: 28px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 35%, rgba(82,199,255,.13), transparent 22rem),
    #f4f4f4;
  box-shadow: var(--shadow);
}
.detail-image-card img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
}
.detail-image-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(7,10,19,.84);
  color: #eaf3ff;
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-summary {
  padding: 38px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 10%, rgba(126,115,255,.16), transparent 23rem),
    linear-gradient(145deg,#0d1427,#101a34);
  box-shadow: var(--shadow);
}
.detail-summary h1 {
  margin: 22px 0 7px;
  font-size: clamp(34px,4.9vw,64px);
  line-height: .97;
  letter-spacing: -.045em;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}
.detail-subtitle {
  margin: 0;
  color: #c3cde3;
  font-size: 18px;
  line-height: 1.55;
}
.detail-chips { margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 9px; }
.detail-chip {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #cbd6ee;
  font-size: 12px;
  font-weight: 750;
}
.detail-chip.stock { color: #d9fff1; border-color: rgba(101,216,173,.25); background: rgba(101,216,173,.08); }
.detail-purchase {
  margin-top: 30px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  border: 1px solid rgba(82,199,255,.18);
  border-radius: 20px;
  background: rgba(82,199,255,.055);
}
.detail-price-label { color: #9eabc8; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.detail-price { margin-top: 5px; font-size: 35px; font-weight: 950; letter-spacing: -.035em; }
.quantity-picker { display: flex; align-items: center; gap: 8px; }
.quantity-picker button,
.quantity-picker input {
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255,255,255,.04);
}
.quantity-picker button { width: 42px; cursor: pointer; font-size: 20px; }
.quantity-picker input { width: 58px; text-align: center; font-weight: 850; }
.detail-cta { margin-top: 14px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; }
.detail-cta .btn { min-height: 54px; }
.detail-smallprint { margin: 16px 0 0; color: #8996b2; font-size: 11px; line-height: 1.6; }
.detail-service-row { margin-top: auto; padding-top: 30px; display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.detail-service {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  color: #c6d1e8;
  font-size: 11px;
  line-height: 1.5;
}
.detail-service strong { display: block; margin-bottom: 3px; color: var(--text); font-size: 12px; }
.detail-content-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0,1.32fr) minmax(280px,.68fr);
  gap: 24px;
  align-items: start;
}
.detail-content,
.detail-sidebar-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.02));
}
.detail-content { padding: 30px; }
.detail-content section + section { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.detail-content h2 { margin: 0 0 12px; font-size: 27px; letter-spacing: -.035em; }
.detail-content h3 { margin: 23px 0 10px; font-size: 17px; }
.detail-content p,
.detail-content li { color: #b8c3da; font-size: 14px; line-height: 1.78; }
.detail-content ul { margin: 12px 0 0; padding-left: 21px; }
.detail-content li + li { margin-top: 9px; }
.detail-info-callout {
  padding: 18px 19px;
  border-left: 4px solid var(--blue);
  border-radius: 15px;
  background: rgba(82,199,255,.08);
  color: #d5eaff;
  font-size: 13px;
  line-height: 1.65;
}
.detail-info-callout strong { color: #fff; }
.detail-info-callout a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }
.detail-warning {
  padding: 20px;
  border: 1px solid rgba(242,200,108,.24);
  border-radius: 18px;
  background: linear-gradient(120deg,rgba(242,200,108,.09),rgba(255,255,255,.025));
}
.detail-warning-title { display: flex; gap: 9px; align-items: center; margin-bottom: 8px; color: #ffe2a2; font-weight: 900; }
.detail-warning p { margin: 0; color: #c7cfe0; font-size: 12px; line-height: 1.7; }
.detail-sidebar { position: sticky; top: 104px; display: grid; gap: 14px; }
.detail-sidebar-card { padding: 21px; }
.detail-sidebar-card h3 { margin: 0 0 15px; font-size: 17px; }
.spec-row { padding: 11px 0; display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); color: #9eabc8; font-size: 12px; }
.spec-row:last-child { border-bottom: 0; padding-bottom: 0; }
.spec-row strong { color: #edf4ff; text-align: right; }
.detail-sidebar-card p { margin: 0; color: #aeb9cf; font-size: 12px; line-height: 1.65; }
.detail-carriers { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 7px; }
.detail-carriers span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.04); font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.related-section { margin-top: 54px; }
.related-section .section-heading { margin-bottom: 22px; }
.related-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.related-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255,255,255,.03);
  transition: transform .2s ease,border-color .2s ease;
}
.related-card:hover { transform: translateY(-4px); border-color: rgba(82,199,255,.32); }
.related-card-image { aspect-ratio: 1/1; padding: 10px; background: #f4f4f4; }
.related-card-image img { width: 100%; height: 100%; object-fit: contain; }
.related-card-copy { padding: 14px; }
.related-card-copy span { color: #8fdcff; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.related-card-copy h3 { margin: 7px 0 5px; font-size: 17px; }
.related-card-copy p { margin: 0; color: #aab3ca; font-size: 11px; }
.detail-not-found { padding: 100px 20px; text-align: center; }
.detail-not-found h1 { font-size: clamp(42px,7vw,72px); }
@media (max-width: 980px) {
  .detail-hero, .detail-content-grid { grid-template-columns: 1fr; }
  .detail-image-card { min-height: 500px; }
  .detail-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 650px) {
  .product-detail-main { padding-top: 24px; }
  .detail-nav-actions .btn-secondary { display: none; }
  .detail-image-card { min-height: 390px; padding: 15px; border-radius: 22px; }
  .detail-summary { padding: 25px 20px; border-radius: 22px; }
  .detail-summary h1 { font-size: 34px; line-height: 1; }
  .detail-purchase { grid-template-columns: 1fr; }
  .quantity-picker { justify-content: flex-start; }
  .detail-cta, .detail-service-row, .detail-sidebar { grid-template-columns: 1fr; }
  .detail-content { padding: 22px 18px; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { gap: 12px; }
  .nav-actions, .detail-nav-actions { gap: 7px; }
  .lang-switch { padding: 3px; }
  .lang-switch a { min-width: 34px; height: 34px; padding: 0 8px; }
}
@media (max-width: 520px) {
  .brand-mark { width: 48px; height: 48px; }
  .brand-copy span { display: none; }
  .lang-switch a { min-width: 32px; padding: 0 6px; font-size: 10px; }
}

@media (max-width: 420px) {
  .brand-copy { display: none; }
  .detail-cart-link span { display: none; }
}


/* About page */
.nav-links a.is-active { color: var(--blue); }
.about-main { min-height: 70vh; }
.about-hero { padding: 78px 0 70px; background: radial-gradient(circle at 78% 25%, rgba(91, 102, 255, .13), transparent 32%), radial-gradient(circle at 18% 15%, rgba(67, 200, 255, .09), transparent 28%); }
.about-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .8fr); gap: 52px; align-items: center; }
.about-hero-copy h1 { margin: 20px 0 22px; max-width: 850px; font-size: clamp(52px, 6.2vw, 94px); line-height: .94; letter-spacing: -.055em; }
.about-hero-copy > p { max-width: 710px; color: #bdc9e2; font-size: 17px; line-height: 1.85; }
.about-identity-card { position: relative; overflow: hidden; padding: 36px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(17, 27, 49, .96), rgba(17, 22, 42, .9)); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.about-identity-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -90px; top: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(83, 194, 255, .19), transparent 68%); pointer-events: none; }
.about-card-mark { width: 82px; height: 82px; display: block; margin-bottom: 30px; overflow: hidden; border-radius: 22px; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 18px 42px rgba(0,0,0,.32); }
.about-card-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-identity-card h2 { position: relative; margin: 15px 0; max-width: 560px; font-size: clamp(30px, 3vw, 48px); line-height: 1.04; letter-spacing: -.035em; }
.about-identity-card p { position: relative; color: #b9c6df; line-height: 1.75; }
.about-country-pills { position: relative; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.about-country-pills span { padding: 9px 12px; border-radius: 999px; border: 1px solid rgba(104, 194, 255, .2); background: rgba(55, 151, 255, .08); color: #d8ecff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.about-content-section { padding: 82px 0 100px; background: linear-gradient(180deg, rgba(8, 13, 25, .12), rgba(15, 24, 42, .34)); }
.about-heading { margin-bottom: 34px; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.about-value-card { min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.025); }
.about-value-icon { min-width: 58px; height: 52px; padding: 0 12px; display: inline-grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, var(--blue), var(--violet)); color: #071020; font-size: 13px; font-weight: 950; letter-spacing: -.02em; }
.about-value-card h3 { margin: 24px 0 12px; font-size: 24px; letter-spacing: -.025em; }
.about-value-card p { color: #b8c5dd; line-height: 1.75; }
.about-story-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; margin-top: 22px; padding: 44px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, rgba(20, 31, 54, .92), rgba(13, 20, 37, .9)); }
.about-story-panel h2 { margin: 15px 0 0; font-size: clamp(32px, 4vw, 56px); line-height: 1.02; letter-spacing: -.04em; }
.about-story-copy p { margin: 0 0 18px; color: #c1cce2; font-size: 16px; line-height: 1.85; }
.about-warning { margin-top: 22px; padding: 24px 28px; display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: center; border: 1px solid rgba(255, 205, 92, .25); border-radius: 20px; background: rgba(126, 91, 20, .08); }
.about-warning strong { color: #ffdc86; font-size: 18px; }
.about-warning p { margin: 0; color: #c9d2e4; line-height: 1.65; }
.about-body .cart-trigger { text-decoration: none; }

@media (max-width: 980px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-value-card { min-height: auto; }
  .about-story-panel { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 640px) {
  .about-hero { padding: 48px 0 52px; }
  .about-hero-copy h1 { font-size: clamp(46px, 15vw, 68px); }
  .about-identity-card, .about-story-panel { padding: 25px; border-radius: 22px; }
  .about-content-section { padding: 58px 0 70px; }
  .about-warning { grid-template-columns: 1fr; gap: 10px; }
}
