:root {
  --bg-1: #050a13;
  --bg-2: #081428;
  --surface: rgba(15, 24, 42, 0.65);
  --surface-strong: #0c1831;
  --border: rgba(164, 183, 225, 0.18);
  --text: #eef4ff;
  --text-soft: #a6b8db;
  --text-muted: #7f95bf;
  --blue: #2f79ff;
  --cyan: #20bdf3;
  --white: #ffffff;
  --star: #ffffff;
  --shadow: 0 14px 44px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Manrope, "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 500px at 20% 8%, rgba(49, 119, 255, 0.22), transparent 58%),
    radial-gradient(700px 420px at 82% 14%, rgba(32, 189, 243, 0.17), transparent 56%),
    linear-gradient(180deg, var(--bg-1) 0%, #061127 52%, #071225 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  will-change: opacity;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  will-change: backdrop-filter;
  background: rgba(6, 12, 22, 0.72);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.header__menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.header__menu-toggle:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.4);
}

.header__menu-toggle-line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.header__link {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 220ms ease;
}

.header__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header__link--blink {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.28);
  animation: menuBlink 2.4s ease-in-out infinite;
}

@keyframes menuBlink {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
    opacity: 0.95;
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    opacity: 1;
  }
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(11, 24, 46, 0.9);
  padding: 5px;
  margin-right: 4px;
  position: relative;
}

.lang-switch__item {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 11px;
}

.lang-switch__item.is-active {
  background: rgba(47, 121, 255, 0.35);
  color: #fff;
}

.lang-switch__note {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 25;
  border-radius: 10px;
  border: 1px solid rgba(164, 183, 225, 0.34);
  background:
    radial-gradient(220px 110px at 12% 0%, rgba(47, 121, 255, 0.2), transparent 70%),
    linear-gradient(165deg, rgba(14, 29, 55, 0.98), rgba(8, 18, 34, 0.98));
  color: #edf5ff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 10px;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.lang-switch__note.is-visible {
  animation: langNoteIn 220ms ease forwards;
}

@keyframes langNoteIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-slot {
  width: 148px;
  height: 42px;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.logo-slot__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(33, 179, 241, 0.45);
  color: #21b3f1;
  background: radial-gradient(circle at 30% 20%, rgba(33, 179, 241, 0.22), rgba(8, 18, 34, 0.95));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(33, 179, 241, 0.16), 0 8px 24px rgba(6, 14, 28, 0.5);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(33, 179, 241, 0.34), 0 12px 30px rgba(6, 14, 28, 0.6);
}

.cart-btn__icon {
  width: 22px;
  height: 22px;
}

.cart-btn__count {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  padding: 0 5px;
  background: #ffffff;
  color: #031321;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 0 18px rgba(33, 179, 241, 0.55);
}

.sidecart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 18, 0.66);
  backdrop-filter: blur(2px);
  z-index: 298;
}

.sidecart {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 299;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 18, 0.66);
  backdrop-filter: blur(2px);
  z-index: 300;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 301;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(400px, 94vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(520px 380px at 18% 4%, rgba(47, 121, 255, 0.14), transparent 58%),
    radial-gradient(500px 330px at 85% 12%, rgba(32, 189, 243, 0.11), transparent 60%),
    linear-gradient(180deg, #040b1b 0%, #071226 100%);
  border-left: 1px solid rgba(164, 183, 225, 0.2);
  box-shadow: -24px 0 44px rgba(0, 0, 0, 0.5);
  transform: translateX(104%);
  transition: transform 280ms ease;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(164, 183, 225, 0.14);
}

.mobile-menu__title {
  margin: 0;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 1.58rem;
  color: var(--text);
}

.mobile-menu__close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(191, 208, 238, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: #dce9ff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__content {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__toggle {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #ebf4ff;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 720;
  padding: 10px 12px;
  cursor: pointer;
  position: relative;
  transition: background 180ms ease, color 180ms ease;
}

.mobile-menu__toggle::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: 700;
  color: #b8cff2;
}

.mobile-menu__toggle[aria-expanded="true"]::after {
  content: "-";
}

.mobile-menu__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.mobile-menu__link,
.mobile-menu__sublink {
  display: block;
  color: #ebf4ff;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 12px;
  transition: background 180ms ease, color 180ms ease;
}

.mobile-menu__link {
  font-size: 1.06rem;
  font-weight: 720;
}

.mobile-menu__sublink {
  font-size: 0.98rem;
  font-weight: 620;
  color: #cde0ff;
  padding-left: 18px;
  position: relative;
}

.mobile-menu__sublink::before {
  content: "*";
  position: absolute;
  left: 8px;
  top: 10px;
  color: #8cb0e5;
}

.mobile-menu__link:hover,
.mobile-menu__sublink:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.mobile-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.mobile-menu__list[hidden] {
  display: none !important;
}

.mobile-menu__footer {
  border-top: 1px solid rgba(164, 183, 225, 0.14);
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu__lang {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(11, 24, 46, 0.9);
  padding: 5px;
}

.mobile-menu__lang-item {
  border: none;
  border-radius: 999px;
  padding: 6px 11px;
  background: transparent;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu__lang-item.is-active {
  background: rgba(47, 121, 255, 0.35);
  color: #fff;
}

.mobile-menu__lang-note {
  margin: 10px 0 0;
  color: #cfe2ff;
  font-size: 0.86rem;
  text-align: center;
}

.sidecart__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(520px 380px at 18% 4%, rgba(47, 121, 255, 0.14), transparent 58%),
    radial-gradient(500px 330px at 85% 12%, rgba(32, 189, 243, 0.11), transparent 60%),
    linear-gradient(180deg, #040b1b 0%, #071226 100%);
  border-left: 1px solid rgba(164, 183, 225, 0.2);
  box-shadow: -24px 0 44px rgba(0, 0, 0, 0.5);
  transform: translateX(104%);
  transition: transform 280ms ease;
}

.sidecart.is-open {
  pointer-events: auto;
}

.sidecart.is-open .sidecart__panel {
  transform: translateX(0);
}

.sidecart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(164, 183, 225, 0.14);
}

.sidecart__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text);
}

.sidecart__title-icon {
  width: 24px;
  height: 24px;
  color: var(--text);
}

.sidecart__close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(191, 208, 238, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: #dce9ff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 180ms ease;
}

.sidecart__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidecart__content {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 14px 18px 18px;
}

.sidecart__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidecart__item {
  border: 1px solid rgba(164, 183, 225, 0.16);
  border-radius: 14px;
  padding: 12px;
  background: rgba(8, 19, 39, 0.75);
}

.sidecart__item-main {
  display: grid;
  grid-template-columns: 1fr 108px;
  gap: 12px;
  align-items: center;
}

.sidecart__item-info {
  min-width: 0;
}

.sidecart__item-name {
  margin: 0;
  color: #e8f2ff;
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.sidecart__item-price {
  margin: 6px 0 0;
  color: #d7e8ff;
  font-size: 1rem;
  font-weight: 600;
}

.sidecart__item-price .amount {
  color: inherit;
}

.sidecart__item-cover {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(181, 201, 236, 0.2);
  justify-self: center;
}

.sidecart__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidecart__remove {
  margin-top: 10px;
  display: inline-flex;
  color: #f2fbff;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 700;
}

.sidecart__remove:hover {
  color: #6ad4ff;
}

.sidecart__totals {
  margin-top: auto;
  border-top: 1px solid rgba(164, 183, 225, 0.16);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidecart__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #d6e4fe;
  font-size: 1.1rem;
  font-weight: 620;
}

.sidecart__total-row .amount {
  color: inherit;
}

.sidecart__total-row--grand {
  margin-top: 2px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
}

.sidecart__actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidecart__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
  padding: 14px 18px;
  transition: all 200ms ease;
}

.sidecart__btn--checkout {
  color: #08152d;
  background: linear-gradient(135deg, #e9f4ff 0%, #8fd8ff 52%, #61c8ff 100%);
  box-shadow: 0 12px 26px rgba(53, 176, 255, 0.35);
}

.sidecart__btn--checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(53, 176, 255, 0.42);
}

.sidecart__btn--secondary {
  color: #d5e8ff;
  border: 1px solid rgba(164, 183, 225, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.sidecart__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidecart__empty {
  margin: auto 0;
  border: 1px solid rgba(164, 183, 225, 0.18);
  border-radius: 14px;
  padding: 20px;
  background: rgba(8, 19, 39, 0.6);
  text-align: center;
}

.sidecart__empty-text {
  margin: 0;
  color: #d6e4fe;
  font-size: 1.05rem;
  font-weight: 600;
}

body.sidecart-open {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 92px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 92px 92px;
  transform: translateZ(0);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
}

.hero__glow--blue {
  width: 520px;
  height: 520px;
  left: 5%;
  top: -120px;
  background: rgba(40, 119, 255, 0.2);
}

.hero__glow--cyan {
  width: 470px;
  height: 470px;
  right: 2%;
  top: 30px;
  background: rgba(32, 189, 243, 0.13);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  background: rgba(10, 18, 32, 0.7);
}

.hero__title {
  max-width: 1100px;
  margin: 24px auto 18px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(2rem, 5.4vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  margin: 0 auto 32px;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  color: var(--text-soft);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: all 220ms ease;
}

.btn--primary {
  background: linear-gradient(135deg, #ffffff, #edf3ff);
  color: #09152c;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.24);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(255, 255, 255, 0.34);
}

.btn--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover,
.btn--outline:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.keyword-ticker {
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.keyword-ticker__track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  animation: ticker 44s linear infinite;
  color: rgba(201, 216, 245, 0.82);
  font-size: 13px;
  font-weight: 520;
  letter-spacing: 0.02em;
  padding-right: 14px;
}

.keyword-ticker .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(183, 200, 234, 0.5);
}

@keyframes ticker {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.about {
  padding: 90px 0 84px;
  background: linear-gradient(180deg, #071225 0%, #060f20 100%);
}

.about__inner {
  max-width: 1180px;
}

.section-title {
  margin: 0 0 12px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-lead {
  margin: 0 0 26px;
  font-size: clamp(1.08rem, 2.2vw, 1.36rem);
  color: var(--text-soft);
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.product-card {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(165deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
  border: 1px solid rgba(173, 201, 245, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 40px rgba(0, 0, 0, 0.48);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(188, 213, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 24px 46px rgba(0, 0, 0, 0.56);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #07162f;
  background: linear-gradient(135deg, #ffffff, #def0ff);
  box-shadow: 0 6px 16px rgba(153, 207, 255, 0.38);
}

.product-card__cover {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 220px;
  border-radius: 12px;
  border: 1px solid rgba(179, 205, 248, 0.38);
  background:
    radial-gradient(420px 120px at 20% 0%, rgba(47, 121, 255, 0.34), transparent 70%),
    linear-gradient(145deg, rgba(15, 30, 55, 0.9), rgba(10, 21, 41, 0.92));
  overflow: hidden;
  margin-bottom: 14px;
}

.product-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-card__title {
  margin: 0 0 10px;
  color: #f6f9ff;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.18rem, 2.1vw, 1.34rem);
  line-height: 1.24;
  text-align: center;
}

.product-card__price {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.72rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.product-card__price small {
  font-size: 0.72rem;
  color: #9eb4dc;
  font-weight: 600;
  margin-left: 2px;
}

.product-card__desc {
  margin: 0 0 18px;
  color: #cbdcf8;
  font-size: 0.98rem;
  line-height: 1.5;
  min-height: 3em;
  text-align: center;
}

.product-card__actions {
  display: flex;
  gap: 8px;
}

.product-btn {
  flex: 1;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.product-btn--primary {
  background: linear-gradient(135deg, #ffffff, #e8f0ff);
  color: #0a1a35;
}

.product-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(180, 214, 255, 0.36);
}

.product-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d6e6ff;
  background: rgba(255, 255, 255, 0.05);
}

.product-btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
}

.about__note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: #8ea7d4;
}

.dataset-section {
  padding: 92px 0 96px;
  background:
    radial-gradient(900px 380px at 8% 12%, rgba(42, 112, 240, 0.22), transparent 66%),
    radial-gradient(860px 360px at 92% 88%, rgba(32, 189, 243, 0.16), transparent 70%),
    linear-gradient(180deg, #081328 0%, #071121 45%, #071224 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dataset-section__inner {
  max-width: 1180px;
}

.dataset-section__eyebrow {
  margin: 0 auto 20px;
  width: fit-content;
  display: inline-flex;
}

.dataset-section__inner {
  text-align: center;
}

.dataset-section__inner .section-title {
  text-align: center;
}

.dataset-layout {
  text-align: left;
}

.dataset-section__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  background: #89ff8f;
  box-shadow: 0 0 10px rgba(137, 255, 143, 0.75);
  animation: greenBlink 1.8s ease-in-out infinite;
}

@keyframes greenBlink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(137, 255, 143, 0.75);
  }
  50% {
    opacity: 0.45;
    box-shadow: 0 0 20px rgba(137, 255, 143, 0.92);
  }
}

.dataset-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.dataset-list-wrap {
  border-radius: 18px;
  border: 1px solid rgba(175, 202, 244, 0.22);
  background: linear-gradient(160deg, rgba(15, 28, 52, 0.8), rgba(9, 18, 36, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.45);
}

.dataset-list-wrap {
  padding: 26px 24px;
}

.dataset-subheading {
  margin: 0 0 16px;
  color: #e8f1ff;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
}

.dataset-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.dataset-checklist li {
  position: relative;
  padding-left: 30px;
  color: #cfdef9;
  line-height: 1.45;
}

.dataset-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #deebff);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.38);
}

.dataset-checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 4px;
  height: 7px;
  border-right: 2px solid #10213d;
  border-bottom: 2px solid #10213d;
  transform: rotate(38deg);
}

.dataset-list-wrap__btn {
  display: inline-flex;
  margin-top: 22px;
  text-decoration: none;
  justify-content: center;
  width: auto;
  padding: 11px 22px;
}

.dataset-image {
  width: 100%;
  height: auto;
  min-height: 340px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.custom-build {
  margin-top: 114px;
}

.custom-build__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.custom-card {
  border-radius: 16px;
  border: 1px solid rgba(175, 202, 244, 0.22);
  background: linear-gradient(160deg, rgba(15, 28, 52, 0.8), rgba(9, 18, 36, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.45);
  padding: 20px;
}

.custom-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: block;
}

.custom-card__title {
  margin: 0 0 8px;
  font-size: 1.18rem;
  color: #f3f8ff;
}

.custom-card__text {
  margin: 0;
  color: #c5d8f7;
  line-height: 1.55;
}

.custom-card__link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.custom-card__link:hover {
  color: #dbe9ff;
}

.custom-build__actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dataset-reviews {
  margin-top: 114px;
}

.reviews {
  padding: 88px 0 90px;
  background: #060f20;
}

.reviews-marquee {
  margin-top: 28px;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.reviews-marquee__track {
  display: flex;
  gap: 18px;
  min-width: max-content;
  animation: reviewsMove 80s linear infinite;
  padding-right: 18px;
}

@keyframes reviewsMove {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.review-card {
  width: min(420px, 82vw);
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(17, 31, 58, 0.9), rgba(10, 20, 38, 0.92));
  border: 1px solid rgba(169, 193, 235, 0.2);
  box-shadow: var(--shadow);
}

.review-card__stars {
  color: var(--star);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.55), 0 0 22px rgba(197, 225, 255, 0.4);
  letter-spacing: 0.15em;
  font-size: 18px;
  text-align: center;
  margin-bottom: 12px;
}

.review-card__name {
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
}

.review-card__text {
  margin: 0;
  color: #dfe8fb;
  font-size: 15px;
  line-height: 1.65;
}

.footer {
  background: #060d18;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 52px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 260px));
  justify-content: center;
  gap: 44px;
}

.footer__col {
  text-align: center;
}

.footer__heading {
  margin: 0 0 16px;
  color: #f3f7ff;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
  letter-spacing: 0.02em;
}

.footer__link {
  display: block;
  color: #c9daf9;
  text-decoration: none;
  margin: 8px 0;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
  text-align: center;
  color: #a7bddf;
  font-size: 0.9rem;
}

.footer__bottom p {
  margin: 5px 0;
}

.scroll-top {
  position: fixed;
  right: 26px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.24), rgba(8, 19, 37, 0.95));
  box-shadow: 0 14px 26px rgba(2, 7, 15, 0.48);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease, box-shadow 220ms ease;
  z-index: 120;
}

.scroll-top:hover {
  transform: translateY(4px);
  box-shadow: 0 18px 30px rgba(2, 7, 15, 0.56);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.samples-page {
  padding: 96px 0 94px;
  background:
    radial-gradient(920px 420px at 12% 10%, rgba(49, 119, 255, 0.2), transparent 64%),
    radial-gradient(860px 360px at 90% 88%, rgba(32, 189, 243, 0.16), transparent 68%),
    linear-gradient(180deg, #081328 0%, #061124 52%, #071224 100%);
}

.samples-page__inner {
  max-width: 1180px;
}

.samples-page__eyebrow {
  display: flex;
  width: fit-content;
  margin: 0 auto 18px;
}

.samples-page__title {
  margin-bottom: 14px;
}

.samples-page__lead {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.shop-landing__inner {
  max-width: 1180px;
}

.shop-categories-grid {
  margin-top: 28px;
}

.shop-category-card__cover {
  min-height: 240px;
}

.shop-category-card__count {
  min-height: 0;
  margin-bottom: 0;
  color: #a9bee4;
  font-weight: 700;
}

.shop-category-card__fallback {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #deebff;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  padding: 20px;
}

.shop-landing__actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.category-page__inner {
  max-width: 1180px;
}

.category-page__breadcrumbs {
  margin: 0 auto 16px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.category-page__breadcrumbs .woocommerce-breadcrumb {
  color: #9eb4dc;
  font-size: 0.95rem;
  font-weight: 600;
}

.category-page__breadcrumbs .woocommerce-breadcrumb a {
  color: #d6e5ff;
  text-decoration: none;
}

.category-page__breadcrumbs .woocommerce-breadcrumb a:hover {
  color: #ffffff;
}

.category-products-grid {
  margin-top: 28px;
}

.category-product-card {
  display: flex;
  flex-direction: column;
}

.category-product-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.category-product-card__cover {
  min-height: 230px;
}

.category-product-card .product-card__price {
  margin-bottom: 14px;
}

.category-product-card__actions {
  margin-top: auto;
}

.category-product-card__actions .product-btn {
  width: 100%;
  text-decoration: none;
}

.category-product-card__actions .product-btn:hover,
.category-product-card__actions .product-btn:focus-visible {
  text-decoration: none;
}

.category-product-card .product-card__cover-img,
.category-product-card:hover .product-card__cover-img {
  transform: none;
  filter: none;
}

.category-page .pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.category-page .pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.category-page .pagination .page-numbers {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d6e6ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
}

.category-page .pagination .page-numbers.current {
  background: linear-gradient(135deg, #ffffff, #e8f0ff);
  color: #0a1a35;
}

.single-product-page {
  padding: 96px 0 94px;
  background: transparent;
}

.single-product-page__inner {
  max-width: 1180px;
}

.single-product-page__breadcrumbs {
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #9eb4dc;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  flex-wrap: wrap;
}

.single-product-page__breadcrumbs a {
  color: #d6e5ff;
  text-decoration: none;
}

.single-product-page__breadcrumbs a:hover {
  color: #ffffff;
}

.single-product-page__sep {
  color: #7f95bf;
}

.woocommerce-notices-wrapper {
  margin-bottom: 16px;
}

.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
  margin: 0 0 14px;
  padding: 14px 16px;
  list-style: none;
  border-radius: 12px;
  border: 1px solid rgba(173, 201, 245, 0.28);
  background: linear-gradient(140deg, rgba(16, 34, 64, 0.95), rgba(10, 23, 45, 0.98));
  color: #e8f2ff;
  font-size: 15px;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.36);
}

.woocommerce-notices-wrapper .woocommerce-error {
  border-color: rgba(255, 142, 142, 0.45);
  background: linear-gradient(140deg, rgba(64, 21, 36, 0.94), rgba(44, 16, 29, 0.98));
}

.woocommerce-notices-wrapper .button.wc-forward {
  margin-left: 10px;
  border-radius: 9px;
  border: 1px solid rgba(173, 201, 245, 0.36);
  color: #e5f4ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 7px 12px;
}

.woocommerce-notices-wrapper .button.wc-forward:hover {
  background: rgba(255, 255, 255, 0.12);
}

.checkout-page {
  padding: 88px 0 70px;
  background:
    radial-gradient(980px 460px at 12% 8%, rgba(49, 119, 255, 0.2), transparent 64%),
    radial-gradient(900px 360px at 90% 12%, rgba(32, 189, 243, 0.14), transparent 66%),
    linear-gradient(180deg, #081328 0%, #071224 100%);
}

.checkout-page__inner {
  max-width: 1180px;
}

.checkout-page__title,
.checkout-page__lead,
.checkout-page__eyebrow {
  text-align: center;
}

.checkout-page__eyebrow {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.checkout-page .woocommerce {
  color: #edf4ff;
}

.checkout-page .woocommerce-info,
.checkout-page .woocommerce-error,
.checkout-page .woocommerce-message {
  margin: 0 0 16px;
}

.checkout-page .woocommerce-form-coupon-toggle .woocommerce-info {
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.checkout-page .woocommerce-form-coupon-toggle .woocommerce-info,
.checkout-page .woocommerce-form-coupon-toggle .woocommerce-info a,
.checkout-page .woocommerce-form-coupon-toggle .woocommerce-info span {
  background: transparent !important;
}

.checkout-page .woocommerce-form-coupon-toggle {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border-color: rgba(173, 201, 245, 0.28);
  background: linear-gradient(140deg, rgba(16, 34, 64, 0.95), rgba(10, 23, 45, 0.98));
  color: #e8f2ff;
  text-align: center;
}

.checkout-page .woocommerce-form-coupon-toggle .woocommerce-info .showcoupon {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.checkout-page #coupon-error-notice,
.checkout-page .coupon-error-notice {
  display: block;
  padding-top: 8px;
}

.checkout-page .woocommerce-form-coupon-toggle .woocommerce-info .showcoupon:hover {
  color: #dff0ff;
}

.checkout-page a.woocommerce-remove-coupon {
  color: #ffffff;
}

.checkout-page a.woocommerce-remove-coupon:hover {
  color: #dff0ff;
}

.checkout-page .woocommerce-form-coupon {
  margin: 0 0 22px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(173, 201, 245, 0.24);
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
}

.checkout-page .checkout_coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.checkout-page .checkout_coupon .form-row-first {
  flex: 1 1 300px;
  margin: 0;
}

.checkout-page .checkout_coupon .form-row-last {
  margin: 0;
}

.checkout-page .checkout_coupon button.button {
  min-height: 46px;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid rgba(173, 201, 245, 0.42);
  background: linear-gradient(135deg, #ffffff, #e8f0ff);
  color: #0a1a35;
  font-weight: 760;
}

.checkout-page form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.checkout-page #customer_details,
.checkout-page #order_review,
.checkout-page #order_review_heading {
  width: 100%;
  float: none;
}

.checkout-page form.checkout #customer_details {
  grid-column: 1;
  grid-row: 1;
}

.checkout-page form.checkout #order_review {
  grid-column: 2;
  grid-row: 1;
}

.checkout-page form.checkout .woocommerce-NoticeGroup,
.checkout-page form.checkout .woocommerce-NoticeGroup-checkout {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: 10px;
}

.checkout-page form.checkout .woocommerce-error,
.checkout-page form.checkout ul.woocommerce-error {
  margin: 0;
  padding: 14px 16px 14px 30px;
  border: 1px solid rgba(255, 121, 121, 0.55);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(64, 18, 28, 0.96), rgba(42, 10, 20, 0.98));
  color: #ffd8d8;
}

.checkout-page form.checkout ul.woocommerce-error li {
  color: #ffd8d8;
  padding-left: 4px;
}

.checkout-page #customer_details {
  margin: 0;
}

.checkout-page #customer_details .col-1,
.checkout-page #customer_details .col-2 {
  width: 100%;
  float: none;
}

.checkout-page .woocommerce-billing-fields,
.checkout-page .woocommerce-additional-fields,
.checkout-page .checkout-page__fallback {
  margin: 0;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(173, 201, 245, 0.24);
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 40px rgba(0, 0, 0, 0.48);
}

.checkout-page__empty {
  margin: 0 auto;
  padding: 80px 24px;
  max-width: 760px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(173, 201, 245, 0.24);
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 40px rgba(0, 0, 0, 0.48);
}

.checkout-page__empty-text {
  margin: 0;
  color: #edf4ff;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 650;
}

.checkout-page__empty-btn {
  margin-top: 20px;
  min-width: 160px;
}

.checkout-page .infomarket-thankyou {
  max-width: 980px;
  margin: 0 auto;
}

.checkout-page .infomarket-thankyou .checkout-page__title {
  margin-bottom: 28px;
}

.checkout-page .infomarket-order-downloads,
.checkout-page .infomarket-order-summary {
  margin: 0 0 18px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(173, 201, 245, 0.24);
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 40px rgba(0, 0, 0, 0.48);
}

.checkout-page .woocommerce-order-details__title,
.checkout-page .woocommerce-column__title {
  margin: 0 0 14px;
  color: #f5f9ff;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.checkout-page .infomarket-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.checkout-page .infomarket-order-downloads .shop_table,
.checkout-page .infomarket-order-summary .shop_table {
  width: 100%;
  min-width: 640px;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  border: 1px solid rgba(173, 201, 245, 0.24);
}

.checkout-page .infomarket-order-downloads .shop_table,
.checkout-page .infomarket-order-summary .shop_table {
  font-size: 15px;
}

.checkout-page .infomarket-order-downloads .shop_table thead th,
.checkout-page .infomarket-order-summary .shop_table thead th {
  color: #d5e5ff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-page .infomarket-order-downloads .shop_table th,
.checkout-page .infomarket-order-downloads .shop_table td,
.checkout-page .infomarket-order-summary .shop_table th,
.checkout-page .infomarket-order-summary .shop_table td {
  border-color: rgba(173, 201, 245, 0.2);
  padding: 12px;
  vertical-align: middle;
}

.checkout-page .infomarket-order-downloads a,
.checkout-page .infomarket-order-summary a {
  color: #dff4ff;
  font-weight: 700;
  text-decoration: none;
}

.checkout-page .infomarket-order-downloads a.sample-btn,
.checkout-page .infomarket-order-downloads a.sample-btn:hover {
  color: #f7fbff;
  text-decoration: none;
}

.checkout-page .infomarket-order-downloads a:hover,
.checkout-page .infomarket-order-summary a:hover {
  color: #ffffff;
  text-decoration: none;
}

.checkout-page .infomarket-order-downloads .shop_table td:last-child,
.checkout-page .infomarket-order-downloads .shop_table th:last-child,
.checkout-page .infomarket-order-summary .shop_table td:last-child,
.checkout-page .infomarket-order-summary .shop_table th:last-child {
  text-align: right;
}

.checkout-page .infomarket-order-summary__total-row td {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
  background: rgba(32, 189, 243, 0.14);
}

.checkout-page .infomarket-order-downloads .download-actions,
.checkout-page .infomarket-order-downloads td:last-child {
  width: 170px;
  text-align: right;
}

.checkout-page .infomarket-order-downloads .button,
.checkout-page .infomarket-order-summary .button {
  border-radius: 999px;
  border: 1px solid rgba(173, 201, 245, 0.42);
  background: linear-gradient(135deg, #1d6de6, #0d3f96);
  color: #ffffff;
  font-weight: 760;
  padding: 10px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.checkout-page .infomarket-order-downloads .button:hover,
.checkout-page .infomarket-order-summary .button:hover {
  background: linear-gradient(135deg, #2a7af2, #1150b6);
  color: #ffffff;
}

.checkout-page .woocommerce-additional-fields {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .checkout-page .infomarket-order-downloads,
  .checkout-page .infomarket-order-summary {
    padding: 18px;
  }

  .checkout-page .infomarket-order-downloads .shop_table,
  .checkout-page .infomarket-order-summary .shop_table {
    min-width: 580px;
  }
}

@media (max-width: 680px) {
  .checkout-page .infomarket-order-downloads,
  .checkout-page .infomarket-order-summary {
    padding: 16px;
  }

  .checkout-page .infomarket-order-downloads .shop_table,
  .checkout-page .infomarket-order-summary .shop_table {
    min-width: 520px;
    font-size: 14px;
  }

  .checkout-page .infomarket-order-downloads .shop_table th,
  .checkout-page .infomarket-order-downloads .shop_table td,
  .checkout-page .infomarket-order-summary .shop_table th,
  .checkout-page .infomarket-order-summary .shop_table td {
    padding: 10px 9px;
  }
}

.checkout-page h3 {
  margin: 0 0 16px;
  color: #f5f9ff;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.95rem);
}

.checkout-page .form-row {
  margin: 0 0 12px;
}

.checkout-page label {
  color: #edf4ff;
  font-weight: 700;
  margin-bottom: 7px;
  display: block;
}

.checkout-page .required {
  color: #ff6f80;
}

.checkout-page input.input-text,
.checkout-page textarea,
.checkout-page select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(177, 201, 240, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #edf4ff;
  font: inherit;
  min-height: 48px;
  padding: 10px 14px;
}

.checkout-page textarea {
  min-height: 118px;
  resize: vertical;
}

.checkout-page input.input-text:focus,
.checkout-page textarea:focus,
.checkout-page select:focus {
  border-color: rgba(133, 186, 255, 0.66);
  box-shadow: 0 0 0 3px rgba(66, 145, 255, 0.18);
  outline: none;
}

.checkout-page #order_review_heading {
  margin: 0;
  padding: 22px 22px 0;
  border-radius: 18px 18px 0 0;
  border: 1px solid rgba(173, 201, 245, 0.24);
  border-bottom: 0;
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
}

.checkout-page #order_review {
  margin: 0;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(173, 201, 245, 0.24);
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 40px rgba(0, 0, 0, 0.48);
}

.checkout-page #order_review > #order_review_heading {
  padding: 0 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.checkout-page table.shop_table {
  width: 100%;
  border-collapse: collapse;
  color: #eef5ff;
}

.checkout-page table.shop_table thead th,
.checkout-page table.shop_table tfoot th,
.checkout-page table.shop_table tfoot td,
.checkout-page table.shop_table tbody th,
.checkout-page table.shop_table tbody td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(173, 201, 245, 0.14);
  font-size: 1rem;
}

.checkout-page .woocommerce-checkout-review-order-table th {
  text-align: left;
}

.checkout-page .woocommerce-checkout-review-order-table td,
.checkout-page .woocommerce-checkout-review-order-table .product-total {
  text-align: right;
}

.checkout-page .woocommerce-checkout-review-order-table td.product-name {
  text-align: left;
}

.checkout-page .woocommerce-checkout-review-order-table .includes_tax {
  display: none;
}

.checkout-page table.shop_table tr:last-child th,
.checkout-page table.shop_table tr:last-child td {
  border-bottom: 0;
}

.checkout-page #shipping_method,
.checkout-page .woocommerce-shipping-totals,
.checkout-page .woocommerce-checkout-review-order-table .shipping {
  display: none;
}

.checkout-page #payment {
  margin-top: 14px;
  background: rgba(2, 8, 28, 0.42);
  border-radius: 14px;
  border: 1px solid rgba(173, 201, 245, 0.2);
  padding: 14px;
}

.checkout-page #payment ul.payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-page #payment ul.payment_methods li {
  margin: 0 0 10px;
  color: #edf4ff;
}

.checkout-page #payment ul.payment_methods li:last-child {
  margin-bottom: 0;
}

.checkout-page #payment .place-order {
  margin-top: 14px;
}

.checkout-page #payment .place-order .form-row {
  margin: 12px 0 14px;
}

.checkout-page #payment .place-order .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  line-height: 1.45;
  font-size: 0.95rem;
  font-weight: 650;
}

.checkout-page #payment .place-order .woocommerce-form__input-checkbox {
  margin-top: 3px;
  flex: 0 0 auto;
}

.checkout-page #payment .place-order .required {
  margin-left: 4px;
}

.checkout-page #payment .place-order a {
  color: #d8e9ff;
  text-decoration: underline;
}

.checkout-page .woocommerce-terms-and-conditions-wrapper {
  margin-top: 14px;
}

.checkout-page .woocommerce-terms-and-conditions-wrapper .validate-required {
  margin: 0;
}

.checkout-page .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 650;
  color: #edf4ff;
}

.checkout-page .woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
  margin-top: 2px;
}

.checkout-page .woocommerce-terms-and-conditions-wrapper a {
  color: #d8e9ff;
  text-decoration: underline;
}

.checkout-page #place_order {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(173, 201, 245, 0.42);
  background: linear-gradient(135deg, #ffffff, #e8f0ff);
  color: #0a1a35;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.checkout-page #place_order:hover {
  transform: translateY(-1px);
}

.checkout-page .woocommerce-privacy-policy-text,
.checkout-page .optional {
  color: #a8bddf;
  font-size: 0.92rem;
}

.single-product-page__product {
  margin: 0;
}

.single-product-page__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 26px;
  align-items: start;
}

.single-product-page__media {
  min-height: 0;
}

.single-product-page__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.single-product-page__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-product-page__title {
  margin: 0 0 16px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #f7faff;
}

.single-product-page__description {
  color: #c9dbfb;
  line-height: 1.7;
  font-size: 1rem;
}

.single-product-page__description a,
.single-product-page__description a:visited,
.pricing-table__product-link,
.pricing-table__product-link:visited {
  color: #ffffff;
}

.single-product-page__description a:hover,
.single-product-page__description a:focus-visible,
.pricing-table__product-link:hover,
.pricing-table__product-link:focus-visible {
  color: #dbeaff;
}

.single-product-page__description > :first-child {
  margin-top: 0;
}

.single-product-page__description > :last-child {
  margin-bottom: 0;
}

.single-product-page__price-wrap {
  margin-top: 18px;
}

.single-product-page__price {
  margin: 0;
  color: #f0f6ff;
  font-size: clamp(1rem, 1.9vw, 1.24rem);
  font-weight: 700;
  line-height: 1.4;
}

.single-product-page__price .amount {
  color: #ffffff;
}

.single-product-page__price-note {
  margin-left: 6px;
  color: #abc2e9;
  font-size: 0.9em;
  font-weight: 600;
}

.single-product-page__vat {
  margin: 4px 0 0;
  color: #9eb4dc;
  font-size: 0.9rem;
}

.single-product-page__cart {
  margin-top: 14px;
}

.single-product-page__add-cart {
  display: inline-flex;
  min-width: 0;
  width: auto;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 0.86rem;
  box-shadow: 0 8px 18px rgba(180, 214, 255, 0.22);
  cursor: pointer;
}

.single-product-page__related {
  margin-top: 88px;
}

.single-product-page__related-title {
  margin-bottom: 22px;
}

.single-product-page__related-grid {
  margin-top: 0;
}

.single-product-page__related-empty {
  margin: 0;
  color: #c9dbfb;
  text-align: center;
}

.samples-filters {
  margin: 26px auto 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.samples-filter {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #c6d9fb;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 220ms ease;
}

.samples-filter:hover {
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
}

.samples-filter.is-active {
  background: linear-gradient(135deg, #ffffff, #e8f1ff);
  color: #0a1a35;
}

.samples-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(290px, 1fr));
  gap: 16px;
}

.sample-card {
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
  border: 1px solid rgba(173, 201, 245, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 40px rgba(0, 0, 0, 0.48);
}

.sample-card__title {
  margin: 0 0 10px;
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  color: #f4f8ff;
  line-height: 1.35;
}

.sample-card__count {
  margin: 0 0 16px;
  color: #9eb7e2;
  font-weight: 700;
}

.sample-card__count span {
  color: #56c4ff;
  text-shadow: 0 0 14px rgba(86, 196, 255, 0.36);
  font-size: 1.02rem;
}

.sample-card__count .sample-card__price {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
  font-size: 1.02rem;
}

.sample-card__count .sample-card__discount {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.38);
  font-size: calc(1.02rem - 4px);
}

.sample-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sample-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  color: #f7fbff;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 750;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

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

.sample-btn__icon {
  width: 14px;
  height: 14px;
}

.sample-btn--csv {
  background: #2b7cd3;
}

.sample-btn--csv:hover {
  background: #41a5ee;
  box-shadow: 0 12px 24px rgba(65, 165, 238, 0.35);
}

.sample-btn--excel {
  background: #1a9652;
}

.sample-btn--excel:hover {
  background: #33c481;
  box-shadow: 0 12px 24px rgba(51, 196, 129, 0.33);
}

.sample-btn--buy {
  background: linear-gradient(135deg, #ffffff, #e8f0ff);
  color: #0a1a35;
}

.sample-btn--buy:hover {
  box-shadow: 0 10px 22px rgba(180, 214, 255, 0.36);
}

.pricing-page {
  padding: 88px 0 92px;
}

.pricing-page__inner {
  max-width: 1120px;
}

.pricing-page__title {
  margin-bottom: 14px;
}

.pricing-page__eyebrow {
  display: flex;
  width: fit-content;
  margin: 0 auto 18px;
}

.pricing-page__lead {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
}

.pricing-table-wrap {
  margin-top: 30px;
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
  border: 1px solid rgba(173, 201, 245, 0.26);
  border-radius: 16px;
  overflow: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 40px rgba(0, 0, 0, 0.48);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.pricing-table thead th {
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c8dcff;
  background: rgba(10, 22, 44, 0.9);
  border-bottom: 1px solid rgba(173, 201, 245, 0.26);
  padding: 14px 16px;
}

.pricing-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(173, 201, 245, 0.14);
  color: #edf4ff;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-row--linked {
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.pricing-table tbody tr.pricing-row--linked:hover {
  background: rgba(32, 189, 243, 0.12);
}

.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3) {
  white-space: nowrap;
}

.pricing-table__badge {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(32, 189, 243, 0.58);
  background: rgba(32, 189, 243, 0.16);
  color: #dff6ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.pricing-table__price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.96rem;
  color: #ffffff;
  font-weight: 800;
}

.pricing-table__discount {
  font-size: 0.78rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pricing-table__product-link {
  text-decoration: none;
  font-weight: 700;
  transition: color 220ms ease;
}

.pricing-table__product-link:hover {
  color: #dbeaff;
}

.pricing-page__actions {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-page {
  padding: 88px 0 64px;
  background:
    radial-gradient(930px 420px at 14% 10%, rgba(49, 119, 255, 0.2), transparent 64%),
    radial-gradient(860px 370px at 88% 14%, rgba(32, 189, 243, 0.14), transparent 66%),
    linear-gradient(180deg, #081328 0%, #071224 100%);
}

.contact-page__inner {
  max-width: 1180px;
}

.contact-page__eyebrow {
  display: flex;
  width: fit-content;
  margin: 0 auto 18px;
}

.contact-page__title {
  margin-bottom: 12px;
}

.contact-page__lead {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.contact-layout {
  margin-top: 30px;
  display: block;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  border-radius: 18px;
  border: 1px solid rgba(173, 201, 245, 0.24);
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 40px rgba(0, 0, 0, 0.48);
  padding: 22px;
}

.contact-card__title {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.52rem);
  font-family: "Space Grotesk", Manrope, sans-serif;
  color: #f6f9ff;
}

.contact-card__text {
  margin: 10px 0 0;
  color: #bdd2f5;
  line-height: 1.55;
}

.contact-details {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-details li {
  border-radius: 12px;
  border: 1px solid rgba(175, 202, 244, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #e5efff;
  padding: 12px 14px;
  line-height: 1.45;
}

.contact-details__link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.contact-details__link:hover {
  color: #dbeaff;
}

.contact-form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.contact-form__status {
  margin: 14px 0 0;
  text-align: center;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form__status--success {
  color: #4ed47b;
}

.contact-form__status--error {
  color: #ffb3b3;
}

.contact-form__captcha-wrap {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-top: 4px;
}

.contact-form__captcha-error {
  margin: 0;
  color: #ffb3b3;
  font-weight: 700;
  text-align: center;
}

.contact-card--form {
  width: 100%;
  margin: 0 auto;
}

.contact-form__grid {
  display: grid;
  gap: 12px;
}

.contact-form__grid--two {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  color: #eaf2ff;
  font-weight: 700;
  font-size: 0.98rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(177, 201, 240, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #edf4ff;
  font: inherit;
  padding: 12px 14px;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%23d7e7ff' d='m5.8 7.3 4.2 4.2 4.2-4.2 1.4 1.4L10 14.3 4.4 8.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a4b8de;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(114, 178, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(67, 141, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.contact-submit {
  width: 100%;
  border: 1px solid rgba(46, 186, 126, 0.55);
  border-radius: 8px;
  padding: 13px 16px;
  font: inherit;
  font-weight: 800;
  color: #f6fffa;
  cursor: pointer;
  background: linear-gradient(135deg, #1f8f5a, #20935d);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(26, 129, 82, 0.35);
  filter: brightness(1.05);
}

.contact-faq {
  padding: 32px 0 96px;
  background:
    radial-gradient(860px 320px at 84% 84%, rgba(32, 189, 243, 0.14), transparent 68%),
    linear-gradient(180deg, #071224 0%, #061120 100%);
}

.contact-faq__inner {
  max-width: 980px;
}

.contact-faq__title {
  margin-bottom: 12px;
}

.contact-faq__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(173, 201, 245, 0.24);
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.9), rgba(8, 16, 33, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 32px rgba(0, 0, 0, 0.38);
  padding: 14px 16px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #f2f7ff;
  font-size: 1.01rem;
  font-weight: 750;
  line-height: 1.45;
  position: relative;
  padding-right: 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: #d0e2ff;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 220ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 10px 0 0;
  color: #c9dbfa;
  line-height: 1.65;
}

.faq-item ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #d8e6ff;
  line-height: 1.6;
}

.contact-page__actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.build-page {
  padding: 90px 0 96px;
  background:
    radial-gradient(940px 420px at 12% 10%, rgba(49, 119, 255, 0.2), transparent 64%),
    radial-gradient(820px 360px at 88% 14%, rgba(32, 189, 243, 0.14), transparent 66%),
    linear-gradient(180deg, #081328 0%, #061120 100%);
}

.build-page__inner {
  max-width: 980px;
}

.build-page__eyebrow {
  display: flex;
  width: fit-content;
  margin: 0 auto 18px;
}

.build-page__title {
  margin-bottom: 12px;
}

.build-page__lead {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.build-search {
  margin-top: 30px;
  border-radius: 18px;
  border: 1px solid rgba(173, 201, 245, 0.24);
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 40px rgba(0, 0, 0, 0.48);
  padding: 24px;
}

.build-search__title {
  margin: 0;
  padding: 40px 0;
  text-align: center;
  color: #eef4ff;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.06rem, 1.9vw, 1.3rem);
}

.build-search-form {
  display: grid;
  gap: 14px;
}

.build-field {
  display: grid;
  gap: 8px;
}

.build-field__label {
  color: #dbe8ff;
  font-weight: 700;
  font-size: 0.95rem;
}

.build-field input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(177, 201, 240, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #edf4ff;
  font: inherit;
  padding: 12px 14px;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.build-field input::placeholder {
  color: #a4b8de;
}

.build-field input:focus {
  outline: none;
  border-color: rgba(114, 178, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(67, 141, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.build-advanced {
  border: 1px solid rgba(177, 201, 240, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.build-advanced summary {
  list-style: none;
  cursor: pointer;
  color: #68b8ff;
  font-weight: 700;
}

.build-advanced summary::-webkit-details-marker {
  display: none;
}

.build-advanced summary::after {
  content: "▲";
  margin-left: 7px;
  font-size: 0.8rem;
  transition: transform 220ms ease;
  display: inline-block;
}

.build-advanced:not([open]) summary::after {
  transform: rotate(180deg);
}

.build-advanced p {
  margin: 14px 0 0;
  color: #c7daf8;
  line-height: 1.65;
}

.build-checkbox {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #edf4ff;
}

.build-checkbox input {
  accent-color: #2f79ff;
  width: 17px;
  height: 17px;
}

.build-field--compact {
  margin-top: 12px;
}

.build-submit {
  width: 100%;
  border: 1px solid rgba(50, 145, 255, 0.72);
  border-radius: 8px;
  padding: 13px 16px;
  font: inherit;
  font-weight: 800;
  color: #f3f9ff;
  cursor: pointer;
  background: linear-gradient(135deg, #1f6de5, #2378f8);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.build-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(29, 105, 231, 0.35);
  filter: brightness(1.05);
}

.build-page__note {
  margin: 22px auto 0;
  max-width: 900px;
  color: #c6d9f9;
  line-height: 1.65;
  text-align: center;
}

.build-page__note--price {
  margin-top: 8px;
  color: #d9e8ff;
  font-weight: 600;
}

.build-page__actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.policy-page {
  padding: 90px 0 96px;
  background:
    radial-gradient(920px 430px at 12% 10%, rgba(49, 119, 255, 0.2), transparent 64%),
    radial-gradient(820px 360px at 88% 18%, rgba(32, 189, 243, 0.14), transparent 66%),
    linear-gradient(180deg, #081328 0%, #061120 100%);
}

.policy-page__inner {
  max-width: 980px;
}

.policy-page__title {
  margin-bottom: 24px;
}

.policy-card {
  border-radius: 18px;
  border: 1px solid rgba(173, 201, 245, 0.24);
  background: linear-gradient(162deg, rgba(17, 31, 58, 0.94), rgba(8, 16, 33, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 40px rgba(0, 0, 0, 0.48);
  padding: 26px;
}

.policy-card h2 {
  margin: 0 0 12px;
  color: #eef5ff;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(1.12rem, 2.1vw, 1.35rem);
}

.policy-card h2:not(:first-child) {
  margin-top: 22px;
}

.policy-card p,
.policy-card li {
  color: #d2e2ff;
  line-height: 1.7;
}

.policy-card p {
  margin: 0 0 10px;
}

.policy-card ul {
  margin: 0 0 10px;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .header {
    position: static;
  }

  .header__inner {
    grid-template-columns: minmax(0, 40%) 1fr auto;
    justify-items: stretch;
    padding: 14px 0;
    min-height: 78px;
    gap: 10px;
  }

  .header__nav {
    display: none;
  }

  .header__menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header__right {
    width: auto;
    justify-content: flex-end;
    gap: 0;
  }

  .header__right .lang-switch {
    display: none;
  }

  .header__right .cart-btn {
    width: 52px;
    height: 52px;
  }

  .cart-btn.cart-btn--floating-mobile {
    position: fixed !important;
    inset: auto 26px 142px auto !important;
    right: 26px !important;
    bottom: 142px !important;
    left: auto !important;
    top: auto !important;
    z-index: 320 !important;
    margin: 0 !important;
  }

  .logo-slot {
    width: min(220px, 40vw);
    height: 44px;
    justify-self: start;
  }

  .scroll-top {
    bottom: 84px;
  }

  .mobile-menu__panel {
    width: min(400px, 100vw);
  }

  .hero {
    padding-top: 58px;
  }

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

  .product-card__cover {
    min-height: 180px;
  }

  .dataset-layout {
    grid-template-columns: 1fr;
  }

  .dataset-image {
    min-height: 280px;
  }

  .custom-build__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 26px;
  }

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

  .pricing-table {
    min-width: 680px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form__grid--two {
    grid-template-columns: 1fr;
  }

  .build-search {
    padding: 18px;
  }

  .single-product-page__layout {
    grid-template-columns: 1fr;
  }

  .checkout-page {
    padding-top: 74px;
  }

  .checkout-page form.checkout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .checkout-page form.checkout #customer_details,
  .checkout-page form.checkout #order_review_heading,
  .checkout-page form.checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .checkout-page form.checkout .woocommerce-NoticeGroup,
  .checkout-page form.checkout .woocommerce-NoticeGroup-checkout {
    grid-column: 1;
    grid-row: auto;
    margin-top: 12px;
  }

  .checkout-page #order_review_heading {
    border-radius: 18px 18px 0 0;
  }

}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .header__inner {
    grid-template-columns: minmax(0, 40%) 1fr auto;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

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

  .product-card__actions {
    flex-direction: column;
  }

  .product-card__cover {
    min-height: 160px;
  }

  .scroll-top {
    right: 16px;
    bottom: 80px;
    width: 44px;
    height: 44px;
  }

  .logo-slot {
    width: min(170px, 40vw);
    height: 40px;
  }

  .header__menu-toggle {
    width: 42px;
    height: 42px;
  }

  .header__right .cart-btn {
    width: 50px;
    height: 50px;
  }

  .cart-btn.cart-btn--floating-mobile {
    position: fixed !important;
    inset: auto 16px 134px auto !important;
    right: 16px !important;
    bottom: 134px !important;
    left: auto !important;
    top: auto !important;
    z-index: 320 !important;
    margin: 0 !important;
  }

  .mobile-menu__head {
    padding: 16px;
  }

  .mobile-menu__content {
    padding: 14px 16px;
  }

  .mobile-menu__footer {
    padding: 14px 16px 16px;
  }

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

  .single-product-page__add-cart {
    width: auto;
  }

  .checkout-page .checkout_coupon {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-page .checkout_coupon .form-row-first,
  .checkout-page .checkout_coupon .form-row-last {
    width: 100%;
  }

  .checkout-page .woocommerce-billing-fields,
  .checkout-page .woocommerce-additional-fields,
  .checkout-page #order_review_heading,
  .checkout-page #order_review {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sidecart__panel {
    width: 100vw;
  }

  .sidecart__head {
    padding: 16px;
  }

  .sidecart__title {
    font-size: 1.35rem;
  }

  .sidecart__content {
    padding: 12px 14px 16px;
  }

  .sidecart__item-main {
    grid-template-columns: 1fr 100px;
  }

  .sidecart__item-cover {
    width: 94px;
    height: 94px;
  }

  .sidecart__item-name {
    font-size: 1.1rem;
  }

  .sidecart__total-row {
    font-size: 1rem;
  }

  .sidecart__total-row--grand {
    font-size: 1.7rem;
  }

  .sidecart__btn {
    font-size: 1.08rem;
  }

}
