/*
Theme Name: Helixx Performance
Theme URI: https://raintor.com
Author: Jakit Sarkar, Raintor Limited
Author URI: https://raintor.com
Description: Custom WooCommerce-ready theme for the Helixx Performance protected landing page, built for Raintor Limited.
Version: 1.0.12
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: helixx-performance
*/

:root {
  --hx-bg: #02070d;
  --hx-bg-2: #061622;
  --hx-card: rgba(6, 18, 28, 0.72);
  --hx-line: rgba(38, 204, 255, 0.12);
  --hx-line-strong: rgba(38, 204, 255, 0.28);
  --hx-text: #f6f8fb;
  --hx-muted: #c1ccd8;
  --hx-subtle: #7f8e9e;
  --hx-blue: #00aaff;
  --hx-blue-2: #19c9ff;
  --hx-border: rgba(255, 255, 255, 0.14);
  --hx-shadow: rgba(0, 170, 255, 0.28);
  --hx-font-nav: 17px;
  --hx-font-nav-sm: 15px;
  --hx-font-card-title: 18px;
  --hx-font-card-body: 16px;
  --hx-font-card-meta: 15px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--hx-bg);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--hx-bg);
  color: var(--hx-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  border: 1px solid rgba(25, 201, 255, 0.65);
  border-radius: 8px;
  background: #02070d;
  box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.18);
  color: var(--hx-text);
  font-size: 14px;
  font-weight: 900;
  white-space: normal;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
  background:
    radial-gradient(circle at 18% 84%, rgba(0, 170, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 76% 22%, rgba(25, 201, 255, 0.1), transparent 30rem),
    linear-gradient(180deg, #04111d 0%, #02070d 58%, #010306 100%);
}

body.home .site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

body.admin-bar.home .site-shell {
  min-height: calc(100svh - 32px);
}

.site-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(var(--hx-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hx-line) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.68) 72%, transparent);
}

.site-shell::after {
  display: none;
  content: none;
}

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 56px, 1180px);
  margin: 0 auto;
  padding: 32px 0;
  gap: 20px;
}

.header-bar {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(25, 201, 255, 0.24);
  border-radius: 7px;
  background:
    radial-gradient(circle at 32% 20%, rgba(25, 201, 255, 0.45), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  box-shadow: 0 0 28px rgba(0, 170, 255, 0.16);
  color: #ebf9ff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-transform: uppercase;
}

.brand-name {
  color: #f5f9ff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-kicker {
  color: var(--hx-blue-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--hx-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--hx-text);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  transform: translateY(-6px);
}

.menu-toggle-lines::after {
  position: absolute;
  transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle-lines {
  background: transparent;
}

.site-header.is-menu-open .menu-toggle-lines::before {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-lines::after {
  transform: rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: var(--hx-font-nav);
  font-weight: 800;
}

.account-greeting {
  color: var(--hx-blue-2);
  font-size: var(--hx-font-nav-sm);
  font-weight: 800;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding-inline: 2px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--hx-font-nav);
}

.brand:focus-visible,
.menu-toggle:focus-visible,
.nav-link:focus-visible,
.footer-links a:focus-visible,
.woocommerce a:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible,
.woocommerce input.input-text:focus-visible,
.woocommerce textarea:focus-visible,
.woocommerce select:focus-visible {
  outline: 2px solid var(--hx-blue-2);
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--hx-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--hx-text);
  font-size: var(--hx-font-nav);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(25, 201, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.1);
  transform: translateY(-1px);
}

.button-primary {
  border-color: rgba(25, 201, 255, 0.5);
  background: linear-gradient(180deg, #21b8ff, #028ff0);
  box-shadow: 0 14px 36px rgba(0, 170, 255, 0.25);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 106px);
  place-items: center;
  padding: clamp(34px, 5vw, 60px) 28px clamp(54px, 7vw, 86px);
  text-align: center;
}

body.home .hero {
  flex: 1 1 auto;
  min-height: calc(100svh - 220px);
  padding-top: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

body.admin-bar.home .hero {
  min-height: calc(100svh - 252px);
}

.hero-radar {
  position: absolute;
  top: 46%;
  left: 50%;
  width: min(72vw, 880px);
  aspect-ratio: 1.9;
  border: 1px solid rgba(25, 201, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(25, 201, 255, 0.07), transparent 56%),
    radial-gradient(ellipse at center, transparent 35%, rgba(25, 201, 255, 0.07) 35.3%, transparent 35.7%),
    radial-gradient(ellipse at center, transparent 63%, rgba(25, 201, 255, 0.09) 63.3%, transparent 63.7%);
  box-shadow:
    inset 0 0 90px rgba(25, 201, 255, 0.08),
    0 0 110px rgba(0, 170, 255, 0.08);
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--hx-blue-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

.hero-title-member {
  font-size: clamp(38px, 5.4vw, 68px);
}

.hero-copy {
  max-width: 680px;
  margin: 26px auto 0;
  color: rgba(246, 248, 251, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.research-note {
  margin: 22px 0 0;
  color: rgba(193, 204, 216, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.data-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(25, 201, 255, 0.2);
  border-radius: 999px;
  background: rgba(2, 7, 13, 0.72);
  box-shadow: inset 0 0 18px rgba(25, 201, 255, 0.05);
  color: var(--hx-blue-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pill-left {
  top: 43%;
  left: max(8vw, calc(50% - 380px));
}

.pill-right {
  top: 42%;
  right: max(8vw, calc(50% - 390px));
}

.pill-bottom {
  right: max(10vw, calc(50% - 360px));
  bottom: 25%;
}

.woocommerce-page .site-shell {
  overflow-x: hidden;
  overflow-y: visible;
}

.woocommerce-page main,
.site-main {
  position: relative;
  z-index: 2;
  width: min(100% - 56px, 1180px);
  margin: 0 auto;
  padding: 48px 0 96px;
}

.store-main,
.content-main {
  position: relative;
  z-index: 2;
  width: min(100% - 56px, 1180px);
  min-height: calc(100vh - 190px);
  margin: 0 auto;
  padding: 54px 0 100px;
}

.content-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--hx-border);
  border-radius: 18px;
  background: rgba(4, 15, 24, 0.88);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.entry-title,
.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-account .woocommerce h2,
.woocommerce-checkout h3,
.cart_totals h2 {
  margin-top: 0;
  color: var(--hx-text);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.entry-title,
.woocommerce-products-header__title {
  font-size: clamp(32px, 4vw, 52px);
}

.helixx-shop-header {
  margin-bottom: 28px;
  padding: 8px 0 10px;
  text-align: center;
}

.helixx-shop-header .woocommerce-products-header__title {
  margin: 0 auto;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.helixx-shop-eyebrow {
  margin: 0 0 10px;
  color: var(--hx-blue-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.helixx-shop-lead {
  max-width: 42rem;
  margin: 12px auto 0;
  color: var(--hx-muted);
  font-size: var(--hx-font-card-body);
  line-height: 1.6;
}

.helixx-shop-header .woocommerce-products-header__title::after {
  display: block;
  width: 84px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--hx-blue-2), transparent);
  content: "";
}

.helixx-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.helixx-shop-toolbar .woocommerce-result-count,
.helixx-shop-toolbar .woocommerce-ordering {
  float: none;
  margin: 0;
}

.helixx-shop-toolbar .woocommerce-result-count {
  color: var(--hx-muted);
  font-size: var(--hx-font-card-meta);
}

.helixx-shop-toolbar .woocommerce-ordering select {
  min-width: 190px;
}

.woocommerce div.product .product_title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.entry-content {
  color: var(--hx-muted);
  font-size: 17px;
  line-height: 1.75;
}

.entry-content h2 {
  margin-top: 36px;
  color: var(--hx-text);
}

.entry-content a {
  color: var(--hx-blue-2);
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce .product_meta,
.woocommerce .woocommerce-product-details__short-description {
  color: var(--hx-muted);
}

.woocommerce .woocommerce-breadcrumb a,
.woocommerce .product_meta a {
  color: var(--hx-blue-2);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  float: none;
  flex-direction: column;
  width: auto !important;
  min-width: 0;
  margin: 0;
  padding: 14px 14px 18px;
  border: 1px solid var(--hx-border);
  border-radius: 14px;
  background: rgba(5, 18, 28, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.product_type_simple,
.woocommerce ul.products li.product a.product_type_variable {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  margin-top: auto;
  padding: 0 18px !important;
  line-height: 1.2 !important;
  text-align: center !important;
  white-space: nowrap;
}

.woocommerce ul.products li.product a.button.loading {
  opacity: 0.88;
  padding-right: 42px !important;
}

.woocommerce ul.products li.product a.button.loading::after {
  position: absolute;
  top: 50%;
  right: 16px;
  margin: 0;
  transform: translateY(-50%);
}

.woocommerce ul.products li.product a img {
  margin: 0 0 18px;
  border-radius: 10px;
  background: #03101a;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.3em;
  padding: 0;
  color: var(--hx-text);
  font-size: var(--hx-font-card-title);
  line-height: 1.35;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--hx-blue-2);
  font-size: var(--hx-font-card-body);
  font-weight: 900;
}

.sample-price-note {
  display: block !important;
  margin-top: 5px;
  color: var(--hx-subtle);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce .quantity .qty {
  width: 64px;
  min-height: 42px;
  border: 1px solid var(--hx-border);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--hx-text);
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #21b8ff, #028ff0) !important;
  color: #fff !important;
  font-size: var(--hx-font-nav-sm);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 170, 255, 0.2);
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .single_add_to_cart_button:hover {
  background: linear-gradient(180deg, #35c0ff, #049bf9) !important;
  color: #fff !important;
}

.woocommerce div.product {
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--hx-border);
  border-radius: 18px;
  background: rgba(4, 15, 24, 0.88);
}

.woocommerce div.product div.images img {
  border-radius: 14px;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
}

.woocommerce div.product form.variations_form.cart {
  display: block;
}

.helixx-variations {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}

.helixx-variation-row__label {
  margin-bottom: 10px;
  color: var(--hx-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.helixx-variation-field {
  position: relative;
}

.helixx-variation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
}

.helixx-variation-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 12%, rgba(25, 201, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.03);
  color: var(--hx-text);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.helixx-variation-option:hover,
.helixx-variation-option:focus-visible {
  border-color: rgba(25, 201, 255, 0.42);
  box-shadow: 0 0 0 1px rgba(25, 201, 255, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.helixx-variation-option.is-selected {
  border-color: rgba(25, 201, 255, 0.62);
  background:
    radial-gradient(circle at 18% 12%, rgba(25, 201, 255, 0.24), transparent 42%),
    rgba(0, 170, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(25, 201, 255, 0.22), 0 12px 28px rgba(0, 170, 255, 0.12);
}

.helixx-variation-option__strength {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.helixx-variation-option__price {
  color: var(--hx-blue-2);
  font-size: 15px;
  font-weight: 800;
}

.helixx-variation-option__price .woocommerce-Price-amount {
  color: inherit;
}

.helixx-variation-select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.woocommerce div.product form.variations_form .reset_variations {
  display: inline-block;
  margin-top: 10px;
  color: var(--hx-subtle);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce div.product form.variations_form .reset_variations:hover,
.woocommerce div.product form.variations_form .reset_variations:focus-visible {
  color: var(--hx-blue-2);
}

.woocommerce div.product form.variations_form .single_variation_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.woocommerce div.product form.variations_form .single_variation_wrap .woocommerce-variation {
  flex: 1 1 100%;
}

.woocommerce div.product form.variations_form .single_variation_wrap .woocommerce-variation-price {
  display: none;
}

.woocommerce div.product form.variations_form table.variations {
  display: none;
}

.woocommerce-tabs,
.related.products {
  clear: both;
  padding-top: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-color: var(--hx-border);
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--hx-card);
  color: var(--hx-text);
}

.woocommerce table.shop_table,
.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce .woocommerce-MyAccount-navigation,
.woocommerce .woocommerce-MyAccount-content {
  border-color: var(--hx-border);
  border-radius: 12px;
  background: rgba(4, 15, 24, 0.88);
  font-size: var(--hx-font-card-body);
}

.woocommerce table.shop_table th {
  padding: 16px 14px;
  color: var(--hx-subtle);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce table.shop_table td {
  padding: 18px 14px;
  font-size: var(--hx-font-card-body);
}

.woocommerce table.shop_table .product-name a {
  font-size: var(--hx-font-card-title);
  font-weight: 800;
}

.woocommerce table.shop_table .product-name .variation,
.woocommerce table.shop_table .product-name dl {
  margin-top: 6px;
  color: var(--hx-muted);
  font-size: var(--hx-font-card-meta);
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal,
.woocommerce table.shop_table .order-total td,
.woocommerce table.shop_table .order-total th {
  font-size: 17px;
  font-weight: 800;
}

.cart_totals h2,
.wc-block-cart .wc-block-components-title,
.wc-block-cart .wp-block-woocommerce-cart-order-summary-heading-block {
  font-size: clamp(24px, 3vw, 32px) !important;
}

.wc-block-cart,
.wc-block-components-sidebar-layout,
.wc-block-components-totals-item,
.wc-block-components-totals-footer-item,
.wc-block-components-formatted-money-amount {
  font-size: var(--hx-font-card-body);
}

.wc-block-cart-items__header,
.wc-block-components-product-metadata,
.wc-block-components-product-details,
.wc-block-cart-item__quantity .wc-block-components-quantity-selector {
  font-size: var(--hx-font-card-meta);
}

.wc-block-components-product-name,
.wc-block-cart-item__product .wc-block-components-product-name {
  font-size: var(--hx-font-card-title) !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.wc-block-components-product-price,
.wc-block-cart-item__prices .wc-block-components-product-price {
  font-size: 17px !important;
  font-weight: 800 !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
  font-size: 22px !important;
  font-weight: 900 !important;
}

.wc-block-cart__submit-container .wc-block-components-button,
.wc-block-cart__submit-container .wc-block-cart__submit-button,
.wc-block-components-checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  min-height: 52px !important;
  font-size: var(--hx-font-nav) !important;
  font-weight: 900 !important;
}

.wc-block-cart__submit-container .wc-block-components-button,
.wc-block-cart__submit-container .wc-block-cart__submit-button,
.wc-block-components-checkout-button {
  border-color: rgba(25, 201, 255, 0.5) !important;
  background: linear-gradient(180deg, #21b8ff, #028ff0) !important;
  color: #fff !important;
  box-shadow: 0 14px 36px rgba(0, 170, 255, 0.25);
}

.wc-block-cart-items__header {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-block-cart-item__wrap,
.wc-block-components-quantity-selector__input {
  font-size: var(--hx-font-card-body);
}

.wc-block-components-product-metadata__description,
.wc-block-components-product-details__description {
  font-size: var(--hx-font-card-meta) !important;
}

.woocommerce .woocommerce-product-details__short-description,
.woocommerce div.product .product_meta {
  font-size: var(--hx-font-card-body);
  line-height: 1.6;
}

.woocommerce div.product .product_meta {
  font-size: var(--hx-font-card-meta);
}

.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce .woocommerce-MyAccount-content {
  padding: 24px;
}

.woocommerce .woocommerce-MyAccount-navigation {
  padding: 16px;
}

.woocommerce .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--hx-border);
  border-radius: 8px;
  background: #071622;
  color: var(--hx-text);
  font-size: 16px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--hx-blue);
  background: rgba(5, 22, 34, 0.96);
  color: var(--hx-text);
}

.site-footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 5, 9, 0.72);
}

body.home .site-footer {
  flex: 0 0 auto;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 56px, 1180px);
  margin: 0 auto;
  padding: 24px 0;
  color: var(--hx-subtle);
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--hx-blue-2);
}

.footer-links a {
  border-radius: 5px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-anchor {
  display: block;
  scroll-margin-top: 96px;
}

.auth-main {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100% - 32px, 680px);
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  padding: 34px 0 64px;
  place-items: start center;
}

.auth-card {
  width: 100%;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--hx-border);
  border-radius: 18px;
  background: rgba(4, 15, 24, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.auth-title {
  margin: 0;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.auth-copy {
  margin: 14px 0 22px;
  color: var(--hx-muted);
  font-size: 15px;
  line-height: 1.55;
}

.auth-main .u-columns {
  display: block;
}

.auth-main .u-column1,
.auth-main .u-column2 {
  float: none !important;
  width: 100% !important;
}

.auth-login .u-column2,
.auth-register .u-column1,
.auth-main .woocommerce h2,
.auth-main .u-column1 > h2,
.auth-main .u-column2 > h2 {
  display: none;
}

.auth-main .woocommerce form.login,
.auth-main .woocommerce form.register {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.auth-main .form-row {
  display: block;
  margin-bottom: 16px;
}

.auth-main .form-row-first,
.auth-main .form-row-last {
  float: none;
  width: 100%;
}

.auth-main label {
  display: block;
  margin-bottom: 7px;
  color: var(--hx-text);
  font-size: 13px;
  font-weight: 800;
}

.auth-main .input-text {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #071622;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: var(--hx-text);
  font-size: 16px;
  line-height: 1.2;
}

.auth-main .input-text:focus {
  border-color: rgba(25, 201, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.12);
  outline: none;
}

.auth-main .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  margin-right: 14px;
  gap: 7px;
}

.auth-main .woocommerce-form-login__rememberme input {
  width: 16px;
  height: 16px;
  accent-color: var(--hx-blue);
}

.auth-main .woocommerce-form-login__submit,
.auth-main .woocommerce-form-register__submit {
  min-width: 132px;
}

.auth-main .lost_password,
.auth-switch {
  margin: 16px 0 0;
  color: var(--hx-muted);
  font-size: 14px;
}

.auth-main .lost_password a,
.auth-switch a {
  color: var(--hx-blue-2);
  font-weight: 800;
}

.auth-switch {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 32px, 1180px);
    padding: 22px 0 14px;
    gap: 0;
  }

  .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .menu-toggle {
    display: grid;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-kicker {
    font-size: 9px;
  }

  .header-actions {
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid var(--hx-border);
    border-radius: 12px;
    background: rgba(3, 13, 21, 0.97);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.32);
    font-size: var(--hx-font-nav-sm);
  }

  body:not(.logged-in) .header-actions,
  body.logged-in .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-header.nav-ready .header-actions {
    display: none;
  }

  .site-header.nav-ready.is-menu-open .header-actions {
    display: grid;
  }

  .header-actions > a,
  body:not(.logged-in) .header-actions > a {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    white-space: nowrap;
  }

  .account-greeting {
    display: none;
  }

  .header-actions .button {
    flex: none;
    min-height: 44px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding: 44px 18px 58px;
  }

  body.home .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .hero-radar {
    top: 44%;
    width: 126vw;
    aspect-ratio: 1.2;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .hero-title {
    font-size: clamp(30px, 9vw, 48px);
    letter-spacing: -0.03em;
    line-height: 1.02;
  }

  .hero-title-member {
    font-size: clamp(30px, 8.5vw, 44px);
  }

  .hero-copy {
    margin-top: 20px;
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .data-pill {
    display: none;
  }

  .store-main,
  .content-main {
    width: min(100% - 28px, 1180px);
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .woocommerce-page main,
  .site-main {
    width: min(100% - 28px, 1180px);
    padding: 28px 0 64px;
  }

  .helixx-shop-header .woocommerce-products-header__title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .helixx-shop-lead {
    font-size: 15px;
  }

  .helixx-shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .helixx-shop-toolbar .woocommerce-ordering,
  .helixx-shop-toolbar .woocommerce-ordering select {
    width: 100%;
  }

  .entry-title,
  .woocommerce-products-header__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .woocommerce div.product .product_title {
    font-size: clamp(28px, 8.5vw, 40px);
  }

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

  .woocommerce ul.products li.product {
    padding: 10px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: auto;
    font-size: 17px;
  }

  .woocommerce div.product form.cart {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;
  }

  .woocommerce div.product form.variations_form .single_variation_wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce div.product form.cart .button,
  .woocommerce div.product form.variations_form .single_variation_wrap .button {
    flex: 1 1 180px;
    width: 100%;
  }

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

  .footer-inner,
  .footer-links {
    align-items: center;
    flex-direction: column;
  }

  .footer-inner {
    width: min(100% - 32px, 1180px);
    gap: 10px;
    padding: 14px 0;
    font-size: 12px;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 8px 12px;
  }

  .footer-links a {
    padding: 2px 4px;
  }

  .auth-main {
    width: min(100% - 24px, 560px);
    min-height: auto;
    padding: 22px 0 38px;
  }

  .auth-card {
    padding: 22px 18px;
  }

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

  .auth-main .woocommerce-form-login__rememberme {
    width: 100%;
    margin-right: 0;
  }

  .auth-main .woocommerce-form-login__submit,
  .auth-main .woocommerce-form-register__submit {
    width: 100%;
    min-width: 0;
    margin-top: 4px;
  }

  .auth-main .form-row {
    margin-bottom: 14px;
  }
}

@media (max-width: 782px) {
  body.admin-bar.home .site-shell {
    min-height: calc(100svh - 46px);
  }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-kicker {
    font-size: 8px;
    letter-spacing: 0.2em;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .nav-link {
    padding-inline: 4px;
  }

  .nav-link {
    font-size: var(--hx-font-nav-sm);
  }

  .header-actions .button,
  .button {
    min-height: 44px;
    padding: 0 16px;
    font-size: var(--hx-font-nav-sm);
  }

  .header-actions .button {
    flex: none;
  }

  .hero {
    padding: 36px 14px 48px;
  }

  .hero-title {
    font-size: clamp(28px, 11vw, 42px);
  }

  .hero-actions {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .auth-main .form-row-first,
  .auth-main .form-row-last {
    float: none;
    width: 100%;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .content-card {
    padding: 22px;
  }

  .entry-content {
    font-size: 15px;
  }

  .footer-links {
    gap: 10px;
  }
}
