/* AP x Swatch — classic luxury theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ivory: #f7f5f0;
  --paper: #fffefb;
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --muted: #6b6356;
  --platinum: #8a8073;
  --line: #e6e1d6;
  --gold: #b58a4a;
  --gold-dark: #8f6a30;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--sans); background: var(--ivory); color: var(--ink); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.2; color: var(--ink); margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }

.ax-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top bar ---------- */
.ax-topbar { background: var(--ink); color: #cfc8b8; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding: 8px 0; text-align: center; }
.ax-topbar a { color: #e8dfc9; }
.ax-topbar span { margin: 0 14px; }
@media (max-width: 640px) { .ax-topbar { font-size: 10px; padding: 6px 8px; letter-spacing: .08em; } .ax-topbar span { margin: 0 6px; } .ax-topbar__sep { display: none; } }

/* ---------- Header ---------- */
.ax-header { background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px 0; position: sticky; top: 0; z-index: 50; }
.ax-header__row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.ax-header__left { display: flex; align-items: center; gap: 28px; }
.ax-header__nav { display: flex; gap: 28px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.ax-header__brand { text-align: center; }
.ax-header__brand a { font-family: var(--serif); font-size: 1.85rem; font-weight: 600; letter-spacing: .04em; }
.ax-header__brand small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: .35em; color: var(--muted); text-transform: uppercase; margin-top: 2px; }
.ax-header__util { display: flex; justify-content: flex-end; align-items: center; gap: 18px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.ax-cart-link { font-weight: 500; display: inline-flex; align-items: center; gap: 6px; position: relative; }
.ax-cart-icon { display: none; }
.ax-cart-count { display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: #fff; font-size: 11px; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; }
.ax-burger { display: none; background: none; border: none; padding: 6px; cursor: pointer; color: var(--ink); }

@media (max-width: 860px) {
  .ax-header__row { grid-template-columns: auto 1fr auto; gap: 8px; }
  .ax-header__brand a { font-size: 1.35rem; }
  .ax-header__brand small { font-size: 9px; letter-spacing: .25em; }
  .ax-header__nav { display: none; }
  .ax-util-link { display: none; }
  .ax-cart-link__text { display: none; }
  .ax-cart-icon { display: inline-block; }
  .ax-burger { display: inline-flex; }
  .ax-cart-count { position: absolute; top: -6px; right: -10px; font-size: 10px; min-width: 18px; height: 18px; padding: 0 5px; }
}

/* ---------- Mobile Drawer ---------- */
.ax-drawer { position: fixed; inset: 0; z-index: 100; pointer-events: none; visibility: hidden; }
.ax-drawer__overlay { position: absolute; inset: 0; background: rgba(17,17,17,.45); opacity: 0; transition: opacity .25s; border: 0; padding: 0; cursor: pointer; z-index: 1; }
.ax-drawer__panel { position: absolute; top: 0; left: 0; bottom: 0; width: 82vw; max-width: 360px; background: var(--paper); transform: translateX(-100%); transition: transform .3s ease; display: flex; flex-direction: column; box-shadow: 0 0 60px rgba(0,0,0,.25); z-index: 2; }
body.ax-drawer-open { overflow: hidden; }
body.ax-drawer-open .ax-drawer { pointer-events: auto; visibility: visible; }
body.ax-drawer-open .ax-drawer__overlay { opacity: 1; }
body.ax-drawer-open .ax-drawer__panel { transform: translateX(0); }
.ax-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.ax-drawer__brand { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: .04em; }
.ax-drawer__close { background: none; border: none; font-size: 30px; line-height: 1; color: var(--muted); cursor: pointer; padding: 0 4px; }
.ax-drawer__nav { display: flex; flex-direction: column; padding: 12px 0; flex: 1; overflow-y: auto; }
.ax-drawer__nav a { padding: 14px 24px; font-size: 15px; border-bottom: 1px solid var(--line); color: var(--ink); letter-spacing: .04em; }
.ax-drawer__nav a:hover { background: var(--ivory); color: var(--gold-dark); }
.ax-drawer__foot { padding: 20px 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.ax-drawer__foot a { color: var(--gold-dark); }

/* ---------- Hero ---------- */
.ax-hero { background: linear-gradient(180deg, #faf8f2 0%, var(--ivory) 100%); padding: 96px 0 80px; text-align: center; border-bottom: 1px solid var(--line); }
.ax-hero__eyebrow { font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 18px; }
.ax-hero h1 { max-width: 880px; margin: 0 auto 18px; font-style: italic; }
.ax-hero p { max-width: 620px; margin: 0 auto 32px; color: var(--muted); font-size: 1.05rem; }
.ax-hero__cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Split hero with real product photography */
.ax-hero--split { text-align: left; padding: 80px 0; }
.ax-hero--split .ax-hero__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.ax-hero--split h1 { margin: 0 0 18px; max-width: none; }
.ax-hero--split p { margin: 0 0 32px; max-width: 520px; }
.ax-hero--split .ax-hero__cta { justify-content: flex-start; }
.ax-hero__gallery { position: relative; aspect-ratio: 1/1; width: 100%; }
.ax-hero__img { position: absolute; object-fit: cover; border: 1px solid var(--line); box-shadow: 0 24px 60px -28px rgba(17,17,17,.35); background: #f0ebe0; }
.ax-hero__img--lg { width: 72%; height: 72%; top: 0; right: 0; z-index: 1; }
.ax-hero__img--sm1 { width: 42%; height: 42%; bottom: 0; left: 0; z-index: 2; }
.ax-hero__img--sm2 { width: 36%; height: 36%; bottom: 8%; right: 6%; z-index: 3; border-color: var(--gold); }
@media (max-width: 860px) {
  .ax-hero--split { padding: 56px 0 48px; text-align: center; }
  .ax-hero--split .ax-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .ax-hero--split .ax-hero__cta { justify-content: center; }
  .ax-hero--split p { margin: 0 auto 28px; }
  .ax-hero__gallery { aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; }
}

/* ---------- Buttons ---------- */
.ax-btn { display: inline-block; padding: 14px 32px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); cursor: pointer; transition: all .2s; font-family: var(--sans); }
.ax-btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.ax-btn--ghost { background: transparent; color: var(--ink); }
.ax-btn--ghost:hover { background: var(--ink); color: var(--paper); }
.ax-btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.ax-btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ---------- Section ---------- */
.ax-section { padding: 80px 0; }
.ax-section--alt { background: var(--paper); }
.ax-section__head { text-align: center; margin-bottom: 48px; }
.ax-section__eyebrow { font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 12px; }
.ax-section__sub { color: var(--muted); max-width: 580px; margin: 8px auto 0; }

/* ---------- Product grid ---------- */
.ax-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
@media (max-width: 900px) { .ax-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; } }
@media (max-width: 420px) { .ax-grid { gap: 18px 12px; } }

.ax-card { background: var(--paper); border: 1px solid var(--line); transition: all .25s; position: relative; display: flex; flex-direction: column; }
.ax-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px -18px rgba(17,17,17,.18); border-color: var(--platinum); }
.ax-card__img { aspect-ratio: 4/5; overflow: hidden; background: #f0ebe0; display: block; }
.ax-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ax-card:hover .ax-card__img img { transform: scale(1.04); }
.ax-card__body { padding: 20px 22px 22px; text-align: center; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.ax-card__cat { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.ax-card__title { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin: 0; }
.ax-card__title a { color: var(--ink); }
.ax-card__price { font-family: var(--serif); font-size: 1.55rem; color: var(--ink); font-weight: 600; line-height: 1.2; display: inline-block; padding-bottom: 4px; border-bottom: 2px solid var(--gold); margin: 14px auto 0; min-height: 32px; align-self: center; }
.ax-card__price del { color: var(--muted); font-size: .75em; margin-right: 10px; opacity: .6; font-weight: 400; }
.ax-card__price ins { text-decoration: none; color: var(--ink); }
.ax-card__price--tba { font-size: .9rem; color: var(--muted); font-style: italic; font-weight: 400; }
.ax-card__sale { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; font-size: 10px; padding: 5px 9px; letter-spacing: .15em; text-transform: uppercase; z-index: 2; font-weight: 600; }

/* Section CTA — isolated band so it can never touch the product grid above */
.ax-section__cta-band { margin-top: 96px; padding-top: 40px; border-top: 1px solid var(--line); }
.ax-section__cta { text-align: center; margin: 0; clear: both; display: flex; justify-content: center; }
.ax-section__cta .ax-btn { background: var(--paper); position: relative; z-index: 1; }
.ax-section { padding-bottom: 80px; }
.ax-section--alt { padding-bottom: 140px; }
@media (max-width: 760px) {
  .ax-section__cta-band { margin-top: 56px; padding-top: 28px; }
  .ax-section--alt { padding-bottom: 96px; }
}

/* ---------- WooCommerce overrides ---------- */
.woocommerce ul.products, .woocommerce-page ul.products { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; margin: 0 !important; padding: 0 !important; }
.woocommerce ul.products li.product { width: 100% !important; margin: 0 !important; float: none !important; clear: none !important; padding: 0 !important; text-align: center; background: var(--paper); border: 1px solid var(--line); transition: all .25s; }
.woocommerce ul.products li.product:hover { transform: translateY(-3px); box-shadow: 0 14px 40px -18px rgba(17,17,17,.18); }
.woocommerce ul.products li.product a img { margin: 0 !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 18px 20px 6px !important; font-family: var(--serif) !important; font-size: 1.2rem !important; font-weight: 500 !important; }
.woocommerce ul.products li.product .price { color: var(--ink) !important; font-family: var(--serif) !important; font-size: 1.5rem !important; font-weight: 600 !important; padding: 4px 20px 14px; display: block; }
.woocommerce ul.products li.product .price del { color: var(--muted) !important; font-size: .7em !important; font-weight: 400 !important; opacity: .6 !important; margin-right: 8px; }
.woocommerce ul.products li.product .price ins { text-decoration: none !important; color: var(--ink) !important; font-weight: 600 !important; }
.woocommerce ul.products li.product .button { display: inline-block !important; margin: 8px 20px 18px !important; padding: 10px 22px !important; background: var(--ink) !important; color: var(--paper) !important; font-size: 11px !important; letter-spacing: .2em !important; text-transform: uppercase !important; border-radius: 0 !important; font-weight: 500 !important; }
.woocommerce ul.products li.product .button:hover { background: var(--gold-dark) !important; }
.woocommerce ul.products li.product .onsale { background: var(--gold) !important; color: #fff !important; border-radius: 0 !important; min-height: auto !important; min-width: auto !important; padding: 5px 9px !important; font-size: 10px !important; letter-spacing: .15em !important; line-height: 1.4 !important; right: auto !important; left: 14px !important; top: 14px !important; font-weight: 600 !important; }
@media (max-width: 900px) {
  .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 24px 16px !important; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 1rem !important; padding: 14px 12px 4px !important; }
  .woocommerce ul.products li.product .price { font-size: 1.15rem !important; padding: 2px 12px 10px !important; }
  .woocommerce ul.products li.product .button { margin: 6px 12px 14px !important; padding: 8px 14px !important; font-size: 10px !important; letter-spacing: .15em !important; }
  .ax-card__body { padding: 14px 12px 16px; }
  .ax-card__title { font-size: 1rem; margin-bottom: 8px; }
  .ax-card__price { font-size: 1.15rem; }
  .ax-card__cat { font-size: 9px; letter-spacing: .2em; }
}

.woocommerce-page .single-product { background: var(--paper); padding: 40px; border: 1px solid var(--line); }
.woocommerce div.product .product_title { font-family: var(--serif); font-weight: 500; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--ink) !important; font-family: var(--serif) !important; font-size: 2.4rem !important; font-weight: 600 !important; display: inline-block !important; padding-bottom: 6px !important; border-bottom: 2px solid var(--gold) !important; margin-bottom: 18px !important; }
.woocommerce div.product p.price del, .woocommerce div.product span.price del { font-size: .55em !important; color: var(--muted) !important; font-weight: 400 !important; margin-right: 12px !important; }
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins { text-decoration: none !important; color: var(--ink) !important; }
.woocommerce div.product .single_add_to_cart_button { background: var(--ink) !important; color: var(--paper) !important; border-radius: 0 !important; padding: 14px 30px !important; font-size: 12px !important; letter-spacing: .2em !important; text-transform: uppercase !important; }
.woocommerce div.product .single_add_to_cart_button:hover { background: var(--gold-dark) !important; }

/* Payment notice (checkout + thank-you) */
.ax-payment-notice { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--gold); padding: 20px 24px; margin: 0 0 32px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.ax-payment-notice strong { color: var(--ink); }
.ax-payment-notice--thanks { padding: 32px; background: linear-gradient(180deg, #fbf8f0 0%, var(--paper) 100%); }
.ax-payment-notice--thanks h2 { font-family: var(--serif); font-style: italic; margin: 0 0 14px; color: var(--ink); }
.ax-payment-notice--thanks p { margin: 0 0 12px; }
.woocommerce .woocommerce-breadcrumb { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count { color: var(--muted); font-size: 13px; }

/* ---------- Content pages ---------- */
.ax-content { padding: 70px 0 90px; }
.ax-content__inner { max-width: 760px; margin: 0 auto; }
.ax-content h2 { margin-top: 1.8em; }
.ax-content p { color: var(--ink-soft); }
.ax-content ul, .ax-content ol { color: var(--ink-soft); padding-left: 24px; }
.ax-content li { margin-bottom: 8px; }

/* ---------- Internal links block ---------- */
.ax-related { background: var(--paper); border: 1px solid var(--line); padding: 32px; margin-top: 48px; }
.ax-related h3 { font-size: 1.15rem; margin: 0 0 18px; text-align: center; font-style: italic; color: var(--gold-dark); }
.ax-related ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; font-size: 14px; }
.ax-related li::before { content: '— '; color: var(--gold); }
@media (max-width: 600px) { .ax-related ul { grid-template-columns: 1fr; } }

/* ---------- Collection story strip ---------- */
.ax-story { padding: 90px 0; background: var(--paper); }
.ax-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 760px) { .ax-story__grid { grid-template-columns: 1fr; } }
.ax-story h2 { font-style: italic; }
.ax-story p { color: var(--muted); font-size: 1.02rem; margin-bottom: 1em; }
.ax-story__img { aspect-ratio: 4/5; background: var(--ivory); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--serif); color: var(--platinum); font-size: 2rem; font-style: italic; }

/* ---------- Featured categories ---------- */
.ax-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .ax-cats { grid-template-columns: 1fr; } }
.ax-cat-tile { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink); }
.ax-cat-tile img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: all .4s; }
.ax-cat-tile:hover img { transform: scale(1.05); opacity: 1; }
.ax-cat-tile__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; background: linear-gradient(180deg, rgba(17,17,17,.15), rgba(17,17,17,.55)); padding: 24px; }
.ax-cat-tile__overlay small { font-size: 11px; letter-spacing: .35em; text-transform: uppercase; opacity: .9; margin-bottom: 8px; }
.ax-cat-tile__overlay h3 { color: #fff; font-style: italic; font-size: 2rem; margin: 0 0 14px; }
.ax-cat-tile__overlay span { display: inline-block; border-bottom: 1px solid #fff; padding-bottom: 3px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }

/* ---------- Trust strip ---------- */
.ax-trust { background: var(--ink); color: #e6dfce; padding: 30px 0; }
.ax-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; }
.ax-trust__grid strong { display: block; color: #fff; font-family: var(--serif); font-size: 1.15rem; font-weight: 500; letter-spacing: 0; text-transform: none; margin-bottom: 4px; }
@media (max-width: 760px) { .ax-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* ---------- Footer ---------- */
.ax-footer { background: var(--ink); color: #b8b0a0; padding: 70px 0 30px; }
.ax-footer a { color: #d8d1bf; }
.ax-footer a:hover { color: var(--gold); }
.ax-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 760px) { .ax-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.ax-footer h4 { color: #fff; font-family: var(--sans); font-size: 12px; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.ax-footer ul { list-style: none; padding: 0; margin: 0; }
.ax-footer ul li { margin-bottom: 10px; font-size: 14px; }
.ax-footer__brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.ax-footer__brand .ax-wordmark { font-family: var(--serif); font-size: 1.6rem; color: #fff; margin-bottom: 14px; display: block; letter-spacing: .04em; }
.ax-footer__bottom { border-top: 1px solid #2c2c2c; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: #8a8174; }
.ax-disclaimer { font-size: 11px; color: #6e665a; max-width: 640px; line-height: 1.6; margin-top: 12px; }

/* ---------- Forms ---------- */
.ax-form { display: grid; gap: 16px; max-width: 540px; }
.ax-form input, .ax-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); background: var(--paper); font-family: var(--sans); font-size: 15px; border-radius: 0; }
.ax-form input:focus, .ax-form textarea:focus { outline: none; border-color: var(--gold); }
.ax-form label { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: block; }

/* WC cart / checkout polish */
.woocommerce table.shop_table { border-radius: 0; border-color: var(--line); }
.woocommerce-message, .woocommerce-info { border-top-color: var(--gold) !important; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--gold) !important; }

/* ---------- Page head ---------- */
.ax-page-head { text-align: center; margin-bottom: 40px; }
.ax-page-head h1 { font-style: italic; }

/* ---------- Cart page ---------- */
.ax-empty { text-align: center; padding: 60px 0; color: var(--muted); }
.ax-cart-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
@media (max-width: 860px) { .ax-cart-wrap { grid-template-columns: 1fr; } }
.ax-cart-table { display: flex; flex-direction: column; gap: 0; background: var(--paper); border: 1px solid var(--line); }
.ax-cart-row { display: grid; grid-template-columns: 90px 1fr auto auto auto; gap: 16px; align-items: center; padding: 18px; border-bottom: 1px solid var(--line); }
.ax-cart-row:last-child { border-bottom: 0; }
.ax-cart-row__img img { width: 90px; height: 90px; object-fit: cover; }
.ax-cart-row__title { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; display: block; margin-bottom: 4px; }
.ax-cart-row__meta { font-size: 13px; color: var(--muted); }
.ax-cart-row__line { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--ink); min-width: 90px; text-align: right; }
.ax-link { background: none; border: 0; padding: 0; color: var(--muted); text-decoration: underline; cursor: pointer; font: inherit; font-size: 13px; }
.ax-link:hover { color: var(--gold-dark); }
.ax-link--center { display: block; text-align: center; margin-top: 12px; }
.ax-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.ax-qty button { background: var(--paper); border: 0; width: 32px; height: 36px; font-size: 18px; cursor: pointer; color: var(--ink); }
.ax-qty input { width: 44px; height: 36px; text-align: center; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); font: inherit; -moz-appearance: textfield; }
.ax-qty input::-webkit-outer-spin-button, .ax-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

@media (max-width: 640px) {
  .ax-cart-row { grid-template-columns: 70px 1fr; grid-template-rows: auto auto; row-gap: 10px; padding: 14px; }
  .ax-cart-row__img img { width: 70px; height: 70px; }
  .ax-cart-row__info { grid-column: 2; }
  .ax-cart-row__qty { grid-column: 1 / -1; }
  .ax-cart-row__line { grid-column: 2; text-align: left; }
  .ax-cart-row__remove { grid-column: 1 / -1; text-align: right; }
}

.ax-cart-totals { background: var(--paper); border: 1px solid var(--line); padding: 28px; }
.ax-cart-totals h3 { margin: 0 0 18px; font-style: italic; }
.ax-cart-totals .ax-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.ax-cart-totals .ax-row strong { font-family: var(--serif); font-size: 1.1rem; }
.ax-cart-totals .ax-row--total { border-bottom: 0; padding-top: 16px; font-size: 17px; }
.ax-cart-totals .ax-row--total strong { font-size: 1.5rem; color: var(--ink); }
.ax-cart-totals .ax-note { font-size: 13px; color: var(--muted); margin-top: 16px; line-height: 1.5; border-top: 1px solid var(--line); padding-top: 14px; }
.ax-btn--block { display: block; text-align: center; margin-top: 18px; }
.ax-btn--lg { padding: 16px 36px; font-size: 13px; }
.ax-cart-totals--sticky { position: sticky; top: 100px; }

/* ---------- Checkout stepper ---------- */
.ax-checkout { display: block; }
.ax-steps { display: flex; justify-content: center; list-style: none; padding: 0; margin: 0 0 40px; counter-reset: step; gap: 8px; flex-wrap: wrap; }
.ax-steps li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; }
.ax-steps li span { display: inline-flex; width: 24px; height: 24px; border-radius: 50%; background: var(--line); color: var(--muted); align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; }
.ax-steps li.is-active { color: var(--ink); border-bottom-color: var(--gold); }
.ax-steps li.is-active span { background: var(--gold); color: #fff; }
.ax-steps li.is-done span { background: var(--ink); color: #fff; }

.ax-checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
@media (max-width: 860px) { .ax-checkout-grid { grid-template-columns: 1fr; } .ax-cart-totals--sticky { position: static; } }
.ax-checkout-main { background: var(--paper); border: 1px solid var(--line); padding: 32px; }
.ax-step { display: none; }
.ax-step.is-active { display: block; }
.ax-step h2 { font-style: italic; margin-top: 0; }
.ax-step__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); gap: 16px; flex-wrap: wrap; }

.ax-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ax-field { display: block; }
.ax-field--full { grid-column: 1 / -1; }
.ax-field span { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.ax-field input, .ax-field select, .ax-field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); background: var(--paper); font-family: var(--sans); font-size: 15px; border-radius: 0; }
.ax-field input:focus, .ax-field select:focus, .ax-field textarea:focus { outline: none; border-color: var(--gold); }
@media (max-width: 560px) { .ax-form-grid { grid-template-columns: 1fr; } .ax-checkout-main { padding: 20px; } }

.ax-mini-cart { border: 1px solid var(--line); }
.ax-mini-cart__row { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.ax-mini-cart__row:last-child { border-bottom: 0; }
.ax-mini-cart__img img { width: 60px; height: 60px; object-fit: cover; }
.ax-mini-cart__info strong { display: block; font-family: var(--serif); font-size: 1rem; }
.ax-mini-cart__info span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.ax-mini-cart__line { font-family: var(--serif); font-weight: 600; }

.ax-review-block { margin: 20px 0; padding: 18px; background: var(--ivory); border: 1px solid var(--line); }
.ax-review-block h3 { margin: 0 0 12px; font-size: 1rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .15em; color: var(--muted); font-weight: 500; }
.ax-review-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; font-size: 14px; }
.ax-review-fields div { display: flex; gap: 6px; }
.ax-review-fields span { color: var(--muted); text-transform: capitalize; min-width: 90px; }
@media (max-width: 560px) { .ax-review-fields { grid-template-columns: 1fr; } }

.ax-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); margin: 18px 0 0; }
.ax-check input { margin-top: 3px; }

.ax-order-summary { background: var(--paper); border: 1px solid var(--line); padding: 24px; margin: 24px 0; }
.ax-order-summary table { width: 100%; border-collapse: collapse; }
.ax-order-summary td { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.ax-order-summary tr:last-child td { border-bottom: 0; }
.ax-order-summary .ax-row--total td { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; padding-top: 14px; }

/* ===== Reviews page ===== */
.axs-reviews-hero { background: var(--ivory, #f5f1ea); border-bottom: 1px solid var(--line, #e6dfd1); padding: 60px 0 48px; }
.axs-eyebrow { font-family: var(--sans, sans-serif); text-transform: uppercase; letter-spacing: .25em; font-size: 11px; color: var(--muted, #8a7d63); margin: 0 0 12px; }
.axs-reviews-hero h1 { font-family: var(--serif, Georgia, serif); font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin: 0 0 14px; color: var(--ink, #1b1b1b); }
.axs-reviews-hero__sub { max-width: 760px; color: var(--muted, #5a5142); font-size: 16px; line-height: 1.6; margin: 0 0 28px; }
.axs-reviews-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 820px; }
.axs-reviews-stats > div { background: var(--paper, #fff); border: 1px solid var(--line, #e6dfd1); padding: 16px 18px; }
.axs-reviews-stats strong { display: block; font-family: var(--serif, Georgia, serif); font-size: 22px; color: var(--ink, #1b1b1b); }
.axs-reviews-stats span { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted, #8a7d63); margin-top: 4px; }
.axs-stars { color: #c39a3e; letter-spacing: 2px; }
.axs-reviews-list { padding: 56px 0 72px; background: var(--paper, #fff); }
.axs-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.axs-review-card { background: var(--paper, #fff); border: 1px solid var(--line, #e6dfd1); padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.axs-review-card__head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.axs-review-card__head time { font-size: 12px; color: var(--muted, #8a7d63); letter-spacing: .04em; }
.axs-review-card h3 { font-family: var(--serif, Georgia, serif); font-size: 17px; line-height: 1.3; margin: 4px 0 0; color: var(--ink, #1b1b1b); }
.axs-review-card p { margin: 0; color: #3a3327; font-size: 14px; line-height: 1.6; }
.axs-review-card__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; color: var(--muted, #8a7d63); border-top: 1px solid var(--line, #e6dfd1); padding-top: 10px; margin-top: auto; }
.axs-review-card__foot strong { color: var(--ink, #1b1b1b); font-weight: 600; }
.axs-review-card__product { background: var(--ivory, #f5f1ea); padding: 2px 8px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.axs-review-card__verified { margin-left: auto; color: #4a7d3c; font-weight: 600; }
.axs-reviews-cta { margin-top: 56px; text-align: center; padding: 40px 20px; background: var(--ivory, #f5f1ea); border: 1px solid var(--line, #e6dfd1); }
.axs-reviews-cta h2 { font-family: var(--serif, Georgia, serif); font-size: 28px; margin: 0 0 10px; color: var(--ink, #1b1b1b); }
.axs-reviews-cta p { color: var(--muted, #5a5142); margin: 0 0 14px; }
.axs-reviews-tab { padding: 20px 0; }
@media (max-width: 720px) {
  .axs-reviews-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Payment method picker ---------- */
.ax-pay-picker{display:grid;grid-template-columns:1fr;gap:12px;margin:12px 0 16px}
@media(min-width:640px){.ax-pay-picker{grid-template-columns:1fr 1fr}}
.ax-pay-card{position:relative;display:block;cursor:pointer;border:1.5px solid var(--line,#e5e1d8);border-radius:14px;padding:18px 18px 16px;background:var(--paper,#fff);transition:border-color .15s ease,box-shadow .15s ease,transform .15s ease}
.ax-pay-card:hover{border-color:var(--ink,#111);transform:translateY(-1px)}
.ax-pay-card input[type=radio]{position:absolute;top:14px;right:14px;accent-color:var(--gold,#b8945a);width:18px;height:18px;margin:0}
.ax-pay-card:has(input:checked){border-color:var(--gold,#b8945a);box-shadow:0 0 0 3px color-mix(in oklab,var(--gold,#b8945a) 22%,transparent)}
.ax-pay-card__body{display:block;padding-right:32px}
.ax-pay-card__icon{display:inline-block;font-size:28px;line-height:1;margin-bottom:8px}
.ax-pay-card__title{display:block;font-weight:700;font-size:16px;margin-bottom:4px;color:var(--ink,#111)}
.ax-pay-card__desc{display:block;font-size:13px;line-height:1.45;color:var(--ink-soft,#555)}
