﻿/*
Theme Name: Swicthx App Theme
Theme URI: https://aproyalpopstrap.com
Author: AP Royal Pop
Author URI: https://aproyalpopstrap.com
Description: A WooCommerce storefront theme converted from the AP Royal Pop ecommerce prototype.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: swicthxapptheme
Tags: ecommerce, woocommerce, custom-logo, featured-images, block-styles
*/

:root {
  --ink: #061124;
  --ink-2: #0d1d36;
  --ink-3: #112240;
  --panel: #ffffff;
  --surface: #f4f8fb;
  --surface-2: #eaf2f7;
  --line: rgba(7, 28, 54, 0.12);
  --line-strong: rgba(7, 28, 54, 0.22);
  --text: #091426;
  --muted: #607284;
  --muted-2: #8a9eb0;
  --accent: #0b91cc;
  --accent-2: #74e0ff;
  --green: #1b8f75;
  --pink: #d9588b;
  --red: #d64040;
  --shadow: 0 24px 70px rgba(6, 17, 36, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--surface);
}

/* When WP admin bar is present, offset sticky elements */
.admin-bar .site-top {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-top {
    top: 46px;
  }
}

.site-top {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(116, 224, 255, 0.24), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, #eef6fb 42%, #f7fafc 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.announcement-bar {
  position: relative;
  z-index: 200;
  width: 100%;
  padding: 10px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: inline-flex;
  gap: 24px;
  animation: marquee 25s linear infinite;
  transform: translateX(100%);
}

.announcement-track span {
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.store-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

body {
  padding-top: 0;
}

.header-main {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 2fr) 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 16px clamp(18px, 4vw, 48px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #0a1e3d 0%, #061124 60%, #0d2040 100%);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(180, 145, 60, 0.35),
    0 4px 20px rgba(5, 14, 29, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  font-size: 0;
  overflow: hidden;
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180, 145, 60, 0.18) 0%, transparent 55%);
  border-radius: inherit;
}

.brand-mark svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  transition: color 200ms var(--ease);
  z-index: 1000;
  position: relative;
}

.menu-toggle:hover {
  color: var(--accent);
}

.header-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
}

.header-icon-link span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.header-icon-link strong {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
}

.header-icon-link {
  position: relative;
}

.header-icon-link svg {
  width: 22px;
  height: 22px;
}

.search-control {
  position: relative;
  width: 100%;
}

.search-control span,
.select-control span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-control input,
.select-control select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--surface);
  outline: none;
}

.search-control input {
  padding: 0 18px;
}

.search-control input:focus,
.select-control select:focus {
  border-color: rgba(11, 145, 204, 0.55);
  box-shadow: 0 0 0 4px rgba(11, 145, 204, 0.1);
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
}

.header-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 200ms var(--ease);
}

.header-nav a:hover {
  color: var(--accent);
}

.cart-button,
.store-link,
.icon-button {
  cursor: pointer;
}

.icon-button {
  border: 0;
}

.commerce-hero {
  position: relative;
  width: calc(100% - 48px);
  max-width: 1440px;
  height: 65svh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
  background: #061124;
  margin: 24px auto 0;
  border-radius: 16px;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1000ms var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 80%;
  height: 85%;
  object-fit: contain;
  object-position: right center;
  margin-left: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(32px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 80%
  );
  color: #fff;
}

.hero-badge {
  width: fit-content;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(116, 224, 255, 0.4);
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(116, 224, 255, 0.12);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.commerce-hero h1 {
  max-width: 700px;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1;
  color: #fff;
  margin: 0 0 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  max-width: 540px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-price-row strong {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-price-row span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.commerce-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.hero-nav {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  right: clamp(32px, 6vw, 80px);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-nav-dot {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}

.hero-nav-dot.is-active {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.hero-progress {
  display: none;
}

.hero-progress-bar {
  display: none;
}

.eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.6vw, 6.45rem);
  line-height: 0.91;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.button:hover,
.add-button:hover,
.quick-view:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #03111f;
  background: linear-gradient(135deg, #dffbff, #74e0ff 48%, #0b91cc);
  box-shadow: 0 18px 44px rgba(11, 145, 204, 0.24);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(7, 28, 54, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(11, 145, 204, 0.24);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(116, 224, 255, 0.14);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-band p,
.fit-card p {
  color: rgba(244, 251, 255, 0.68);
  line-height: 1.65;
}

.price-row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: start;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(7, 28, 54, 0.1);
  border-radius: 8px;
  background: #fff;
}

.price-row strong {
  color: var(--ink);
  font-size: 2rem;
}

.price-row span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-shell {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px clamp(18px, 4vw, 48px) 80px;
}
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 4vw, 48px);
}

.filter-panel {
  position: sticky;
  top: 140px;
  align-self: start;
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
}

.filter-header h2 {
  font-size: 1.3rem;
  line-height: 1;
}

.filter-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}

.filter-section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.filter-label {
  margin: 0 0 12px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-panel .eyebrow {
  color: var(--accent);
}

.filter-panel h2 {
  font-size: 2.2rem;
  line-height: 1;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 200ms var(--ease);
}

.filter-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-chip.is-active {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.select-control {
  position: relative;
  width: 100%;
}

.select-control select {
  appearance: none;
  padding: 0 42px 0 14px;
  cursor: pointer;
  border-radius: 8px;
  min-height: 40px;
  font-size: 0.85rem;
}

.fit-card {
  padding: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(116, 224, 255, 0.2), transparent 50%),
    var(--ink);
}

.fit-card svg {
  margin-bottom: 10px;
  color: var(--accent-2);
}

.fit-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.fit-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.product-area {
  min-width: 0;
}

.product-toolbar span,
.product-meta span,
.service-band span,
.cart-summary span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.product-toolbar strong {
  font-size: 1.15rem;
}

.product-toolbar a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  background: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 54, 0.07);
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 1px 3px rgba(5, 14, 29, 0.04),
    0 4px 16px rgba(5, 14, 29, 0.05);
  transition:
    box-shadow 360ms var(--ease),
    transform 360ms var(--ease),
    border-color 360ms var(--ease);
}

.product-card:hover {
  box-shadow:
    0 8px 32px rgba(5, 14, 29, 0.1),
    0 24px 64px rgba(5, 14, 29, 0.08);
  transform: translateY(-6px);
  border-color: rgba(10, 142, 199, 0.16);
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  padding: 28px 32px 20px;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(110, 212, 248, 0.09), transparent 65%),
    linear-gradient(160deg, #f9fcff 0%, #edf3f9 100%);
  overflow: hidden;
  position: relative;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 560ms var(--ease), filter 560ms var(--ease);
  filter: drop-shadow(0 6px 18px rgba(5, 14, 29, 0.13));
}

.product-card:hover .product-media img {
  transform: translateY(-7px) scale(1.045);
  filter: drop-shadow(0 18px 36px rgba(5, 14, 29, 0.18));
}

/* ── Product badge (overlay pill on image) ── */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(5, 14, 29, 0.76);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.4;
  pointer-events: none;
}

.product-card[data-badge="Best Seller"] .product-badge {
  background: linear-gradient(135deg, #0a7ab0, #0a8ec7);
  border-color: rgba(110, 212, 248, 0.25);
  color: #fff;
}

.product-card[data-badge="New"] .product-badge {
  background: linear-gradient(135deg, #116a57, #1a8a70);
  border-color: rgba(110, 248, 200, 0.2);
  color: #fff;
}

.product-card[data-badge="Limited"] .product-badge {
  background: linear-gradient(135deg, #9b4c10, #c46318);
  border-color: rgba(248, 180, 110, 0.2);
  color: #fff;
}

.product-card[data-badge="Drop"] .product-badge {
  background: linear-gradient(135deg, #7c1b5e, #a8226e);
  border-color: rgba(248, 110, 200, 0.2);
  color: #fff;
}

.product-card[data-badge="Editorial"] .product-badge {
  background: linear-gradient(135deg, #5a3f9e, #7b57c6);
  border-color: rgba(180, 140, 248, 0.2);
  color: #fff;
}

.product-card[data-badge="Sport"] .product-badge {
  background: linear-gradient(135deg, #2e4a6e, #3a5f8a);
  border-color: rgba(110, 180, 248, 0.2);
  color: #fff;
}

.product-card[data-badge="Core"] .product-badge {
  display: none;
}

.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  padding: 0 20px 20px;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0 10px;
  border-bottom: 1px solid rgba(7, 28, 54, 0.06);
  margin-bottom: 10px;
}

.product-meta span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card h3 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0;
  letter-spacing: -0.01em;
  flex: 1;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card p {
  min-height: 0;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 28, 54, 0.06);
  margin-top: auto;
}

.price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.add-button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink-3) 0%, var(--ink) 100%);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
  box-shadow: 0 2px 10px rgba(5, 14, 29, 0.18);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.add-button:hover {
  background: linear-gradient(135deg, #0a6fa0 0%, #0a8ec7 100%);
  box-shadow: 0 6px 22px rgba(10, 142, 199, 0.38);
  transform: translateY(-2px);
}

.add-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(10, 142, 199, 0.25);
}

/* ── Mobile nav panel internals ── */
.mobile-nav-header,
.mobile-nav-footer {
  display: none;
}

@media (max-width: 1180px) {
  .mobile-nav-header {
    display: flex;
  }

  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
  }
}

.mobile-nav-header {
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  flex-shrink: 0;
}

.mobile-nav-brand {
  gap: 10px;
  text-decoration: none;
}

.mobile-nav-brand .brand-mark {
  width: 36px;
  height: 36px;
}

.mobile-nav-brand .brand-mark svg {
  width: 20px;
  height: 20px;
}

.mobile-nav-brand strong {
  font-size: 0.88rem;
}

.mobile-nav-brand small {
  font-size: 0.65rem;
}

.mobile-nav-close {
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 180ms, border-color 180ms;
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: var(--surface-2);
  border-color: var(--line-strong);
}

.mobile-nav-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  flex-shrink: 0;
}

.mobile-nav-action {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 14px 28px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  border-bottom: 1px solid var(--line) !important;
  min-height: auto !important;
}

.mobile-nav-action:last-child {
  border-bottom: none !important;
}

.mobile-nav-action:hover {
  color: var(--ink) !important;
  background: var(--surface) !important;
}

.mobile-nav-action::after {
  display: none !important;
}

.mobile-cart-count {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ── Reviews ── */
.reviews-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 52px);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 14px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 250ms var(--ease), transform 250ms var(--ease), border-color 250ms;
  box-shadow: 0 2px 12px rgba(5, 14, 29, 0.04);
}

.review-card:hover {
  box-shadow: 0 12px 40px rgba(5, 14, 29, 0.1);
  transform: translateY(-3px);
  border-color: rgba(10, 142, 199, 0.15);
}

.review-card .review-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.review-author strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.review-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

.support-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(18px, 4vw, 48px);
}

.support-header {
  text-align: center;
  margin-bottom: 40px;
}

.support-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 8px;
}

.support-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.support-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.support-card svg {
  color: var(--accent);
  margin-bottom: 14px;
}

.support-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0 0;
}

.faq-section h3 {
  font-size: 1.6rem;
  margin-bottom: 32px;
  text-align: center;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 12px;
  background: #fff;
  transition: box-shadow 200ms var(--ease);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(6, 17, 36, 0.06);
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(11, 145, 204, 0.08);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 4vw, 48px) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 280px;
}

.footer-brand .custom-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.footer-brand .brand strong {
  color: #fff;
  font-size: 1rem;
}

.footer-brand .brand small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  transition: color 200ms;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 24px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 200ms;
}

.footer-social a:hover {
  color: #fff;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  justify-items: end;
  background: rgba(6, 17, 36, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(460px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 22px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 280ms var(--ease);
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.cart-head .eyebrow {
  color: var(--accent);
}

.cart-head h2 {
  font-size: 2.3rem;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface-2);
  font-size: 0.8rem;
  font-weight: 900;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-line img {
  width: 74px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 6px;
  background: var(--surface);
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.cart-empty {
  align-self: center;
  text-align: center;
  color: var(--muted);
}

.cart-empty strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.cart-empty.is-hidden {
  display: none;
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.quick-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: min(640px, calc(100vh - 60px));
  border: 0;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  color: var(--text);
  background: #fff;
  box-shadow: 0 30px 100px rgba(6, 17, 36, 0.28);
  animation: dialogIn 300ms var(--ease);
}

@keyframes dialogIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.quick-dialog::backdrop {
  background: rgba(6, 17, 36, 0.6);
  animation: fadeIn 200ms ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 150ms;
}

.dialog-close:hover {
  background: var(--surface);
}

.dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

.dialog-media {
  display: grid;
  place-items: center;
  min-height: 400px;
  max-height: 580px;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 42%, rgba(116, 224, 255, 0.12), transparent 54%),
    var(--surface);
  overflow: hidden;
}

.dialog-media img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  overflow-y: auto;
}

.dialog-copy .status-pill {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dialog-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin: 0;
}

.dialog-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.dialog-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.dialog-specs span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.dialog-copy .price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 8px;
}

.dialog-copy .price-row strong {
  font-size: 1.6rem;
}

.dialog-copy .price-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.dialog-copy .button-primary {
  margin-top: 4px;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: min(320px, 88vw);
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -8px 0 48px rgba(6, 17, 36, 0.18);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    border-top: none;
    margin: 0;
    max-width: none;
    display: flex;
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }

  .header-nav.is-open {
    transform: translateX(0);
  }

  .header-nav a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 18px 28px;
    border-bottom: 1px solid var(--line);
    min-height: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 180ms, color 180ms;
  }

  .header-nav a::after {
    content: '→';
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0.35;
    transition: opacity 180ms, transform 180ms;
  }

  .header-nav a:hover {
    background: var(--surface);
    color: var(--accent);
  }

  .header-nav a:hover::after {
    opacity: 1;
    transform: translateX(4px);
  }

  /* Overlay backdrop */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(6, 17, 36, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .nav-backdrop.is-open {
    display: block;
  }

  .store-shell {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-main {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-main .search-control {
    grid-column: 1 / -1;
    order: 3;
  }

  .header-actions {
    gap: 14px;
  }

  .header-icon-link span {
    display: none;
  }

  .commerce-hero {
    height: 50svh;
    min-height: 360px;
    max-height: 480px;
    width: calc(100% - 24px);
    border-radius: 12px;
  }

  .hero-slide img {
    width: 60%;
    height: 70%;
    opacity: 0.4;
  }

  .commerce-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-overlay {
    padding: 24px;
    padding-bottom: 60px;
  }

  .hero-nav {
    right: 24px;
    bottom: 20px;
  }

  .hero-price-row strong {
    font-size: 1.5rem;
  }

  .hero-actions,
  .product-toolbar,
  .support-cards,
  .reviews-grid,
  .dialog-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .product-toolbar {
    align-items: stretch;
  }

  .button,
  .product-toolbar a {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .add-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cart-line {
    grid-template-columns: 64px 1fr;
  }

  .qty-control {
    grid-column: 2;
  }

  .dialog-media {
    min-height: 240px;
    max-height: 280px;
    padding: 20px;
  }

  .dialog-copy {
    padding: 24px;
  }

  .quick-dialog {
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
}

/* About page */
.about-hero {
  padding: clamp(60px, 10vw, 120px) clamp(18px, 4vw, 48px);
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(116, 224, 255, 0.08), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(11, 145, 204, 0.06), transparent 40%),
    var(--surface);
}

.about-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 12px 0 20px;
}

.about-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-values {
  padding: clamp(48px, 6vw, 80px) clamp(18px, 4vw, 48px);
  max-width: 1440px;
  margin: 0 auto;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-value {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.about-value-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-value h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.about-value p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.about-story {
  padding: clamp(48px, 6vw, 80px) clamp(18px, 4vw, 48px);
  background: var(--ink);
  color: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

.about-story-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
}

.about-story-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.about-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.4;
}

.about-cta {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
}

.about-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 12px;
}

.about-cta p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 1180px) {
  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-hero {
  padding: clamp(60px, 10vw, 100px) clamp(18px, 4vw, 48px);
  text-align: center;
  background:
    radial-gradient(circle at 60% 30%, rgba(116, 224, 255, 0.06), transparent 40%),
    var(--surface);
}

.contact-hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.contact-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 4vw, 48px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.contact-info-card svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.contact-info-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.contact-form h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: block;
  margin-bottom: 16px;
}

.form-field span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--surface);
  transition: border-color 200ms;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
  text-align: center;
}

.contact-form.is-sent .form-success {
  display: flex;
}

.contact-form.is-sent .form-row,
.contact-form.is-sent .form-field,
.contact-form.is-sent .button,
.contact-form.is-sent h2 {
  display: none;
}

.form-success svg {
  color: #22c55e;
}

.form-success strong {
  font-size: 1.1rem;
}

.form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================= */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 12px 0 8px;
}

.legal-header p {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: 36px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin: 0 0 14px;
}

.legal-content li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--ink);
}

/* Contact page */
.contact-hero {
  padding: clamp(60px, 10vw, 100px) clamp(18px, 4vw, 48px);
  text-align: center;
  background:
    radial-gradient(circle at 60% 30%, rgba(116, 224, 255, 0.06), transparent 40%),
    var(--surface);
}

.contact-hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.contact-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 4vw, 48px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.contact-info-card svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.contact-info-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.contact-form h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-field {
  display: block;
  margin-bottom: 16px;
}

.form-field span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--surface);
  transition: border-color 200ms;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
  text-align: center;
}

.contact-form.is-sent .form-success {
  display: flex;
}

.contact-form.is-sent .form-row,
.contact-form.is-sent .form-field,
.contact-form.is-sent .button,
.contact-form.is-sent h2 {
  display: none;
}

.form-success svg {
  color: #22c55e;
}

.form-success strong {
  font-size: 1.1rem;
}

.form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================= */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 12px 0 8px;
}

.legal-header p {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: 36px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin: 0 0 14px;
}

.legal-content li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--ink);
}

/* Legal pages (Privacy, Terms) */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: 2.2rem;
  margin: 12px 0 8px;
}

.legal-header p {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: 36px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin: 0 0 14px;
}

.legal-content li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--ink);
}

/* Product page */
.product-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px clamp(18px, 4vw, 48px) 80px;
}

.product-page-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.product-page-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  border: 2px solid var(--line);
  padding: 4px;
  cursor: pointer;
  background: #fff;
  transition: border-color 200ms var(--ease);
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--accent);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product-images-grid {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
}

.product-images-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  aspect-ratio: unset;
  opacity: 0;
  transition: opacity 280ms var(--ease);
  pointer-events: none;
}

.product-images-grid img.is-active {
  opacity: 1;
  pointer-events: auto;
}

.product-images-grid img:first-child {
  grid-column: unset;
  aspect-ratio: unset;
}

.product-images-grid img:last-child:nth-child(even) {
  grid-column: unset;
  aspect-ratio: unset;
}

.product-page-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  transition: color 150ms;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.product-page-badge {
  display: inline-block;
  width: fit-content;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-page-info h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin: 0;
}

.product-page-sku {
  font-size: 0.8rem;
  color: var(--muted);
  margin: -8px 0 0;
  letter-spacing: 0.03em;
}

.product-strap-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.28);
  border-radius: 10px;
  color: #92650a;
}

.product-strap-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #b67d0e;
}

.product-strap-notice div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-error {
  background: #fff1f1;
  border: 1px solid #fca5a5;
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 8px;
}

.form-error p {
  margin: 0;
}

.product-strap-notice strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #7a5508;
}

.product-strap-notice span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #a37212;
}

.product-page-summary {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.product-page-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-page-price strong {
  font-size: 2rem;
}

.product-page-price-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-page-specs h3,
.product-page-details h3,
.product-page-colors h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 10px;
}

.product-page-specs ul {
  padding-top: 0;
  border-top: none;
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.product-page-long-desc-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.product-page-long-desc-body p {
  margin: 0 0 12px;
}

.product-page-long-desc-body p:last-child {
  margin-bottom: 0;
}

.product-page-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.product-page-specs li,
.product-page-details li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text);
}

.product-page-swatches {
  display: flex;
  gap: 10px;
}

.product-page-swatches span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: border-color 200ms, transform 200ms;
}

.product-page-swatches span.active,
.product-page-swatches span:hover {
  border-color: var(--accent);
  transform: scale(1.1);
}

.product-page-actions {
  display: flex;
  gap: 12px;
}

.product-page-add {
  flex: 1;
  padding: 16px;
  font-size: 1rem;
}

.product-page-buy {
  flex: 1;
  padding: 16px;
  font-size: 1rem;
  text-align: center;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  transition: background 200ms, color 200ms;
}

.product-page-buy:hover {
  background: var(--ink);
  color: #fff;
}

.out-of-stock-btn {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  border: 2px solid var(--muted) !important;
  color: var(--muted) !important;
  background: transparent !important;
}

.product-page-delivery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.delivery-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.delivery-item div {
  display: flex;
  flex-direction: column;
}

.delivery-item strong {
  font-size: 0.85rem;
  font-weight: 600;
}

.delivery-item span {
  font-size: 0.78rem;
  color: var(--muted);
}

.product-page-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .product-page-grid {
    grid-template-columns: 1fr;
  }

  .product-page-gallery {
    position: static;
    grid-template-columns: 60px 1fr;
  }
}

@media (max-width: 760px) {
  .product-page-gallery {
    grid-template-columns: 1fr;
  }

  .product-thumbs {
    flex-direction: row;
    overflow-x: auto;
  }

  .product-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .product-page-specs ul {
    grid-template-columns: 1fr;
  }

  .product-page-actions {
    flex-direction: column;
  }
}

/* Shop All page */
.shop-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px clamp(18px, 4vw, 48px) 80px;
}

.shop-header {
  text-align: center;
  margin-bottom: 48px;
}

.shop-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.shop-header-eyebrow::before,
.shop-header-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.shop-header-eyebrow::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.shop-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.08;
}

.shop-header-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 auto;
  max-width: 480px;
  line-height: 1.6;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: linear-gradient(160deg, #fafcff, #f4f8fc);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.shop-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 200ms var(--ease);
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active,
.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.shop-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-orderby {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 32px 8px 12px;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}

.shop-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  transition: border-color 200ms;
}

.shop-search:focus-within {
  border-color: var(--accent);
}

.shop-search svg {
  color: var(--muted);
  flex-shrink: 0;
}

.shop-search input {
  border: none;
  outline: none;
  background: none;
  font-size: 0.88rem;
  width: 140px;
  color: var(--text);
}

.shop-sort {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23607284' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.shop-sort:focus {
  border-color: var(--accent);
  outline: none;
}

.shop-results {
  font-size: 0.8rem;
  color: var(--muted-2);
  margin: 0 0 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.shop-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  margin-top: 8px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.shop-card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 400ms var(--ease);
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.05);
}

.shop-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(6, 17, 36, 0.8);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shop-card-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-card-info h3 {
  font-size: 1.05rem;
  margin: 0;
  font-weight: 700;
}

.shop-card-category {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: capitalize;
}

.shop-card-price {
  font-size: 1.1rem;
  margin-top: 6px;
}

.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.shop-empty p {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    gap: 12px;
  }

  .shop-filters {
    justify-content: center;
  }

  .shop-controls {
    justify-content: center;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .shop-card-info {
    padding: 12px 14px;
  }

  .shop-search input {
    width: 100px;
  }
}

/* Checkout page */
.woocommerce-checkout .product-name .product-short-description,
.wc-block-components-order-summary-item__description,
td.product-name .woocommerce-Price-amount + p,
.wc-block-order-summary-item__description {
  display: none;
}

.checkout-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px clamp(18px, 4vw, 48px) 80px;
}

.checkout-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 32px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 36px;
}

.checkout-fieldset {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 28px 24px;
  margin: 0;
}

.fieldset-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 16px;
  padding: 0;
}

.fieldset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fieldset-grid .form-field {
  margin-bottom: 0;
}

.fieldset-grid .full-width {
  grid-column: 1 / -1;
}

.fieldset-grid .shipping-option {
  grid-column: 1 / -1;
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 150ms, background 150ms;
}

.shipping-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(11, 145, 204, 0.04);
}

.shipping-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.shipping-option div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shipping-option div strong {
  font-size: 0.9rem;
}

.shipping-option div span {
  font-size: 0.8rem;
  color: var(--muted);
}

.shipping-price {
  font-size: 0.9rem;
}

.payment-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.payment-icon {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--surface);
}

.checkout-submit {
  width: 100%;
  padding: 18px;
  font-size: 1rem;
  margin-top: 8px;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
}

.secure-note svg {
  flex-shrink: 0;
}

/* Order summary sidebar */
.checkout-summary-col {
  position: sticky;
  top: 100px;
}

.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-summary h2 {
  font-size: 1.1rem;
  margin: 0;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
}

.checkout-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--surface);
}

.checkout-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-item-info strong {
  font-size: 0.85rem;
}

.checkout-item-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

.checkout-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.checkout-item-actions strong {
  font-size: 0.85rem;
}

.checkout-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.checkout-item-remove:hover {
  color: #d64040;
}

.checkout-empty {
  text-align: center;
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-empty a {
  color: var(--accent);
  text-decoration: underline;
}

.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.checkout-total-row span {
  color: var(--muted);
}

.checkout-total-final {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

.checkout-total-final span {
  color: var(--text);
  font-weight: 700;
}

/* Checkout success */
.checkout-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 80px 24px;
  grid-column: 1 / -1;
}

.checkout-success svg {
  color: #22c55e;
}

.checkout-success h2 {
  font-size: 1.8rem;
  margin: 0;
}

.checkout-success p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 400px;
}

.checkout-success .order-number {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.checkout-success .button {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary-col {
    position: static;
    order: -1;
  }
}

@media (max-width: 760px) {
  .fieldset-grid {
    grid-template-columns: 1fr;
  }

  .fieldset-grid .full-width {
    grid-column: 1;
  }
}

/* WordPress and WooCommerce integration */
.custom-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.header-nav .menu-item {
  list-style: none;
}

.header-nav ul,
.footer-col ul {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-card .added_to_cart {
  display: none;
}

.product-card .add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin: 0;
}

.woocommerce .woocommerce-ordering select,
.woo-page select,
.woo-page input.input-text,
.woo-page textarea,
.woo-page .select2-selection {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 36px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  border: 0;
  margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--ink);
  color: #fff;
}

.woo-actions form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.woo-actions .quantity {
  min-height: 52px;
}

.woo-actions .qty {
  width: 76px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  background: #fff;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woo-actions .single_add_to_cart_button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: #03111f;
  background: linear-gradient(135deg, #dffbff, #74e0ff 48%, #0b91cc);
  box-shadow: 0 18px 44px rgba(11, 145, 204, 0.24);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: #03111f;
  background: linear-gradient(135deg, #dffbff, #74e0ff 48%, #0b91cc);
  transform: translateY(-2px);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  max-width: 1200px;
  margin: 24px auto;
  border-top-color: var(--accent);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(6, 17, 36, 0.08);
}

.woocommerce-error {
  border-top-color: var(--red);
}

.woo-page {
  max-width: 1200px;
}

.woo-page h1,
.woo-page h2,
.woo-page h3 {
  color: var(--ink);
}

.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.woocommerce table.shop_table {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-top-color: var(--line);
}

.woocommerce table.shop_table img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface);
}

.woocommerce form .form-row label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  width: 49%;
}

.product-page-details .woocommerce-product-details__short-description,
.product-page-details p {
  color: var(--muted);
  line-height: 1.7;
}

.product-page-specs table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.product-page-specs th,
.product-page-specs td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.product-page-specs th {
  width: 36%;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.shop-grid .product-card {
  height: 100%;
}

.wp-block-image img {
  height: auto;
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: start;
  }

  .search-control {
    order: 3;
  }

  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1,
  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-2 {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .woocommerce-cart-form,
  .cart-collaterals .cart_totals,
  .woocommerce-checkout-review-order,
  .woocommerce-billing-fields,
  .woocommerce-shipping-fields,
  .woocommerce-additional-fields,
  .woocommerce-MyAccount-navigation,
  .woocommerce-MyAccount-content {
    padding: 16px;
  }

  .woo-actions form.cart {
    flex-direction: column;
  }

  .woo-actions .qty,
  .woo-actions .single_add_to_cart_button {
    width: 100%;
  }
}

/* WooCommerce shop page container */
.woo-page {
  max-width: 1380px;
  margin: 0 auto;
  padding: 32px clamp(18px, 4vw, 48px);
}

.woo-container .woocommerce,
.woo-container,
.woo-page {
  text-align: left !important;
}

.woo-container .woocommerce {
  max-width: 100%;
}

.woo-container .woocommerce ul.products {
  justify-content: start !important;
}

.woo-container .woocommerce .woocommerce-result-count,
.woo-container .woocommerce .woocommerce-ordering {
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--muted, #6b7c93);
}

.woo-container .woocommerce .woocommerce-ordering select {
  padding: 8px 16px;
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 8px;
  font-size: 0.85rem;
  background: #fff;
}

/* WooCommerce Shop Archive - 4 column grid matching prototype */
.woo-container .woocommerce ul.products,
.woocommerce-page ul.products,
.woocommerce ul.products,
body.woocommerce ul.products,
body.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  list-style: none !important;
  place-items: start start !important;
  justify-content: start !important;
  text-align: left !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 200ms ease;
  justify-self: start !important;
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0 16px;
  margin: 8px 0 4px;
}

.woocommerce ul.products li.product .price {
  padding: 0 16px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink, #061124);
}

.woocommerce ul.products li.product .button {
  display: block;
  margin: 0 16px 16px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--accent, #0b91cc);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.woocommerce ul.products li.product .button:hover {
  background: #0978a8;
}

@media (max-width: 900px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}



/* Prototype product page WooCommerce overrides */
.product-page-actions.woo-actions {
  align-items: stretch;
}

.product-page-actions.woo-actions form.cart {
  flex: 1 1 0;
  margin: 0;
  width: 100%;
}

.product-page-actions.woo-actions .quantity {
  display: none;
}

.product-page-actions.woo-actions .single_add_to_cart_button,
.product-page-actions.woo-actions .product-page-buy {
  width: 100%;
  min-height: 56px;
  border-radius: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.product-page-actions.woo-actions .product-page-buy {
  flex: 1 1 0;
  box-shadow: none;
}

.product-page-colors {
  margin-top: -2px;
}

.product-page-details > p {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.32);
}

.product-page-details > p + p {
  margin-top: 8px;
}

/* Product page reference button colors */
.product-page-actions.woo-actions .single_add_to_cart_button {
  border: 0;
  color: #03111f;
  background: linear-gradient(135deg, #c7f8ff 0%, #74e0ff 46%, #0b91cc 100%);
  box-shadow: 0 18px 44px rgba(11, 145, 204, 0.24);
}

.product-page-actions.woo-actions .product-page-buy {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.product-page-actions.woo-actions .product-page-buy:hover {
  color: #fff;
  background: var(--ink);
}

/* Product page two-button row */
.product-page-actions.woo-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.product-page-actions.woo-actions .product-page-add-form,
.product-page-actions.woo-actions .product-page-buy {
  flex: 1 1 0;
}

.product-page-actions.woo-actions .product-page-add-form {
  margin: 0;
}

.product-page-actions.woo-actions .quantity {
  display: none;
}

.product-page-actions.woo-actions .single_add_to_cart_button,
.product-page-actions.woo-actions .product-page-buy {
  width: 100%;
  min-height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-page-actions.woo-actions .single_add_to_cart_button {
  border: 0;
  color: #03111f;
  background: linear-gradient(135deg, #c7f8ff 0%, #74e0ff 46%, #0b91cc 100%);
  box-shadow: 0 18px 44px rgba(11, 145, 204, 0.24);
}

.product-page-actions.woo-actions .product-page-buy {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

/* ── Variable product: variation selector ── */

.product-page-info .variations {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 16px;
}

.product-page-info .variations tr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-page-info .variations .label {
  padding: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
}

.product-page-info .variations .value {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-page-info .variations select {
  -webkit-appearance: none;
  appearance: none;
  padding: 10px 36px 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  min-width: 160px;
  color: var(--ink);
}

.product-page-info .variations select:focus {
  outline: none;
  border-color: #74e0ff;
  box-shadow: 0 0 0 3px rgba(116, 224, 255, 0.18);
}

.product-page-info .reset_variations {
  font-size: 0.78rem;
  color: #888;
  text-decoration: none;
  opacity: 0.6;
  visibility: hidden;
}

.product-page-info .reset_variations[style*="visibility: visible"],
.product-page-info .reset_variations[style*="visibility:visible"] {
  opacity: 1;
}

/* Hide the repeated variation price (already shown above) */
.woocommerce-variation-price {
  display: none !important;
}

/* Variable product actions: stack variation row then button row */
.product-page-actions.woo-actions:has(.variations_form) {
  flex-direction: column;
  align-items: stretch;
}

.product-page-actions.woo-actions:has(.variations_form) form.cart {
  flex: none;
  width: 100%;
}

/* Hide the top-level buy-now — JS moves it into .woocommerce-variation-add-to-cart */
.product-page-actions.woo-actions:has(.variations_form) > .product-page-buy {
  display: none;
}

/* Button row inside variation form */
.woocommerce-variation-add-to-cart {
  display: flex;
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

.woocommerce-variation-add-to-cart .quantity {
  display: none;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button,
.product-page-actions.woo-actions .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  flex: 1;
  min-height: 56px;
  border-radius: 12px;
  border: 0;
  color: #03111f;
  background: linear-gradient(135deg, #c7f8ff 0%, #74e0ff 46%, #0b91cc 100%);
  box-shadow: 0 18px 44px rgba(11, 145, 204, 0.24);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button:disabled,
.woocommerce-variation-add-to-cart .single_add_to_cart_button.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Buy Now after JS moves it into the variation row */
.woocommerce-variation-add-to-cart .product-page-buy {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
}

.woocommerce-variation-add-to-cart .product-page-buy:hover {
  color: #fff;
  background: var(--ink);
}

/* WooCommerce cart drawer behavior */
.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-drawer-open {
  overflow: hidden;
}

.cart-panel {
  position: relative;
  z-index: 1;
  grid-template-rows: auto minmax(0, 1fr);
}

.cart-head h2 {
  margin: 12px 0 0;
}

[data-cart-drawer-content] {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
}

.qty-control a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-weight: 700;
}

.cart-summary .checkout-submit {
  width: 100%;
  margin-top: 4px;
  text-align: center;
}

/* Compact reference cart drawer layout */
.cart-panel {
  width: min(436px, calc(100vw - 60px));
  padding: 22px 24px;
  gap: 18px;
}

.cart-head {
  align-items: flex-start;
}

.cart-head .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.cart-head h2 {
  margin: 12px 0 0;
  font-size: 2.25rem;
  line-height: 1;
}

.cart-items {
  gap: 12px;
}

.cart-line {
  grid-template-columns: 74px minmax(0, 1fr) 92px;
  gap: 12px;
  min-height: 96px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.cart-line img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 6px;
}

.cart-line strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.cart-line span {
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.25;
}

.cart-line-price,
.cart-line-price .woocommerce-Price-amount,
.cart-line-price bdi {
  display: inline;
  white-space: nowrap;
}

.qty-control {
  justify-content: flex-end;
  gap: 8px;
}

.qty-control a {
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
  text-decoration: none;
}

.qty-control strong {
  min-width: 18px;
  text-align: center;
}

.cart-summary {
  gap: 15px;
  padding-top: 16px;
}

.cart-summary div {
  align-items: baseline;
}

.cart-summary span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.cart-summary strong {
  text-align: right;
}

.cart-summary .checkout-submit {
  min-height: 56px;
  border-radius: 999px;
  margin-top: 2px;
}

@media (max-width: 520px) {
  .cart-panel {
    width: 100%;
  }
}

/* Final cart drawer polish */
.cart-panel {
  padding-top: 34px;
}

.cart-line-image {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: var(--surface);
}

.cart-line-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line-price,
.cart-line-price *,
.cart-line-price .woocommerce-Price-amount,
.cart-line-price .woocommerce-Price-amount *,
.cart-line-price bdi {
  display: inline !important;
  white-space: nowrap;
}

.cart-line-price {
  line-height: 1.25;
}

/* Order summary - remove all bold from numbers */
.checkout-page .wc-block-components-order-summary strong,
.checkout-page .wc-block-components-order-summary b,
.checkout-page .wc-block-components-totals strong,
.checkout-page .wc-block-components-totals b,
.checkout-page .wc-block-components-product-name,
.checkout-page .wc-block-components-order-summary-item__total-price,
.checkout-page .wc-block-components-order-summary-item__individual-prices,
.checkout-page .wc-block-components-totals-item__value,
.checkout-page .wc-block-components-totals-footer-item,
.checkout-page .wc-block-components-order-summary-item *,
.checkout-page .wc-block-components-totals-wrapper *,
.checkout-page .wp-block-woocommerce-checkout-order-summary-block strong,
.checkout-page .wp-block-woocommerce-checkout-order-summary-block b,
.checkout-page .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name,
.checkout-page .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item__total-price,
.checkout-page .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item__value,
.checkout-page .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-footer-item {
  font-weight: 400 !important;
}

/* Place Order button - match Continue to Checkout button */
.checkout-page #place_order,
.checkout-page .wc-block-components-checkout-place-order-button,
.checkout-page .wc-block-components-button:not(.is-link),
.woocommerce-checkout-page #place_order,
.woocommerce-checkout-page .wc-block-components-checkout-place-order-button,
.woocommerce-checkout-page .wc-block-components-button:not(.is-link) {
  color: #03111f !important;
  background: linear-gradient(135deg, #c8f5ff 0%, #6ed4f8 40%, #0a8ec7 100%) !important;
  box-shadow: 0 6px 24px rgba(10, 142, 199, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25) inset !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.checkout-page #place_order:hover,
.checkout-page .wc-block-components-checkout-place-order-button:hover,
.checkout-page .wc-block-components-button:not(.is-link):hover,
.woocommerce-checkout-page #place_order:hover,
.woocommerce-checkout-page .wc-block-components-checkout-place-order-button:hover,
.woocommerce-checkout-page .wc-block-components-button:not(.is-link):hover {
  box-shadow: 0 12px 36px rgba(10, 142, 199, 0.45), 0 1px 0 rgba(255, 255, 255, 0.25) inset !important;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-hero {
  padding: clamp(60px, 10vw, 120px) clamp(18px, 4vw, 48px);
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(110, 212, 248, 0.07), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(10, 142, 199, 0.05), transparent 40%),
    var(--surface);
}

.about-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 12px 0 20px;
}

.about-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-values {
  padding: clamp(48px, 6vw, 80px) clamp(18px, 4vw, 48px);
  max-width: 1440px;
  margin: 0 auto;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-value {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.about-value-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-value h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.about-value p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.about-story {
  padding: clamp(48px, 6vw, 80px) clamp(18px, 4vw, 48px);
  background: var(--ink);
  color: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

.about-story-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
}

.about-story-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.about-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.4;
}

.about-cta {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
}

.about-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 12px;
}

.about-cta p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 1180px) {
  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-hero {
  padding: clamp(60px, 10vw, 100px) clamp(18px, 4vw, 48px);
  text-align: center;
  background:
    radial-gradient(circle at 60% 30%, rgba(116, 224, 255, 0.06), transparent 40%),
    var(--surface);
}

.contact-hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.contact-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 4vw, 48px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.contact-info-card svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.contact-info-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.contact-form h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: block;
  margin-bottom: 16px;
}

.form-field span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--surface);
  transition: border-color 200ms;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
  text-align: center;
}

.contact-form.is-sent .form-success {
  display: flex;
}

.contact-form.is-sent .form-row,
.contact-form.is-sent .form-field,
.contact-form.is-sent .button,
.contact-form.is-sent h2 {
  display: none;
}

.form-success svg {
  color: #22c55e;
}

.form-success strong {
  font-size: 1.1rem;
}

.form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================= */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 12px 0 8px;
}

.legal-header p {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: 36px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin: 0 0 14px;
}

.legal-content li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--ink);
}

