:root {
  --ax-gold: #d7a928;
  --ax-gold-dark: #b88912;
  --ax-ink: #18212a;
  --ax-muted: #68727d;
  --ax-line: #e6e9ec;
  --ax-surface: #f5f7f8;
  --ax-white: #fff;
}

body.woocommerce-shop .site-main,
body.tax-product_cat .site-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.ax-shop-hero {
  position: relative;
  overflow: hidden;
  margin: 34px 0 54px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(215,169,40,.3), transparent 30%),
    linear-gradient(125deg, #111820 0%, #26313b 100%);
  color: var(--ax-white);
}

.ax-shop-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025);
}

.ax-shop-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 70px 68px 54px;
}

.ax-shop-eyebrow {
  margin: 0 0 10px;
  color: var(--ax-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ax-shop-hero .ax-shop-eyebrow { color: #f0cb63; }

.ax-shop-hero h1 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.ax-shop-hero h1 span { color: #f0c542; }

.ax-shop-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: #d8dde1;
  font-size: 18px;
  line-height: 1.7;
}

.ax-shop-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.ax-shop-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--ax-gold);
  border-radius: 9px;
  background: var(--ax-gold);
  color: #171717 !important;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .18s ease, background .18s ease;
}

.ax-shop-button:hover { transform: translateY(-2px); background: #e3b52f; }
.ax-shop-button--light { border-color: rgba(255,255,255,.34); background: transparent; color: #fff !important; }
.ax-shop-button--light:hover { background: rgba(255,255,255,.1); }

.ax-shop-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin: 36px 0 0 !important;
  padding: 23px 0 0 !important;
  border-top: 1px solid rgba(255,255,255,.14);
  list-style: none !important;
}

.ax-shop-benefits li { color: #e9edf0; font-size: 14px; font-weight: 650; }
.ax-shop-benefits li::before { content: "✓"; margin-right: 8px; color: #f0c542; font-weight: 900; }

.ax-shop-section-heading { margin: 0 0 24px; }
.ax-shop-section-heading h2,
.ax-shop-products-heading h2 {
  margin: 0;
  color: var(--ax-ink);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -.025em;
}

body.woocommerce-shop ul.products,
body.tax-product_cat ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 26px 22px !important;
  margin: 0 !important;
}

body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after { display: none !important; }

body.woocommerce-shop ul.products li.product,
body.tax-product_cat ul.products li.product {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 14px 14px 16px;
  border: 1px solid var(--ax-line);
  border-radius: 16px;
  background: var(--ax-white);
  box-shadow: 0 7px 26px rgba(29,38,48,.055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.woocommerce-shop ul.products li.product:hover,
body.tax-product_cat ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: #d9dde1;
  box-shadow: 0 14px 34px rgba(29,38,48,.11);
}

body.woocommerce-shop ul.products li.product-category.product {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  min-height: 225px;
  padding: 0;
  overflow: hidden;
  background: var(--ax-surface);
}

body.woocommerce-shop li.product-category figure { height: 100%; margin: 0 !important; }
body.woocommerce-shop li.product-category img { width: 100% !important; height: 100% !important; margin: 0 !important; object-fit: cover; }
body.woocommerce-shop li.product-category h2 { padding: 28px; color: var(--ax-ink); font-size: 25px !important; line-height: 1.2; }
body.woocommerce-shop li.product-category mark { display: block; margin-top: 8px; background: none; color: var(--ax-muted); font-size: 14px; font-weight: 600; }

.ax-shop-products-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 58px 0 22px;
}

.woocommerce .woocommerce-result-count { margin: 16px 0 24px; color: var(--ax-muted); font-size: 14px; }
.woocommerce .woocommerce-ordering { margin: 6px 0 24px; }
.woocommerce .woocommerce-ordering select {
  min-height: 46px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--ax-line);
  border-radius: 9px;
  background-color: #fff;
  color: var(--ax-ink);
}

body.woocommerce-shop ul.products li.product:not(.product-category) figure,
body.tax-product_cat ul.products li.product figure {
  overflow: hidden;
  margin: 0 0 17px !important;
  border-radius: 11px;
  background: var(--ax-surface);
}

body.woocommerce-shop ul.products li.product:not(.product-category) img,
body.tax-product_cat ul.products li.product img {
  width: 100% !important;
  aspect-ratio: 1 / 1;
  margin: 0 !important;
  object-fit: contain;
  transition: transform .25s ease;
}

body.woocommerce-shop ul.products li.product:not(.product-category):hover img,
body.tax-product_cat ul.products li.product:hover img { transform: scale(1.025); }

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.7em;
  padding: 0 !important;
  color: var(--ax-ink);
  font-size: 17px !important;
  font-weight: 750;
  line-height: 1.35;
}

.woocommerce ul.products li.product .price { margin: 10px 0 0; color: var(--ax-ink) !important; font-size: 16px !important; font-weight: 800; }
.woocommerce ul.products li.product .product-categories { margin: 9px 0 0 !important; }
.woocommerce ul.products li.product .product-categories a { color: var(--ax-muted); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.woocommerce ul.products li.product .button {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 18px !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  background: var(--ax-gold) !important;
  color: #161616 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-align: center;
}

.woocommerce ul.products li.product .button:hover { background: #e0b22e !important; }

@media (max-width: 980px) {
  body.woocommerce-shop ul.products,
  body.tax-product_cat ul.products { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .ax-shop-hero__inner { padding: 58px 46px 46px; }
}

@media (max-width: 620px) {
  body.woocommerce-shop .site-main,
  body.tax-product_cat .site-main { padding: 0 16px 60px; }
  .ax-shop-hero { margin: 20px 0 42px; border-radius: 20px; }
  .ax-shop-hero__inner { padding: 42px 24px 32px; }
  .ax-shop-lead { font-size: 16px; }
  .ax-shop-actions { display: grid; }
  .ax-shop-benefits { display: grid; gap: 10px; }
  body.woocommerce-shop ul.products,
  body.tax-product_cat ul.products { gap: 16px 12px !important; }
  body.woocommerce-shop ul.products li.product,
  body.tax-product_cat ul.products li.product { padding: 9px 9px 13px; border-radius: 12px; }
  body.woocommerce-shop ul.products li.product-category.product { grid-column: 1 / -1; grid-template-columns: 38% 1fr; min-height: 145px; }
  body.woocommerce-shop li.product-category h2 { padding: 18px; font-size: 20px !important; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px !important; }
  .woocommerce ul.products li.product .button { font-size: 12px !important; }
  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering { float: none; width: 100%; }
  .woocommerce .woocommerce-ordering select { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .ax-shop-button,
  body.woocommerce-shop ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.woocommerce-shop ul.products li.product img,
  body.tax-product_cat ul.products li.product img { transition: none; }
}

