/*
Theme Name: FA Cellular
Theme URI: https://example.com/
Author: FA Cellular
Author URI: https://example.com/
Description: Certified pre-owned electronics marketplace theme — buy, sell, and trade in iPhone, Samsung Galaxy, Google Pixel, iPad and MacBook devices.
Version: 1.0.81
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: fa-cellular
*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #121214;
  --ink-soft: #5B5D63;
  --paper: #FAFAFA;
  --surface: #FFFFFF;
  --line: #E7E7E9;
  --line-soft: #F1F1F2;

  
  --gold: #F3CA0B;
  --gold-ink: #866F06;
  --gold-tint: #FEF8E1;

  --red: #D6394D;
  --red-tint: #FCEAED;

  
  --blue: var(--gold);
  --blue-ink: var(--gold-ink);
  --blue-tint: var(--gold-tint);
  --blue-tint-2: #FBEFB7;
  --green: var(--gold);
  --green-tint: var(--gold-tint);
  --gold-legacy-star: #E8A93A;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 20px;
  --radius-pill: 8px;
  --shadow-card: 0 1px 2px rgba(18, 18, 20, .04), 0 8px 24px -12px rgba(18, 18, 20, .14);
  --shadow-pop: 0 12px 40px -12px rgba(18, 18, 20, .22);
  --shadow-gold: 0 14px 30px -14px rgba(243, 202, 11, .55);
  --container: 1240px;
  --font-display: 'Jost', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Inter', sans-serif;
}

.text-accent {
  color: var(--gold-ink);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  
  max-width: 100vw;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select {
  font-family: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -.01em;
}

p {
  margin: 0;
}

.i svg {
  width: auto;
  height: 100%;
  display: block;
}

.i {
  display: inline-flex;
  height: 18px;
  width: auto;
  flex: none;
}

:focus-visible {
  outline: 2px solid var(--gold-ink);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 52px 0;
}

.section--tight {
  padding: 34px 0;
}

.section-tint {
  background: var(--gold-tint);
}

@media (max-width:720px) {
  .section {
    padding: 40px 0;
  }

  .wrap {
    padding: 0 18px;
  }
}


.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow.green {
  color: var(--gold-ink);
}

.eyebrow--on-dark {
  color: var(--gold);
}

.h-xl {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
}

.h-lg {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
}

.h-md {
  font-size: 22px;
  font-weight: 600;
}

.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
}

.muted {
  color: var(--ink-soft);
}

.mono {
  font-family: var(--font-mono);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(.97);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: #E0A700;
  box-shadow: 0 18px 36px -14px rgba(243, 202, 11, .65);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

.btn-green {
  background: var(--gold);
  color: var(--ink);
}

.btn-green:hover {
  background: #E0A700;
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: .45;
  pointer-events: none;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1.5px solid var(--line);
  position: relative;
  flex: none;
}

.icon-btn:hover {
  border-color: var(--ink);
}


.announce {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-family: var(--font-mono);
  padding: 9px 16px;
  letter-spacing: .02em;
  font-weight: 600;
}

.announce a {
  text-decoration: underline;
  text-underline-offset: 3px;
}


#site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header {
  background: #000;
  border-bottom: 1px solid #232326;
  color: #fff;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex: none;
}

.logo img {
  height: 58px;
  width: auto;
  border-radius: var(--radius-s);
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.main-nav>a,
.nav-item {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14.5px;
  color: #D6D6D9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.main-nav>a:hover,
.nav-item:hover {
  color: #fff;
}

.main-nav>a.current {
  color: var(--gold);
  font-weight: 600;
  background: rgba(243, 202, 11, .12);
}

.nav-item {
  cursor: pointer;
}

.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-pop);
  padding: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .15s ease;
}

.has-drop:hover .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-s);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}

.nav-drop a:hover {
  background: var(--paper);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: none;
}

.header-search-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #333336;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.header-search-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.header-search.open .header-search-toggle {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(243, 202, 11, .12);
}

.header-search-form {
  display: flex;
  align-items: center;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width .22s ease, opacity .18s ease, margin .22s ease;
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: var(--radius-s);
  margin-left: 0;
}

.header-search.open .header-search-form {
  width: 240px;
  opacity: 1;
  margin-left: 8px;
  border-color: var(--line);
}

.header-search-form-icon {
  display: flex;
  align-items: center;
  padding-left: 12px;
  color: var(--ink-soft);
  flex: none;
}

.header-search-form-icon .i {
  height: 14px;
}

.header-search-form input {
  border: none;
  outline: none;
  background: transparent;
  padding: 9px 8px;
  font-size: 13.5px;
  width: 100%;
  min-width: 0;
  color: var(--ink);
}

.header-search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background: none;
  border: none;
  color: var(--ink-soft);
  flex: none;
}

.header-search-close .i {
  height: 12px;
}

.header-search-close:hover {
  color: var(--red);
}

.header-search-results {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 320px;
  max-height: 420px;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-pop);
  padding: 8px;
  z-index: 70;
  display: none;
  color: var(--ink);
}

.header-search.open.has-results .header-search-results {
  display: block;
}

.search-result-item {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-s);
  align-items: center;
}

.search-result-item:hover {
  background: var(--gold-tint);
}

.search-result-media {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #F2F2F0;
  flex: none;
}

.search-result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.search-result-name {
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-conditions {
  font-size: 9.5px;
  color: var(--gold-ink);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .03em;
  flex: none;
}

.search-result-price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  margin-top: 2px;
}

.search-result-empty {
  padding: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.header-actions .icon-btn {
  background: transparent;
  border-color: #333336;
  color: #fff;
}

.header-actions .icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
}

.burger {
  display: none;
}


.mini-cart-wrap {
  position: relative;
}

.mini-cart-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 340px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-pop);
  padding: 14px;
  z-index: 70;
  display: none;
}

.mini-cart-wrap.open .mini-cart-panel {
  display: block;
}

.mini-cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
  overflow-y: auto;
}

.mini-cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-cart-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: #F2F2F0;
  flex: none;
}

.mini-cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mini-cart-item-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-cart-item-meta {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.mini-cart-item-price {
  font-family: var(--font-mono);
  font-size: 13px;
  flex: none;
}

.mini-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
}

.mini-cart-total b {
  font-family: var(--font-mono);
}

.mini-cart-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.mini-cart-empty {
  text-align: center;
  padding: 20px 10px;
}

.mini-cart-empty .i {
  width: 32px;
  height: 32px;
  color: var(--line);
  margin: 0 auto 10px;
}

.mini-cart-empty p {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-bottom: 14px;
}


.account-wrap {
  position: relative;
}

.account-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 300px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-pop);
  padding: 16px;
  z-index: 70;
  display: none;
}

.account-wrap.open .account-panel {
  display: block;
}

.account-panel-in {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-greeting {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.account-panel-in a {
  padding: 8px 0;
  font-size: 13.5px;
  border-top: 1px solid var(--line);
}

.account-panel-in a:first-of-type {
  border-top: none;
}

.account-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.account-tab {
  flex: 1;
  padding: 8px 4px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  font-family: inherit;
}

.account-tab.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-lost {
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
}


.account-page .u-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.account-page .u-column1,
.account-page .u-column2 {
  flex: 1 1 240px;
  width: auto;
  float: none;
}

.account-page .woocommerce-form-login,
.account-page .woocommerce-form-register,
.account-page .woocommerce-EditAccountForm,
.account-page .woocommerce-Address-title,
.account-page .woocommerce-form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.account-page .form-row {
  margin: 0;
}

.account-page .form-row label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: var(--font-mono);
  margin-bottom: 7px;
}

.account-page .woocommerce-Input,
.account-page input.input-text,
.account-page textarea,
.account-page select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  background: var(--surface);
  outline: none;
  font-family: inherit;
}

.account-page .woocommerce-Input:focus,
.account-page input.input-text:focus {
  border-color: var(--gold);
}

.account-page .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.account-page .woocommerce-Button,
.account-page button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 600;
  background: var(--ink);
  color: var(--surface);
  cursor: pointer;
}

.account-page .woocommerce-Button:hover,
.account-page button[type="submit"]:hover {
  opacity: .9;
}

.account-page .woocommerce-LostPassword {
  font-size: 12.5px;
  margin-top: 4px;
}


.account-page .woocommerce-MyAccount-navigation,
.account-page .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
}


.account-page--dashboard .woocommerce {
  display: grid;
  grid-template-columns: 232px 1fr;
  align-items: start;
}


.account-page--dashboard .woocommerce::before,
.account-page--dashboard .woocommerce::after {
  content: none;
}

.account-sidebar {
  border-right: 1px solid var(--line);
  padding-right: 28px;
}

.account-page--dashboard .woocommerce-MyAccount-content {
  padding-left: 36px;
  min-width: 0; 
}

.account-greeting {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.account-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  overflow: hidden;
  flex: none;
}

.account-greeting b {
  display: block;
  font-size: 14.5px;
}

.account-greeting span {
  display: block;
  margin-top: 1px;
  font-size: 12.5px;
  color: var(--ink-soft);
  word-break: break-all;
}

@media (max-width: 780px) {
  .account-page--dashboard .woocommerce {
    grid-template-columns: 1fr;
  }
  .account-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 24px;
  }
  .account-page--dashboard .woocommerce-MyAccount-content {
    padding-left: 0;
  }
}

.account-page .woocommerce-MyAccount-navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
}

.account-page .woocommerce-MyAccount-navigation-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.account-page .woocommerce-MyAccount-navigation-link a .i {
  width: 16px;
  height: 16px;
  flex: none;
  color: inherit;
}

.account-page .woocommerce-MyAccount-navigation-link a:hover {
  background: var(--bg, #F7F6F3);
  color: var(--ink);
}

.account-page .woocommerce-MyAccount-navigation-link.is-active a {
  color: var(--ink);
  background: var(--gold);
}

.account-page .woocommerce-MyAccount-content {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.account-page .woocommerce-MyAccount-content > p:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.account-page .woocommerce-MyAccount-content a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}

.account-page .woocommerce-MyAccount-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.account-page .woocommerce-MyAccount-content th,
.account-page .woocommerce-MyAccount-content td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.account-page fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 16px;
  margin: 8px 0 0;
}

.account-page fieldset legend {
  font-size: 13px;
  font-weight: 600;
  padding: 0 6px;
}


.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-row .i {
  color: var(--gold-ink);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-row b {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-info-row p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.contact-info-row a {
  color: var(--ink-soft);
}

.contact-info-row a:hover {
  color: var(--gold-ink);
}

@media (max-width: 780px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


.faq-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-group-title .i {
  color: var(--gold-ink);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  margin: 0 0 16px;
  max-width: 520px;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 14px;
}

.search-bar .i {
  color: var(--ink-soft);
}

.search-bar--lg {
  max-width: none;
  padding: 15px 22px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}
.search-bar--lg input {
  font-size: 16px;
}
.search-bar--lg .i {
  width: 19px;
  height: 19px;
}

@media (max-width:980px) {
  .main-nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  
  .header-search {
    margin-left: auto;
  }
  .header-search.open {
    position: static;
  }

  .header-search.open .header-search-form {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    margin: 0;
    padding: 12px 16px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px -14px rgba(0, 0, 0, .3);
    z-index: 65;
  }

  .header-search-results {
    position: absolute;
    top: calc(100% + 58px);
    left: 0;
    right: 0;
    width: auto;
    border-radius: 0;
    border: none;
    max-height: 60vh;
  }

  .mini-cart-panel {
    width: 300px;
  }

  button#headerSearchToggle {
    margin-right: -18px;
  }
}

@media (max-width:560px) {
  .header-actions {
    gap: 8px;
  }

  .icon-btn,
  .header-search-toggle {
    width: 38px;
    height: 38px;
  }

  .logo img {
    height: 46px;
  }

  .mini-cart-panel {
    width: 90vw;
    right: -50px;
  }
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, .55);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
}

.drawer-scrim.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: var(--surface);
  z-index: 95;
  transform: translateX(100%);
  transition: .25s ease;
  padding: 22px;
  overflow-y: auto;
}

.drawer .logo {
  color: var(--ink);
}

.drawer.open {
  transform: translateX(0);
}

.drawer a,
.drawer .d-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
  color: var(--ink);
}


.drawer .d-item {
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.drawer .d-item .i {
  transition: transform .2s ease;
  color: var(--ink-soft);
}

.drawer .d-item.open .i {
  transform: rotate(180deg);
}

.drawer .d-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.drawer .d-sub.open {
  
  max-height: 320px;
}

.drawer .d-sub a {
  padding: 11px 4px 11px 14px;
  font-weight: 400;
  color: var(--ink-soft);
  border: none;
}
.hero {
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  background: var(--surface);
  border-radius: var(--radius-l);
  padding: 40px;
  box-shadow: var(--shadow-pop);
}

.hero-copy .h-xl {
  margin: 14px 0 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats b {
  font-family: var(--font-mono);
  font-size: 22px;
}

.hero-stats span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.hero-media {
  position: relative;
}

.hero-media .frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/3.1;
  position: relative;
  background: var(--ink);
  box-shadow: var(--shadow-pop);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0) 45%, rgba(18, 18, 20, .5));
}

.float-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-pop);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.float-card--stamp {
  top: -18px;
  left: -18px;
}

.float-card--price {
  bottom: -20px;
  right: -16px;
}
.hero-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  
  height: 640px;
}

.hero-banner .swiper-slide {
  display: flex;
  align-items: center;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: opacity .5s ease;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(12, 12, 14, .6) 0%, rgba(12, 12, 14, .2) 42%, rgba(12, 12, 14, 0) 62%);
}

.hero-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-pop);
  padding: 40px;
  max-width: 480px;
  transition: opacity .35s ease, transform .35s ease;
}

.hero-card .eyebrow {
  gap: 6px;
}

.hero-card .eyebrow .i {
  width: 14px;
  height: 14px;
}

.hero-card .h-xl {
  margin: 14px 0 16px;
}

.hero-card .h-xl span {
  display: block;
}

.hero-banner .float-card--price {
  position: absolute;
  bottom: 90px;
  right: 44px;
  transition: opacity .35s ease, transform .35s ease;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.hero-nav-btn {
  background: none;
  border: none;
  padding: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  transition: .2s ease;
}

.hero-nav-btn:hover {
  color: #fff;
}

.hero-nav-btn .i {
  width: 18px;
  height: 18px;
}


.hero-dots.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.hero-dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  opacity: 1;
  margin: 0;
  cursor: pointer;
  transition: .2s ease;
}

.hero-dots .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

@media (max-width:900px) {
  .hero-banner {
    height: 720px;
  }

  
  .hero-banner .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }

  .hero-banner::after {
    display: block;
    background: linear-gradient(0deg, rgba(12, 12, 14, .65) 0%, rgba(12, 12, 14, 0) 26%);
  }

  .hero-banner-inner {
    margin-bottom: 64px;
  }

  .hero-card {
    max-width: none;
    border-radius: var(--radius-l) var(--radius-l) 0 0;
    box-shadow: 0 -14px 32px -12px rgba(0, 0, 0, .28);
  }

  .hero-banner .float-card--price {
    display: none;
  }
}

@media (max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .float-card {
    display: none;
  }

  .hero-copy {
    padding: 28px;
  }
}

@media (max-width:480px) {
  .hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: space-between;
  }

  .hero-stats div {
    min-width: 0;
  }

  .hero-stats b {
    font-size: 17px;
  }

  .hero-stats span {
    font-size: 11px;
  }
}
.stamp {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-m);
  border: 2px solid var(--gold);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 4px 14px -6px rgba(243, 202, 11, .5);
  font-size: 0;
}

.stamp::after {
  content: "\2713";
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--gold-ink);
}
.stamp-sm {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-s);
  border: 2px solid var(--gold);
  background: #fff;
  font-size: 0;
  box-shadow: 0 3px 10px -5px rgba(243, 202, 11, .45);
}

.stamp-sm::after {
  content: "\2713";
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--gold-ink);
}
.trust-strip {
  background: var(--gold);
  overflow: hidden;
}


.trust-strip .swiper-wrapper {
  transition-timing-function: linear !important; 
}

.swiper-slide.trust-item {
  
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  width: auto;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.trust-item .i {
  width: 20px;
  height: 20px;
  color: var(--ink);
}


.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-l);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  min-height: 210px;
  padding: 22px;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .5s ease;
}

.cat-card:hover img {
  transform: scale(1.07);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0) 25%, rgba(18, 18, 20, .88) 100%);
}

.cat-card.cat-card--cta {
  background: var(--ink);
  justify-content: center;
  gap: 12px;
  position: relative;
}

.cat-card.cat-card--cta::after {
  display: none;
}

.cat-card.cat-card--cta::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -50px;
  top: -60px;
  background: rgba(243, 202, 11, .15);
}

.cat-card.cat-card--cta .i {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.cat-card .i {
  width: 24px;
  height: 24px;
  color: #fff;
  opacity: .95;
}

.cat-card h3 {
  font-size: 20px;
  color: #fff;
}

.cat-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, .88);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.cat-card-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex: none;
}

.cat-card-arrow .i {
  color: var(--ink);
  width: 16px;
  height: 16px;
}

@media (max-width:900px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:600px) {
  .cat-grid {
    display:flex;
    flex-direction:column
  }
}


.grid-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 8px 15px;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.chip:hover {
  border-color: var(--ink);
}

.select-mini {
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width:1080px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:760px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.pcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .22s ease;
  position: relative;
  padding: 10px 10px 0;
}

.pcard:hover {
  box-shadow: var(--shadow-pop);
  transform: translateY(-4px);
  border-color: transparent;
}

.pcard-media {
  aspect-ratio: 1/.92;
  position: relative;
  overflow: hidden;
  background: #F2F2F0;
  border-radius: var(--radius-s);
}

.pcard-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .35s ease;
}
.pcard-media .pcard-img--hover {
  opacity: 0;
}

.pcard:hover .pcard-media .pcard-img--base {
  opacity: 0;
}

.pcard:hover .pcard-media .pcard-img--hover {
  opacity: 1;
}

.pcard:hover .pcard-media img {
  transform: scale(1.06);
}

.pcard-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-s);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pcard-stamp {
  position: absolute;
  top: 8px;
  right: 8px;
}


.pcard.is-out-of-stock .pcard-media img {
  filter: grayscale(0.85) opacity(0.55);
}

.pcard-oos-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(18, 18, 20, .84);
  backdrop-filter: blur(3px);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-family: var(--font-mono);
}

.pcard.is-out-of-stock .pcard-cta {
  opacity: .45;
  pointer-events: none;
}

.pcard-body {
  padding: 15px 6px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pcard-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pcard-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}


.pcard-grade {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 3px 9px;
  border-radius: var(--radius-s);
  font-family: var(--font-mono);
}
.pcard-grade--excellent { background: var(--gold); color: var(--ink); }
.pcard-grade--good { background: var(--gold-tint); color: var(--gold-ink); }
.pcard-grade--fair { background: var(--paper); color: var(--ink-soft); border: 1px solid var(--line); }
.pcard-grade--c { background: var(--paper); color: var(--ink-soft); border: 1px dashed var(--line); }

.pcard-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.pcard-rating .i {
  width: 13px;
  height: 13px;
  color: var(--gold-legacy-star);
}

.pcard-price-row {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pcard-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pcard-price b {
  font-family: var(--font-mono);
  font-size: 18px;
}

.pcard-price s {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 400;
}

.pcard-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  background: var(--gold);
  color: var(--ink);
  border: none;
}

.pcard-cta .i {
  height: 16px;
}

.pcard-cta:hover {
  background: var(--ink);
  color: #fff;
}
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-l);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
}

.f-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.f-group:first-child {
  padding-top: 0;
}

.f-group:last-of-type {
  border-bottom: none;
  padding-bottom: 8px;
}

.f-group b {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  color: var(--ink);
}

.f-group b::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.f-option {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .15s ease;
}

.f-option:hover {
  color: var(--ink);
}

.f-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}

.f-option:hover input[type="checkbox"] {
  border-color: var(--gold-ink);
}

.f-option input[type="checkbox"]:checked {
  background: var(--gold-ink);
  border-color: var(--gold-ink);
}

.f-option input[type="checkbox"]:checked::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid var(--surface);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.f-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .15s ease;
}

.f-option:hover input[type="radio"] {
  border-color: var(--gold-ink);
}

.f-option input[type="radio"]:checked {
  border-color: var(--gold-ink);
  border-width: 5px;
}

.filters #clearFilters {
  margin-top: 4px;
  width: 100%;
}

.f-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.f-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 1.5px var(--line);
  cursor: pointer;
}

.f-swatch.active {
  box-shadow: 0 0 0 2px var(--ink);
}

@media (max-width:900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }
}
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
}

.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 22px 0;
}


.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px;
  position: relative;
  transition: .2s ease;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.step-ghost {
  position: absolute;
  top: 2px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  color: var(--line-soft);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.step-card .i {
  width: 30px;
  height: 30px;
  color: var(--gold-ink);
  margin-bottom: 16px;
  padding: 12px;
  border-radius: var(--radius-m);
  background: var(--gold-tint);
  box-sizing: content-box;
  position: relative;
  z-index: 1;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

@media (max-width:860px) {
  .steps {
    grid-template-columns: 1fr;
  }
}


.steps-dark {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 44px 40px 40px;
}

.steps-dark-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.steps-dark-head h2 {
  color: #fff;
}

.steps-progress {
  display: flex;
  align-items: center;
  margin: 36px 0 28px;
}

.steps-progress-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.steps-progress-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  margin: 0 14px;
}

.steps-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card--dark {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-m);
  padding: 24px;
}

.step-card--dark p {
  color: var(--ink-soft);
  font-size: 14px;
}

.step-card--dark-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-ink);
  margin-bottom: 14px;
  padding: 11px;
  border-radius: var(--radius-m);
  background: var(--gold-tint);
  box-sizing: content-box;
  display: inline-flex;
}

@media (max-width: 860px) {
  .steps-dark-grid {
    grid-template-columns: 1fr;
  }
  .steps-dark {
    padding: 32px 24px 28px;
  }
}

.grade-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.grade-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: .2s ease;
}

.grade-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.grade-card p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.grade-card .stamp {
  margin-bottom: 2px;
}
.grade-card--excellent .stamp {
  background: var(--gold);
}

.grade-card--excellent .stamp::after {
  color: #fff;
}
.grade-card--fair .stamp {
  border-color: var(--line);
}

.grade-card--fair .stamp::after {
  color: var(--ink-soft);
}
.grade-card--c .stamp {
  border-style: dashed;
  border-color: var(--line);
  background: var(--paper);
}

.grade-card--c .stamp::after {
  color: var(--ink-soft);
}

@media (max-width:780px) {
  .grade-row {
    grid-template-columns: 1fr;
  }
}


.band-trust-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.band-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.band-trust-item b {
  display: block;
  font-size: 15px;
}


.band-trust-item > div > span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.5;
  opacity: .75;
}

.band-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(243, 202, 11, .16);
  color: var(--gold);
  flex: none;
}

.band-trust-icon .i { width: 16px; height: 16px; }


.review-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.review-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: .15s ease;
}

.review-nav-btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.review-nav-btn:disabled {
  opacity: .35;
  cursor: default;
}
.review-nav-btn:disabled:hover {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.review-nav-btn .i {
  width: 18px;
  height: 18px;
}

.review-slider {
  overflow: hidden;
}

.review-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  
  padding-bottom: 4px;
  
  scrollbar-width: none;
}
.review-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 260px;
}

@media (max-width: 780px) {
  .review-card {
    flex-basis: 85%;
  }
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: .2s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--gold-legacy-star);
}

.review-stars .i {
  width: 15px;
  height: 15px;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-name img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.review-name b {
  display: block;
}

.review-name span {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 12px;
  font-family: var(--font-mono);
  display: block;
}

@media (max-width:860px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}
.band {
  border-radius: var(--radius-l);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.band-dark {
  background:
    radial-gradient(560px 420px at 82% 50%, rgba(243, 202, 11, .16), transparent 70%),
    var(--ink);
  color: #fff;
}

.band-green {
  background: var(--gold);
  color: var(--ink);
}

.band-green .btn-lg {
  background: var(--ink);
  color: #fff;
}

.band h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.band p {
  opacity: .85;
  margin-top: 10px;
  max-width: 48ch;
}

.band>div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.band-figures {
  display: flex;
  gap: 26px;
}

.band-figures b {
  font-family: var(--font-mono);
  font-size: 26px;
  color: var(--gold);
  display: block;
}

.band-figures span {
  font-size: 12px;
  opacity: .7;
}

.band-media {
  border-radius: var(--radius-m);
  overflow: hidden;
  min-height: 200px;
  box-shadow: var(--shadow-pop);
}

.band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width:860px) {
  .band {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .band-media {
    min-height: 220px;
  }
}
.site-footer {
  background: #000;
  color: #D9DCE2;
  margin-top: 80px;
}

.footer-top {
  padding-top: 56px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
}

.footer-brand .logo {
  color: #fff;
}

.footer-brand p {
  color: #9AA1AC;
  font-size: 14px;
  margin-top: 14px;
  max-width: 32ch;
}

.foot-col b {
  display: block;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.foot-col a {
  display: block;
  color: #9AA1AC;
  font-size: 14px;
  padding: 6px 0;
}

.foot-col a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid #333B47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D9DCE2;
}

.social-row a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 16px;
  max-width: 340px;
  border: 1px solid #333B47;
  border-radius: var(--radius-pill);
  padding: 5px;
}

.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 8px 12px;
  font-size: 13.5px;
}

.footer-newsletter button {
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-weight: 700;
  font-size: 13px;
  border: none;
}

.footer-bottom {
  border-top: 1px solid #262D38;
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #7A828D;
}

.pay-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-row span {
  border: 1px solid #333B47;
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  font-family: var(--font-mono);
}

@media (max-width:900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.breadcrumb .i {
  width: 13px;
  height: 13px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: 96px;
}

.pdp-gallery .frame {
  aspect-ratio: 1/1;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: #F2F2F0;
  position: relative;
  cursor: zoom-in;
}

.pdp-gallery .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 20, 0) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='M20 20l-4.3-4.3' stroke-linecap='round'/%3E%3Cpath d='M11 8.5v5M8.5 11h5' stroke-linecap='round'/%3E%3C/svg%3E") center/32px no-repeat;
  opacity: 0;
  transition: opacity .18s ease, background-color .18s ease;
}

.pdp-gallery .frame:hover::after {
  background-color: rgba(18, 18, 20, .18);
  opacity: 1;
}

.pdp-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pdp-thumbs .thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1.5px solid var(--line);
  cursor: pointer;
}

.pdp-thumbs .thumb.active {
  border-color: var(--gold);
}

.pdp-info b.mono-price {
  font-family: var(--font-mono);
  font-size: 32px;
  display: block;
  margin: 10px 0 4px;
}


@keyframes pricePulse {
  from { opacity: .35; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}
.pdp-info b.mono-price.pulse {
  animation: pricePulse .25s ease;
}

.pdp-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  font-family: var(--font-display);
  margin-top: 8px;
}

.pdp-sub {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-top: 4px;
}

.opt-group {
  margin-top: 26px;
}

.opt-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 11px;
  font-family: var(--font-mono);
}

.opt-label span {
  color: var(--ink-soft);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.opt-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.opt-pill {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 500;
  background: var(--surface);
  cursor: pointer;
  transition: .15s;
}

.opt-pill:hover {
  border-color: var(--ink);
}


@keyframes pillPop {
  from { transform: scale(.93); opacity: .5; }
  to { transform: scale(1); opacity: 1; }
}

.opt-pill.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  animation: pillPop .2s ease;
}

.opt-pill.opt-pill--warn.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}


.opt-pill.is-unavailable {
  color: var(--ink-soft);
  opacity: .58;
  position: relative;
  overflow: hidden;
}
.opt-pill.is-unavailable:hover {
  opacity: .8;
  border-color: var(--line);
}
.opt-pill.is-unavailable::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%; top: 50%;
  height: 1.5px;
  background: var(--red);
  transform: translateY(-50%) rotate(-8deg);
}

.opt-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 1.5px var(--line);
  border: 2.5px solid var(--surface);
  position: relative;
}

.opt-swatch.active {
  box-shadow: 0 0 0 2px var(--ink);
  animation: pillPop .2s ease;
}

.opt-swatch.is-unavailable {
  opacity: .5;
  transition: opacity .15s ease;
}
.opt-swatch.is-unavailable:hover {
  opacity: .75;
}
.opt-swatch.is-unavailable::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to top right, transparent calc(50% - 1.25px), var(--red) calc(50% - 1.25px), var(--red) calc(50% + 1.25px), transparent calc(50% + 1.25px));
}


.opt-swatch.is-disabled {
  cursor: not-allowed;
  opacity: .32;
}
.opt-swatch.is-disabled:hover {
  opacity: .32;
}

.opt-swatch-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cond-list {
  display: flex;
  gap: 8px;
}

.cond-pill {
  flex: 1;
  min-width: 0;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--surface);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.cond-pill-label {
  font-weight: 600;
  font-size: 14px;
}

.cond-pill-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
}

.cond-pill:hover {
  border-color: var(--gold-ink);
}

.cond-pill.active {
  border-color: var(--ink);
  background: var(--ink);
  animation: pillPop .2s ease;
}

.cond-pill.active .cond-pill-label,
.cond-pill.active .cond-pill-price {
  color: #fff;
}


.cond-pill.is-unavailable {
  opacity: .5;
}
.cond-pill.is-unavailable:hover {
  opacity: .75;
}
.cond-pill.is-unavailable .cond-pill-price {
  text-decoration: line-through;
}

.cond-info-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 0;
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  cursor: pointer;
}
.cond-info-toggle:hover {
  color: var(--ink);
  text-decoration-color: var(--ink-soft);
}
.cond-info-toggle .i {
  width: 15px;
  height: 15px;
  color: var(--gold-ink);
  flex-shrink: 0;
}
.cond-info-toggle.open {
  color: var(--ink);
}

.cond-info-panel {
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-m);
  background: var(--line-soft);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

#stockNote {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
#stockNote::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
#stockNote.is-oos {
  color: var(--red);
  font-weight: 600;
}
#stockNote.is-oos::before {
  background: var(--red);
}

.qty-box {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
}

.qty-box button {
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease;
}

.qty-box button:hover {
  background: var(--line-soft);
}

.qty-box span {
  width: 26px;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 600;
}

.pdp-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.pdp-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.pdp-perk {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  align-items: flex-start;
}

.pdp-perk .i {
  color: var(--gold-ink);
  margin-top: 1px;
}

.acc {
  text-align: left;
}

.acc-item {
  border-bottom: 1px solid var(--line);
}

.acc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 2px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: color .15s ease;
}

.acc-head:hover {
  color: var(--gold-ink);
}

.acc-item.open .acc-head {
  color: var(--gold-ink);
}
.acc-icon {
  color: var(--gold-ink);
  flex-shrink: 0;
}

.acc-label {
  flex: 1;
}

.acc-chev {
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: color .15s ease, transform .2s ease;
}

.acc-item.open .acc-chev {
  color: var(--gold-ink);
  transform: rotate(180deg);
}

.acc-body {
  display: none;
  padding: 0 2px 18px 38px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  max-width: 56ch;
}

/* Rich-text product description — the site resets ul/p/headings globally (see the
   base reset near the top of this file), so this re-establishes real typography
   scoped to just this block, without affecting anything else on the page. */
.product-description-body h1,
.product-description-body h2,
.product-description-body h3,
.product-description-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 30px 0 12px;
}
.product-description-body h1:first-child,
.product-description-body h2:first-child,
.product-description-body h3:first-child,
.product-description-body h4:first-child {
  margin-top: 0;
}
.product-description-body h1 { font-size: 26px; }
.product-description-body h2 { font-size: 21px; }
.product-description-body h3 { font-size: 17px; }
.product-description-body h4 { font-size: 15px; }

.product-description-body p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.product-description-body p:last-child {
  margin-bottom: 0;
}

.product-description-body strong,
.product-description-body b {
  color: var(--ink);
  font-weight: 700;
}

.product-description-body ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-description-body ul li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.product-description-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.product-description-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.product-description-body a {
  color: var(--gold-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-description-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-m);
  margin: 8px 0 20px;
  display: block;
}

.product-description-body blockquote {
  margin: 0 0 20px;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
  font-style: italic;
}

.acc-item.open .acc-body {
  display: block;
}

@media (max-width:900px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pdp-gallery {
    position: static;
  }
}


.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  padding: 16px;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  margin-bottom: 12px;
  background: var(--surface);
  transition: .15s ease;
}

.cart-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.cart-item-media {
  position: relative;
  flex: none;
}

.cart-item-media .stamp-sm {
  position: absolute;
  top: -6px;
  right: -6px;
}

.cart-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius-m);
  background: #F2F2F0;
  display: block;
}

.cart-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
}

.cart-meta {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cart-meta span {
  background: var(--paper);
  padding: 2px 8px;
  border-radius: 6px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-item-price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 16px;
}

.remove-link {
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 5px;
}

.remove-link:hover {
  color: var(--red);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  padding: 9px 0;
}

.summary-row.total {
  font-size: 19px;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-top: 10px;
  padding: 14px 12px;
  background: var(--gold-tint);
  border-radius: var(--radius-s);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-head .i {
  color: var(--gold-ink);
  width: 20px;
  height: 20px;
  padding: 8px;
  background: var(--gold-tint);
  border-radius: var(--radius-s);
  box-sizing: content-box;
  flex: none;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state h3 {
  overflow-wrap: anywhere;
}

.empty-state .i {
  width: 26px;
  height: 26px;
  color: var(--gold-ink);
  padding: 16px;
  background: var(--gold-tint);
  border-radius: 50%;
  box-sizing: content-box;
  margin: 0 auto 18px;
}

@media (max-width:900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
  }

  .cart-item-actions {
    grid-column: 2;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}


.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 4px;
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.checkout-steps .step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}

.checkout-steps .step.done {
  color: var(--gold-ink);
  font-weight: 600;
}

.checkout-steps .step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--line);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex: none;
}

.checkout-steps .step.done .step-dot {
  background: var(--gold);
  color: var(--ink);
}

.checkout-steps .step-sep {
  width: 30px;
  height: 1px;
  background: var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: var(--font-mono);
}

.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--surface);
  outline: none;
  width: 100%;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.pay-tabs {
  display: flex;
  gap: 10px;
  margin: 6px 0 18px;
}

.pay-tab {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pay-tab.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.mini-line-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}

.mini-line-item img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  background: #F2F2F0;
}

.mini-line-item .grow {
  flex: 1;
  font-size: 13.5px;
}

.mini-line-item b {
  font-family: var(--font-mono);
  font-size: 13.5px;
}

@media (max-width:900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
.sell-hero {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 52px;
  position: relative;
  overflow: hidden;
}

.sell-hero .h-xl {
  color: #fff;
}

.sell-intro {
  text-align: center;
  max-width: 620px;
}

.sell-intro .eyebrow {
  justify-content: center;
}

.sell-intro .lede {
  margin: 14px auto 0;
}

.wizard-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-l);
  padding: 40px 44px;
  box-shadow: var(--shadow-card);
}

.step-head {
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.sell-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 34px;
}

.sell-progress span {
  height: 4px;
  flex: 1;
  background: var(--line);
  border-radius: 99px;
}

.sell-progress span.done {
  background: var(--gold);
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.pick-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pick-card:hover {
  border-color: var(--ink);
}

.pick-card.active {
  border-color: var(--gold);
  background: var(--gold-tint);
}

.pick-card .i {
  width: 26px;
  height: 26px;
  padding: 17px;
  background: var(--paper);
  border-radius: 50%;
  box-sizing: content-box;
  color: var(--ink-soft);
}

.pick-card.active .i {
  background: var(--surface);
  color: var(--gold-ink);
}

.pick-card-avatar {
  width: 92px;
  height: 92px;
  background: var(--paper);
  border-radius: var(--radius-s);
  box-sizing: border-box;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  overflow: hidden;
  flex-shrink: 0;
}
.pick-card.active .pick-card-avatar {
  color: var(--gold-ink);
}
img.pick-card-avatar {
  object-fit: contain;
}

@media (max-width:760px) {
  .pick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wizard-card {
    padding: 28px 22px;
  }
  .pcard-rating {
    gap: 0px;
}
}


.model-pick-grid {
  display: grid;
  
  grid-template-columns: repeat(auto-fill, 187px);
  gap: 16px;
}

.model-pick-card {
  width: 186.67px;
  height: 264.9px;
  box-sizing: border-box;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px 16px;
  cursor: pointer;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: .15s ease;
}

.model-pick-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.model-pick-card.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.model-pick-media {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-pick-media img {
  
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.model-pick-media .i {
  width: 44px;
  height: 44px;
  color: var(--line);
}

.model-pick-name {
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

.model-pick-price {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.model-pick-price b {
  color: var(--gold-ink);
  font-family: var(--font-mono);
}

.sell-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.sell-step-actions:has(> :only-child) {
  justify-content: flex-end;
}
.cond-card-group {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px;
  margin-top: 16px;
  background: var(--surface);
}
.cond-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
}
.cond-card-head .i {
  color: var(--gold-ink);
  width: 19px;
  height: 19px;
}
.cond-card-hint {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: auto;
}
.model-search-results {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.model-search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  cursor: pointer;
  font-size: 14px;
  background: var(--surface);
}
.model-search-item:hover {
  border-color: var(--gold);
  background: var(--gold-tint);
}

.model-search-item span {
  color: var(--ink-soft);
  font-size: 12.5px;
  font-family: var(--font-mono);
}

.model-search-empty {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
}
.quote-box {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-l);
  padding: 34px;
  text-align: center;
}
.quote-amount {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  margin: 10px 0;
}
.quote-breakdown {
  text-align: left;
  max-width: 380px;
  margin: 22px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.quote-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 6px 0;
  color: var(--ink-soft);
}
.quote-breakdown-row b {
  color: var(--ink);
  font-weight: 500;
}
.quote-breakdown-row .neg {
  color: var(--red);
  font-family: var(--font-mono);
}
.quote-breakdown-row .pos {
  color: var(--ink-soft);
  font-family: var(--font-mono);
}


.quote-breakdown-header {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--ink);
  padding: 10px 0 2px;
}

.quote-breakdown-row--indent {
  padding-left: 14px;
  border-left: 2px solid var(--line);
  margin-left: 2px;
}
.photo-field-hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-family: var(--font-body);
}
.photo-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.photo-tile {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: var(--radius-s);
  overflow: hidden;
  flex-shrink: 0;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-tile--add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px dashed var(--gold-ink);
  background: var(--gold-tint);
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.photo-tile--add:hover {
  background: #FFEDB8;
  transform: translateY(-1px);
}

.photo-tile--add .i {
  width: 22px;
  height: 22px;
}

.photo-tile-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(18, 18, 20, .72);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.photo-tile-remove .i {
  width: 10px;
  height: 10px;
  color: #fff;
}
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform .25s ease;
  box-shadow: var(--shadow-pop);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast .i {
  color: var(--gold);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(88vw, 900px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius-s);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255, 255, 255, .24);
}

.lightbox-close {
  top: 22px;
  right: 26px;
  width: 42px;
  height: 42px;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-arrow .i,
.lightbox-close .i {
  width: 22px;
  height: 22px;
}

.lightbox-counter {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-family: var(--font-mono);
}

@media (max-width: 640px) {
  .lightbox-arrow { width: 44px; height: 44px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 14px; right: 14px; }
}


[data-animate] {
  animation: rise .5s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}


.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tag {
  font-size: 12px;
  font-family: var(--font-mono);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  border: 1px solid var(--line);
}

.center {
  text-align: center;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 26px;
  gap: 20px;
  flex-wrap: wrap;
}

.circle-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 44px;
}

.circle-hub-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.circle-hub-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius-m);
  padding: 16px 20px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: .2s ease;
}

.circle-hub-item:hover:not(.active) {
  background: var(--paper);
}

.circle-hub-item.active {
  background: var(--surface);
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.circle-hub-item p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}

.circle-hub-cta {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-ink);
}

.circle-hub-item.active .circle-hub-cta {
  display: inline-flex;
}

.circle-hub-cta .i {
  width: 14px;
  height: 14px;
}

.circle-hub-center {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.circle-hub-center svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.circle-hub-center .ring-track {
  fill: none;
  stroke: var(--line);
  stroke-width: 1.2;
}

.circle-hub-center .ring-dash {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-dasharray: 3 8;
  stroke-linecap: round;
  transform-origin: 50px 50px;
}

@media (prefers-reduced-motion: no-preference) {
  .circle-hub-center .ring-dash {
    animation: diagram-spin 34s linear infinite;
  }
}

@keyframes diagram-spin {
  to {
    transform: rotate(360deg);
  }
}

.circle-hub-photo {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px -16px rgba(18, 18, 20, .28), 0 0 0 6px var(--surface);
}

.circle-hub-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hex-node {
  position: absolute;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: .2s ease;
}

.hex-node:hover {
  border-color: var(--gold-ink);
  transform: scale(1.06);
}

.hex-node .i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--ink-soft);
}

.hex-node.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 10px 22px -8px rgba(243, 202, 11, .6);
}

.hex-node.active .i {
  color: var(--ink);
}

.hex-node--buy {
  top: 2%;
  left: 50%;
}

.hex-node--sell {
  top: 50%;
  left: 98%;
}

.hex-node--refurbish {
  top: 98%;
  left: 50%;
}

.hex-node--resell {
  top: 50%;
  left: 2%;
}

@media (max-width: 900px) {
  .circle-hub-grid {
    grid-template-columns: 1fr;
  }
  .circle-hub-center {
    order: -1;
    max-width: 280px;
    margin-bottom: 12px;
  }
}


.woocommerce-message, .woocommerce-info, .woocommerce-error {
  list-style:none; display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  background:var(--gold-tint); border:1.5px solid var(--gold); color:var(--ink);
  border-radius:var(--radius-m); padding:14px 18px 14px 18px; margin:0 0 24px; font-size:14.5px;
}
.woocommerce-error{ background:#FDEEEE; border-color:var(--red); }
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before{ content:none !important; }

.wc-block-components-button, .wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button{
  font-family:var(--font-body); font-weight:600; font-size:14.5px; border-radius:var(--radius-s) !important;
  padding:12px 22px !important; border:1.5px solid var(--ink) !important; background:var(--ink) !important; color:#fff !important;
  cursor:pointer; transition:.15s ease; height:auto !important;
}
.wc-block-components-button:hover, .wc-block-cart__submit-button:hover, .wc-block-components-checkout-place-order-button:hover{
  background:#000 !important; border-color:#000 !important;
}
.wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button{
  background:var(--gold) !important; border-color:var(--gold) !important; color:var(--ink) !important; width:100%; justify-content:center;
}
.wc-block-cart__submit-button:hover, .wc-block-components-checkout-place-order-button:hover{
  background:var(--gold-ink) !important; border-color:var(--gold-ink) !important; color:#fff !important;
}

.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout{ margin-top:8px; margin-bottom:64px; }
.wc-block-components-sidebar-layout{ display:flex; flex-wrap:nowrap; gap:40px; align-items:flex-start; }
.wc-block-cart__sidebar, .wc-block-checkout__sidebar{ flex:0 0 380px; max-width:380px; }
.wc-block-cart__main, .wc-block-checkout__main{ flex:1 1 auto; min-width:0; }
.wc-block-cart-items{ border:none; }
.wc-block-cart-items__header{
  font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.05em;
  color:var(--ink-soft); border-bottom:1.5px solid var(--line);
}
.wc-block-cart-items__row{ border-bottom:1px solid var(--line-soft); padding:16px 0; }
.wc-block-cart-item__image img{ border-radius:var(--radius-m); background:var(--paper); }
.wc-block-components-product-name{ font-family:var(--font-display); font-weight:600; color:var(--ink); }
.wc-block-components-product-price, .wc-block-components-product-price__value,
.wc-block-components-formatted-money-amount, .wc-block-formatted-money-amount{ font-family:var(--font-mono); }
.wc-block-cart-item__remove-link{ color:var(--ink-soft) !important; }
.wc-block-cart-item__remove-link:hover{ color:var(--red) !important; }
.wc-block-components-quantity-selector{ border:1.5px solid var(--line); border-radius:var(--radius-pill); }
.wc-block-components-quantity-selector__input{ font-family:var(--font-mono); }
.wc-block-components-sidebar{
  background:var(--surface); border:1.5px solid var(--line); border-radius:var(--radius-l);
  padding:24px; box-shadow:var(--shadow-card);
}
.wc-block-cart__totals-title, .wc-block-components-checkout-order-summary__title{
  font-family:var(--font-display); font-size:19px;
}
.wc-block-components-totals-item__label{ color:var(--ink-soft); font-size:14px; }
.wc-block-components-totals-item__value{ font-family:var(--font-mono); font-size:14.5px; }
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label{
  font-size:19px; font-weight:700; color:var(--gold-ink);
}
.wc-block-components-totals-footer-item{ border-top:1px solid var(--line); padding-top:14px; }
/* Checkout uses one padded outer card, not a card inside another card.
   Scope these rules above WooCommerce's block/container-query selectors. */
body .wp-block-woocommerce-checkout .wc-block-checkout__sidebar.wc-block-components-sidebar{
  box-sizing:border-box;
  padding:24px !important;
}
body .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
body .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill{
  border:0;
  border-radius:0;
  box-shadow:none;
}
body .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary{
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  padding:16px 0;
}
body .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title{
  margin:0;
  padding:0 0 16px;
}
body .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title-text{
  margin:0;
}
body .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper,
body .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content{
  border:0;
}
body .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item,
body .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-coupon{
  padding-left:0;
  padding-right:0;
}
body .wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-footer-item{
  border:0;
  margin:0;
  padding:16px 0 0;
}
@media (max-width:600px){
  body .wp-block-woocommerce-checkout .wc-block-checkout__sidebar.wc-block-components-sidebar{
    padding:18px !important;
  }
}
.wc-block-components-text-input input, .wc-blocks-components-select__select,
.wc-block-components-address-form input, .wc-block-components-address-form select{
  border:1.5px solid var(--line) !important; border-radius:10px !important; font-family:var(--font-body) !important;
}
.wc-block-components-text-input input:focus, .wc-blocks-components-select__select:focus{ border-color:var(--gold) !important; }
.wc-block-components-checkout-step__title{ font-family:var(--font-display); font-size:18px; }
.wc-block-components-checkout-step__heading{ margin-bottom:12px; }
.wc-block-components-order-summary-item__image img{ border-radius:var(--radius-s); }
.wc-block-components-order-summary-item__description{ font-family:var(--font-display); font-weight:600; }

@media (max-width:900px){
  .wc-block-components-sidebar-layout{ flex-direction:column; }
  .wc-block-cart__sidebar, .wc-block-checkout__sidebar{ flex-basis:auto; max-width:none; width:100%; }
  .wc-block-cart__main, .wc-block-checkout__main{ width:100%; }
}

.pdp-coming-soon{display:inline-block;align-self:flex-start;padding:6px 12px;border-radius:var(--radius-pill);background:var(--gold-tint);color:var(--gold-ink);font-size:13px;font-weight:600;margin:0 0 12px;}
.pdp-actions .btn:disabled{opacity:.65;cursor:not-allowed;}

.pdp-title-row{display:flex;align-items:center;flex-wrap:wrap;gap:10px 14px;margin-bottom:12px;}
.pdp-title-row .pdp-title{margin:0;}
.pdp-title-row .pdp-coming-soon{align-self:center;flex-shrink:0;margin:0;}
#priceOut[hidden], #priceSub[hidden]{display:none;}
.pcard.is-coming-soon .pcard-price-row{justify-content:flex-end;}
