:root {
  --ink: #0b2142;
  --muted: #60728f;
  --paper: #f4f9ff;
  --surface: #ffffff;
  --line: #d7e6f8;
  --teal: #4da2ff;
  --teal-dark: #0f3b78;
  --mint: #dcecff;
  --coral: #f25c54;
  --amber: #f2b632;
  --blue: #2563eb;
  --shadow: 0 20px 60px rgba(11, 33, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(251, 252, 247, 0.9);
  border-bottom: 1px solid rgba(217, 228, 220, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.brand-mark.has-logo {
  overflow: hidden;
  color: transparent;
  background: rgba(255, 255, 255, 0.92);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #334440;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--teal-dark);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.control-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.control-link:hover,
.control-link:focus-visible {
  border-color: var(--teal);
}

.user-chip {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  max-width: 180px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #edf7f5;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.header-cart span {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  height: min(760px, 86svh);
  isolation: isolate;
  background-image: var(--hero-image, url("assets/hero-wristbands.png"));
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 252, 247, 0.96) 0%, rgba(251, 252, 247, 0.78) 42%, rgba(251, 252, 247, 0.18) 78%),
    linear-gradient(0deg, rgba(16, 39, 37, 0.1), rgba(16, 39, 37, 0));
}

.hero-content {
  width: min(650px, calc(100% - 36px));
  margin-left: clamp(18px, 5vw, 72px);
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 104px;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  width: min(580px, 100%);
  margin: 24px 0 0;
  color: #2d3d39;
  font-size: 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.btn-primary {
  color: #fff;
  background: var(--teal-dark);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #005c55;
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--teal);
}

.store-link {
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.store-link:hover,
.store-link:focus-visible {
  background: #005c55;
  border-color: #005c55;
}

.shopee-link {
  color: #fff;
  border-color: rgba(77, 162, 255, 0.34);
  background: linear-gradient(135deg, #0f3b78, #4da2ff);
  box-shadow: 0 12px 26px rgba(15, 59, 120, 0.18);
}

.shopee-link:hover,
.shopee-link:focus-visible {
  border-color: rgba(77, 162, 255, 0.5);
  background: linear-gradient(135deg, #15498f, #62b0ff);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(620px, 100%);
  margin: 40px 0 0;
}

.hero-stats div {
  min-height: 94px;
  padding: 16px;
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 40px rgba(16, 39, 37, 0.08);
}

.hero-stats dt {
  font-size: 24px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  padding: 18px clamp(18px, 5vw, 72px);
  color: #31413d;
  background: var(--ink);
}

.trust-strip span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #e9fbf8;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 78px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.about-copy {
  padding: 34px;
  color: #f5fbf8;
  background: var(--ink);
}

.about-copy h3,
.process-grid h3,
.product-card h3,
.order-panel h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.about-copy p {
  max-width: 760px;
  color: #c7ded8;
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list div {
  padding: 24px;
  border-left: 5px solid var(--teal);
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 39, 37, 0.07);
}

.capability-list strong,
.capability-list span {
  display: block;
}

.capability-list span {
  margin-top: 6px;
  color: var(--muted);
}

.process-section {
  background: #edf5ef;
}

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

.process-grid article {
  min-height: 210px;
  padding: 28px;
  background: #fff;
  border-top: 6px solid var(--amber);
}

.process-grid article:nth-child(2) {
  border-color: var(--coral);
}

.process-grid article:nth-child(3) {
  border-color: var(--blue);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.process-grid p,
.product-card p,
.form-note,
.contact-copy p {
  color: var(--muted);
}

.store-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  background: var(--ink);
}

.store-cta-section .eyebrow {
  color: #a6e7dc;
}

.store-cta-copy {
  max-width: 720px;
}

.store-cta-copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.store-cta-copy p {
  color: #c7ded8;
}

.store-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.store-cta-actions .btn {
  min-width: 132px;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 72px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(251, 252, 247, 0.94), rgba(216, 243, 239, 0.82)),
    url("assets/hero-wristbands.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.store-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 54px;
  line-height: 1.02;
}

.store-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #2d3d39;
  font-size: 18px;
}

.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

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

.product-card {
  display: grid;
  grid-template-rows: 180px auto;
  min-height: 490px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(16, 39, 37, 0.07);
}

.product-visual {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(216, 243, 239, 0.95), rgba(255, 255, 255, 0.6)),
    repeating-linear-gradient(45deg, rgba(16, 39, 37, 0.04) 0 10px, transparent 10px 24px);
  overflow: hidden;
}

.product-visual.has-image {
  padding: 0;
  background: #edf5ef;
}

.product-image {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.mini-band {
  position: relative;
  width: min(100%, 360px);
  height: 72px;
  border: 5px solid #fff;
  border-radius: 8px;
  transform: rotate(-6deg);
  box-shadow: 0 18px 36px rgba(16, 39, 37, 0.16);
}

.mini-band::before,
.mini-band::after {
  position: absolute;
  content: "";
  top: 14px;
  width: 44px;
  height: 34px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
}

.mini-band::before {
  left: 20px;
}

.mini-band::after {
  right: 28px;
  background:
    linear-gradient(90deg, #102725 8px, transparent 8px 14px, #102725 14px 22px, transparent 22px),
    linear-gradient(#102725 8px, transparent 8px 14px, #102725 14px 22px, transparent 22px),
    #fff;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.product-meta span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #41524e;
  font-size: 12px;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.price {
  font-size: 24px;
  font-weight: 800;
}

.unit {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.add-product {
  min-width: 112px;
}

.checkout-section {
  background: #102725;
}

.checkout-section .section-heading h2,
.checkout-section .eyebrow {
  color: #fff;
}

.checkout-section .eyebrow {
  color: #a6e7dc;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
}

.order-panel,
.checkout-form {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.order-panel {
  position: sticky;
  top: 94px;
  padding: 24px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.link-button {
  border: 0;
  color: var(--coral);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 82px;
}

.empty-cart {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 16px;
  color: var(--muted);
  border: 1px dashed var(--line);
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

.cart-line small {
  color: var(--muted);
}

.qty-control {
  display: grid;
  grid-template-columns: 34px 42px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control button {
  width: 34px;
  height: 34px;
  border: 0;
  background: #f3f7f2;
  cursor: pointer;
  font-weight: 800;
}

.qty-control span {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.custom-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: #edf7f5;
}

.custom-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--teal-dark);
}

.custom-option strong,
.custom-option small {
  display: block;
}

.custom-option small {
  color: var(--muted);
}

.totals {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.discount-total-row {
  color: var(--muted);
}

.discount-total-row.has-discount strong {
  color: var(--accent);
}

.grand-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  font-size: 20px;
}

.checkout-form {
  padding: 26px;
}

.checkout-login-panel h3 {
  margin: 0;
  font-size: 26px;
}

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

label {
  display: grid;
  gap: 8px;
  color: #263631;
  font-size: 14px;
  font-weight: 800;
}

.full {
  grid-column: 1 / -1;
}

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

textarea {
  resize: vertical;
}

.shipping-rate-control {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(77, 162, 255, 0.2);
  border-radius: 16px;
  background: rgba(77, 162, 255, 0.08);
}

.shipping-rate-control .btn {
  min-width: 170px;
}

.shipping-rate-control small {
  color: var(--muted);
  font-weight: 700;
}

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

.voucher-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: stretch;
}

.voucher-input-row .btn {
  min-width: 104px;
}

.voucher-field small {
  color: var(--muted);
  font-weight: 700;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 156, 134, 0.12);
}

.checkout-button {
  width: 100%;
  margin-top: 20px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 13px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: #e6f0ea;
}

.contact-copy {
  max-width: 720px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(360px, calc(100vw - 44px));
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid rgba(127, 196, 255, 0.32);
  border-radius: 18px;
  color: #f7fbff;
  background:
    linear-gradient(135deg, rgba(7, 22, 43, 0.98), rgba(16, 49, 86, 0.98));
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translate3d(0, 26px, 0) scale(0.98);
  opacity: 0;
  pointer-events: none;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.toast::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7fc4ff;
  box-shadow: 0 0 0 5px rgba(127, 196, 255, 0.16);
}

.toast.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.order-dialog {
  width: min(560px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.order-dialog::backdrop {
  background: rgba(16, 39, 37, 0.64);
}

.dialog-body {
  position: relative;
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dialog-body h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.auth-body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(251, 252, 247, 0.94), rgba(216, 243, 239, 0.86)),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

.auth-shell {
  display: grid;
  align-content: center;
  min-height: 100vh;
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.auth-brand {
  margin-bottom: 18px;
}

.auth-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.auth-card h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
}

.auth-copy,
.auth-switch,
.auth-hint {
  color: var(--muted);
}

.auth-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.auth-form .btn {
  width: 100%;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 54px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  transform: translateY(-50%);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.password-toggle:hover,
.password-toggle:focus-visible,
.password-toggle.is-active {
  color: var(--teal-dark);
  border-color: rgba(77, 162, 255, 0.28);
  background: rgba(77, 162, 255, 0.12);
}

.password-strength {
  display: grid;
  gap: 9px;
  margin-top: -4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(77, 162, 255, 0.08);
}

.password-strength-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
}

.password-strength-head span,
.password-strength small,
.password-match {
  color: var(--muted);
}

.password-strength-head strong {
  color: var(--ink);
}

.password-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(96, 114, 143, 0.18);
}

.password-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #8da0ba;
  transition: width 0.2s ease, background 0.2s ease;
}

.password-strength.is-weak .password-meter span {
  background: #f25c54;
}

.password-strength.is-fair .password-meter span {
  background: #f2b632;
}

.password-strength.is-good .password-meter span {
  background: #4da2ff;
}

.password-strength.is-strong .password-meter span {
  background: #14b88d;
}

.password-match {
  font-size: 12px;
  font-weight: 800;
}

.password-match.is-valid {
  color: #14b88d;
}

.password-match.is-invalid {
  color: var(--coral);
}

.captcha-field small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.captcha-box {
  display: grid;
  grid-template-columns: minmax(104px, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(77, 162, 255, 0.24);
  border-radius: 12px;
  color: var(--teal-dark);
  background: rgba(77, 162, 255, 0.1);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.auth-alert {
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 4px solid var(--coral);
  background: #fff2f1;
  color: #8d221f;
  font-weight: 800;
}

.oauth-block {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.google-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 39, 37, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.google-button:hover,
.google-button:focus-visible {
  transform: translateY(-1px);
  border-color: #a7bdb7;
  box-shadow: 0 14px 32px rgba(16, 39, 37, 0.1);
}

.google-mark {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(11, 33, 66, 0.1),
    0 8px 18px rgba(11, 33, 66, 0.12);
}

.google-mark svg {
  display: block;
  width: 19px;
  height: 19px;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  height: 1px;
  content: "";
  background: var(--line);
}

.auth-switch a {
  color: var(--teal-dark);
  font-weight: 800;
}

.auth-hint {
  margin-bottom: 0;
  font-size: 12px;
}

/* Modern visual refresh */
:root {
  --paper: #f4f9ff;
  --surface-soft: #edf6ff;
  --line: #d7e6f8;
  --teal: #4da2ff;
  --teal-dark: #0f3b78;
  --mint: #dcecff;
  --shadow: 0 18px 48px rgba(11, 33, 66, 0.12);
  --shadow-soft: 0 10px 30px rgba(11, 33, 66, 0.08);
}

body {
  background:
    linear-gradient(180deg, #f8fbf8 0%, #ffffff 42%, #f3f7fb 100%);
}

.site-header {
  top: 12px;
  min-height: 68px;
  width: calc(100% - clamp(24px, 4vw, 48px));
  margin: 12px auto 0;
  border: 1px solid rgba(217, 228, 220, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(16, 39, 37, 0.1);
}

.brand-mark {
  background:
    linear-gradient(135deg, var(--ink), #173f3a 62%, var(--teal-dark));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.main-nav {
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(217, 228, 220, 0.72);
  border-radius: 8px;
  background: rgba(247, 250, 248, 0.72);
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  background: #e8f6f2;
}

.control-link,
.header-cart,
.user-chip,
.btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.control-link:hover,
.header-cart:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(16, 39, 37, 0.09);
}

.btn-primary,
.store-link {
  background:
    linear-gradient(135deg, #00786d, #00a991);
  box-shadow: 0 12px 26px rgba(0, 120, 109, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.store-link:hover,
.store-link:focus-visible {
  background:
    linear-gradient(135deg, #00665d, #008f7c);
}

.hero {
  margin-top: -80px;
  padding-top: 90px;
  min-height: 700px;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.84) 38%, rgba(247, 250, 248, 0.16) 78%),
    linear-gradient(135deg, rgba(0, 169, 145, 0.18), transparent 46%),
    linear-gradient(0deg, rgba(16, 39, 37, 0.16), transparent 36%);
}

.hero-content {
  padding-top: 106px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 120, 109, 0.16);
  border-radius: 999px;
  background: rgba(223, 247, 241, 0.82);
}

.hero h1 {
  margin-top: 10px;
  font-size: clamp(64px, 8vw, 112px);
}

.hero-copy,
.store-hero p:not(.eyebrow) {
  color: #31433f;
}

.hero-stats div,
.capability-list div,
.process-grid article,
.product-card,
.order-panel,
.checkout-form,
.auth-card,
.dialog-body {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-stats div {
  border: 1px solid rgba(217, 228, 220, 0.88);
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.trust-strip {
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip span {
  color: #253935;
  background: #f0f7f4;
}

.trust-strip span:nth-child(2) {
  background: #fff6df;
}

.trust-strip span:nth-child(3) {
  background: #fff1ef;
}

.trust-strip span:nth-child(4) {
  background: #eef1ff;
}

.section {
  position: relative;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2,
.contact-copy h2,
.store-cta-copy h2 {
  max-width: 840px;
}

.about-section,
.product-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.about-copy {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, #102725 0%, #173f3a 58%, #243f64 100%);
}

.capability-list div {
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
}

.process-section {
  background:
    linear-gradient(180deg, #edf7f4 0%, #f8fbf8 100%);
}

.process-grid article {
  border: 1px solid var(--line);
  border-top: 6px solid var(--amber);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.process-grid article:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.store-cta-section,
.checkout-section {
  background:
    linear-gradient(135deg, #102725 0%, #173f3a 54%, #243f64 100%);
}

.store-cta-section .eyebrow,
.checkout-section .eyebrow {
  color: #dff7f1;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.store-cta-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.store-hero {
  margin-top: -80px;
  padding-top: 148px;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.96), rgba(223, 247, 241, 0.82) 48%, rgba(255, 255, 255, 0.28)),
    linear-gradient(135deg, rgba(242, 182, 50, 0.16), transparent 46%),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

.store-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-visual {
  background:
    linear-gradient(135deg, rgba(223, 247, 241, 0.96), rgba(255, 246, 223, 0.62)),
    repeating-linear-gradient(45deg, rgba(16, 39, 37, 0.04) 0 10px, transparent 10px 24px);
}

.product-card:hover .mini-band {
  transform: scale(1.03) rotate(-3deg);
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-image,
.mini-band {
  transition: transform 0.22s ease;
}

.product-meta span {
  background: #f7faf8;
}

.price {
  color: #00786d;
}

.checkout-shell {
  gap: 26px;
}

.order-panel,
.checkout-form {
  border-color: rgba(255, 255, 255, 0.18);
}

.custom-option,
.empty-cart {
  border-radius: 8px;
}

input,
select,
textarea {
  background: #fbfdfc;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
}

.contact-section {
  background:
    linear-gradient(135deg, #e8f6f2 0%, #ffffff 62%, #eef1ff 100%);
}

.auth-card {
  backdrop-filter: blur(16px);
}

.theme-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(68px, 1fr));
  gap: 4px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.theme-choice,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.theme-choice:hover,
.theme-choice:focus-visible,
.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(223, 247, 241, 0.8);
}

.theme-choice.is-active {
  color: #fff;
  background:
    linear-gradient(135deg, #00786d, #00a991);
  box-shadow: 0 8px 18px rgba(0, 120, 109, 0.22);
}

.auth-theme-row {
  display: flex;
  justify-content: flex-end;
  margin: -62px 0 18px;
}

html[data-theme="dark"] {
  --ink: #eef6ff;
  --muted: #a9bbd4;
  --paper: #07162b;
  --surface: #0b1d37;
  --surface-soft: #102744;
  --line: #244364;
  --teal: #7fc4ff;
  --teal-dark: #4da2ff;
  --mint: #143150;
  --shadow: 0 22px 52px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #07162b 0%, #0b1d37 48%, #102744 100%);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .order-panel,
html[data-theme="dark"] .checkout-form,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .process-grid article,
html[data-theme="dark"] .capability-list div,
html[data-theme="dark"] .hero-stats div,
html[data-theme="dark"] .dialog-body {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(20, 37, 34, 0.92);
  box-shadow: var(--shadow-soft);
}

html[data-theme="dark"] .site-header {
  background: rgba(18, 33, 31, 0.88);
}

html[data-theme="dark"] .brand-mark {
  color: #06110f;
  background:
    linear-gradient(135deg, #e4f6f2, #8fded3);
}

html[data-theme="dark"] .brand small,
html[data-theme="dark"] .hero-copy,
html[data-theme="dark"] .store-hero p:not(.eyebrow),
html[data-theme="dark"] .process-grid p,
html[data-theme="dark"] .product-card p,
html[data-theme="dark"] .form-note,
html[data-theme="dark"] .contact-copy p,
html[data-theme="dark"] .capability-list span,
html[data-theme="dark"] .auth-copy,
html[data-theme="dark"] .auth-switch,
html[data-theme="dark"] .auth-hint,
html[data-theme="dark"] .unit,
html[data-theme="dark"] .cart-line small,
html[data-theme="dark"] .custom-option small {
  color: var(--muted);
}

html[data-theme="dark"] .main-nav,
html[data-theme="dark"] .control-link,
html[data-theme="dark"] .header-cart,
html[data-theme="dark"] .theme-switcher,
html[data-theme="dark"] .theme-choice,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .user-chip,
html[data-theme="dark"] .product-meta span,
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
html[data-theme="dark"] .empty-cart,
html[data-theme="dark"] .custom-option,
html[data-theme="dark"] .qty-control button,
html[data-theme="dark"] .dialog-close {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(19, 39, 37, 0.92);
}

html[data-theme="dark"] .google-button {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(19, 39, 37, 0.92);
}

html[data-theme="dark"] .auth-divider::before,
html[data-theme="dark"] .auth-divider::after {
  background: var(--line);
}

html[data-theme="dark"] .theme-choice {
  border-color: transparent;
  background: transparent;
}

html[data-theme="dark"] .theme-choice:hover,
html[data-theme="dark"] .theme-choice:focus-visible {
  background: rgba(143, 222, 211, 0.12);
}

html[data-theme="dark"] .theme-choice.is-active {
  color: #06110f;
  background:
    linear-gradient(135deg, #e4f6f2, #8fded3);
  box-shadow: 0 8px 20px rgba(143, 222, 211, 0.14);
}

html[data-theme="dark"] input:focus,
html[data-theme="dark"] select:focus,
html[data-theme="dark"] textarea:focus {
  background: #142522;
}

html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav a:focus-visible,
html[data-theme="dark"] .trust-strip span,
html[data-theme="dark"] .product-visual,
html[data-theme="dark"] .product-thumb,
html[data-theme="dark"] .product-image-preview {
  background: #172d2a;
}

html[data-theme="dark"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 29, 27, 0.88) 0%, rgba(22, 40, 37, 0.68) 42%, rgba(22, 40, 37, 0.1) 82%),
    linear-gradient(135deg, rgba(143, 222, 211, 0.12), transparent 46%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 42%);
}

html[data-theme="dark"] .about-section,
html[data-theme="dark"] .product-section,
html[data-theme="dark"] .process-section,
html[data-theme="dark"] .trust-strip,
html[data-theme="dark"] .contact-section {
  background:
    linear-gradient(180deg, #12211f 0%, #0f1d1b 100%);
}

html[data-theme="dark"] .store-hero,
html[data-theme="dark"] .auth-body {
  background:
    linear-gradient(90deg, rgba(16, 29, 27, 0.9), rgba(23, 45, 42, 0.72) 48%, rgba(16, 29, 27, 0.22)),
    linear-gradient(135deg, rgba(143, 222, 211, 0.1), transparent 46%),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

html[data-theme="dark"] .price,
html[data-theme="dark"] .auth-switch a {
  color: var(--teal);
}

html[data-theme="dark"] .auth-alert {
  color: #ffd8d5;
  background: rgba(242, 92, 84, 0.14);
}

/* Bynurro-inspired editorial skin */
:root {
  --violet: #2563eb;
  --violet-soft: #eaf3ff;
  --soft-night: #07162b;
  --soft-forest: #0b1d37;
  --soft-slate: #173b67;
}

.site-header {
  color: #12211f;
  border-color: rgba(16, 39, 37, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 245, 0.9));
  box-shadow:
    0 16px 38px rgba(16, 39, 37, 0.1),
    0 0 32px rgba(0, 156, 134, 0.06);
}

.site-header .brand strong,
.site-header .main-nav,
.site-header .control-link,
.site-header .header-cart,
.site-header .theme-choice {
  color: #12211f;
}

.site-header .brand small {
  color: #667872;
}

.site-header .main-nav,
.site-header .theme-switcher,
.site-header .control-link,
.site-header .header-cart {
  border-color: rgba(16, 39, 37, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.site-header .main-nav a:hover,
.site-header .main-nav a:focus-visible {
  color: #00786d;
  background: rgba(0, 156, 134, 0.08);
}

.site-header .theme-choice:hover,
.site-header .theme-choice:focus-visible {
  background: rgba(0, 156, 134, 0.08);
}

.site-header .theme-choice.is-active {
  color: #fff;
  background: linear-gradient(135deg, #0b8f82, #4f8eb6);
  box-shadow: 0 10px 24px rgba(0, 120, 109, 0.14);
}

.whatsapp-link {
  color: #fff;
  border-color: rgba(108, 104, 216, 0.34);
  background:
    linear-gradient(135deg, #5f6fd1, #4f8eb6);
  box-shadow: 0 14px 30px rgba(86, 99, 176, 0.2);
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  border-color: rgba(108, 104, 216, 0.5);
  background:
    linear-gradient(135deg, #6977d8, #5799bd);
}

.store-link,
.btn-primary {
  background:
    linear-gradient(135deg, #0b9f8f 0%, #257f96 56%, var(--violet) 100%);
  box-shadow:
    0 14px 30px rgba(0, 125, 112, 0.18),
    0 10px 28px rgba(108, 104, 216, 0.12);
}

.store-link:hover,
.store-link:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background:
    linear-gradient(135deg, #15ad9c 0%, #2a8da5 50%, #7772df 100%);
}

.company-hero,
.store-hero {
  border-bottom: 1px solid rgba(16, 39, 37, 0.08);
}

.company-hero {
  background-position: 64% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 252, 247, 0.96) 0%, rgba(238, 248, 245, 0.78) 44%, rgba(238, 248, 245, 0.18) 82%),
    radial-gradient(circle at 16% 22%, rgba(108, 104, 216, 0.12), transparent 30%),
    radial-gradient(circle at 32% 80%, rgba(0, 150, 132, 0.1), transparent 34%);
}

.hero-content,
.hero-copy,
.hero h1 {
  color: #102725;
}

.hero-copy {
  color: rgba(16, 39, 37, 0.78);
}

.hero .eyebrow,
.store-hero .eyebrow {
  color: #00786d;
  border-color: rgba(0, 156, 134, 0.18);
  background: rgba(216, 243, 239, 0.82);
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(66px, 8.6vw, 128px);
  letter-spacing: 0;
}

.hero-stats div {
  color: #102725;
  border-color: rgba(16, 39, 37, 0.12);
  border-left-color: var(--violet);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
}

.hero-stats dd {
  color: rgba(16, 39, 37, 0.66);
}

.trust-strip {
  color: #102725;
  border-color: rgba(16, 39, 37, 0.08);
  background: #f1f8f5;
}

.trust-strip::before {
  flex: 0 0 auto;
  content: "Top Event Needs";
  margin-right: 8px;
  color: #102725;
  font-size: 13px;
  font-weight: 800;
}

.trust-strip span {
  color: #4f625d;
  background: rgba(255, 255, 255, 0.72);
}

.about-section,
.product-section {
  background: #f8faf9;
}

.section-heading .eyebrow,
.contact-section .eyebrow {
  color: #5f62c8;
  border-color: rgba(108, 104, 216, 0.18);
  background: var(--violet-soft);
}

.about-copy {
  background:
    linear-gradient(135deg, #ffffff 0%, #eef8f5 54%, #f3f2ff 100%);
  color: #102725;
  border-color: rgba(16, 39, 37, 0.1);
}

.about-copy p {
  color: #5d6d69;
}

.capability-list div {
  border-left-color: var(--violet);
}

.process-section {
  color: #102725;
  background:
    linear-gradient(180deg, #f1f8f5 0%, #fbfcf7 100%);
}

.process-section .section-heading h2 {
  color: #102725;
}

.process-section .eyebrow {
  color: #5f62c8;
  border-color: rgba(108, 104, 216, 0.18);
  background: var(--violet-soft);
}

.process-grid article {
  min-height: 260px;
  color: #102725;
  border: 1px solid rgba(16, 39, 37, 0.1);
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 249, 0.92));
}

.process-grid span {
  display: block;
  margin-bottom: 52px;
  color: #6c68d8;
  font-size: 52px;
  line-height: 1;
}

.process-grid p {
  color: #5d6d69;
}

.store-hero {
  color: #102725;
  background:
    linear-gradient(90deg, rgba(251, 252, 247, 0.96), rgba(238, 248, 245, 0.82) 48%, rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at 18% 24%, rgba(108, 104, 216, 0.12), transparent 30%),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

.store-hero h1 {
  color: #102725;
}

.store-hero p:not(.eyebrow) {
  color: rgba(16, 39, 37, 0.72);
}

.product-card {
  border-color: rgba(16, 39, 37, 0.1);
  box-shadow: 0 14px 36px rgba(16, 39, 37, 0.075);
}

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

.product-visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(108, 104, 216, 0.12), transparent 38%),
    linear-gradient(135deg, #f5f8fb, #ffffff);
}

.mini-band {
  box-shadow:
    0 22px 42px rgba(10, 16, 24, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.28);
}

.store-cta-section,
.checkout-section {
  color: #102725;
  border-color: rgba(16, 39, 37, 0.08);
  background:
    linear-gradient(135deg, #ffffff 0%, #eef8f5 52%, #f3f2ff 100%);
}

.store-cta-section .eyebrow,
.checkout-section .eyebrow {
  color: #00786d;
  border-color: rgba(0, 156, 134, 0.18);
  background: rgba(216, 243, 239, 0.82);
}

.checkout-section .section-heading h2 {
  color: #102725;
}

.store-cta-copy p {
  color: #5d6d69;
}

.contact-section {
  background:
    linear-gradient(135deg, #ffffff 0%, #f5f2ff 48%, #e9f9f6 100%);
}

html[data-theme="dark"] .site-header {
  color: #edf7f5;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(16, 29, 27, 0.98), rgba(28, 43, 47, 0.94));
}

html[data-theme="dark"] .site-header .brand strong,
html[data-theme="dark"] .site-header .main-nav,
html[data-theme="dark"] .site-header .control-link,
html[data-theme="dark"] .site-header .header-cart,
html[data-theme="dark"] .site-header .theme-choice {
  color: #f8fafc;
}

html[data-theme="dark"] .site-header .brand small {
  color: rgba(248, 250, 252, 0.68);
}

html[data-theme="dark"] .site-header .main-nav,
html[data-theme="dark"] .site-header .theme-switcher,
html[data-theme="dark"] .site-header .control-link,
html[data-theme="dark"] .site-header .header-cart {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .site-header .main-nav a:hover,
html[data-theme="dark"] .site-header .main-nav a:focus-visible,
html[data-theme="dark"] .site-header .theme-choice:hover,
html[data-theme="dark"] .site-header .theme-choice:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .site-header .theme-choice.is-active {
  color: #10211f;
  background: linear-gradient(135deg, #e4f6f2, #8fded3);
  box-shadow: 0 8px 20px rgba(143, 222, 211, 0.14);
}

html[data-theme="dark"] .company-hero,
html[data-theme="dark"] .store-hero {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 29, 27, 0.88) 0%, rgba(22, 40, 37, 0.68) 42%, rgba(22, 40, 37, 0.1) 82%),
    linear-gradient(135deg, rgba(143, 222, 211, 0.12), transparent 46%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 42%);
}

html[data-theme="dark"] .hero-content,
html[data-theme="dark"] .hero-copy,
html[data-theme="dark"] .hero h1,
html[data-theme="dark"] .store-hero,
html[data-theme="dark"] .store-hero h1 {
  color: #f8fafc;
}

html[data-theme="dark"] .hero-copy,
html[data-theme="dark"] .store-hero p:not(.eyebrow) {
  color: rgba(248, 250, 252, 0.78);
}

html[data-theme="dark"] .hero .eyebrow,
html[data-theme="dark"] .store-hero .eyebrow,
html[data-theme="dark"] .store-cta-section .eyebrow,
html[data-theme="dark"] .checkout-section .eyebrow {
  color: #d7f4ef;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .hero-stats div {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.14);
  border-left-color: var(--violet);
  background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .hero-stats dd {
  color: rgba(248, 250, 252, 0.72);
}

html[data-theme="dark"] .trust-strip {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: #111d1b;
}

html[data-theme="dark"] .trust-strip::before {
  color: #fff;
}

html[data-theme="dark"] .trust-strip span {
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .about-section,
html[data-theme="dark"] .product-section,
html[data-theme="dark"] .contact-section {
  background:
    linear-gradient(180deg, #0f1d1b 0%, #12211f 100%);
}

html[data-theme="dark"] .about-copy,
html[data-theme="dark"] .process-section,
html[data-theme="dark"] .store-cta-section,
html[data-theme="dark"] .checkout-section {
  color: #f8fafc;
  background:
    linear-gradient(135deg, var(--soft-night) 0%, var(--soft-forest) 54%, var(--soft-slate) 100%);
}

html[data-theme="dark"] .about-copy p,
html[data-theme="dark"] .process-grid p,
html[data-theme="dark"] .store-cta-copy p {
  color: rgba(248, 250, 252, 0.7);
}

html[data-theme="dark"] .process-section .section-heading h2,
html[data-theme="dark"] .checkout-section .section-heading h2 {
  color: #fff;
}

html[data-theme="dark"] .process-grid article {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
}

html[data-theme="dark"] .process-grid span {
  color: #bbb4ff;
}

html[data-theme="dark"] .store-hero {
  background:
    linear-gradient(90deg, rgba(18, 33, 31, 0.9), rgba(25, 48, 45, 0.7) 48%, rgba(25, 48, 45, 0.12)),
    radial-gradient(circle at 18% 24%, rgba(108, 104, 216, 0.2), transparent 30%),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

html[data-theme="dark"] .product-card,
html[data-theme="dark"] .capability-list div {
  background: rgba(255, 255, 255, 0.075);
}

/* Blue palette system */
body {
  background:
    linear-gradient(180deg, #f4f9ff 0%, #ffffff 42%, #edf6ff 100%);
}

.brand-mark {
  color: #fff;
  background:
    linear-gradient(135deg, #0b2142 0%, #0f3b78 62%, #4da2ff 100%);
}

.site-header {
  color: #0b2142;
  border-color: rgba(15, 59, 120, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(234, 244, 255, 0.92));
  box-shadow:
    0 16px 38px rgba(11, 33, 66, 0.11),
    0 0 32px rgba(77, 162, 255, 0.08);
}

.site-header .brand strong,
.site-header .main-nav,
.site-header .control-link,
.site-header .header-cart,
.site-header .theme-choice {
  color: #0b2142;
}

.site-header .brand small {
  color: #60728f;
}

.site-header .main-nav,
.site-header .theme-switcher,
.site-header .control-link,
.site-header .header-cart {
  border-color: rgba(15, 59, 120, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.site-header .main-nav a:hover,
.site-header .main-nav a:focus-visible,
.site-header .theme-choice:hover,
.site-header .theme-choice:focus-visible {
  color: #0f3b78;
  background: rgba(77, 162, 255, 0.12);
}

.site-header .theme-choice.is-active {
  color: #fff;
  background: linear-gradient(135deg, #0f3b78, #4da2ff);
  box-shadow: 0 10px 24px rgba(15, 59, 120, 0.16);
}

.whatsapp-link {
  border-color: rgba(37, 99, 235, 0.32);
  background:
    linear-gradient(135deg, #164a8b, #4da2ff);
  box-shadow: 0 14px 30px rgba(22, 74, 139, 0.2);
}

.store-link,
.btn-primary {
  background:
    linear-gradient(135deg, #0b2f63 0%, #1e6acb 54%, #6bbdff 100%);
  box-shadow:
    0 14px 30px rgba(15, 59, 120, 0.18),
    0 10px 28px rgba(77, 162, 255, 0.12);
}

.store-link:hover,
.store-link:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background:
    linear-gradient(135deg, #123f78 0%, #2b7de0 54%, #85caff 100%);
}

.company-hero,
.store-hero {
  border-bottom-color: rgba(15, 59, 120, 0.1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(244, 249, 255, 0.96) 0%, rgba(224, 240, 255, 0.78) 44%, rgba(224, 240, 255, 0.18) 82%),
    radial-gradient(circle at 16% 22%, rgba(77, 162, 255, 0.16), transparent 30%),
    radial-gradient(circle at 32% 80%, rgba(37, 99, 235, 0.1), transparent 34%);
}

.hero-content,
.hero-copy,
.hero h1,
.store-hero,
.store-hero h1 {
  color: #0b2142;
}

.hero-copy,
.store-hero p:not(.eyebrow) {
  color: rgba(11, 33, 66, 0.76);
}

.hero .eyebrow,
.store-hero .eyebrow,
.store-cta-section .eyebrow,
.checkout-section .eyebrow {
  color: #0f3b78;
  border-color: rgba(77, 162, 255, 0.24);
  background: rgba(220, 236, 255, 0.86);
}

.hero-stats div {
  color: #0b2142;
  border-color: rgba(15, 59, 120, 0.14);
  border-left-color: #2563eb;
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats dd {
  color: rgba(11, 33, 66, 0.64);
}

.trust-strip {
  color: #0b2142;
  border-color: rgba(15, 59, 120, 0.1);
  background: #eaf4ff;
}

.trust-strip::before {
  color: #0b2142;
}

.trust-strip span {
  color: #4e6382;
  background: rgba(255, 255, 255, 0.76);
}

.about-section,
.product-section {
  background: #f6faff;
}

.section-heading .eyebrow,
.contact-section .eyebrow,
.process-section .eyebrow {
  color: #174ea6;
  border-color: rgba(77, 162, 255, 0.24);
  background: #eaf3ff;
}

.about-copy {
  color: #0b2142;
  border-color: rgba(15, 59, 120, 0.12);
  background:
    linear-gradient(135deg, #ffffff 0%, #eaf4ff 54%, #dbeafe 100%);
}

.about-copy p,
.process-grid p,
.store-cta-copy p {
  color: #60728f;
}

.capability-list div {
  border-left-color: #2563eb;
}

.process-section {
  color: #0b2142;
  background:
    linear-gradient(180deg, #edf6ff 0%, #fbfdff 100%);
}

.process-section .section-heading h2,
.checkout-section .section-heading h2 {
  color: #0b2142;
}

.process-grid article {
  color: #0b2142;
  border-color: rgba(15, 59, 120, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94));
}

.process-grid span {
  color: #2563eb;
}

.store-hero {
  background:
    linear-gradient(90deg, rgba(244, 249, 255, 0.96), rgba(224, 240, 255, 0.84) 48%, rgba(255, 255, 255, 0.26)),
    radial-gradient(circle at 18% 24%, rgba(77, 162, 255, 0.16), transparent 30%),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

.product-card {
  border-color: rgba(15, 59, 120, 0.1);
  box-shadow: 0 14px 36px rgba(11, 33, 66, 0.075);
}

.product-visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(77, 162, 255, 0.16), transparent 38%),
    linear-gradient(135deg, #f4f9ff, #ffffff);
}

.store-cta-section,
.checkout-section {
  color: #0b2142;
  border-color: rgba(15, 59, 120, 0.1);
  background:
    linear-gradient(135deg, #ffffff 0%, #eaf4ff 52%, #dbeafe 100%);
}

.contact-section {
  background:
    linear-gradient(135deg, #ffffff 0%, #edf6ff 48%, #e8f1ff 100%);
}

.auth-body {
  background:
    linear-gradient(90deg, rgba(244, 249, 255, 0.96), rgba(220, 236, 255, 0.86)),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

.auth-card,
.google-button {
  border-color: #d7e6f8;
  box-shadow: var(--shadow-soft);
}

.google-button:hover,
.google-button:focus-visible {
  border-color: #4da2ff;
  box-shadow: 0 14px 32px rgba(11, 33, 66, 0.1);
}

html[data-theme="dark"] body {
  background:
    linear-gradient(180deg, #07162b 0%, #0b1d37 48%, #102744 100%);
}

html[data-theme="dark"] .site-header {
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(7, 22, 43, 0.98), rgba(16, 39, 68, 0.94));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(77, 162, 255, 0.08);
}

html[data-theme="dark"] .site-header .brand strong,
html[data-theme="dark"] .site-header .main-nav,
html[data-theme="dark"] .site-header .control-link,
html[data-theme="dark"] .site-header .header-cart,
html[data-theme="dark"] .site-header .theme-choice {
  color: #eef6ff;
}

html[data-theme="dark"] .site-header .brand small {
  color: rgba(238, 246, 255, 0.68);
}

html[data-theme="dark"] .site-header .main-nav,
html[data-theme="dark"] .site-header .theme-switcher,
html[data-theme="dark"] .site-header .control-link,
html[data-theme="dark"] .site-header .header-cart {
  border-color: rgba(127, 196, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .site-header .main-nav a:hover,
html[data-theme="dark"] .site-header .main-nav a:focus-visible,
html[data-theme="dark"] .site-header .theme-choice:hover,
html[data-theme="dark"] .site-header .theme-choice:focus-visible {
  color: #fff;
  background: rgba(127, 196, 255, 0.12);
}

html[data-theme="dark"] .site-header .theme-choice.is-active,
html[data-theme="dark"] .theme-choice.is-active {
  color: #07162b;
  background:
    linear-gradient(135deg, #d9ecff, #7fc4ff);
  box-shadow: 0 8px 20px rgba(127, 196, 255, 0.16);
}

html[data-theme="dark"] .brand-mark {
  color: #07162b;
  background:
    linear-gradient(135deg, #d9ecff, #7fc4ff);
}

html[data-theme="dark"] .company-hero,
html[data-theme="dark"] .store-hero {
  border-bottom-color: rgba(127, 196, 255, 0.14);
}

html[data-theme="dark"] .main-nav,
html[data-theme="dark"] .control-link,
html[data-theme="dark"] .header-cart,
html[data-theme="dark"] .theme-switcher,
html[data-theme="dark"] .theme-choice,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .user-chip,
html[data-theme="dark"] .product-meta span,
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
html[data-theme="dark"] .empty-cart,
html[data-theme="dark"] .custom-option,
html[data-theme="dark"] .qty-control button,
html[data-theme="dark"] .dialog-close,
html[data-theme="dark"] .google-button {
  color: #eef6ff;
  border-color: #244364;
  background: rgba(16, 39, 68, 0.92);
}

html[data-theme="dark"] input:focus,
html[data-theme="dark"] select:focus,
html[data-theme="dark"] textarea:focus,
html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav a:focus-visible,
html[data-theme="dark"] .trust-strip span,
html[data-theme="dark"] .product-visual,
html[data-theme="dark"] .product-thumb,
html[data-theme="dark"] .product-image-preview {
  background: #102744;
}

html[data-theme="dark"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 43, 0.9) 0%, rgba(11, 29, 55, 0.72) 42%, rgba(16, 39, 68, 0.12) 82%),
    radial-gradient(circle at 16% 22%, rgba(77, 162, 255, 0.16), transparent 30%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 42%);
}

html[data-theme="dark"] .hero-content,
html[data-theme="dark"] .hero-copy,
html[data-theme="dark"] .hero h1,
html[data-theme="dark"] .store-hero,
html[data-theme="dark"] .store-hero h1 {
  color: #eef6ff;
}

html[data-theme="dark"] .hero-copy,
html[data-theme="dark"] .store-hero p:not(.eyebrow),
html[data-theme="dark"] .about-copy p,
html[data-theme="dark"] .process-grid p,
html[data-theme="dark"] .store-cta-copy p {
  color: rgba(238, 246, 255, 0.72);
}

html[data-theme="dark"] .hero .eyebrow,
html[data-theme="dark"] .store-hero .eyebrow,
html[data-theme="dark"] .store-cta-section .eyebrow,
html[data-theme="dark"] .checkout-section .eyebrow,
html[data-theme="dark"] .process-section .eyebrow {
  color: #cfe7ff;
  border-color: rgba(127, 196, 255, 0.2);
  background: rgba(127, 196, 255, 0.1);
}

html[data-theme="dark"] .hero-stats div {
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.16);
  border-left-color: #7fc4ff;
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .hero-stats dd {
  color: rgba(238, 246, 255, 0.68);
}

html[data-theme="dark"] .about-section,
html[data-theme="dark"] .product-section,
html[data-theme="dark"] .contact-section,
html[data-theme="dark"] .trust-strip {
  background:
    linear-gradient(180deg, #0b1d37 0%, #07162b 100%);
}

html[data-theme="dark"] .trust-strip {
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.14);
}

html[data-theme="dark"] .trust-strip::before {
  color: #eef6ff;
}

html[data-theme="dark"] .trust-strip span {
  color: rgba(238, 246, 255, 0.74);
  background: rgba(127, 196, 255, 0.1);
}

html[data-theme="dark"] .about-copy,
html[data-theme="dark"] .process-section,
html[data-theme="dark"] .store-cta-section,
html[data-theme="dark"] .checkout-section {
  color: #eef6ff;
  background:
    linear-gradient(135deg, #07162b 0%, #0b1d37 54%, #173b67 100%);
}

html[data-theme="dark"] .process-section .section-heading h2,
html[data-theme="dark"] .checkout-section .section-heading h2 {
  color: #eef6ff;
}

html[data-theme="dark"] .process-grid article {
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(127, 196, 255, 0.11), rgba(127, 196, 255, 0.045));
}

html[data-theme="dark"] .process-grid span {
  color: #7fc4ff;
}

html[data-theme="dark"] .store-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 43, 0.92), rgba(11, 29, 55, 0.76) 48%, rgba(16, 39, 68, 0.16)),
    radial-gradient(circle at 18% 24%, rgba(77, 162, 255, 0.18), transparent 30%),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

html[data-theme="dark"] .auth-body {
  background:
    linear-gradient(90deg, rgba(7, 22, 43, 0.94), rgba(11, 29, 55, 0.82)),
    radial-gradient(circle at 16% 22%, rgba(77, 162, 255, 0.12), transparent 34%),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

html[data-theme="dark"] .product-card,
html[data-theme="dark"] .capability-list div,
html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .order-panel,
html[data-theme="dark"] .checkout-form,
html[data-theme="dark"] .dialog-body {
  color: #eef6ff;
  border-color: #244364;
  background: rgba(11, 29, 55, 0.92);
  box-shadow: var(--shadow-soft);
}

html[data-theme="dark"] .price,
html[data-theme="dark"] .auth-switch a {
  color: #7fc4ff;
}

html[data-theme="dark"] .password-toggle {
  color: rgba(226, 238, 255, 0.72);
}

html[data-theme="dark"] .password-toggle:hover,
html[data-theme="dark"] .password-toggle:focus-visible,
html[data-theme="dark"] .password-toggle.is-active {
  color: #c9e7ff;
  border-color: rgba(77, 162, 255, 0.3);
  background: rgba(77, 162, 255, 0.12);
}

html[data-theme="dark"] .password-strength {
  border-color: rgba(77, 162, 255, 0.28);
  background: rgba(77, 162, 255, 0.08);
}

html[data-theme="dark"] .password-strength-head strong {
  color: #f1f7ff;
}

html[data-theme="dark"] .password-meter {
  background: rgba(226, 238, 255, 0.14);
}

html[data-theme="dark"] .captcha-question {
  color: #c9e7ff;
  border-color: rgba(77, 162, 255, 0.3);
  background: rgba(77, 162, 255, 0.12);
}

/* Smooth motion layer */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes softPulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

.motion-ready body {
  opacity: 0;
}

.motion-ready.page-loaded body {
  opacity: 1;
  animation: pageFadeIn 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .site-header {
  transform: translateY(-14px);
  opacity: 0;
  transition:
    opacity 560ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1),
    background 240ms ease,
    box-shadow 240ms ease;
}

.motion-ready.page-loaded .site-header {
  transform: translateY(0);
  opacity: 1;
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.hero-overlay,
.store-hero,
.product-image,
.mini-band,
.product-card,
.process-grid article,
.capability-list div,
.metric-grid article,
.quick-grid a,
.btn,
.control-link,
.header-cart,
.theme-choice,
.google-button,
.small-button {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.btn.is-pressing,
.control-link.is-pressing,
.header-cart.is-pressing,
.theme-choice.is-pressing,
.google-button.is-pressing,
.add-product.is-pressing,
.small-button.is-pressing {
  animation: softPulse 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card,
.process-grid article,
.capability-list div,
.quick-grid a {
  will-change: transform;
}

.product-card:hover,
.process-grid article:hover,
.capability-list div:hover,
.quick-grid a:hover {
  transform: translateY(-6px);
}

.hero {
  background-attachment: fixed;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .motion-ready body,
  .motion-ready .site-header,
  .motion-ready .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero {
    background-attachment: scroll;
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 620px;
    height: auto;
    background-position: 58% center;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 78px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(251, 252, 247, 0.98), rgba(251, 252, 247, 0.68));
  }

  .hero-stats,
  .process-grid,
  .product-grid,
  .about-grid,
  .checkout-shell,
  .contact-section,
  .store-cta-section,
  .store-hero {
    grid-template-columns: 1fr;
  }

  .store-hero-actions {
    justify-content: flex-start;
  }

  .order-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    gap: 10px;
    padding: 12px 14px;
    flex-wrap: wrap;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }

  .whatsapp-link {
    display: none;
  }

  .header-cart {
    padding: 9px 10px;
    font-size: 12px;
  }

  .theme-toggle {
    min-width: 62px;
    min-height: 44px;
    padding: 0 10px;
    font-size: 12px;
  }

  .theme-switcher {
    grid-template-columns: repeat(2, minmax(54px, 1fr));
    min-height: 44px;
  }

  .theme-choice {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .control-link {
    min-height: 44px;
    padding: 0 10px;
    font-size: 12px;
  }

  .user-chip {
    display: none;
  }

  .hero {
    min-height: 510px;
    background-position: 60% center;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding: 36px 0;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 22px;
  }

  .hero-stats div {
    min-height: 68px;
    padding: 10px;
    border-left-width: 3px;
  }

  .hero-stats dt {
    font-size: 18px;
  }

  .hero-stats dd {
    font-size: 11px;
  }

  .section {
    padding: 58px 14px;
  }

  .section-heading h2,
  .contact-copy h2,
  .store-cta-copy h2 {
    font-size: 32px;
  }

  .store-hero {
    padding: 44px 14px;
  }

  .store-hero h1 {
    font-size: 34px;
  }

  .about-copy,
  .checkout-form,
  .order-panel,
  .dialog-body {
    padding: 22px;
  }

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

  .product-card {
    grid-template-rows: 160px auto;
  }

  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .add-product {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(244, 249, 255, 0.98), rgba(224, 240, 255, 0.72)),
      radial-gradient(circle at 12% 20%, rgba(77, 162, 255, 0.14), transparent 34%);
  }

  html[data-theme="dark"] .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 22, 43, 0.94), rgba(11, 29, 55, 0.78)),
      radial-gradient(circle at 12% 20%, rgba(77, 162, 255, 0.14), transparent 34%);
  }
}

/* Softer section transitions */
.hero-content {
  position: relative;
  z-index: 1;
}

.company-hero,
.store-hero {
  border-bottom-color: transparent;
}

.company-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 86px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(234, 244, 255, 0), rgba(234, 244, 255, 0.34));
}

.trust-strip {
  border-top: 0;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34px),
    #eaf4ff;
  box-shadow:
    inset 0 18px 36px rgba(255, 255, 255, 0.04),
    inset 0 -18px 36px rgba(11, 33, 66, 0.025);
}

html[data-theme="dark"] .company-hero,
html[data-theme="dark"] .store-hero {
  border-bottom-color: transparent;
}

html[data-theme="dark"] .company-hero::after {
  background:
    linear-gradient(180deg, rgba(7, 22, 43, 0), rgba(7, 22, 43, 0.5));
}

html[data-theme="dark"] .trust-strip {
  border-top: 0;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(127, 196, 255, 0.06), transparent 36px),
    linear-gradient(180deg, #0b1d37 0%, #081a31 100%);
  box-shadow:
    inset 0 16px 34px rgba(127, 196, 255, 0.035),
    inset 0 -18px 36px rgba(0, 0, 0, 0.08);
}

/* Modern mode switch */
.theme-switcher {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(74px, 1fr));
  gap: 0;
  min-height: 46px;
  padding: 4px;
  border: 1px solid rgba(77, 162, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(234, 244, 255, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 28px rgba(11, 33, 66, 0.1);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.theme-switcher::before {
  position: absolute;
  z-index: 0;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc((100% - 8px) / 2);
  border-radius: 999px;
  content: "";
  background:
    linear-gradient(135deg, #0f3b78, #4da2ff);
  box-shadow:
    0 10px 22px rgba(15, 59, 120, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateX(0);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, box-shadow 220ms ease;
}

.theme-switcher:has(.theme-choice[data-theme-choice="dark"].is-active)::before {
  transform: translateX(100%);
}

.theme-choice {
  position: relative;
  z-index: 1;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #466282;
  background: transparent !important;
  box-shadow: none !important;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.theme-choice::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  content: "";
  background: currentColor;
  opacity: 0.62;
}

.theme-choice.is-active {
  color: #fff;
}

.theme-choice:not(.is-active):hover,
.theme-choice:not(.is-active):focus-visible {
  color: #0f3b78;
  background: rgba(77, 162, 255, 0.12) !important;
  transform: none;
}

html[data-theme="dark"] .theme-switcher {
  border-color: rgba(127, 196, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(7, 22, 43, 0.9), rgba(16, 39, 68, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .theme-switcher::before {
  background:
    linear-gradient(135deg, #d9ecff, #7fc4ff);
  box-shadow:
    0 10px 22px rgba(77, 162, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

html[data-theme="dark"] .theme-choice {
  color: #cfe2f8;
}

html[data-theme="dark"] .theme-choice.is-active {
  color: #07162b;
}

html[data-theme="dark"] .theme-choice:not(.is-active):hover,
html[data-theme="dark"] .theme-choice:not(.is-active):focus-visible {
  color: #fff;
  background: rgba(127, 196, 255, 0.12) !important;
}

@supports not selector(:has(*)) {
  .theme-choice.is-active {
    color: #fff;
    background: linear-gradient(135deg, #0f3b78, #4da2ff) !important;
    box-shadow: 0 10px 22px rgba(15, 59, 120, 0.18) !important;
  }

  html[data-theme="dark"] .theme-choice.is-active {
    color: #07162b;
    background: linear-gradient(135deg, #d9ecff, #7fc4ff) !important;
    box-shadow: 0 10px 22px rgba(77, 162, 255, 0.18) !important;
  }
}

@media (max-width: 640px) {
  .theme-switcher {
    grid-template-columns: repeat(2, minmax(58px, 1fr));
    min-height: 42px;
    padding: 3px;
  }

  .theme-switcher::before {
    top: 3px;
    bottom: 3px;
    left: 3px;
    width: calc((100% - 6px) / 2);
  }

  .theme-choice {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }
}

body:not(.control-body) .toast {
  bottom: max(92px, calc(env(safe-area-inset-bottom) + 92px));
}

/* Floating WhatsApp consult */
.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 16px 9px 9px;
  border: 1px solid rgba(127, 196, 255, 0.28);
  border-radius: 999px;
  color: #07162b;
  background:
    linear-gradient(135deg, #d9ecff, #7fc4ff);
  box-shadow:
    0 18px 40px rgba(11, 33, 66, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease, border-color 220ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(127, 196, 255, 0.54);
  box-shadow:
    0 22px 48px rgba(11, 33, 66, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.floating-whatsapp__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, #0f3b78, #1e6acb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.floating-whatsapp__icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-whatsapp__text {
  display: grid;
  gap: 1px;
  line-height: 1.05;
  white-space: nowrap;
}

.floating-whatsapp__text strong,
.floating-whatsapp__text small {
  display: block;
}

.floating-whatsapp__text strong {
  font-size: 14px;
  font-weight: 900;
}

.floating-whatsapp__text small {
  color: rgba(7, 22, 43, 0.72);
  font-size: 11px;
  font-weight: 800;
}

html[data-theme="dark"] .floating-whatsapp {
  color: #07162b;
  border-color: rgba(127, 196, 255, 0.34);
  background:
    linear-gradient(135deg, #d9ecff, #7fc4ff);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(77, 162, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

html[data-theme="dark"] .floating-whatsapp__text small {
  color: rgba(7, 22, 43, 0.7);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: #5e7390;
  background:
    linear-gradient(180deg, rgba(244, 249, 255, 0.94), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(215, 230, 248, 0.9);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.site-footer small {
  color: #7b8ca5;
  font-size: 12px;
  font-weight: 800;
}

.auth-body .site-footer {
  width: min(520px, calc(100% - 32px));
  margin: -14px auto 28px;
  padding: 0;
  background: transparent;
  border: 0;
}

.auth-body .site-footer small {
  display: none;
}

html[data-theme="dark"] .site-footer {
  color: #a9bbd4;
  background:
    linear-gradient(180deg, rgba(11, 29, 55, 0.96), rgba(7, 22, 43, 0.98));
  border-top-color: rgba(127, 196, 255, 0.16);
}

html[data-theme="dark"] .site-footer small {
  color: #7f9aba;
}

.testimonial-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #edf6ff 100%);
}

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

.testimonial-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(215, 230, 248, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.86));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.testimonial-card::before {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(77, 162, 255, 0.18);
  content: "“";
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #31433f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.62;
}

.testimonial-person {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.testimonial-person > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, #0f3b78, #4da2ff);
  font-size: 13px;
  font-weight: 900;
}

.testimonial-person strong,
.testimonial-person small {
  display: block;
}

.testimonial-person strong {
  color: var(--ink);
  font-size: 15px;
}

.testimonial-person small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.gallery-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  grid-auto-rows: minmax(250px, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 250px;
  margin: 0;
  border: 1px solid rgba(215, 230, 248, 0.92);
  border-radius: 26px;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
}

.gallery-card-wide {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.05) contrast(0.96);
  transform: scale(1.02);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.gallery-card:nth-child(2) img {
  object-position: 42% center;
}

.gallery-card:nth-child(3) img {
  object-position: 72% center;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 22, 43, 0.02) 0%, rgba(7, 22, 43, 0.68) 100%);
}

.gallery-card:hover img {
  filter: saturate(1.12) contrast(1);
  transform: scale(1.07);
}

.gallery-card figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: grid;
  gap: 5px;
  color: #fff;
}

.gallery-card figcaption strong {
  font-size: 22px;
  line-height: 1.1;
}

.gallery-card figcaption span {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

html[data-theme="dark"] .testimonial-section,
html[data-theme="dark"] .gallery-section {
  background:
    linear-gradient(180deg, #0b1d37 0%, #102744 100%);
}

html[data-theme="dark"] .testimonial-card {
  border-color: rgba(127, 196, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(16, 39, 68, 0.9), rgba(11, 29, 55, 0.92));
}

html[data-theme="dark"] .testimonial-card p {
  color: #dbeafe;
}

html[data-theme="dark"] .testimonial-card::before {
  color: rgba(127, 196, 255, 0.14);
}

html[data-theme="dark"] .testimonial-person strong {
  color: #eef6ff;
}

html[data-theme="dark"] .gallery-card {
  border-color: rgba(127, 196, 255, 0.2);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .gallery-card::after {
  background:
    linear-gradient(180deg, rgba(7, 22, 43, 0.12) 0%, rgba(7, 22, 43, 0.74) 100%);
}

@media (max-width: 640px) {
  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 54px;
    width: 54px;
    justify-content: center;
    padding: 7px;
  }

  .floating-whatsapp__icon {
    width: 40px;
    height: 40px;
  }

  .floating-whatsapp__text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 12px;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 122px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 10px 12px 9px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .brand {
    min-width: 0;
    max-width: 100%;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand strong {
    display: block;
    max-width: 60vw;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: block;
    max-width: 60vw;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    display: flex;
    width: 100%;
    min-width: 0;
    gap: 8px;
    padding: 1px 0 4px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 12px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .header-actions::-webkit-scrollbar {
    display: none;
  }

  .header-actions > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .header-actions .theme-switcher {
    width: 142px;
    min-width: 142px;
  }

  .control-link,
  .header-cart,
  .user-chip {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
  }

  .header-cart span {
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
  }

  .company-hero {
    margin-top: 0;
    padding-top: 0;
  }

  .hero {
    height: auto;
    min-height: 0;
    align-items: flex-start;
    background-attachment: scroll;
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(244, 249, 255, 0.96) 0%, rgba(224, 240, 255, 0.82) 48%, rgba(224, 240, 255, 0.28) 100%),
      linear-gradient(90deg, rgba(244, 249, 255, 0.98), rgba(224, 240, 255, 0.58));
  }

  html[data-theme="dark"] .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 22, 43, 0.94) 0%, rgba(11, 29, 55, 0.88) 56%, rgba(11, 29, 55, 0.48) 100%),
      linear-gradient(90deg, rgba(7, 22, 43, 0.96), rgba(16, 39, 68, 0.62));
  }

  .hero-content {
    width: calc(100% - 24px);
    margin: 0 12px;
    padding: 44px 0 28px;
  }

  .eyebrow {
    max-width: 100%;
    min-height: 0;
    padding: 6px 10px;
    font-size: 10px;
    line-height: 1.2;
  }

  .hero h1 {
    max-width: 10ch;
    margin-top: 12px;
    font-size: clamp(44px, 17vw, 66px);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 35rem;
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.6;
  }

  .hero-actions,
  .store-hero-actions,
  .contact-actions,
  .dialog-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    text-align: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 24px;
    padding: 0;
    overflow: visible;
  }

  .hero-stats div {
    min-height: 82px;
    min-width: 0;
    padding: 14px;
    border-radius: 16px;
  }

  .hero-stats dt {
    font-size: 21px;
  }

  .hero-stats dd {
    font-size: 11px;
  }

  .company-hero::after {
    height: 44px;
  }

  .trust-strip {
    gap: 8px;
    padding: 14px 12px;
    scroll-padding-inline: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .trust-strip span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .section {
    padding: 54px 12px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .contact-copy h2,
  .store-cta-copy h2,
  .checkout-section .section-heading h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.12;
  }

  .about-copy,
  .capability-list div,
  .process-grid article,
  .checkout-form,
  .order-panel,
  .dialog-body {
    border-radius: 18px;
    padding: 20px;
  }

  .about-grid,
  .process-grid,
  .testimonial-grid,
  .gallery-grid,
  .product-grid,
  .checkout-shell,
  .contact-section,
  .store-cta-section,
  .store-hero {
    gap: 14px;
  }

  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: 0;
  }

  .testimonial-card {
    min-height: 0;
    padding: 20px;
    border-radius: 18px;
  }

  .testimonial-card p {
    font-size: 15.5px;
  }

  .gallery-card,
  .gallery-card-wide {
    grid-row: auto;
    min-height: 250px;
    border-radius: 20px;
  }

  .gallery-card figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .gallery-card figcaption strong {
    font-size: 20px;
  }

  .process-grid span {
    margin-bottom: 18px;
  }

  .store-cta-section,
  .contact-section {
    align-items: start;
  }

  .store-cta-actions,
  .store-cta-actions .btn,
  .contact-actions .btn,
  .contact-actions a {
    width: 100%;
  }

  .store-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .store-hero {
    margin-top: 0;
    padding: 44px 12px 36px;
    align-items: start;
    background-position: 68% center;
  }

  .store-hero h1 {
    max-width: 11ch;
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.02;
  }

  .store-hero p:not(.eyebrow) {
    font-size: 15.5px;
    line-height: 1.58;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    grid-template-rows: auto auto;
    min-height: 0;
    overflow: hidden;
    border-radius: 20px;
  }

  .product-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
    padding: 18px;
  }

  .product-image {
    min-height: 0;
  }

  .product-body {
    gap: 12px;
    padding: 18px;
  }

  .product-card h3,
  .order-panel h3,
  .checkout-login-panel h3 {
    font-size: 20px;
    line-height: 1.18;
  }

  .price-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .add-product {
    min-width: 0;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .order-panel {
    position: static;
  }

  .panel-head {
    align-items: flex-start;
  }

  .cart-line {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .qty-control {
    width: max-content;
    max-width: 100%;
  }

  .custom-option {
    border-radius: 16px;
  }

  .totals div {
    align-items: baseline;
  }

  .totals strong {
    text-align: right;
  }

  .form-grid {
    gap: 14px;
  }

  .voucher-input-row {
    grid-template-columns: 1fr;
  }

  .voucher-input-row .btn {
    width: 100%;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    border-radius: 14px;
    padding: 12px 13px;
  }

  textarea {
    min-height: 118px;
  }

  .checkout-button {
    min-height: 50px;
  }

  .toast {
    top: calc(12px + env(safe-area-inset-top));
    right: 12px;
    bottom: auto;
    left: 12px;
    max-width: none;
    justify-content: center;
    border-radius: 18px;
    text-align: center;
    transform: translate3d(0, -22px, 0) scale(0.98);
  }

  .toast.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  body:not(.control-body) .toast {
    top: calc(12px + env(safe-area-inset-top));
    bottom: auto;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    padding: 18px 12px 84px;
    text-align: center;
  }

  .auth-body .site-footer {
    width: calc(100% - 24px);
    margin: -8px auto 24px;
    padding: 0;
  }

  .order-dialog {
    width: calc(100vw - 24px);
  }

  .dialog-body {
    padding-top: 42px;
  }

  .dialog-body h2 {
    font-size: 28px;
  }

  .auth-shell {
    align-content: start;
    width: calc(100% - 24px);
    min-height: 100svh;
    padding: 16px 0 28px;
  }

  .auth-brand {
    margin-bottom: 12px;
  }

  .auth-theme-row {
    justify-content: stretch;
    margin: 0 0 12px;
  }

  .auth-theme-row .theme-switcher {
    width: 100%;
  }

  .auth-card {
    padding: 22px;
    border-radius: 20px;
  }

  .auth-card h1 {
    font-size: clamp(30px, 9vw, 38px);
  }
}

@media (max-width: 420px) {
  .brand strong,
  .brand small {
    max-width: 52vw;
  }

  .site-header {
    padding-bottom: 8px;
  }

  .header-actions {
    gap: 7px;
    padding-bottom: 3px;
  }

  .header-actions .theme-switcher {
    width: 136px;
    min-width: 136px;
  }

  .hero-actions,
  .store-hero-actions,
  .contact-actions,
  .dialog-actions {
    grid-template-columns: 1fr;
  }

  .shipping-rate-control {
    display: grid;
    grid-template-columns: 1fr;
  }

  .shipping-rate-control .btn {
    width: 100%;
  }

  .hero h1 {
    max-width: 8ch;
  }

  .store-hero {
    margin-top: 0;
    padding-top: 56px;
  }

  .store-hero h1 {
    max-width: 10ch;
    font-size: clamp(32px, 10.2vw, 38px);
  }

  .store-hero p:not(.eyebrow) {
    font-size: 14.5px;
  }

  .hero-stats div {
    padding: 12px 10px;
  }

  .section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .theme-choice {
    font-size: 11px;
  }

  .control-link,
  .header-cart {
    padding: 0 10px;
  }

  .header-cart {
    min-width: 78px;
    gap: 6px;
    font-size: 0;
  }

  .header-cart::before {
    content: "Cart";
    font-size: 12px;
  }

  .header-cart span {
    font-size: 12px;
  }

  .floating-whatsapp {
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .captcha-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* Clean auth layout */
.auth-body {
  min-height: 100svh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(244, 249, 255, 0.96), rgba(221, 238, 255, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 249, 255, 0.92)),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-content: center;
  width: min(500px, calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 24px 0 18px;
}

.auth-brand {
  min-width: 0;
  margin: 0;
}

.auth-brand .brand-mark {
  border-radius: 14px;
}

.brand-mark.has-logo,
html[data-theme="dark"] .brand-mark.has-logo {
  overflow: hidden;
  color: transparent;
  background: rgba(242, 248, 255, 0.94);
}

.brand-mark.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.auth-theme-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

.auth-theme-row .theme-switcher {
  width: 148px;
  min-width: 148px;
  min-height: 42px;
  padding: 4px;
  border-radius: 18px;
}

.auth-theme-row .theme-choice {
  min-height: 34px;
  border-radius: 14px;
  font-size: 12px;
}

.auth-card {
  grid-column: 1 / -1;
  padding: 24px 28px;
  border: 1px solid rgba(77, 162, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(11, 33, 66, 0.12);
  backdrop-filter: blur(18px);
}

.auth-card .eyebrow {
  margin-bottom: 12px;
}

.auth-card h1 {
  margin: 0;
  font-size: clamp(32px, 7vw, 42px);
  line-height: 1.04;
  letter-spacing: 0;
}

.auth-copy {
  margin: 12px 0 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.oauth-block {
  gap: 13px;
  margin-top: 18px;
}

.google-button {
  min-height: 50px;
  border-radius: 15px;
  box-shadow: none;
}

.auth-form {
  gap: 12px;
  margin-top: 16px;
}

.auth-form label {
  gap: 7px;
}

.auth-form input,
.captcha-question {
  min-height: 48px;
  border-radius: 14px;
}

.auth-form .btn {
  min-height: 52px;
  margin-top: 2px;
  border-radius: 15px;
}

.password-strength,
.captcha-box,
.password-match,
.captcha-field small {
  margin-top: 0;
}

.password-strength {
  padding: 12px;
  border-radius: 16px;
}

.captcha-question {
  font-size: 16px;
}

.auth-switch {
  margin: 16px 0 0;
  text-align: center;
}

.auth-alert {
  border-radius: 14px;
}

.auth-body .site-footer {
  width: min(500px, calc(100% - 32px));
  margin: -8px auto 16px;
  padding: 6px 12px;
  border: 0;
  color: var(--muted);
  background: transparent;
}

html[data-theme="dark"] .auth-body {
  background:
    linear-gradient(135deg, rgba(7, 22, 43, 0.96), rgba(15, 45, 84, 0.84)),
    linear-gradient(180deg, rgba(7, 22, 43, 0.88), rgba(3, 12, 24, 0.96)),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

html[data-theme="dark"] .auth-card {
  color: #eef6ff;
  border-color: rgba(77, 162, 255, 0.22);
  background: rgba(9, 27, 51, 0.88);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .auth-copy,
html[data-theme="dark"] .auth-switch,
html[data-theme="dark"] .captcha-field small,
html[data-theme="dark"] .password-strength small,
html[data-theme="dark"] .password-strength-head span,
html[data-theme="dark"] .password-match {
  color: rgba(226, 238, 255, 0.72);
}

html[data-theme="dark"] .auth-body .site-footer {
  color: rgba(226, 238, 255, 0.72);
}

@media (max-width: 520px) {
  .auth-shell {
    align-content: start;
    width: calc(100% - 24px);
    min-height: auto;
    padding: 12px 0 16px;
  }

  .auth-theme-row .theme-switcher {
    width: 142px;
    min-width: 142px;
  }

  .auth-card {
    padding: 20px 22px;
    border-radius: 20px;
  }

  .auth-card h1 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .auth-copy {
    font-size: 15px;
  }

  .auth-form {
    gap: 11px;
  }

  .auth-body .site-footer {
    width: calc(100% - 24px);
    margin-top: -4px;
  }
}

@media (max-width: 370px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-theme-row {
    justify-content: stretch;
  }

  .auth-theme-row .theme-switcher {
    width: 100%;
  }
}

/* reCAPTCHA-style local checkbox */
.recaptcha-card {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 62px;
  grid-template-areas:
    "box text brand"
    "box text meta";
  align-items: center;
  gap: 0 10px;
  width: 100%;
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  color: #1f1f1f;
  background: #f9f9f9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.recaptcha-card:hover {
  border-color: #c7c7c7;
}

.recaptcha-check-wrap {
  position: relative;
  grid-area: box;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
}

.recaptcha-checkbox {
  position: absolute;
  inset: 0;
  width: 30px;
  height: 30px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.recaptcha-check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid #b6b6b6;
  border-radius: 2px;
  background: #fff;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.recaptcha-check::after {
  width: 7px;
  height: 14px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  content: "";
  opacity: 0;
  transform: rotate(45deg) scale(0.78);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.recaptcha-checkbox:focus-visible + .recaptcha-check {
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.26);
}

.recaptcha-checkbox:checked + .recaptcha-check {
  border-color: #4285f4;
  background: #4285f4;
}

.recaptcha-checkbox:checked + .recaptcha-check::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.recaptcha-copy {
  grid-area: text;
  align-self: center;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 500;
}

.recaptcha-brand {
  grid-area: brand;
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  justify-self: center;
  align-self: end;
  color: #4285f4;
}

.recaptcha-brand svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.recaptcha-meta {
  grid-area: meta;
  display: grid;
  justify-items: center;
  align-self: start;
  color: #777;
  max-width: 62px;
  font-size: 8px;
  line-height: 1.12;
  text-align: center;
  white-space: normal;
}

.recaptcha-meta strong,
.recaptcha-meta small {
  color: inherit;
  font-size: inherit;
  font-weight: 500;
}

html[data-theme="dark"] .recaptcha-card {
  color: #1f1f1f;
  border-color: #d8d8d8;
  background: #f9f9f9;
}

html[data-theme="dark"] .recaptcha-copy {
  color: #1f1f1f;
}

html[data-theme="dark"] .recaptcha-meta {
  color: #777;
}

@media (max-width: 380px) {
  .recaptcha-card {
    grid-template-columns: 32px minmax(0, 1fr) 58px;
    gap: 0 8px;
  }
}

/* Plain copyright footer */
.site-footer,
html[data-theme="dark"] .site-footer,
.auth-body .site-footer,
html[data-theme="dark"] .auth-body .site-footer {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 8px 12px;
  border: 0;
  color: rgba(96, 114, 143, 0.9);
  background: transparent;
  box-shadow: none;
}

.site-footer small {
  color: rgba(96, 114, 143, 0.78);
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .site-footer small {
  color: rgba(226, 238, 255, 0.68);
}

/* Transparent glass header */
.site-header {
  border-color: rgba(183, 220, 255, 0.22);
  background: rgba(11, 33, 66, 0.42);
  box-shadow: 0 18px 44px rgba(4, 13, 28, 0.2);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
}

html[data-theme="light"] .site-header {
  border-color: rgba(77, 162, 255, 0.22);
  background: rgba(244, 249, 255, 0.46);
  box-shadow: 0 18px 44px rgba(11, 33, 66, 0.1);
}

html[data-theme="dark"] .site-header {
  border-color: rgba(183, 220, 255, 0.18);
  background: rgba(7, 22, 43, 0.48);
}

.site-header .brand-mark {
  background: rgba(183, 220, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 10px 22px rgba(4, 13, 28, 0.12);
}

html[data-theme="light"] .site-header .brand-mark {
  background: rgba(183, 220, 255, 0.62);
}

html[data-theme="dark"] .site-header .brand-mark {
  background: rgba(183, 220, 255, 0.52);
}

.site-header .brand-mark.has-logo,
html[data-theme="light"] .site-header .brand-mark.has-logo,
html[data-theme="dark"] .site-header .brand-mark.has-logo {
  background: rgba(242, 248, 255, 0.16);
}

.site-header .main-nav,
.site-header .theme-switcher,
.site-header .control-link,
.site-header .header-cart,
.site-header .user-chip {
  border-color: rgba(183, 220, 255, 0.18);
  background: rgba(16, 39, 68, 0.26);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

html[data-theme="light"] .site-header .main-nav,
html[data-theme="light"] .site-header .theme-switcher,
html[data-theme="light"] .site-header .control-link,
html[data-theme="light"] .site-header .header-cart,
html[data-theme="light"] .site-header .user-chip {
  background: rgba(255, 255, 255, 0.34);
}

html[data-theme="dark"] .site-header .main-nav,
html[data-theme="dark"] .site-header .theme-switcher,
html[data-theme="dark"] .site-header .control-link,
html[data-theme="dark"] .site-header .header-cart,
html[data-theme="dark"] .site-header .user-chip {
  border-color: rgba(183, 220, 255, 0.16);
  background: rgba(16, 39, 68, 0.22);
}

/* Product images as objects, not full-cover blocks */
.product-visual.has-image {
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 50% 44%, rgba(127, 196, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(15, 59, 120, 0.2), rgba(16, 39, 68, 0.08)),
    #102744;
}

.product-visual.has-image .product-image {
  width: min(86%, 420px);
  height: auto;
  min-height: 0;
  max-height: 132px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 18px 26px rgba(4, 13, 28, 0.24));
}

.product-card:hover .product-visual.has-image .product-image {
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}

html[data-theme="light"] .product-visual.has-image {
  background:
    radial-gradient(circle at 50% 44%, rgba(77, 162, 255, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(234, 244, 255, 0.82), rgba(255, 255, 255, 0.72)),
    #edf6ff;
}

html[data-theme="dark"] .product-visual.has-image {
  background:
    radial-gradient(circle at 50% 44%, rgba(127, 196, 255, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(16, 39, 68, 0.96), rgba(11, 29, 55, 0.86)),
    #102744;
}

@media (max-width: 640px) {
  .product-visual.has-image {
    padding: 18px;
  }

  .product-visual.has-image .product-image {
    width: min(90%, 340px);
    max-height: 108px;
  }
}

/* Optional floating image for the empty hero area */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-floating-image {
  position: absolute;
  z-index: 1;
  right: clamp(42px, 8vw, 150px);
  top: 24%;
  width: min(36vw, 560px);
  max-height: 58%;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.92;
  filter:
    drop-shadow(0 30px 48px rgba(4, 13, 28, 0.28))
    drop-shadow(0 0 34px rgba(127, 196, 255, 0.16));
  transform: rotate(-4deg);
  animation: heroFloatImage 6.8s ease-in-out infinite;
}

@keyframes heroFloatImage {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(-2deg);
  }
}

html[data-theme="light"] .hero-floating-image {
  opacity: 0.88;
  filter:
    drop-shadow(0 28px 40px rgba(11, 33, 66, 0.2))
    drop-shadow(0 0 30px rgba(77, 162, 255, 0.18));
}

@media (max-width: 980px) {
  .hero-floating-image {
    right: -8vw;
    top: 118px;
    width: min(58vw, 360px);
    max-height: 42%;
    opacity: 0.26;
  }
}

@media (max-width: 640px) {
  .hero-floating-image {
    top: 142px;
    right: -18vw;
    width: 76vw;
    opacity: 0.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-floating-image {
    animation: none;
  }
}

/* Customer account page */
.account-hero {
  padding: 150px clamp(18px, 5vw, 72px) 64px;
  color: #eef6ff;
  background:
    linear-gradient(90deg, rgba(7, 22, 43, 0.94), rgba(11, 29, 55, 0.78)),
    radial-gradient(circle at 78% 20%, rgba(77, 162, 255, 0.18), transparent 34%),
    url("assets/hero-wristbands.png") center / cover no-repeat;
}

.account-hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
}

.account-hero p:not(.eyebrow) {
  width: min(640px, 100%);
  margin: 18px 0 0;
  color: rgba(238, 246, 255, 0.72);
  font-size: 19px;
  line-height: 1.6;
}

.account-section {
  background:
    linear-gradient(180deg, #0b1d37 0%, #07162b 100%);
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.account-card {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(127, 196, 255, 0.16);
  border-radius: 20px;
  color: #eef6ff;
  background: rgba(11, 29, 55, 0.92);
  box-shadow: var(--shadow-soft);
}

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

.account-form label {
  display: grid;
  gap: 8px;
  color: rgba(238, 246, 255, 0.76);
  font-weight: 800;
}

.account-form input {
  width: 100%;
}

.account-form input:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.account-summary {
  position: sticky;
  top: 100px;
}

.account-stats {
  display: grid;
  gap: 10px;
  margin: 0;
}

.account-stats div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(127, 196, 255, 0.14);
}

.account-stats dt {
  color: rgba(238, 246, 255, 0.68);
  font-weight: 800;
}

.account-stats dd {
  margin: 0;
  color: #eef6ff;
  font-weight: 900;
  text-align: right;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.order-history {
  margin-top: 20px;
}

.account-order-list {
  display: grid;
  gap: 12px;
}

.account-order-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(180px, 0.55fr) minmax(240px, 1.2fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(127, 196, 255, 0.14);
  border-radius: 14px;
  background: rgba(127, 196, 255, 0.06);
}

.account-order-list strong,
.account-order-list small {
  display: block;
}

.account-order-list small,
.account-order-list p {
  color: rgba(238, 246, 255, 0.68);
}

.account-order-list p {
  margin: 0;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #07162b;
  background: #b7dcff;
  font-size: 12px;
  font-weight: 900;
}

html[data-theme="light"] .account-section {
  background:
    linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

html[data-theme="light"] .account-card {
  color: #0b2142;
  border-color: rgba(15, 59, 120, 0.12);
  background: rgba(255, 255, 255, 0.94);
}

html[data-theme="light"] .account-form label,
html[data-theme="light"] .account-stats dt,
html[data-theme="light"] .account-order-list small,
html[data-theme="light"] .account-order-list p {
  color: rgba(11, 33, 66, 0.66);
}

html[data-theme="light"] .account-stats dd {
  color: #0b2142;
}

html[data-theme="light"] .account-stats div,
html[data-theme="light"] .account-order-list article {
  border-color: rgba(15, 59, 120, 0.1);
}

html[data-theme="light"] .account-order-list article {
  background: rgba(234, 244, 255, 0.66);
}

@media (max-width: 900px) {
  .account-grid,
  .account-order-list article {
    grid-template-columns: 1fr;
  }

  .account-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .account-hero {
    padding: 128px 18px 46px;
  }

  .account-card {
    border-radius: 18px;
  }

  .account-stats div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .account-stats dd {
    text-align: left;
  }
}

.auth-body .site-footer small {
  display: none;
}

/* Final auth spacing override: keeps login/register compact on desktop and mobile. */
.auth-body {
  align-content: center;
  gap: 0;
}

.auth-body .auth-shell {
  min-height: auto;
  padding-top: 18px;
  padding-bottom: 10px;
}

.auth-body .auth-brand {
  min-width: 0;
}

.auth-body .brand strong,
.auth-body .brand small {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-body .auth-card {
  padding-block: 24px;
}

.auth-body .auth-copy {
  margin-top: 10px;
}

.auth-body .oauth-block {
  margin-top: 16px;
}

.auth-body .auth-form {
  gap: 11px;
  margin-top: 14px;
}

.auth-body .site-footer,
html[data-theme="dark"] .auth-body .site-footer {
  margin: 0 auto 12px;
}

@media (max-width: 640px) {
  .auth-body .auth-shell {
    width: calc(100% - 24px);
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .auth-body .auth-theme-row .theme-switcher {
    width: 142px;
    min-width: 142px;
  }

  .auth-body .auth-card {
    padding: 20px 22px;
    border-radius: 20px;
  }

  .auth-body .auth-card h1 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .auth-body .auth-copy {
    font-size: 15px;
    line-height: 1.5;
  }

  .auth-body .auth-form {
    gap: 10px;
    margin-top: 13px;
  }

  .auth-body .site-footer,
  html[data-theme="dark"] .auth-body .site-footer {
    margin: 0 auto 10px;
  }
}

@media (max-width: 370px) {
  .auth-body .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-body .auth-theme-row {
    justify-content: stretch;
  }

  .auth-body .auth-theme-row .theme-switcher {
    width: 100%;
    min-width: 0;
  }
}

/* Modern Google sign-in badge */
.auth-body .google-button {
  gap: 11px;
  justify-content: center;
  border-color: rgba(127, 196, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.auth-body .google-button:hover,
.auth-body .google-button:focus-visible {
  border-color: rgba(127, 196, 255, 0.45);
}

.auth-body .google-mark {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
}

.auth-alert.is-success {
  color: #0f3b78;
  border-left-color: #4da2ff;
  background: #eaf5ff;
}

html[data-theme="dark"] .auth-alert.is-success {
  color: #e8f7ff;
  background: rgba(77, 162, 255, 0.14);
}

.auth-inline-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.auth-inline-note a,
.auth-switch a {
  color: #7fc4ff;
}

.auth-action-row {
  margin-top: 18px;
}

/* Poster-style company hero */
.company-hero {
  min-height: 880px;
  height: min(920px, 100svh);
  margin-top: -104px;
  padding-top: 118px;
  color: #f4f9ff;
  background-color: #040c1f;
  background-image:
    radial-gradient(circle at 72% 28%, rgba(77, 162, 255, 0.34), transparent 28%),
    radial-gradient(circle at 84% 42%, rgba(151, 102, 255, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(4, 12, 31, 0.98) 0%, rgba(5, 16, 39, 0.94) 34%, rgba(8, 24, 56, 0.42) 58%, rgba(5, 14, 32, 0.18) 100%),
    var(--hero-image, url("assets/hero-event-bracelets.png"));
  background-position: center, center, center, right center;
  background-size: cover, cover, cover, cover;
}

.company-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 31% 22%, rgba(127, 196, 255, 0.16) 0 3px, transparent 4px) 0 0 / 22px 22px,
    linear-gradient(116deg, transparent 38%, rgba(77, 162, 255, 0.1) 38.2%, rgba(77, 162, 255, 0.03) 52%, transparent 52.2%),
    linear-gradient(135deg, transparent 63%, rgba(66, 131, 255, 0.2) 63.2%, transparent 64.1%);
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 64%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 64%, transparent 100%);
}

.company-hero::after {
  height: 92px;
  background: linear-gradient(180deg, rgba(4, 12, 31, 0), rgba(7, 22, 43, 0.72));
}

.company-hero .hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 31, 0.92) 0%, rgba(5, 16, 39, 0.72) 42%, rgba(7, 22, 43, 0.08) 100%),
    radial-gradient(circle at 16% 54%, rgba(37, 99, 235, 0.18), transparent 34%);
}

.company-hero .hero-content {
  z-index: 2;
  width: min(650px, calc(100% - 44px));
  margin-left: clamp(22px, 3.8vw, 64px);
  padding: 78px 0 54px;
}

.company-hero .eyebrow {
  min-height: 34px;
  padding: 7px 13px;
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.28);
  background: rgba(11, 29, 55, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.company-hero h1 {
  max-width: 8.2ch;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(76px, 9.2vw, 148px);
  line-height: 0.88;
  text-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.hero-kicker {
  width: min(720px, 100%);
  margin: 20px 0 0;
  color: #7fc4ff;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1.18;
  background: linear-gradient(90deg, #7fc4ff 0%, #5aa7ff 44%, #9a72ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-hero .hero-copy {
  width: min(610px, 100%);
  margin-top: 22px;
  color: rgba(226, 238, 255, 0.78);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.company-hero .hero-actions {
  gap: 14px;
  margin-top: 34px;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.company-hero .btn {
  min-height: 56px;
  min-width: 172px;
  padding: 0 22px;
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.2);
  border-radius: 8px;
  background: rgba(10, 28, 60, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
}

.company-hero .btn-primary {
  color: #fff;
  border-color: rgba(127, 196, 255, 0.52);
  background: linear-gradient(135deg, #1957d2 0%, #56b4ff 100%);
  box-shadow:
    0 18px 34px rgba(28, 100, 242, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.company-hero .btn-secondary:hover,
.company-hero .btn-secondary:focus-visible {
  color: #fff;
  border-color: rgba(127, 196, 255, 0.44);
  background: rgba(28, 100, 242, 0.22);
}

.company-hero .hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: min(670px, 100%);
  margin-top: 52px;
}

.company-hero .hero-stats div {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-areas:
    "icon value"
    "icon label";
  align-items: center;
  flex: 1 1 0;
  min-height: 64px;
  padding: 0 24px 0 0;
  color: #f4f9ff;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.company-hero .hero-stats div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(127, 196, 255, 0.18);
}

.company-hero .hero-stats div::before {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(127, 196, 255, 0.3);
  border-radius: 50%;
  color: #9bd0ff;
  background:
    radial-gradient(circle at 36% 30%, rgba(127, 196, 255, 0.34), transparent 36%),
    rgba(28, 100, 242, 0.22);
  box-shadow:
    0 12px 26px rgba(28, 100, 242, 0.18),
    inset 0 0 0 7px rgba(28, 100, 242, 0.16);
  font-size: 25px;
  line-height: 1;
  content: "";
}

.company-hero .hero-stats div:nth-child(1)::before {
  content: "◷";
}

.company-hero .hero-stats div:nth-child(2)::before {
  content: "▱";
}

.company-hero .hero-stats div:nth-child(3)::before {
  content: "◇";
}

.company-hero .hero-stats dt {
  grid-area: value;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}

.company-hero .hero-stats dd {
  grid-area: label;
  margin: 3px 0 0;
  color: rgba(226, 238, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.site-header {
  top: 22px;
  width: calc(100% - clamp(28px, 3.2vw, 54px));
  min-height: 80px;
  padding: 14px clamp(20px, 3.6vw, 66px);
  border-radius: 10px;
  border-color: rgba(127, 196, 255, 0.18);
  background: rgba(7, 22, 43, 0.68);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header .brand strong,
.site-header .main-nav,
.site-header .control-link,
.site-header .header-cart,
.site-header .theme-choice {
  color: #eef6ff;
}

.site-header .brand small {
  color: rgba(226, 238, 255, 0.68);
}

.site-header .main-nav {
  gap: 20px;
  padding: 0 0 0 clamp(18px, 3vw, 44px);
  border: 0;
  border-left: 1px solid rgba(127, 196, 255, 0.1);
  border-radius: 0;
  background: transparent;
}

.site-header .main-nav a {
  padding: 10px 8px;
}

.site-header .main-nav a:hover,
.site-header .main-nav a:focus-visible {
  color: #8fcbff;
  background: transparent;
}

.site-header .theme-switcher,
.site-header .control-link,
.site-header .header-cart {
  min-height: 46px;
  border-radius: 8px;
  border-color: rgba(127, 196, 255, 0.18);
  background: rgba(10, 28, 60, 0.42);
}

.site-header .theme-choice.is-active {
  color: #07162b;
  background: linear-gradient(135deg, #d9ecff, #7fc4ff);
  box-shadow: 0 10px 26px rgba(127, 196, 255, 0.24);
}

html[data-theme="light"] .site-header {
  border-color: rgba(15, 59, 120, 0.13);
  background: rgba(244, 249, 255, 0.72);
}

html[data-theme="light"] .site-header .brand strong,
html[data-theme="light"] .site-header .main-nav,
html[data-theme="light"] .site-header .control-link,
html[data-theme="light"] .site-header .header-cart,
html[data-theme="light"] .site-header .theme-choice {
  color: #0b2142;
}

html[data-theme="light"] .site-header .brand small {
  color: rgba(11, 33, 66, 0.62);
}

html[data-theme="light"] .site-header .theme-switcher,
html[data-theme="light"] .site-header .control-link,
html[data-theme="light"] .site-header .header-cart {
  border-color: rgba(15, 59, 120, 0.13);
  background: rgba(255, 255, 255, 0.5);
}

html[data-theme="light"] .company-hero {
  background-image:
    radial-gradient(circle at 74% 28%, rgba(77, 162, 255, 0.24), transparent 30%),
    radial-gradient(circle at 84% 42%, rgba(151, 102, 255, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(7, 22, 43, 0.86) 0%, rgba(11, 33, 66, 0.72) 38%, rgba(244, 249, 255, 0.14) 70%, rgba(244, 249, 255, 0.08) 100%),
    var(--hero-image, url("assets/hero-event-bracelets.png"));
}

html[data-theme="light"] .company-hero .hero-copy {
  color: rgba(244, 249, 255, 0.78);
}

@media (max-width: 1180px) {
  .site-header {
    top: 12px;
  }

  .company-hero {
    min-height: 820px;
    background-position: center, center, center, 66% center;
  }

  .company-hero .hero-content {
    width: min(610px, calc(100% - 36px));
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .company-hero {
    min-height: 0;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    background-image:
      radial-gradient(circle at 68% 14%, rgba(77, 162, 255, 0.24), transparent 30%),
      radial-gradient(circle at 84% 22%, rgba(151, 102, 255, 0.18), transparent 32%),
      linear-gradient(180deg, rgba(4, 12, 31, 0) 0%, rgba(7, 22, 43, 0.1) 38%, rgba(7, 22, 43, 0.88) 64%, rgba(7, 22, 43, 0.98) 100%),
      var(--hero-image, url("assets/hero-event-bracelets.png"));
    background-position: center, center, center, 62% top;
    background-size: cover, cover, cover, auto 64%;
  }

  .company-hero .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 22, 43, 0) 0%, rgba(7, 22, 43, 0.18) 32%, rgba(7, 22, 43, 0.9) 58%, rgba(7, 22, 43, 0.98) 100%),
      linear-gradient(90deg, rgba(7, 22, 43, 0.52), rgba(11, 29, 55, 0.08));
  }

  html[data-theme="dark"] .company-hero .hero-overlay,
  html[data-theme="light"] .company-hero .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 22, 43, 0) 0%, rgba(7, 22, 43, 0.18) 32%, rgba(7, 22, 43, 0.9) 58%, rgba(7, 22, 43, 0.98) 100%),
      linear-gradient(90deg, rgba(7, 22, 43, 0.52), rgba(11, 29, 55, 0.08));
  }

  .company-hero .hero-content {
    width: calc(100% - 24px);
    margin: 0 12px;
    padding: clamp(280px, 68vw, 360px) 0 38px;
  }

  .company-hero h1 {
    max-width: 8.4ch;
    margin-top: 14px;
    font-size: clamp(54px, 17vw, 78px);
  }

  .hero-kicker {
    font-size: clamp(20px, 6vw, 27px);
  }

  .company-hero .hero-copy {
    font-size: 15.5px;
  }

  .company-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .company-hero .btn {
    width: 100%;
  }

  .company-hero .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }

  .company-hero .hero-stats div,
  .company-hero .hero-stats div + div {
    min-height: 58px;
    padding: 0;
    border-left: 0;
  }

  .company-hero .hero-stats div::before {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 420px) {
  .company-hero .hero-content {
    padding-top: clamp(190px, 56vw, 250px);
  }

  .company-hero h1 {
    font-size: clamp(48px, 15.5vw, 64px);
  }

  .company-hero .eyebrow {
    font-size: 10px;
  }
}

/* Unified blue visual system across public pages */
body {
  color: #eaf4ff;
  background:
    radial-gradient(circle at 78% 8%, rgba(77, 162, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #07162b 0%, #0b1d37 42%, #07162b 100%);
}

.section {
  color: #eaf4ff;
}

.section-heading h2,
.contact-copy h2,
.store-cta-copy h2 {
  color: #f4f9ff;
}

.section-heading p:not(.eyebrow),
.contact-copy p,
.store-cta-copy p,
.process-grid p,
.product-card p,
.testimonial-card p,
.form-note {
  color: rgba(226, 238, 255, 0.74);
}

.about-section,
.process-section,
.product-section,
.testimonial-section,
.gallery-section,
.contact-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(77, 162, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #0b1d37 0%, #07162b 100%);
}

.store-hero,
.account-hero {
  position: relative;
  margin-top: -104px;
  padding-top: 160px;
  color: #f4f9ff;
  border-bottom-color: transparent;
  background:
    radial-gradient(circle at 78% 22%, rgba(77, 162, 255, 0.28), transparent 30%),
    radial-gradient(circle at 88% 42%, rgba(151, 102, 255, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(4, 12, 31, 0.96) 0%, rgba(7, 22, 43, 0.84) 42%, rgba(11, 29, 55, 0.2) 100%),
    url("assets/hero-event-bracelets.png") right center / cover no-repeat;
  overflow: hidden;
}

.store-hero::before,
.account-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 32% 22%, rgba(127, 196, 255, 0.14) 0 2px, transparent 3px) 0 0 / 22px 22px,
    linear-gradient(135deg, transparent 62%, rgba(66, 131, 255, 0.16) 62.4%, transparent 63.2%);
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 62%, transparent 100%);
}

.store-hero > *,
.account-hero > * {
  position: relative;
  z-index: 1;
}

.store-hero h1,
.account-hero h1 {
  color: #fff;
  text-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.store-hero p:not(.eyebrow),
.account-hero p:not(.eyebrow) {
  color: rgba(226, 238, 255, 0.78);
}

.eyebrow,
.store-hero .eyebrow,
.checkout-section .eyebrow,
.store-cta-section .eyebrow,
.process-section .eyebrow {
  color: #dcecff;
  border-color: rgba(127, 196, 255, 0.28);
  background: rgba(11, 29, 55, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.product-card,
.testimonial-card,
.account-card,
.order-panel,
.checkout-form,
.capability-list div,
.process-grid article,
.about-copy,
.contact-card,
.dialog-body {
  color: #eef6ff;
  border: 1px solid rgba(127, 196, 255, 0.17);
  background:
    linear-gradient(180deg, rgba(16, 39, 68, 0.88), rgba(11, 29, 55, 0.9));
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
}

.product-card h3,
.testimonial-person strong,
.capability-list strong,
.process-grid strong,
.order-panel h3,
.checkout-form h3,
.account-card h2,
.account-card h3,
.about-copy h3 {
  color: #f8fbff;
}

.product-meta span,
.trust-strip span,
.status-pill {
  color: #dcecff;
  border: 1px solid rgba(127, 196, 255, 0.17);
  background: rgba(127, 196, 255, 0.11);
}

.price,
html[data-theme="dark"] .price {
  color: #8fcbff;
}

.checkout-section,
.store-cta-section {
  color: #eef6ff;
  background:
    radial-gradient(circle at 82% 20%, rgba(77, 162, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #07162b 0%, #0b1d37 54%, #102744 100%);
}

.checkout-section .section-heading h2,
.store-cta-section .section-heading h2 {
  color: #f4f9ff;
}

.cart-items,
.custom-option,
.shipping-rate-box,
.account-stats div {
  border-color: rgba(127, 196, 255, 0.16);
  background: rgba(16, 39, 68, 0.52);
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select,
.account-form input,
.account-form textarea,
.account-form select,
.auth-form input,
.auth-form textarea,
.auth-form select {
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.2);
  background: rgba(10, 28, 60, 0.58);
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder,
.account-form input::placeholder,
.auth-form input::placeholder {
  color: rgba(226, 238, 255, 0.46);
}

.gallery-card {
  border-color: rgba(127, 196, 255, 0.2);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.gallery-card::after {
  background:
    linear-gradient(180deg, rgba(7, 22, 43, 0.05) 0%, rgba(7, 22, 43, 0.76) 100%);
}

.trust-strip,
html[data-theme="dark"] .trust-strip {
  color: #eef6ff;
  background:
    linear-gradient(180deg, rgba(127, 196, 255, 0.06), transparent 36px),
    linear-gradient(180deg, #0b1d37 0%, #081a31 100%);
}

.auth-body {
  color: #eef6ff;
  background:
    radial-gradient(circle at 72% 18%, rgba(77, 162, 255, 0.2), transparent 34%),
    radial-gradient(circle at 86% 46%, rgba(151, 102, 255, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(7, 22, 43, 0.94), rgba(11, 29, 55, 0.88)),
    url("assets/hero-event-bracelets.png") right center / cover no-repeat;
}

.auth-card,
html[data-theme="dark"] .auth-card {
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(16, 39, 68, 0.9), rgba(11, 29, 55, 0.94));
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.auth-card h1,
.auth-copy,
.auth-form label,
.auth-switch,
.auth-divider span {
  color: #eef6ff;
}

.google-button,
.auth-body .google-button {
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.22);
  background: rgba(10, 28, 60, 0.5);
}

.site-footer,
html[data-theme="dark"] .site-footer,
.auth-body .site-footer,
html[data-theme="dark"] .auth-body .site-footer {
  color: rgba(226, 238, 255, 0.72);
  background: transparent;
}

html[data-theme="light"] body {
  color: #0b2142;
  background:
    radial-gradient(circle at 78% 8%, rgba(77, 162, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #eaf4ff 0%, #f4f9ff 42%, #dcecff 100%);
}

html[data-theme="light"] .section {
  color: #0b2142;
}

html[data-theme="light"] .about-section,
html[data-theme="light"] .process-section,
html[data-theme="light"] .product-section,
html[data-theme="light"] .testimonial-section,
html[data-theme="light"] .gallery-section,
html[data-theme="light"] .contact-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(77, 162, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #f4f9ff 0%, #eaf4ff 100%);
}

html[data-theme="light"] .section-heading h2,
html[data-theme="light"] .contact-copy h2,
html[data-theme="light"] .store-cta-copy h2 {
  color: #0b2142;
}

html[data-theme="light"] .section-heading p:not(.eyebrow),
html[data-theme="light"] .contact-copy p,
html[data-theme="light"] .store-cta-copy p,
html[data-theme="light"] .process-grid p,
html[data-theme="light"] .product-card p,
html[data-theme="light"] .testimonial-card p,
html[data-theme="light"] .form-note {
  color: rgba(11, 33, 66, 0.68);
}

html[data-theme="light"] .product-card,
html[data-theme="light"] .testimonial-card,
html[data-theme="light"] .account-card,
html[data-theme="light"] .order-panel,
html[data-theme="light"] .checkout-form,
html[data-theme="light"] .capability-list div,
html[data-theme="light"] .process-grid article,
html[data-theme="light"] .about-copy,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .dialog-body {
  color: #0b2142;
  border-color: rgba(15, 59, 120, 0.13);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(11, 33, 66, 0.1);
}

html[data-theme="light"] .product-card h3,
html[data-theme="light"] .testimonial-person strong,
html[data-theme="light"] .capability-list strong,
html[data-theme="light"] .process-grid strong,
html[data-theme="light"] .order-panel h3,
html[data-theme="light"] .checkout-form h3,
html[data-theme="light"] .account-card h2,
html[data-theme="light"] .account-card h3,
html[data-theme="light"] .about-copy h3 {
  color: #0b2142;
}

html[data-theme="light"] .checkout-form input,
html[data-theme="light"] .checkout-form textarea,
html[data-theme="light"] .checkout-form select,
html[data-theme="light"] .account-form input,
html[data-theme="light"] .account-form textarea,
html[data-theme="light"] .account-form select,
html[data-theme="light"] .auth-form input,
html[data-theme="light"] .auth-form textarea,
html[data-theme="light"] .auth-form select {
  color: #0b2142;
  border-color: rgba(15, 59, 120, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

html[data-theme="light"] .auth-body {
  color: #0b2142;
  background:
    radial-gradient(circle at 72% 18%, rgba(77, 162, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(234, 244, 255, 0.94), rgba(244, 249, 255, 0.86)),
    url("assets/hero-event-bracelets.png") right center / cover no-repeat;
}

html[data-theme="light"] .auth-card,
html[data-theme="light"] .auth-card h1,
html[data-theme="light"] .auth-copy,
html[data-theme="light"] .auth-form label,
html[data-theme="light"] .auth-switch,
html[data-theme="light"] .auth-divider span,
html[data-theme="light"] .google-button {
  color: #0b2142;
}

html[data-theme="light"] .auth-card {
  border-color: rgba(15, 59, 120, 0.13);
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .google-button {
  border-color: rgba(15, 59, 120, 0.13);
  background: rgba(255, 255, 255, 0.62);
}

@media (max-width: 760px) {
  .store-hero,
  .account-hero {
    margin-top: 0;
    padding: 126px 12px 42px;
    background:
      linear-gradient(180deg, rgba(7, 22, 43, 0.18) 0%, rgba(7, 22, 43, 0.78) 36%, rgba(7, 22, 43, 0.98) 100%),
      url("assets/hero-event-bracelets.png") 62% top / auto 54% no-repeat,
      linear-gradient(180deg, #07162b 0%, #0b1d37 100%);
  }

  .store-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .auth-body {
    background:
      linear-gradient(180deg, rgba(7, 22, 43, 0.34) 0%, rgba(7, 22, 43, 0.94) 34%, rgba(7, 22, 43, 0.98) 100%),
      url("assets/hero-event-bracelets.png") 62% top / auto 34% no-repeat,
      linear-gradient(180deg, #07162b 0%, #0b1d37 100%);
  }
}

/* Mobile hero spacing fix */
@media (max-width: 760px) {
  .company-hero {
    background-position: center, center, center, 62% top;
    background-size: cover, cover, cover, auto 58%;
  }

  .company-hero .hero-content {
    padding: clamp(126px, 34vw, 180px) 0 32px;
  }

  .company-hero .eyebrow {
    margin-bottom: 8px;
  }

  .company-hero h1 {
    margin-top: 10px;
  }

  .hero-kicker {
    margin-top: 12px;
  }

  .company-hero .hero-copy {
    margin-top: 14px;
  }

  .company-hero .hero-actions {
    margin-top: 22px;
  }
}

@media (max-width: 420px) {
  .company-hero {
    background-size: cover, cover, cover, auto 54%;
  }

  .company-hero .hero-content {
    padding-top: clamp(112px, 32vw, 150px);
  }
}

/* Refined uploaded floating image placement */
.hero-floating-image-inline {
  display: none;
}

.company-hero .hero-floating-image {
  right: clamp(86px, 7.6vw, 170px);
  top: 51%;
  width: min(43vw, 700px);
  max-height: 58%;
  opacity: 0.96;
  --hero-float-x: 0px;
  --hero-float-y: -50%;
  --hero-float-rotate: -2deg;
  transform: translate(var(--hero-float-x), var(--hero-float-y)) rotate(var(--hero-float-rotate));
  transform-origin: 50% 50%;
}

@keyframes heroFloatImage {
  0%,
  100% {
    transform: translate(var(--hero-float-x), var(--hero-float-y)) rotate(var(--hero-float-rotate));
  }

  50% {
    transform: translate(var(--hero-float-x), calc(var(--hero-float-y) - 14px)) rotate(-0.6deg);
  }
}

@media (max-width: 1180px) {
  .company-hero .hero-floating-image {
    right: clamp(24px, 4.8vw, 76px);
    top: 50%;
    width: min(48vw, 540px);
    max-height: 48%;
  }
}

@media (max-width: 760px) {
  .company-hero .hero-floating-image-desktop {
    display: none;
  }

  .company-hero .hero-floating-image-inline {
    display: block;
    width: min(88vw, 360px);
    max-height: 230px;
    margin: 16px auto 18px;
    object-fit: contain;
    opacity: 0.92;
    mix-blend-mode: normal;
    pointer-events: none;
    transform: rotate(-2deg);
    animation: heroInlineFloatImage 6.8s ease-in-out infinite;
    filter:
      contrast(1.06)
      saturate(1.08)
      drop-shadow(0 18px 26px rgba(4, 13, 28, 0.34))
      drop-shadow(0 0 18px rgba(127, 196, 255, 0.18));
  }

  .company-hero.has-floating-image .hero-content {
    padding-top: clamp(54px, 14vw, 84px);
  }
}

@media (max-width: 420px) {
  .company-hero .hero-floating-image-inline {
    width: min(90vw, 330px);
    max-height: 206px;
    margin: 14px auto 18px;
    opacity: 0.9;
  }

  .company-hero.has-floating-image .hero-content {
    padding-top: clamp(38px, 11vw, 64px);
  }
}

@keyframes heroInlineFloatImage {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(-1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-floating-image-inline {
    animation: none;
  }
}

/* Final store hero override: keep toko page aligned with the new poster design */
.store-hero,
html[data-theme="dark"] .store-hero,
html[data-theme="light"] .store-hero {
  min-height: 640px;
  margin-top: -104px;
  padding: 170px clamp(18px, 5vw, 72px) 76px;
  color: #f4f9ff;
  border-bottom-color: transparent;
  background:
    radial-gradient(circle at 72% 24%, rgba(77, 162, 255, 0.3), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(151, 102, 255, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(4, 12, 31, 0.98) 0%, rgba(7, 22, 43, 0.9) 40%, rgba(8, 24, 56, 0.34) 70%, rgba(5, 14, 32, 0.12) 100%),
    url("assets/hero-event-bracelets.png") right center / cover no-repeat;
}

.store-hero::before {
  opacity: 0.55;
}

.store-hero h1,
html[data-theme="dark"] .store-hero h1,
html[data-theme="light"] .store-hero h1 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 0.96;
  text-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.store-hero p:not(.eyebrow),
html[data-theme="dark"] .store-hero p:not(.eyebrow),
html[data-theme="light"] .store-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(226, 238, 255, 0.78);
  font-size: clamp(17px, 1.4vw, 20px);
}

.store-hero .store-hero-actions {
  align-self: end;
  justify-content: flex-end;
}

.store-hero .btn {
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.2);
  background: rgba(10, 28, 60, 0.56);
  backdrop-filter: blur(14px);
}

.store-hero .btn-primary {
  color: #fff;
  border-color: rgba(127, 196, 255, 0.52);
  background: linear-gradient(135deg, #1957d2 0%, #56b4ff 100%);
}

@media (max-width: 760px) {
  .store-hero,
  html[data-theme="dark"] .store-hero,
  html[data-theme="light"] .store-hero {
    min-height: 0;
    margin-top: 0;
    padding: clamp(150px, 42vw, 210px) 12px 38px;
    background:
      linear-gradient(180deg, rgba(7, 22, 43, 0.05) 0%, rgba(7, 22, 43, 0.38) 34%, rgba(7, 22, 43, 0.92) 62%, rgba(7, 22, 43, 0.98) 100%),
      url("assets/hero-event-bracelets.png") 62% top / auto 58% no-repeat,
      linear-gradient(180deg, #07162b 0%, #0b1d37 100%);
  }

  .store-hero h1,
  html[data-theme="dark"] .store-hero h1,
  html[data-theme="light"] .store-hero h1 {
    max-width: 10ch;
    font-size: clamp(42px, 12vw, 58px);
  }

  .store-hero .store-hero-actions {
    justify-content: stretch;
  }
}

/* Professional content additions */
.case-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card,
.article-card,
.faq-item,
.product-detail-copy,
.invoice-card {
  border: 1px solid rgba(127, 196, 255, 0.2);
  border-radius: 18px;
  background: rgba(14, 38, 73, 0.62);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.case-card,
.article-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.case-card span,
.article-card time,
.article-detail time {
  color: #9dccff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card h3,
.article-card h3,
.article-card h2 {
  margin: 0;
  color: #f3f8ff;
  font-size: 24px;
  line-height: 1.1;
}

.case-card p,
.article-card p,
.faq-item p,
.article-detail p,
.product-detail-copy p {
  color: rgba(226, 238, 255, 0.76);
  line-height: 1.7;
}

.case-card strong {
  color: #b7dcff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  color: #f3f8ff;
  font-weight: 800;
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

.text-link {
  color: #8bc8ff;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: #d8efff;
  text-decoration: underline;
}

.product-actions,
.order-links,
.invoice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-actions .btn {
  min-height: 46px;
  padding-inline: 18px;
}

.brief-upload-field input[type="file"] {
  padding: 14px;
}

.product-detail-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 24px;
  align-items: stretch;
}

.product-detail-visual {
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(127, 196, 255, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 55% 40%, rgba(127, 196, 255, 0.18), transparent 36%),
    rgba(14, 38, 73, 0.72);
}

.product-detail-visual img {
  width: min(86%, 620px);
  max-height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.22));
}

.product-detail-copy {
  padding: clamp(24px, 4vw, 44px);
}

.product-detail-copy h1,
.article-detail h1,
.article-list-section h1 {
  margin: 0 0 14px;
  color: #f7fbff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
}

.detail-specs,
.invoice-meta,
.invoice-totals {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.detail-specs div,
.invoice-meta div,
.invoice-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(127, 196, 255, 0.16);
}

.detail-specs dt,
.invoice-meta dt,
.invoice-totals dt {
  color: rgba(226, 238, 255, 0.64);
  font-weight: 800;
}

.detail-specs dd,
.invoice-meta dd,
.invoice-totals dd {
  margin: 0;
  color: #f3f8ff;
  text-align: right;
  font-weight: 800;
}

.article-detail,
.article-list-section,
.detail-section {
  max-width: 980px;
  margin-inline: auto;
}

.article-detail .article-lead {
  color: #b7dcff;
  font-size: 21px;
}

.invoice-page {
  min-height: 100vh;
  padding: clamp(20px, 4vw, 56px);
  background: #07162b;
}

.invoice-card {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
}

.invoice-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(127, 196, 255, 0.2);
}

.invoice-table {
  display: grid;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid rgba(127, 196, 255, 0.18);
  border-radius: 14px;
}

.invoice-row {
  display: grid;
  grid-template-columns: 1fr 110px 150px;
  gap: 12px;
  padding: 14px 18px;
  color: rgba(226, 238, 255, 0.82);
  border-bottom: 1px solid rgba(127, 196, 255, 0.12);
}

.invoice-row:last-child {
  border-bottom: 0;
}

.invoice-row-head {
  color: #f3f8ff;
  font-weight: 900;
  background: rgba(127, 196, 255, 0.08);
}

.invoice-brief,
.invoice-note {
  margin-top: 24px;
}

.order-status-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 0;
  margin: 12px 0;
  list-style: none;
}

.order-status-steps li {
  padding: 7px 8px;
  border-radius: 999px;
  color: rgba(226, 238, 255, 0.55);
  background: rgba(127, 196, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.order-status-steps li.is-done {
  color: #07162b;
  background: #b7dcff;
}

html[data-theme="light"] .case-card,
html[data-theme="light"] .article-card,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .product-detail-copy,
html[data-theme="light"] .invoice-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(19, 81, 154, 0.16);
}

html[data-theme="light"] .case-card h3,
html[data-theme="light"] .article-card h3,
html[data-theme="light"] .article-card h2,
html[data-theme="light"] .faq-item summary,
html[data-theme="light"] .product-detail-copy h1,
html[data-theme="light"] .article-detail h1,
html[data-theme="light"] .article-list-section h1,
html[data-theme="light"] .detail-specs dd,
html[data-theme="light"] .invoice-meta dd,
html[data-theme="light"] .invoice-totals dd {
  color: #07162b;
}

html[data-theme="light"] .case-card p,
html[data-theme="light"] .article-card p,
html[data-theme="light"] .faq-item p,
html[data-theme="light"] .article-detail p,
html[data-theme="light"] .product-detail-copy p,
html[data-theme="light"] .detail-specs dt,
html[data-theme="light"] .invoice-meta dt,
html[data-theme="light"] .invoice-totals dt {
  color: #52657a;
}

@media print {
  .invoice-page {
    padding: 0;
    background: #fff;
  }

  .invoice-card {
    color: #111;
    border: 0;
    box-shadow: none;
    background: #fff;
  }

  .invoice-actions,
  .floating-whatsapp {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .case-grid,
  .article-grid,
  .product-detail-section {
    grid-template-columns: 1fr;
  }

  .product-detail-visual {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .case-card,
  .article-card,
  .faq-item summary,
  .faq-item p,
  .product-detail-copy,
  .invoice-card {
    padding-inline: 16px;
  }

  .invoice-head,
  .detail-specs div,
  .invoice-meta div,
  .invoice-totals div {
    display: grid;
  }

  .invoice-row {
    grid-template-columns: 1fr;
  }

  .detail-specs dd,
  .invoice-meta dd,
  .invoice-totals dd {
    text-align: left;
  }

  .order-status-steps {
    grid-template-columns: 1fr;
  }
}

.order-voucher-note {
  margin: 8px 0 0;
  color: #8bc8ff;
  font-size: 13px;
  font-weight: 800;
}

html[data-theme="light"] .order-voucher-note {
  color: #1b6fcf;
}

.voucher-input-row {
  min-width: 0;
}

.voucher-input-row input {
  min-width: 0;
}

.discount-total-row.has-discount strong {
  color: #8bc8ff;
}

html[data-theme="light"] .discount-total-row.has-discount strong {
  color: #1b6fcf;
}

@media (max-width: 640px) {
  .voucher-input-row {
    grid-template-columns: 1fr;
  }
}

.product-sales {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(127, 196, 255, 0.24);
  border-radius: 999px;
  color: #d9ecff;
  background: rgba(127, 196, 255, 0.1);
}

.product-sales strong,
.product-sales span {
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.product-sales span {
  color: rgba(226, 238, 255, 0.68);
}

.product-proof {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(127, 196, 255, 0.22);
  border-radius: 999px;
  color: #d9ecff;
  background: rgba(127, 196, 255, 0.08);
}

.product-proof strong {
  display: inline-grid;
  min-width: 38px;
  min-height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #06162a;
  background: #b7dcff;
  font-size: 12px;
  font-weight: 900;
}

.product-proof span {
  color: rgba(226, 238, 255, 0.72);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.product-mini-review {
  margin: 0;
  padding: 11px 13px;
  border-left: 3px solid rgba(139, 200, 255, 0.78);
  border-radius: 14px;
  color: rgba(226, 238, 255, 0.76);
  background: rgba(127, 196, 255, 0.08);
  font-size: 13px;
  line-height: 1.55;
}

.product-mini-review cite {
  display: block;
  margin-top: 5px;
  color: #b7dcff;
  font-style: normal;
  font-weight: 900;
}

.product-proof--detail,
.product-mini-review--detail {
  margin-top: 14px;
}

.sales-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(76, 151, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #07162b 0%, #0b1d37 100%);
}

.sales-heading {
  max-width: 820px;
}

.section-lead {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(226, 238, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.sales-summary-grid,
.sales-product-grid {
  display: grid;
  gap: 16px;
}

.sales-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 18px;
}

.sales-summary-grid div,
.sales-product-card {
  border: 1px solid rgba(127, 196, 255, 0.2);
  border-radius: 18px;
  background: rgba(14, 38, 73, 0.68);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.sales-summary-grid div {
  padding: 20px;
}

.sales-summary-grid strong {
  display: block;
  color: #f7fbff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.sales-summary-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(226, 238, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.sales-product-card {
  display: grid;
  gap: 22px;
  align-content: space-between;
  min-height: 250px;
  padding: 24px;
}

.sales-product-card h3 {
  margin: 14px 0 10px;
  color: #f7fbff;
  font-size: 24px;
}

.sales-product-card p {
  margin: 0;
  color: rgba(226, 238, 255, 0.7);
  line-height: 1.65;
}

.sales-rank {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #07162b;
  background: #b7dcff;
  font-size: 12px;
  font-weight: 900;
}

.sales-card-foot {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(127, 196, 255, 0.16);
}

.sales-card-foot strong {
  color: #8bc8ff;
  font-size: 14px;
}

html[data-theme="light"] .product-sales {
  color: #08386d;
  border-color: rgba(27, 111, 207, 0.18);
  background: rgba(27, 111, 207, 0.08);
}

html[data-theme="light"] .product-sales span {
  color: rgba(8, 56, 109, 0.62);
}

html[data-theme="light"] .product-proof {
  color: #08386d;
  border-color: rgba(27, 111, 207, 0.18);
  background: rgba(27, 111, 207, 0.08);
}

html[data-theme="light"] .product-proof strong {
  color: #ffffff;
  background: #1b6fcf;
}

html[data-theme="light"] .product-proof span {
  color: rgba(8, 56, 109, 0.68);
}

html[data-theme="light"] .product-mini-review {
  color: rgba(8, 56, 109, 0.74);
  border-left-color: rgba(27, 111, 207, 0.7);
  background: rgba(27, 111, 207, 0.06);
}

html[data-theme="light"] .product-mini-review cite {
  color: #1b6fcf;
}

html[data-theme="light"] .sales-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(76, 151, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #f4f9ff 0%, #eaf4ff 100%);
}

html[data-theme="light"] .section-lead,
html[data-theme="light"] .sales-product-card p {
  color: #52657a;
}

html[data-theme="light"] .sales-summary-grid div,
html[data-theme="light"] .sales-product-card {
  border-color: rgba(19, 81, 154, 0.16);
  background: rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .sales-summary-grid strong,
html[data-theme="light"] .sales-product-card h3 {
  color: #07162b;
}

html[data-theme="light"] .sales-summary-grid span {
  color: #60728f;
}

html[data-theme="light"] .sales-card-foot {
  border-top-color: rgba(19, 81, 154, 0.12);
}

html[data-theme="light"] .sales-card-foot strong {
  color: #1b6fcf;
}

@media (max-width: 900px) {
  .sales-summary-grid,
  .sales-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-sales {
    width: 100%;
    justify-content: center;
  }

  .sales-product-card {
    min-height: 0;
    padding: 18px;
  }

  .sales-card-foot {
    display: grid;
  }
}

/* Marketplace-inspired product and checkout flow */
.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.marketplace-product-card {
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(12, 32, 61, 0.92);
  box-shadow: 0 18px 48px rgba(4, 12, 31, 0.22);
}

.marketplace-product-card .product-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.42 / 1;
  padding: 18px;
  background:
    radial-gradient(circle at 78% 16%, rgba(127, 196, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(12, 44, 82, 0.96), rgba(8, 24, 48, 0.96));
}

.marketplace-product-card .product-visual.has-image {
  padding: 10px;
  background:
    radial-gradient(circle at 72% 18%, rgba(127, 196, 255, 0.18), transparent 34%),
    rgba(13, 41, 76, 0.94);
}

.marketplace-product-card .product-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 10px;
  object-fit: cover;
}

.marketplace-product-card .mini-band {
  width: min(86%, 280px);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 9px;
  color: #062044;
  border-radius: 999px;
  background: #b8dcff;
  box-shadow: 0 10px 24px rgba(4, 12, 31, 0.22);
  font-size: 11px;
  font-weight: 900;
}

.marketplace-product-card .product-body {
  gap: 11px;
  padding: 16px;
}

.product-info h3 {
  display: -webkit-box;
  min-height: 2.55em;
  margin-bottom: 8px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 18px;
  line-height: 1.25;
}

.product-info p {
  display: -webkit-box;
  min-height: 3.9em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 13px;
  line-height: 1.3;
}

.marketplace-product-card .product-meta {
  gap: 6px;
}

.marketplace-product-card .product-meta span {
  padding: 6px 8px;
  font-size: 11px;
}

.marketplace-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.marketplace-price-row .price {
  color: #7fc4ff;
  font-size: 22px;
}

.marketplace-sold {
  align-self: center;
  color: rgba(226, 238, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.marketplace-product-card .product-actions {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8px;
}

.marketplace-product-card .product-actions .btn {
  min-width: 0;
  min-height: 42px;
  padding-inline: 10px;
  border-radius: 8px;
  font-size: 13px;
}

.checkout-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(77, 162, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #07162b 0%, #0b1d37 100%);
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 980px;
  margin: -8px 0 22px;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 12px;
  color: rgba(226, 238, 255, 0.72);
  border: 1px solid rgba(127, 196, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 900;
}

.checkout-steps span,
.checkout-card-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #062044;
  border-radius: 999px;
  background: #b8dcff;
  font-size: 13px;
  font-weight: 900;
}

.checkout-steps .is-active {
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.4);
  background: rgba(77, 162, 255, 0.14);
}

.checkout-shell {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 18px;
}

.checkout-main {
  display: grid;
  gap: 16px;
}

.marketplace-checkout-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.checkout-card,
.checkout-summary-card {
  color: #eef6ff;
  border: 1px solid rgba(127, 196, 255, 0.16);
  border-radius: 12px;
  background: rgba(13, 38, 70, 0.82);
  box-shadow: 0 18px 46px rgba(4, 12, 31, 0.2);
}

.checkout-card {
  padding: 20px;
}

.checkout-summary-card {
  top: 112px;
  padding: 20px;
}

.checkout-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.checkout-card-head.compact {
  margin-bottom: 0;
}

.checkout-card-head h3,
.checkout-summary-card h3 {
  margin: 0;
  color: #f4f9ff;
  font-size: 21px;
}

.checkout-card-head .eyebrow,
.checkout-summary-card > .eyebrow {
  margin-bottom: 4px;
}

.checkout-card label,
.checkout-summary-card label {
  color: rgba(226, 238, 255, 0.78);
}

.checkout-card input,
.checkout-card select,
.checkout-card textarea {
  color: #eef6ff;
  border-color: rgba(127, 196, 255, 0.18);
  background: rgba(8, 28, 56, 0.76);
}

.checkout-card input::placeholder,
.checkout-card textarea::placeholder {
  color: rgba(226, 238, 255, 0.46);
}

.checkout-items-card .panel-head {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(127, 196, 255, 0.12);
}

.marketplace-cart-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
}

.cart-thumb {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid rgba(127, 196, 255, 0.16);
  border-radius: 10px;
  background: rgba(8, 28, 56, 0.68);
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-thumb span {
  width: 54px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  transform: rotate(-8deg);
}

.cart-product-copy {
  min-width: 0;
}

.cart-product-copy strong {
  color: #f4f9ff;
}

.cart-line-total {
  color: #8bc8ff;
  white-space: nowrap;
}

.checkout-summary-card .totals {
  gap: 13px;
}

.checkout-summary-card .totals div {
  color: rgba(226, 238, 255, 0.76);
}

.checkout-summary-card .totals strong {
  color: #eef6ff;
}

.checkout-summary-card .grand-total {
  border-top-color: rgba(226, 238, 255, 0.72);
}

.checkout-summary-card .grand-total strong {
  color: #8bc8ff;
  font-size: 24px;
}

.checkout-summary-card .checkout-button,
.marketplace-summary-action {
  width: 100%;
  margin-top: 18px;
}

html[data-theme="light"] .marketplace-product-card,
html[data-theme="light"] .checkout-card,
html[data-theme="light"] .checkout-summary-card {
  color: #0b2142;
  border-color: rgba(19, 81, 154, 0.13);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(11, 33, 66, 0.1);
}

html[data-theme="light"] .checkout-card-head h3,
html[data-theme="light"] .checkout-summary-card h3,
html[data-theme="light"] .cart-product-copy strong {
  color: #0b2142;
}

html[data-theme="light"] .checkout-card label,
html[data-theme="light"] .checkout-summary-card label,
html[data-theme="light"] .checkout-summary-card .totals div,
html[data-theme="light"] .marketplace-sold {
  color: rgba(11, 33, 66, 0.66);
}

html[data-theme="light"] .checkout-card input,
html[data-theme="light"] .checkout-card select,
html[data-theme="light"] .checkout-card textarea {
  color: #0b2142;
  border-color: rgba(19, 81, 154, 0.14);
  background: rgba(244, 249, 255, 0.88);
}

html[data-theme="light"] .checkout-summary-card .totals strong {
  color: #0b2142;
}

html[data-theme="light"] .checkout-steps li {
  color: rgba(11, 33, 66, 0.66);
  border-color: rgba(19, 81, 154, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

html[data-theme="light"] .checkout-steps .is-active {
  color: #0b2142;
  border-color: rgba(27, 111, 207, 0.26);
  background: rgba(77, 162, 255, 0.12);
}

@media (max-width: 980px) {
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .checkout-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-card,
  .checkout-summary-card {
    padding: 16px;
  }

  .marketplace-cart-line {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .cart-thumb {
    width: 58px;
    height: 58px;
  }

  .marketplace-cart-line .qty-control,
  .cart-line-total {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .marketplace-product-card .product-body {
    padding: 11px;
  }

  .product-info h3 {
    min-height: 2.8em;
    font-size: 14px;
  }

  .product-info p,
  .marketplace-product-card .product-meta,
  .product-sales {
    display: none;
  }

  .marketplace-price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .marketplace-price-row .price {
    font-size: 17px;
  }

  .marketplace-sold {
    font-size: 11px;
  }

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

  .checkout-steps li {
    min-height: 42px;
    padding: 8px;
    font-size: 12px;
  }
}

/* Modern catalog polish: square previews, softer corners, and light micro-interactions */
.product-grid {
  align-items: stretch;
}

.product-card,
.marketplace-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease,
    background 300ms ease;
  will-change: transform;
}

.motion-ready .product-card.reveal-on-scroll.is-visible,
.motion-ready .marketplace-product-card.reveal-on-scroll.is-visible {
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease,
    background 300ms ease;
  transition-delay: 0ms;
}

.product-card:hover,
.product-card:focus-within,
.marketplace-product-card:hover,
.marketplace-product-card:focus-within {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(127, 196, 255, 0.36);
  box-shadow:
    0 28px 62px rgba(4, 12, 31, 0.28),
    0 0 0 1px rgba(127, 196, 255, 0.08) inset;
}

.motion-ready .product-card.reveal-on-scroll.is-visible:hover,
.motion-ready .product-card.reveal-on-scroll.is-visible:focus-within,
.motion-ready .marketplace-product-card.reveal-on-scroll.is-visible:hover,
.motion-ready .marketplace-product-card.reveal-on-scroll.is-visible:focus-within {
  transform: translateY(-5px) scale(1.015);
}

.product-visual,
.marketplace-product-card .product-visual,
.product-visual.has-image,
.marketplace-product-card .product-visual.has-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.product-card .product-visual,
.marketplace-product-card .product-visual {
  margin: 10px 10px 0;
}

.product-image,
.product-visual.has-image .product-image,
.marketplace-product-card .product-image,
.marketplace-product-card .product-visual.has-image .product-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  transition:
    transform 300ms ease,
    filter 300ms ease;
}

.product-card:hover .product-image,
.product-card:focus-within .product-image,
.marketplace-product-card:hover .product-image,
.marketplace-product-card:focus-within .product-image {
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.03);
}

.product-card .mini-band,
.marketplace-product-card .mini-band {
  transition: transform 300ms ease, filter 300ms ease;
}

.product-card:hover .mini-band,
.product-card:focus-within .mini-band,
.marketplace-product-card:hover .mini-band,
.marketplace-product-card:focus-within .mini-band {
  transform: rotate(-5deg) scale(1.03);
  filter: drop-shadow(0 18px 28px rgba(4, 12, 31, 0.24));
}

.product-body,
.marketplace-product-card .product-body {
  border-radius: 0 0 18px 18px;
}

.btn,
.product-actions .btn,
.marketplace-product-card .product-actions .btn,
.add-product {
  border-radius: 14px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.btn:hover,
.btn:focus-visible,
.add-product:hover,
.add-product:focus-visible {
  transform: translateY(-2px);
}

.floating-whatsapp {
  isolation: isolate;
  overflow: visible;
  animation: whatsappFloat 3.4s ease-in-out infinite;
}

.floating-whatsapp::before {
  position: absolute;
  inset: -6px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: rgba(127, 196, 255, 0.2);
  opacity: 0.8;
  animation: whatsappPulse 2.4s ease-out infinite;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-5px) scale(1.03);
}

@keyframes whatsappFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.42;
  }
  70%,
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .product-card,
  .marketplace-product-card {
    border-radius: 16px;
  }

  .product-card:hover,
  .product-card:focus-within,
  .marketplace-product-card:hover,
  .marketplace-product-card:focus-within {
    transform: translateY(-2px);
  }

  .product-card .product-visual,
  .marketplace-product-card .product-visual {
    margin: 8px 8px 0;
    border-radius: 14px;
  }

  .floating-whatsapp {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 54px;
    padding: 8px;
  }
}

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-visual,
  .marketplace-product-card .product-visual,
  .product-visual.has-image,
  .marketplace-product-card .product-visual.has-image {
    aspect-ratio: 1 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .marketplace-product-card,
  .product-image,
  .mini-band,
  .btn,
  .floating-whatsapp,
  .floating-whatsapp::before {
    animation: none;
    transition: none;
  }
}

/* Softer typography hierarchy: avoid making every text element bold */
body {
  font-weight: 400;
}

p,
li,
dd,
small,
input,
textarea,
select,
.hero-copy,
.store-hero p:not(.eyebrow),
.company-hero p:not(.eyebrow),
.account-hero p:not(.eyebrow),
.product-info p,
.product-card p,
.marketplace-product-card p,
.product-detail-copy p,
.article-card p,
.faq-item p,
.case-card p,
.checkout-card p,
.checkout-summary-card p,
.cart-product-copy small,
.unit,
.marketplace-sold,
.floating-whatsapp__text small,
.brand small {
  font-weight: 400;
}

.main-nav,
.control-link,
.user-chip,
.header-cart,
.theme-choice,
.product-meta span,
.trust-strip span,
.status-pill,
.eyebrow,
.case-card span,
.article-card time,
.article-detail time,
.product-sales span,
.product-proof span,
.text-link,
label {
  font-weight: 600;
}

.btn,
.product-actions .btn,
.marketplace-product-card .product-actions .btn,
.add-product,
.floating-whatsapp__text strong,
.brand strong,
.product-sales strong,
.product-badge,
.price,
h1,
h2,
h3,
h4,
summary {
  font-weight: 700;
}

.hero h1,
.company-hero h1,
.store-hero h1,
.product-detail-copy h1 {
  font-weight: 700;
}

.product-proof strong {
  font-weight: 650;
}
