﻿@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&family=Jost:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap");

:root {
  --az-font-heading: "Outfit", "DM Sans", Arial, sans-serif;
  --az-font-body: "DM Sans", Arial, sans-serif;

  --az-bg: #f6f7f2;
  --az-bg-soft: #eef1ea;
  --az-surface: #ffffff;
  --az-surface-raised: #ffffff;
  --az-text: #17201b;
  --az-text-soft: #3f4a43;
  --az-muted: #69746b;
  --az-border: #dfe5dd;
  --az-border-strong: #c9d2c8;

  --az-primary: #c93a22;
  --az-primary-dark: #9f2a19;
  --az-primary-soft: #fff0eb;

  --az-success: #247a4b;
  --az-success-soft: #eaf6ef;
  --az-warning: #a95c12;
  --az-warning-soft: #fff4e6;
  --az-danger: #b42318;

  --az-space-1: 4px;
  --az-space-2: 8px;
  --az-space-3: 12px;
  --az-space-4: 16px;
  --az-space-5: 20px;
  --az-space-6: 24px;
  --az-space-8: 32px;
  --az-space-10: 40px;
  --az-space-12: 48px;
  --az-space-16: 64px;

  --az-radius-sm: 8px;
  --az-radius-md: 12px;
  --az-radius-lg: 18px;
  --az-radius-xl: 24px;

  --az-shadow-card: 0 10px 28px rgba(23, 32, 27, 0.08);
  --az-shadow-menu: 0 18px 45px rgba(23, 32, 27, 0.14);

  --az-ink: var(--az-text);
  --az-line: var(--az-border);
  --az-soft: var(--az-bg-soft);
  --az-card: var(--az-surface);
  --az-accent: var(--az-primary);
  --az-dark: var(--az-text);
}

/* WORDPRESS HEADER + HERO V2 */
:root {
  --az-v2-shell: 1440px;
  --az-v2-gutter: clamp(16px, 3vw, 48px);
  --az-v2-page-width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  --az-v2-top-gap: 28px;
}

.az-ecommerce-header {
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: "Jost", var(--az-font-body);
}

.az-header-inner {
  width: var(--az-v2-page-width);
}

.az-header-trust--single {
  height: 32px;
  font-size: 12px;
}

.az-header-trust--single .az-header-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.az-header-trust--single a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.az-header-main__grid {
  grid-template-columns: 230px minmax(0, 1fr) 44px auto;
  min-height: 72px;
  gap: 20px;
}

.az-header-logo {
  min-width: 0;
  gap: 11px;
}

.az-header-logo__mark {
  width: 38px;
  height: 38px;
  border-width: 1.5px;
}

.az-header-logo strong {
  font-size: 23px;
}

.az-header-logo em {
  color: #677169;
  font-size: 10px;
}

.az-header-menu__list {
  gap: 4px;
}

.az-header-menu__list a {
  min-height: 44px;
  border-radius: 4px;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 600;
}

.az-header-menu__list a:hover,
.az-header-menu__list .current-menu-item > a,
.az-header-menu__list .current_page_item > a,
.az-header-menu__list .az-nav-primary-brand > a {
  background: #e9f0eb;
  color: #214938;
}

.az-header-search summary,
.az-header-action--cart {
  width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 4px;
}

.az-header-search summary:hover,
.az-header-action--cart:hover {
  background: #e9f0eb;
  color: #214938;
}

.az-header-actions {
  gap: 2px;
}

.az-header-contact {
  position: relative;
}

.az-header-contact summary {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 4px;
  padding: 0 12px;
  color: #172019;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.az-header-contact summary::-webkit-details-marker {
  display: none;
}

.az-header-contact summary:hover,
.az-header-contact[open] summary {
  background: #e9f0eb;
}

.az-header-contact summary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.az-header-contact-menu {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 90;
  width: 220px;
  padding: 8px;
  border: 1px solid #dfe3dd;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(23, 32, 25, 0.12);
}

.az-header-contact:not([open]) .az-header-contact-menu {
  display: none;
}

.az-header-contact-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 0 10px;
  color: #172019;
  font-size: 13px;
  font-weight: 600;
}

.az-header-contact-menu a:hover {
  background: #f7f8f5;
  color: #765617;
}

.az-mobile-menu-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.az-header-cart-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.home .ct-container-full,
body.home .az-home-ausclone {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin-inline: auto;
}

body.home .az-reference-hero--v2 {
  width: 100%;
  max-width: none;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #15130f;
  box-shadow: 0 12px 32px rgba(23, 32, 25, 0.09);
}

.az-reference-hero--v2 .az-hero-slide {
  display: block;
  min-height: 0;
  height: auto;
  opacity: 1;
  transform: none;
  animation: none;
}

.az-hero-v2 {
  position: relative;
  overflow: hidden;
}

.az-hero-v2 > img {
  display: block;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  object-fit: cover;
  object-position: center;
}

.az-hero-v2__actions {
  position: absolute;
  left: 36px;
  bottom: 32px;
  display: flex;
  gap: 10px;
}

.az-hero-v2__button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 0 22px;
  background: #fff;
  color: #172019;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.az-hero-v2__button--primary {
  border-color: #b9892d;
  background: #b9892d;
  color: #fff;
}

.az-hero-v2__button:hover {
  border-color: #765617;
  background: #765617;
  color: #fff;
}

@media (max-width: 1080px) {
  .az-header-main__grid {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 62px;
  }
}

@media (max-width: 680px) {
  .az-header-inner {
    width: min(calc(100% - 32px), var(--az-v2-shell));
  }

  .az-header-trust--single .az-header-inner {
    justify-content: center;
  }

  .az-header-trust--single a {
    display: none;
  }

  body.home .ct-container-full,
  body.home .az-home-ausclone {
    width: min(calc(100% - 32px), var(--az-v2-shell));
  }

  body.home .az-reference-hero--v2 {
    height: auto !important;
    border-radius: 4px;
  }

  body .az-header-logo strong {
    font-size: 19px;
    white-space: nowrap;
  }

  body .az-header-logo__mark {
    width: 36px;
    height: 36px;
  }

  body .az-mobile-search summary,
  body .az-mobile-menu summary,
  body .az-header-mobile-actions .az-mobile-cart {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 4px;
    background: #fff;
    color: #172019;
    box-shadow: none;
  }

  .az-hero-v2 > img {
    aspect-ratio: 1.16 / 1;
  }

  .az-hero-v2__actions {
    left: 14px;
    bottom: 14px;
  }

  .az-hero-v2__button {
    min-height: 44px;
    padding: 0 18px;
  }

  .az-hero-v2__button:not(.az-hero-v2__button--primary) {
    display: none;
  }
}


body {
  background: var(--az-bg);
  color: var(--az-text);
  font-family: var(--az-font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.entry-title,
.woocommerce-loop-product__title,
.product_title,
.az-footer-logo {
  color: var(--az-text);
  font-family: var(--az-font-heading);
  text-wrap: balance;
}

p,
li,
dd,
dt,
.woocommerce,
.woocommerce-page {
  text-wrap: pretty;
}

.price,
.amount,
.cart-subtotal,
.order-total,
.woocommerce-mini-cart__total {
  font-family: var(--az-font-heading);
  font-variant-numeric: tabular-nums;
}

a,
button,
.button,
input,
select,
textarea {
  font-family: inherit;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(201, 58, 34, 0.28);
  outline-offset: 3px;
}

body.home .entry-header,
body.page-id-302 .entry-header,
body.page-id-15 .entry-header,
body.page-id-13 .entry-header,
body.page-id-14 .entry-header,
body.page-id-18 .entry-header,
body.page-id-16 .entry-header,
body.page-id-17 .entry-header,
body.page-id-7 .entry-header,
body.page-id-8 .entry-header,
body.page-id-9 .entry-header,
body.post-type-archive-product .woocommerce-products-header,
body.home .hero-section[data-type="type-1"] {
  display: none;
}

.az-home-ausclone {
  color: var(--az-ink);
  padding-bottom: 0;
}

body.home .site-main,
body.home .entry-content,
body.home .az-home-ausclone {
  margin-bottom: 0;
}

body.home .ct-container-full,
body.page-id-15 .ct-container-full,
body.page-id-13 .ct-container-full,
body.page-id-14 .ct-container-full,
body.page-id-18 .ct-container-full,
body.page-id-16 .ct-container-full,
body.page-id-17 .ct-container-full,
body.page-id-7 .ct-container-full,
body.page-id-8 .ct-container-full,
body.page-id-9 .ct-container-full,
body.post-type-archive-product .ct-container-full {
  padding-bottom: 0;
}

.az-home-ausclone a {
  text-decoration: none;
}

.az-reference-hero {
  position: relative;
  min-height: 430px;
  margin: 12px 0 14px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.az-hero-track {
  position: relative;
  min-height: 430px;
}

.az-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: azHeroFade 18s infinite;
}

.az-hero-slide--two {
  animation-delay: 6s;
}

.az-hero-slide--three {
  animation-delay: 12s;
}

.az-hero-banner-link,
.az-hero-banner {
  display: block;
  width: 100%;
  height: 430px;
}

.az-hero-banner {
  object-fit: cover;
  object-position: center;
}

.az-hero-commerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: center;
  height: 430px;
  padding: 42px 56px;
  color: #182018;
  background:
    radial-gradient(circle at 84% 18%, rgba(118, 200, 77, 0.28), transparent 26%),
    linear-gradient(135deg, #f8fff1 0%, #e7f5df 58%, #dff3f7 100%);
}

.az-hero-commerce--ice {
  background:
    radial-gradient(circle at 84% 16%, rgba(91, 190, 220, 0.26), transparent 26%),
    linear-gradient(135deg, #f5fff4 0%, #edf8ff 56%, #e8f0e0 100%);
}

.az-hero-commerce--bulk {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 214, 94, 0.24), transparent 26%),
    linear-gradient(135deg, #fbfff3 0%, #eef6e8 58%, #f8f2da 100%);
}

.az-hero-commerce__copy {
  display: grid;
  justify-items: start;
  max-width: 610px;
}

.az-hero-commerce__copy span {
  margin-bottom: 12px;
  color: #56674f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.az-hero-commerce__copy h2 {
  max-width: 610px;
  margin: 0;
  color: #182018;
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.az-hero-commerce__copy p {
  max-width: 540px;
  margin: 18px 0 0;
  color: #4f5d4b;
  font-size: 18px;
  line-height: 1.5;
}

.az-hero-commerce__copy em {
  margin-top: 18px;
  color: #182018;
  font-size: 22px;
  font-style: normal;
  font-weight: 950;
}

.az-hero-commerce__copy strong {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 6px;
  padding: 13px 18px;
  background: #26372d;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.az-hero-commerce__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.38));
  overflow: hidden;
}

.az-hero-commerce__media::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(118, 200, 77, 0.18);
}

.az-hero-commerce__media img {
  position: relative;
  display: block;
  width: min(78%, 320px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(38, 55, 45, 0.18));
}

.az-section-label,
.az-offer-copy span,
.az-product-section-head span,
.az-full-range span,
.az-faq-clone span {
  color: var(--az-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.az-hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.az-hero-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.az-hero-dots span:first-child {
  background: #fff;
}

@keyframes azHeroFade {
  0%, 30% {
    opacity: 1;
  }
  35%, 100% {
    opacity: 0;
  }
}

.az-service-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 16px auto 22px;
}

.az-service-row div {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--az-muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.az-service-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #d8ebce;
  background: linear-gradient(180deg, #f4ffed 0%, #e7f9de 100%);
  color: #36a316;
  box-shadow: 0 8px 18px rgba(66, 145, 28, 0.1);
}

.az-service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.az-home-title {
  max-width: 850px;
  margin: 20px auto 18px;
  text-align: center;
}

.az-home-title h1,
.az-full-range h2,
.az-product-section-head h2,
.az-offer-signup h2,
.az-reviews h2,
.az-faq-clone h2,
.az-articles h2 {
  margin: 0;
  color: var(--az-ink);
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

.az-home-title h1 {
  font-size: 42px;
}

.az-home-title p {
  margin: 10px auto 0;
  color: var(--az-muted);
  font-size: 17px;
  line-height: 1.55;
}

.az-category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 18px;
}

.az-category-chips a {
  border: 1px solid var(--az-line);
  border-radius: 4px;
  padding: 9px 13px;
  background: #fff;
  color: var(--az-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-page-shell {
  color: var(--az-ink);
  padding-bottom: 0;
}

.az-brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 34px;
  align-items: center;
  margin: 22px 0 28px;
  padding: 38px;
  border: 1px solid #dce8d3;
  border-radius: 12px;
  background:
    radial-gradient(circle at 80% 16%, rgba(107, 211, 63, 0.18), transparent 30%),
    linear-gradient(135deg, #fbfff4 0%, #eef9ff 100%);
}

.az-kicker {
  margin: 0 0 8px;
  color: var(--az-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.az-brand-hero h1,
.az-section-head h2,
.az-brand-split h2 {
  margin: 0;
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  line-height: 1.06;
}

.az-brand-hero h1 {
  max-width: 760px;
  font-size: 48px;
  letter-spacing: -0.02em;
}

.az-brand-hero__copy > p:not(.az-kicker),
.az-section-head p,
.az-brand-split p {
  max-width: 680px;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.65;
}

.az-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.az-button {
  display: inline-flex;
  justify-content: center;
  border-radius: 5px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.az-button--primary {
  background: var(--az-accent);
  color: #111;
}

.az-button--ghost {
  border: 1px solid #cfdcc7;
  background: #fff;
  color: var(--az-ink);
}

.az-brand-hero__media {
  overflow: hidden;
  border-radius: 10px;
  background: #eaf8ff;
  box-shadow: 0 18px 34px rgba(40, 120, 160, 0.12);
}

.az-brand-hero__media img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.az-brand-hero--wholesale .az-brand-hero__media img {
  object-fit: contain;
  background: linear-gradient(180deg, #fff8db 0%, #f3d789 100%);
}

.az-brand-hero--iget .az-brand-hero__media img {
  object-fit: contain;
  background: linear-gradient(180deg, #0a0a0a 0%, #101010 100%);
}

.az-info-page .az-brand-hero--simple {
  grid-template-columns: 1fr;
  min-height: 0;
  margin: 20px 0 22px;
  padding: 32px;
  background: #f8fbf2;
}

.az-info-page .az-brand-hero--simple h1 {
  max-width: 780px;
  font-size: clamp(34px, 4vw, 46px);
}

.az-info-page .az-brand-hero--simple .az-brand-hero__copy > p:not(.az-kicker) {
  max-width: 760px;
}

.az-info-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.36fr);
  gap: 24px;
  align-items: start;
  margin: 22px 0 34px;
  border: 1px solid var(--az-line);
  border-radius: 10px;
  padding: 26px;
  background: #fff;
}

.az-info-panel h2 {
  margin: 0;
  font-family: var(--az-font-heading);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.az-info-panel p:not(.az-kicker) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--az-muted);
  line-height: 1.65;
}

.az-info-panel aside {
  display: grid;
  gap: 10px;
}

.az-info-panel aside a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--az-line);
  border-radius: 5px;
  padding: 0 14px;
  background: #fbfcf8;
  color: var(--az-ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.az-info-panel aside a::after {
  content: ">";
  color: var(--az-primary);
}

.az-info-form-shell {
  margin: 22px 0 34px;
}

.az-info-page--polished {
  --az-info-panel: #fffef9;
  --az-info-quiet: #f7f8f2;
  --az-info-border: #ded8c5;
}

.az-info-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 22px;
  align-items: stretch;
  margin: 22px 0 20px;
}

.az-info-hero__copy,
.az-info-hero__panel,
.az-info-composer,
.az-info-form-card,
.az-info-side-note {
  border: 1px solid var(--az-info-border);
  border-radius: 14px;
  background: var(--az-info-panel);
  box-shadow: 0 16px 34px rgba(63, 54, 27, 0.055);
}

.az-info-hero__copy {
  min-height: 280px;
  padding: 34px;
}

.az-info-hero__copy h1 {
  max-width: 860px;
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-heading);
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.az-info-hero__copy > p:not(.az-kicker) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--az-muted);
  font-size: 17px;
  line-height: 1.62;
  text-wrap: pretty;
}

.az-info-hero__panel {
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: 26px;
  background: var(--az-info-quiet);
}

.az-info-hero__panel span,
.az-info-link-stack span {
  color: var(--az-primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.az-info-hero__panel strong {
  display: block;
  margin-top: 12px;
  color: var(--az-text);
  font-family: var(--az-font-heading);
  font-size: 28px;
  line-height: 1.05;
}

.az-info-hero__panel p {
  margin: 14px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.6;
}

.az-info-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
  gap: 24px;
  align-items: start;
  margin: 20px 0 36px;
  padding: 26px;
  background: #ffffff;
}

.az-info-composer__main h2,
.az-info-form-card h2,
.az-info-side-note h3 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-heading);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.az-info-composer__main h2,
.az-info-form-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.az-info-composer__main p:not(.az-kicker),
.az-info-form-card .az-section-head p,
.az-info-side-note p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--az-muted);
  line-height: 1.64;
}

.az-info-link-stack {
  display: grid;
  gap: 10px;
}

.az-info-link-stack a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--az-border);
  border-radius: 10px;
  padding: 0 14px;
  background: #fbfcf8;
  color: var(--az-text);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.az-info-link-stack a:hover {
  border-color: rgba(184, 138, 45, 0.48);
  background: #fffaf0;
  transform: translateY(-1px);
}

.az-info-link-stack strong {
  font-size: 14px;
}

.az-info-composer--form {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.az-info-form-card,
.az-info-side-note {
  padding: 28px;
}

.az-info-side-note {
  background: var(--az-info-quiet);
}

.az-info-side-note h3 {
  font-size: 25px;
}

.az-info-side-note ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.az-info-side-note li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 18px;
  color: var(--az-muted);
  line-height: 1.5;
}

.az-info-side-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--az-primary);
}

.az-info-side-note a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid var(--az-primary);
  border-radius: 6px;
  padding: 0 15px;
  background: #fff;
  color: var(--az-primary-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.az-info-form-card form,
.az-info-form-card .woocommerce-form-track-order {
  margin-top: 18px;
}

.az-info-form-card input[type="text"],
.az-info-form-card input[type="email"],
.az-info-form-card input[type="tel"],
.az-info-form-card textarea {
  border-radius: 8px !important;
  border-color: #d8d4c4 !important;
  background: #fffdf7 !important;
  color: var(--az-text) !important;
  font-size: 15px !important;
}

.az-info-form-card input:focus,
.az-info-form-card textarea:focus {
  border-color: var(--az-primary) !important;
  box-shadow: 0 0 0 3px rgba(184, 138, 45, 0.18) !important;
  outline: 0 !important;
}

.az-info-form-card button,
.az-info-form-card input[type="submit"],
.az-info-form-card .ff-btn-submit,
.az-info-form-card .woocommerce-button {
  min-height: 44px !important;
  border-radius: 6px !important;
  background: var(--az-primary) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.az-intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.az-intent-grid a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: start;
  border: 1px solid var(--az-line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  color: var(--az-ink);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.az-intent-grid strong {
  font-size: 17px;
}

.az-intent-grid span {
  color: var(--az-muted);
  line-height: 1.5;
}

.az-filter-dock {
  margin: 28px 0;
  border: 1px solid #dfe8dc;
  border-radius: 10px;
  padding: 20px;
  background: #f8fbf5;
}

.az-filter-dock__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.az-filter-dock__head strong {
  font-size: 20px;
}

.az-filter-dock__head span {
  color: var(--az-muted);
}

.az-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.az-filter-pills + .az-filter-pills {
  margin-top: 10px;
}

.az-filter-pills a,
.az-filter-pills span {
  border: 1px solid #d9e1d4;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--az-ink);
  font-size: 12px;
  font-weight: 800;
}

.az-filter-pills--muted span {
  background: #eef7e9;
  color: #52634d;
}

.az-section {
  margin: 34px 0 14px;
}

.az-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.az-section-head h2,
.az-brand-split h2 {
  font-size: 34px;
}

.az-section-head p {
  margin: 10px auto 0;
}

.az-brand-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: center;
  margin: 44px 0;
  padding: 30px;
  border: 1px solid #e8e0bd;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff9dd 0%, #f5ffe9 54%, #eef9ff 100%);
}

.az-brand-split__cards {
  display: grid;
  gap: 12px;
}

.az-brand-split__cards article {
  border: 1px solid #dbe6d3;
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.az-brand-split__cards strong,
.az-brand-split__cards span {
  display: block;
}

.az-brand-split__cards span {
  margin-top: 6px;
  color: var(--az-muted);
  line-height: 1.5;
}

.az-wholesale-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.az-wholesale-steps article {
  border: 1px solid var(--az-line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.035);
}

.az-wholesale-steps span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #effbe7;
  color: #319b12;
  font-size: 13px;
  font-weight: 900;
}

.az-wholesale-steps strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.az-wholesale-steps p {
  margin: 10px 0 0;
  color: var(--az-muted);
  line-height: 1.6;
}

.az-offer-signup--compact {
  margin-top: 40px;
}

.az-seo-intro {
  max-width: 940px;
  margin: 14px auto 36px;
  text-align: center;
}

.az-seo-intro p {
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.7;
}

.az-full-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 28px 0 38px;
  padding: 28px;
  border-radius: 6px;
  background: var(--az-soft);
}

.az-full-range h2,
.az-product-section-head h2,
.az-offer-signup h2,
.az-reviews h2,
.az-faq-clone h2,
.az-articles h2 {
  font-size: 32px;
}

.az-full-range p {
  max-width: 780px;
  margin: 9px 0 0;
  color: var(--az-muted);
  line-height: 1.58;
}

.az-full-range a {
  flex: 0 0 auto;
  border-radius: 4px;
  padding: 12px 18px;
  background: var(--az-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-product-section-head {
  margin: 28px 0 14px;
  text-align: center;
}

.az-product-section-head--first {
  margin-top: 20px;
}

.az-offer-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin: 48px 0 42px;
  padding: 34px 38px;
  border-radius: 10px;
  border: 1px solid #e8e0bd;
  background:
    radial-gradient(circle at 86% 12%, rgba(107, 211, 63, 0.28), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(255, 211, 92, 0.28), transparent 28%),
    linear-gradient(135deg, #fff9dd 0%, #f5ffe9 54%, #eef9ff 100%);
  color: var(--az-ink);
  text-align: left;
  box-shadow: 0 16px 34px rgba(75, 101, 34, 0.1);
}

.az-offer-signup h2 {
  max-width: 680px;
  margin-top: 7px;
  color: var(--az-ink);
}

.az-offer-signup p {
  margin: 10px 0 0;
  max-width: 650px;
  color: #5d664f;
  font-size: 16px;
  line-height: 1.6;
}

.az-offer-actions {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.az-offer-signup a,
.az-offer-primary,
.az-offer-secondary {
  display: inline-flex;
  justify-content: center;
  border-radius: 5px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.az-offer-primary {
  background: var(--az-accent);
  color: #111;
}

.az-offer-secondary {
  border: 1px solid #cdd9be;
  background: rgba(255, 255, 255, 0.72);
  color: var(--az-ink);
}

.az-reviews,
.az-faq-clone,
.az-articles {
  margin: 48px 0;
}

.az-reviews,
.az-articles {
  text-align: center;
}

.az-review-grid,
.az-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
  text-align: left;
}

.az-review-grid article,
.az-article-grid a,
.az-faq-list details {
  border: 1px solid var(--az-line);
  border-radius: 8px;
  background: #fff;
  color: var(--az-ink);
}

.az-review-grid article {
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.045);
}

.az-review-grid article span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f0ffe9;
  color: #338d13;
  font-size: 13px;
  font-weight: 900;
}

.az-review-grid strong,
.az-article-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.az-review-grid p,
.az-article-grid em,
.az-faq-list p {
  color: var(--az-muted);
  line-height: 1.55;
}

.az-review-grid p {
  margin-bottom: 0;
}

.az-article-grid span {
  display: block;
  margin: 15px 16px 9px;
  color: var(--az-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-article-grid a {
  overflow: hidden;
  padding: 0 0 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.az-article-grid a:hover {
  border-color: #d2d2d2;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.075);
  transform: translateY(-2px);
}

.az-article-grid img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  background: var(--az-soft);
}

.az-article-grid strong,
.az-article-grid em {
  margin-right: 16px;
  margin-left: 16px;
}

.az-article-grid em {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 800;
  color: var(--az-ink);
}

.az-faq-clone {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 30px;
  border-radius: 10px;
  background: #f8f8f8;
}

.az-faq-clone > div > p {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--az-muted);
  line-height: 1.6;
}

.az-faq-list {
  display: grid;
  gap: 12px;
}

.az-faq-list details {
  padding: 18px 20px;
}

.az-faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style-position: outside;
}

.az-faq-list p {
  margin-bottom: 0;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  display: flex;
  min-height: 458px;
  flex-direction: column;
  width: auto !important;
  margin: 0 !important;
  border: 1px solid var(--az-line);
  border-radius: 8px;
  padding: 9px 9px 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.045);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: #d2d2d2;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.075);
  transform: translateY(-2px);
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
  width: 100%;
  height: 218px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: #f6f8f1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.8em;
  padding: 0;
  color: var(--az-ink);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  margin-top: auto;
  color: var(--az-ink);
  font-size: 18px;
  font-weight: 900;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
  color: #8c9487;
  font-size: 13px;
  font-weight: 700;
  opacity: 1;
}

.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
  color: #1f251e;
  font-size: 19px;
  text-decoration: none;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  width: 100%;
  min-height: 40px;
  border-radius: 4px;
  background: var(--az-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: background 180ms ease, transform 180ms ease;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
  background: #2a2a2a;
}

.woocommerce ul.products li.product .button:active,
.woocommerce-page ul.products li.product .button:active {
  transform: translateY(1px);
}

.woocommerce ul.products li.product span.onsale,
.woocommerce-page ul.products li.product span.onsale {
  display: none;
}

.woocommerce ul.products li.product .entry-meta,
.woocommerce-page ul.products li.product .entry-meta {
  display: none;
}

.az-sale-flag {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  min-height: 0;
  min-width: 0;
  border-radius: 4px;
  padding: 6px 8px;
  background: #ef3f32;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.az-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 5px 0 7px;
}

.az-card-chips span {
  border-radius: 4px;
  padding: 3px 6px;
  background: var(--az-soft);
  color: var(--az-muted);
  font-size: 9.5px;
  font-weight: 800;
}

/* Unified Shop */
.page-id-6 .site-main,
.page-id-6 .ct-container-full,
.page-id-6 .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.az-unified-shop {
  padding: 0 0 72px;
  background: var(--az-bg);
  color: var(--az-text);
  font-family: var(--az-font-body);
}

.az-unified-shop__inner {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  margin-inline: auto;
}

.az-unified-shop__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 620px);
  align-items: end;
  gap: 56px;
  padding: 14px 0 24px;
  border-bottom: 1px solid var(--az-border-strong);
}

.az-unified-shop__title nav {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--az-muted);
  font-size: 12px;
}

.az-unified-shop__title nav a:hover {
  color: var(--az-primary-dark);
}

.az-unified-shop__title h1 {
  margin: 0;
  font: 600 46px/1 var(--az-font-heading);
}

.az-shop-result {
  margin: 9px 0 0;
  color: var(--az-muted);
  font-size: 13px;
}

.az-unified-shop__tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 10px;
}

.az-shop-search {
  position: relative;
}

.az-shop-search input,
.az-shop-sort {
  width: 100%;
  height: 46px;
  border: 1px solid var(--az-border-strong);
  border-radius: 4px;
  background: #fff;
  color: var(--az-text);
  font-size: 14px;
  outline: 0;
}

.az-shop-search input {
  padding: 0 42px 0 14px;
}

.az-shop-sort {
  padding: 0 12px;
}

.az-shop-search > span:last-child {
  position: absolute;
  top: 13px;
  right: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--az-muted);
  border-radius: 50%;
  pointer-events: none;
}

.az-shop-search > span:last-child::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  background: var(--az-muted);
  content: "";
  transform: rotate(45deg);
}

.az-shop-search input:focus,
.az-shop-sort:focus {
  border-color: var(--az-primary);
  box-shadow: 0 0 0 3px rgba(201, 58, 34, 0.12);
}

.az-unified-shop__catalog {
  padding-top: 28px;
}

.az-shop-series {
  margin-bottom: 20px;
}

.az-shop-series > strong {
  display: block;
  margin-bottom: 10px;
  font: 600 15px var(--az-font-heading);
}

.az-shop-series__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.az-shop-series__chips button {
  min-height: 42px;
  border: 1px solid var(--az-border-strong);
  border-radius: 4px;
  padding: 0 15px;
  background: #fff;
  color: var(--az-text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.az-shop-series__chips button:hover {
  border-color: var(--az-primary);
  background: var(--az-primary-soft);
  color: var(--az-primary-dark);
}

.az-shop-series__chips button.is-active {
  border-color: var(--az-primary);
  background: var(--az-primary);
  color: #fff;
}

.az-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--az-border);
}

.az-shop-card {
  overflow: hidden;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--az-border);
  border-radius: 6px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.az-shop-card:hover {
  border-color: #d99183;
  box-shadow: var(--az-shadow-card);
  transform: translateY(-2px);
}

.az-shop-card__media {
  height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f4e6b8;
}

.az-shop-card__media img {
  width: 100%;
  height: 230px;
  margin: 0;
  padding: 12px;
  object-fit: contain;
}

.az-shop-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.az-shop-card__body > span {
  color: var(--az-primary-dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.az-shop-card__body h2 {
  min-height: 45px;
  margin: 6px 0 10px;
  font: 600 17px/1.3 var(--az-font-heading);
}

.az-shop-card__price {
  color: var(--az-text);
  font-size: 18px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.az-shop-card__price del {
  color: var(--az-muted);
  font-size: 13px;
}

.az-shop-card__price ins {
  color: var(--az-text);
  text-decoration: none;
}

.az-shop-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.az-shop-card__actions a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--az-primary);
  border-radius: 4px;
  padding: 6px;
  color: var(--az-primary-dark);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.az-shop-card__actions a:last-child {
  background: var(--az-primary);
  color: #fff;
}

.az-shop-card__actions a:hover {
  border-color: var(--az-primary-dark);
  background: var(--az-primary-dark);
  color: #fff;
}

.az-shop-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 48px 0;
  color: var(--az-muted);
  text-align: center;
}

.az-shop-wholesale {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  border-top: 1px solid var(--az-border-strong);
  border-bottom: 1px solid var(--az-border-strong);
  padding: 26px 30px;
  background: #fff;
}

.az-shop-wholesale span {
  color: var(--az-primary-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.az-shop-wholesale h2 {
  margin: 3px 0 0;
  font: 600 24px var(--az-font-heading);
}

.az-shop-wholesale p {
  margin: 5px 0 0;
  color: var(--az-muted);
  font-size: 13px;
}

.az-shop-wholesale > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--az-primary);
  border-radius: 4px;
  padding: 0 20px;
  background: var(--az-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .az-unified-shop__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .az-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .az-unified-shop {
    padding-bottom: 48px;
  }

  .az-unified-shop__head {
    padding: 10px 0 20px;
  }

  .az-unified-shop__title nav {
    margin-bottom: 10px;
  }

  .az-unified-shop__title h1 {
    font-size: 38px;
  }

  .az-unified-shop__tools {
    grid-template-columns: 1fr;
  }

  .az-unified-shop__catalog {
    padding-top: 24px;
  }

  .az-shop-series__chips {
    margin-right: calc(-1 * var(--az-v2-gutter));
    padding-right: var(--az-v2-gutter);
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .az-shop-series__chips button {
    flex: 0 0 auto;
  }

  .az-shop-grid {
    gap: 8px;
  }

  .az-shop-card__media,
  .az-shop-card__media img {
    height: 170px;
  }

  .az-shop-card__media img {
    padding: 8px;
  }

  .az-shop-card__body {
    padding: 12px;
  }

  .az-shop-card__body h2 {
    min-height: 58px;
    font-size: 15px;
  }

  .az-shop-card__actions {
    grid-template-columns: 1fr;
  }

  .az-shop-card__actions a:first-child {
    display: none;
  }

  .az-shop-wholesale {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .az-shop-wholesale > a {
    width: 100%;
  }
}

.az-loop-wholesale {
  display: block;
  margin-top: 7px;
  border: 1px solid var(--az-line);
  border-radius: 4px;
  padding: 7px 10px;
  color: var(--az-ink);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.az-loop-buy-now {
  border-color: rgba(201, 58, 34, 0.28);
  background: var(--az-primary-soft);
  color: var(--az-primary);
}

.az-loop-buy-now:hover {
  border-color: var(--az-primary);
  background: var(--az-primary);
  color: #fff;
}

body.single-product .entry-header {
  display: none;
}

body.single-product .ct-container-full {
  padding-bottom: 0;
}

body.single-product .product {
  margin-top: 28px;
}

body.single-product div.product div.images,
body.single-product div.product div.summary {
  margin-bottom: 34px;
}

body.single-product div.product div.images {
  border: 1px solid #e1e8da;
  border-radius: 14px;
  padding: 18px;
  background: #f7faf3;
}

body.single-product div.product div.images img {
  border-radius: 10px;
  background: #f1f6ea;
  object-fit: contain;
}

body.single-product .product_title {
  max-width: 620px;
  color: var(--az-ink);
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

body.single-product .summary .price {
  margin: 14px 0;
  color: var(--az-ink);
  font-size: 28px;
  font-weight: 900;
}

body.single-product .summary .price del {
  color: #8a9387;
  font-size: 18px;
  opacity: 1;
}

body.single-product .woocommerce-product-details__short-description {
  max-width: 620px;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.65;
}

body.single-product form.cart {
  display: grid;
  grid-template-columns: auto minmax(180px, 260px);
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

body.single-product form.cart .quantity input.qty {
  min-height: 48px;
  border: 1px solid #dce5d6;
  border-radius: 6px;
  background: #fff;
  color: var(--az-ink);
  font-weight: 800;
}

body.single-product form.cart .single_add_to_cart_button {
  min-height: 48px;
  border-radius: 6px;
  background: #26372d;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

body.single-product .product_meta {
  margin-top: 18px;
  color: #667062;
  font-size: 13px;
}

.az-single-spec-panel {
  max-width: 640px;
  margin-top: 22px;
  border: 1px solid #e1e8da;
  border-radius: 12px;
  padding: 20px;
  background: #f7faf3;
}

.az-single-spec-panel__head {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.az-single-spec-panel__head span {
  color: #586650;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.az-single-spec-panel__head strong {
  color: var(--az-ink);
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 22px;
  line-height: 1.12;
}

.az-single-spec-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.az-single-spec-panel dl div {
  border: 1px solid #e2eadc;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.az-single-spec-panel dt,
.az-single-spec-panel dd {
  margin: 0;
}

.az-single-spec-panel dt {
  color: #71806c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-single-spec-panel dd {
  margin-top: 4px;
  color: var(--az-ink);
  font-size: 15px;
  font-weight: 900;
}

.az-single-wholesale-cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
  border: 1px solid #cfdcc7;
  border-radius: 6px;
  padding: 12px 16px;
  background: #fff;
  color: var(--az-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.az-bulk-price-panel {
  max-width: 640px;
  margin-top: 16px;
  border: 1px solid #e1e8da;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.az-bulk-price-panel__head {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.az-bulk-price-panel__head span {
  color: #586650;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.az-bulk-price-panel__head strong {
  color: var(--az-ink);
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 22px;
  line-height: 1.12;
}

.az-bulk-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.az-bulk-price-card {
  display: grid;
  min-height: 118px;
  align-content: start;
  gap: 7px;
  border: 1px solid #e2eadc;
  border-radius: 10px;
  padding: 14px;
  background: #f7faf3;
}

.az-bulk-price-card--featured {
  border-color: #cadfbe;
  background: #eef8e8;
}

.az-bulk-price-card span {
  color: #71806c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.az-bulk-price-card strong {
  color: var(--az-ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.az-bulk-price-card em,
.az-bulk-price-panel p {
  color: var(--az-muted);
  font-style: normal;
  line-height: 1.5;
}

.az-bulk-price-card em {
  font-size: 12px;
}

.az-bulk-price-panel p {
  margin: 14px 0 0;
  font-size: 13px;
}

.az-single-confidence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 4px 0 34px;
}

.az-single-confidence-strip article {
  border: 1px solid #e1e8da;
  border-radius: 10px;
  padding: 18px;
  background: #fff;
}

.az-single-confidence-strip strong,
.az-single-confidence-strip span {
  display: block;
}

.az-single-confidence-strip strong {
  color: var(--az-ink);
  font-size: 16px;
}

.az-single-confidence-strip span {
  margin-top: 6px;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.55;
}

body.single-product .woocommerce-tabs {
  border: 1px solid #e1e8da;
  border-radius: 12px;
  padding: 22px;
  background: #fff;
}

body.single-product .woocommerce-tabs ul.tabs {
  margin-bottom: 18px;
}

body.single-product .woocommerce-tabs .panel {
  color: var(--az-muted);
  line-height: 1.7;
}

body.single-product .woocommerce-tabs .panel h2 {
  color: var(--az-ink);
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 26px;
}

.az-product-copy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.az-product-copy-list li {
  border: 1px solid #e8eee3;
  border-radius: 8px;
  padding: 10px 12px;
  background: #f7faf3;
  color: var(--az-ink);
}

body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main,
body.woocommerce-account .site-main {
  color: var(--az-ink);
}

body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-account .entry-content {
  margin-top: 26px;
}

body.woocommerce-cart .woocommerce,
body.woocommerce-checkout .woocommerce,
body.woocommerce-account .woocommerce {
  max-width: 1180px;
  margin: 0 auto;
}

body.woocommerce-cart .woocommerce::before,
body.woocommerce-checkout .woocommerce::before,
body.woocommerce-account .woocommerce::before {
  display: block;
  margin-bottom: 18px;
  color: #586650;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-cart .woocommerce::before {
  content: "Cart";
}

body.woocommerce-checkout .woocommerce::before {
  content: "Secure checkout";
}

body.woocommerce-account .woocommerce::before {
  content: "Account";
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-checkout form.checkout,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout #customer_details,
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
  border: 1px solid #e1e8da;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
  padding: 22px;
}

body.woocommerce-cart table.shop_table,
body.woocommerce-checkout table.shop_table {
  border-color: #e1e8da;
  border-radius: 10px;
  overflow: hidden;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-checkout table.shop_table th {
  color: var(--az-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.woocommerce-cart table.shop_table td,
body.woocommerce-checkout table.shop_table td {
  border-color: #edf1e8;
  color: var(--az-muted);
}

body.woocommerce-cart .product-name a,
body.woocommerce-checkout .product-name {
  color: var(--az-ink);
  font-weight: 800;
}

body.woocommerce-cart .quantity input.qty {
  min-height: 42px;
  border: 1px solid #dce5d6;
  border-radius: 6px;
  background: #fbfcf8;
  color: var(--az-ink);
  font-weight: 800;
}

body.woocommerce-cart .cart-collaterals,
body.woocommerce-checkout form.checkout {
  margin-top: 24px;
}

body.woocommerce-cart .cart_totals h2,
body.woocommerce-checkout h3,
body.woocommerce-account h2 {
  color: var(--az-ink);
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 26px;
  line-height: 1.12;
}

body.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 24px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
}

body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review {
  padding: 24px;
}

body.woocommerce-checkout #order_review_heading {
  margin-top: 0;
}

body.woocommerce-checkout .form-row label {
  color: var(--az-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select,
body.woocommerce-account input.input-text {
  min-height: 48px;
  border: 1px solid #dce5d6;
  border-radius: 8px;
  background: #fbfcf8;
  color: var(--az-ink);
  box-shadow: none;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-account input.input-text:focus {
  border-color: #9fc98a;
  box-shadow: 0 0 0 3px rgba(118, 200, 77, 0.14);
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart button.button,
body.woocommerce-cart a.button,
body.woocommerce-checkout #place_order,
body.woocommerce-account button.button,
body.woocommerce-account a.button {
  border-radius: 7px;
  background: #26372d;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.woocommerce-cart .coupon .input-text {
  min-height: 42px;
  border: 1px solid #dce5d6;
  border-radius: 6px;
}

body.woocommerce-checkout #payment {
  border-radius: 12px;
  background: #f7faf3;
}

body.woocommerce-checkout #payment ul.payment_methods {
  border-bottom-color: #e1e8da;
}

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-cart .woocommerce-error {
  border-top-color: #76c84d;
  border-radius: 10px;
  background: #f7faf3;
  color: var(--az-ink);
}

body.woocommerce-cart .return-to-shop .button,
body.woocommerce-cart .wc-empty-cart-message + .return-to-shop .button {
  display: inline-flex;
  justify-content: center;
  min-width: 180px;
}

.az-site-footer {
  margin: 46px 0 0;
  border: 1px solid #dde4d6;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(107, 211, 63, 0.16), transparent 30%),
    linear-gradient(135deg, #fbfcf7 0%, #f2f8ee 58%, #eef6fb 100%);
  color: var(--az-ink);
  overflow: hidden;
}

.az-brand-hero--contact {
  background:
    radial-gradient(circle at 84% 18%, rgba(107, 211, 63, 0.22), transparent 28%),
    linear-gradient(135deg, #fcfff6 0%, #eef8ff 100%);
}

.az-brand-hero--faq {
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 225, 120, 0.16), transparent 28%),
    radial-gradient(circle at 16% 84%, rgba(107, 211, 63, 0.14), transparent 24%),
    linear-gradient(135deg, #fffdf3 0%, #f2fbff 100%);
}

.az-brand-hero--shop {
  min-height: 390px;
  margin-bottom: 18px;
  padding-top: 24px;
  padding-bottom: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(107, 211, 63, 0.2), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(255, 220, 92, 0.14), transparent 28%),
    linear-gradient(135deg, #fcfff6 0%, #eef8ff 100%);
}

.az-brand-hero--shop h1 {
  font-size: 44px;
}

.az-shop-hero-stack {
  display: grid;
  gap: 14px;
}

.az-shop-hero-main {
  display: block;
  width: 100%;
  height: 260px;
  border-radius: 12px;
  background: #eaf8ff;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.1);
}

.az-shop-hero-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.az-shop-hero-mini img {
  width: 100%;
  height: 132px;
  border: 1px solid #dde8d6;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
  padding: 12px;
}

.az-shop-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 6px 0 20px;
}

.az-shop-category-strip a {
  display: grid;
  flex: 1 1 180px;
  gap: 8px;
  min-height: 106px;
  align-content: center;
  border: 1px solid #dfe7d8;
  border-radius: 9px;
  padding: 18px;
  background: #fff;
  color: var(--az-ink);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.az-shop-category-strip a:hover,
.az-shop-promo:hover {
  border-color: #c9dfbd;
  box-shadow: 0 16px 30px rgba(61, 112, 38, 0.1);
  transform: translateY(-2px);
}

.az-shop-category-strip strong {
  font-size: 18px;
  line-height: 1.15;
}

.az-shop-category-strip span {
  color: #60705b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-shop-hero-v2 {
  margin-bottom: 18px;
}

.az-shop-toolbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 16px;
}

.az-shop-toolbar a {
  display: grid;
  gap: 7px;
  min-height: 132px;
  align-content: end;
  border: 1px solid #dbe6d7;
  border-radius: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 88% 14%, rgba(201, 58, 34, 0.1), transparent 32%),
    #fff;
  color: var(--az-ink);
  box-shadow: 0 10px 24px rgba(23, 32, 27, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.az-shop-toolbar a:hover,
.az-series-rail a:hover {
  border-color: #c9dfbd;
  box-shadow: 0 18px 34px rgba(59, 104, 42, 0.11);
  transform: translateY(-2px);
}

.az-shop-toolbar span,
.az-series-rail span,
.az-shop-toolbar em {
  color: #64715f;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.az-shop-toolbar span {
  color: var(--az-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.az-shop-toolbar strong {
  color: var(--az-ink);
  font-family: var(--az-font-heading);
  font-size: 22px;
  line-height: 1.08;
}

.az-commerce-filters {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 16px 0 18px;
  border: 1px solid #dfe8dc;
  border-radius: 14px;
  padding: 18px;
  background: #fbfdf8;
}

.az-commerce-filters strong {
  display: block;
  color: var(--az-ink);
  font-family: var(--az-font-heading);
  font-size: 20px;
  line-height: 1.1;
}

.az-commerce-filters span {
  display: block;
  margin-top: 5px;
  color: #667161;
  font-size: 13px;
  line-height: 1.45;
}

.az-commerce-filters nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.az-commerce-filters nav a {
  border: 1px solid #d6e1d2;
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  color: var(--az-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.az-series-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 28px;
}

.az-series-rail--brand {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.az-series-rail--iget {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.az-series-rail a {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: start;
  border: 1px solid #dfe7d8;
  border-radius: 12px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 242, 0.96));
  color: var(--az-ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.az-series-rail strong {
  color: var(--az-ink);
  font-family: var(--az-font-heading);
  font-size: 17px;
  line-height: 1.1;
}

.az-shelf-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin: 28px 0 14px;
  border-top: 1px solid #dfe7d8;
  padding-top: 24px;
}

.az-shelf-heading h2 {
  margin: 0;
  color: var(--az-ink);
  font-family: var(--az-font-heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.az-shelf-heading a {
  border: 1px solid #d6e1d2;
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: var(--az-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.az-brand-hero__media--double {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  background: #f5fbef;
}

.az-brand-hero__media--double img {
  height: 360px;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
  padding: 10px;
}

.az-shop-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.82fr));
  gap: 18px;
  margin: 28px 0 18px;
}

.az-shop-promo {
  display: grid;
  min-height: 190px;
  align-content: end;
  gap: 10px;
  border: 1px solid #dce6d5;
  border-radius: 10px;
  padding: 24px;
  background:
    radial-gradient(circle at 90% 12%, rgba(107, 211, 63, 0.18), transparent 30%),
    #fff;
  color: var(--az-ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.az-shop-promo--wide {
  background:
    linear-gradient(135deg, rgba(255, 246, 202, 0.88), rgba(240, 253, 235, 0.9)),
    url("/wp-content/uploads/2026/06/ozi-hero-4.png") right center / contain no-repeat;
}

.az-shop-promo span {
  color: var(--az-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.az-shop-promo strong {
  max-width: 520px;
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 24px;
  line-height: 1.12;
}

.az-shop-promo em {
  max-width: 520px;
  color: #5e6b59;
  font-style: normal;
  line-height: 1.55;
}

.az-shop-shelf-head {
  margin-top: 30px;
}

body.post-type-archive-product .site-main > .woocommerce-result-count,
body.post-type-archive-product .site-main > .woocommerce-ordering,
body.post-type-archive-product .site-main > ul.products,
body.post-type-archive-product .site-main > nav.woocommerce-pagination {
  display: none;
}

body.post-type-archive-product .entry-header.ct-container-narrow {
  width: min(1152px, calc(100% - 72px));
  max-width: 1152px;
  padding-top: 0;
}

body.post-type-archive-product .entry-header .page-title,
body.post-type-archive-product #main > .ct-container {
  display: none;
}

.az-shop-page .az-shop-hero-main {
  height: 214px;
  object-fit: contain;
  object-position: center;
}

.az-shop-page .az-shop-hero-mini img {
  height: 92px;
  object-fit: contain;
}

.az-contact-hero-panel {
  position: relative;
}

.az-contact-hero-panel img {
  display: block;
  width: 100%;
  height: 360px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.12);
}

.az-contact-hero-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 290px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(219, 234, 210, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
}

.az-contact-hero-note strong,
.az-contact-sidecard h3 {
  display: block;
  margin: 0;
  color: var(--az-ink);
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 22px;
  line-height: 1.08;
}

.az-contact-hero-note span,
.az-contact-sidecard p,
.az-section-head--contact p,
.az-contact-form-card .ff-message-success {
  color: #5c6659;
  line-height: 1.62;
}

.az-contact-hero-note span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.az-contact-hero-note ul,
.az-contact-sidecard ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.az-contact-hero-note li,
.az-contact-sidecard li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: #394535;
  font-size: 14px;
}

.az-contact-hero-note li::before,
.az-contact-sidecard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--az-accent);
}

.az-intent-grid--contact a {
  min-height: 154px;
}

.az-contact-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.az-contact-form-card,
.az-contact-sidecard {
  border: 1px solid #dde7d7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.05);
}

.az-contact-form-card {
  padding: 28px;
}

.az-section-head--contact {
  margin-bottom: 18px;
}

.az-contact-sidebar {
  display: grid;
  gap: 18px;
}

.az-contact-sidecard {
  padding: 24px;
  background:
    radial-gradient(circle at 85% 0%, rgba(107, 211, 63, 0.12), transparent 25%),
    #fff;
}

.az-contact-sidecard--soft {
  background: linear-gradient(135deg, #f8fff3 0%, #eef7ff 100%);
}

.az-contact-sidecard p {
  margin: 10px 0 0;
  font-size: 14px;
}

.az-contact-sidecard a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 6px;
  padding: 11px 14px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-contact-side-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.az-contact-side-links a {
  width: 100%;
  margin-top: 0;
  background: #fff;
  color: var(--az-ink);
  border: 1px solid #dce7d4;
}

.az-contact-form-card .ff-default .ff-el-group {
  margin-bottom: 18px;
}

.az-contact-form-card .ff-default .ff-t-container {
  gap: 14px;
}

.az-contact-form-card .ff-default .ff-t-cell {
  flex: 1 1 100%;
}

.az-contact-form-card .ff-default label,
.az-contact-form-card .ff-default .ff-el-input--label label {
  margin-bottom: 8px;
  color: var(--az-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-contact-form-card .ff-default input[type="text"],
.az-contact-form-card .ff-default input[type="email"],
.az-contact-form-card .ff-default textarea,
.az-contact-form-card .ff-default select {
  min-height: 50px;
  border: 1px solid #d8e5d2;
  border-radius: 8px;
  background: #fbfdf8;
  color: var(--az-ink);
  box-shadow: none;
}

.az-contact-form-card .ff-default textarea {
  min-height: 150px;
  resize: vertical;
}

.az-contact-form-card .ff-default input:focus,
.az-contact-form-card .ff-default textarea:focus,
.az-contact-form-card .ff-default select:focus {
  border-color: #9fd97e;
  box-shadow: 0 0 0 3px rgba(107, 211, 63, 0.12);
}

.az-contact-form-card .ff-btn-submit,
.az-contact-form-card .ff_submit_btn_wrapper button {
  border: 0;
  border-radius: 8px;
  padding: 14px 22px;
  background: var(--az-accent);
  color: #111;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(107, 211, 63, 0.2);
}

.az-contact-form-card .ff-message-success {
  margin-top: 8px;
  border: 1px solid #d9ead0;
  border-radius: 10px;
  padding: 14px 16px;
  background: #f7fff2;
}

.az-footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(130px, 0.7fr)) minmax(220px, 1fr);
  gap: 28px;
  padding: 38px;
}

.az-footer-logo {
  display: inline-flex;
  color: var(--az-ink);
  font-family: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.az-footer-brand p,
.az-footer-contact p {
  max-width: 390px;
  margin: 12px 0 0;
  color: #596456;
  line-height: 1.65;
}

.az-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.az-footer-badges span {
  border: 1px solid #d9e3d2;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
  color: #42513e;
  font-size: 12px;
  font-weight: 800;
}

.az-footer-col,
.az-footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.az-footer-col strong,
.az-footer-contact strong {
  color: var(--az-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.az-footer-col a {
  color: #3f4a3c;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.az-footer-col a:hover {
  color: #1f6f0f;
  transform: translateX(2px);
}

.az-footer-contact a {
  display: inline-flex;
  justify-content: center;
  margin-top: 4px;
  border-radius: 5px;
  padding: 12px 16px;
  background: var(--az-accent);
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.az-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 38px;
  border-top: 1px solid #dce5d6;
  color: #667063;
  font-size: 13px;
}

.ct-footer {
  display: none;
}

@media (max-width: 1000px) {
  .az-service-row,
  .az-review-grid,
  .az-article-grid,
  .az-intent-grid,
  .az-info-panel,
  .az-wholesale-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .az-reference-hero {
    min-height: 360px;
  }

  .az-hero-track,
  .az-hero-banner-link,
  .az-hero-banner {
    height: 360px;
    min-height: 360px;
  }

  .az-hero-commerce {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
    height: 360px;
    min-height: 360px;
    padding: 34px 34px;
  }

  .az-hero-commerce__copy h2 {
    font-size: clamp(36px, 5.4vw, 52px);
  }

  .az-hero-commerce__copy p {
    font-size: 16px;
  }

  .az-hero-commerce__media {
    min-height: 280px;
  }

  .az-faq-clone {
    grid-template-columns: 1fr;
  }

  .az-offer-signup {
    grid-template-columns: 1fr;
  }

  .az-offer-actions {
    width: 100%;
  }

  .az-brand-hero,
  .az-brand-split {
    grid-template-columns: 1fr;
  }

  .az-info-hero,
  .az-info-composer,
  .az-info-composer--form {
    grid-template-columns: 1fr;
  }

  .az-shop-promo-grid {
    grid-template-columns: 1fr;
  }

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

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

  .az-single-confidence-strip {
    grid-template-columns: 1fr;
  }

  .az-brand-hero__media img {
    height: 320px;
  }

  .az-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .az-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .az-service-row,
  .az-review-grid,
  .az-article-grid,
  .az-intent-grid,
  .az-info-panel,
  .az-wholesale-steps {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }

  .az-reference-hero {
    min-height: 300px;
  }

  .az-hero-track,
  .az-hero-banner-link,
  .az-hero-banner {
    height: 300px;
    min-height: 300px;
  }

  .az-hero-banner {
    object-position: 34% center;
  }

  .az-hero-commerce {
    grid-template-columns: 1fr;
    height: 300px;
    min-height: 300px;
    padding: 26px 22px;
  }

  .az-hero-commerce__copy h2 {
    max-width: 360px;
    font-size: 34px;
  }

  .az-hero-commerce__copy p {
    max-width: 330px;
    margin-top: 12px;
    font-size: 14px;
  }

  .az-hero-commerce__copy em {
    margin-top: 12px;
    font-size: 18px;
  }

  .az-hero-commerce__copy strong {
    margin-top: 12px;
    padding: 11px 14px;
  }

  .az-hero-commerce__media {
    display: none;
  }

  .az-home-title h1 {
    font-size: 34px;
  }

  .az-brand-hero {
    padding: 24px 18px;
  }

  .az-info-hero__copy,
  .az-info-hero__panel,
  .az-info-form-card,
  .az-info-side-note {
    padding: 22px 18px;
  }

  .az-info-composer {
    padding: 18px;
  }

  .az-contact-form-card,
  .az-contact-sidecard {
    padding: 22px 18px;
  }

  body.single-product form.cart,
  .az-single-spec-panel dl,
  .az-bulk-price-grid,
  .az-product-copy-list {
    grid-template-columns: 1fr;
  }

  body.single-product form.cart .single_add_to_cart_button {
    width: 100%;
  }

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

  .az-brand-hero--shop h1 {
    font-size: 32px;
  }

  .az-shop-hero-main {
    height: 150px;
  }

  .az-shop-hero-mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .az-shop-page .az-shop-hero-mini img {
    height: 72px;
  }

  .az-shop-promo {
    min-height: 170px;
    padding: 20px 18px;
  }

  .az-shop-promo strong {
    font-size: 22px;
  }

  .az-brand-hero__media img {
    height: 260px;
  }

  .az-brand-hero--shop {
    min-height: 0;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .az-brand-hero--shop h1 {
    font-size: 28px;
  }

  .az-shop-page .az-shop-hero-main {
    height: 108px;
  }

  .az-shop-page .az-shop-hero-mini {
    display: none;
  }

  .az-actions,
  .az-actions a,
  .az-filter-pills a,
  .az-filter-pills span {
    width: 100%;
  }

  .az-actions a,
  .az-filter-pills a,
  .az-filter-pills span {
    justify-content: center;
  }

  .az-brand-split {
    padding: 24px 18px;
  }

  .az-full-range {
    align-items: flex-start;
    flex-direction: column;
  }

  .az-full-range a,
  .az-offer-signup a {
    width: 100%;
    justify-content: center;
  }

  .az-offer-signup,
  .az-faq-clone {
    padding: 24px 18px;
  }

  .az-article-grid img {
    height: 180px;
  }

  .az-site-footer {
    margin-top: 42px;
  }

  .az-footer-top {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .az-footer-bottom {
    padding: 16px 18px;
  }
}

/* Calm visual pass: keep the same layout, reduce decorative noise site-wide. */
:root {
  --az-ink: #1f251e;
  --az-muted: #667062;
  --az-line: #e5eadf;
  --az-soft: #f7faf3;
  --az-card: #fff;
  --az-accent: #76c84d;
  --az-dark: #26372d;
}

body {
  background: #fbfcf8;
}

.az-page-shell,
.az-home-ausclone {
  background: #fbfcf8;
}

.az-reference-hero {
  border: 1px solid #dfe7d8;
  background: #edf4e8;
  box-shadow: none;
}

.az-hero-banner {
  opacity: 0.94;
}

.az-brand-hero,
.az-brand-hero--contact,
.az-brand-hero--faq,
.az-brand-hero--shop {
  border-color: #e1e8da;
  background: #f8fbf2;
  box-shadow: none;
}

.az-brand-hero__media,
.az-shop-hero-main,
.az-shop-hero-mini img {
  background: #f1f6ea;
  box-shadow: none;
}

.az-brand-hero--iget .az-brand-hero__media img {
  background: #f1f6ea;
}

.az-kicker,
.az-section-label,
.az-offer-copy span,
.az-shop-promo span,
.az-footer-col strong,
.az-footer-contact strong {
  color: #586650;
  letter-spacing: 0.08em;
}

.az-button--primary,
.az-offer-primary,
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.az-footer-contact a {
  color: #fff;
  background: #26372d;
}

.az-button--ghost,
.az-offer-secondary,
.az-filter-pills a,
.az-filter-pills span,
.az-card-chips span,
.az-footer-badges span {
  background: #fff;
}

.az-filter-dock,
.az-full-range,
.az-brand-split,
.az-contact-card,
.az-faq-clone,
.az-site-footer {
  border-color: #e1e8da;
  background: #f7faf3;
  box-shadow: none;
}

.az-offer-signup,
.az-offer-signup--compact {
  border-color: #e1e8da;
  background: #f7faf3;
  box-shadow: none;
}

.az-shop-promo,
.az-shop-promo--wide {
  background: #fff;
  box-shadow: none;
}

.az-shop-promo:hover,
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover,
.az-card:hover {
  box-shadow: 0 8px 18px rgba(38, 55, 45, 0.06);
  transform: translateY(-1px);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.az-card,
.az-footer-badges span,
.az-brand-split__cards article {
  border-color: #e4eadf;
  box-shadow: none;
}

.az-site-footer {
  margin-top: 34px;
}

.az-footer-top {
  border-color: #e1e8da;
}

/* Global header/footer consistency: override theme/page active states. */
#header,
#header [data-row],
#header [data-row*="middle"],
#header .ct-container,
#header .ct-header {
  background: #fbfcf8 !important;
  color: #1f251e !important;
  box-shadow: none !important;
}

#header [data-row] {
  border-bottom: 1px solid #e1e8da !important;
}

#header a,
#header .menu a,
#header [data-id="menu"] a,
#header .ct-header-text,
#header .ct-label {
  color: #1f251e !important;
}

#header a:hover,
#header .menu a:hover,
#header [data-id="menu"] a:hover,
#header .current-menu-item > a,
#header .current_page_item > a,
#header [aria-current="page"] {
  color: #1f251e !important;
}

#header .current-menu-item > a,
#header .current_page_item > a,
#header [aria-current="page"] {
  font-weight: 700 !important;
}

.az-site-footer,
.az-site-footer--compact {
  color: #1f251e !important;
  text-align: left !important;
  border-top: 1px solid #e1e8da !important;
  background: #f7faf3 !important;
  background-image: none !important;
  box-shadow: none !important;
}

.az-site-footer a,
.az-site-footer .az-footer-logo,
.az-site-footer strong {
  color: #1f251e !important;
}

.az-site-footer a:hover {
  color: #1f251e !important;
}

.az-footer-bottom {
  color: #667062 !important;
  text-align: left !important;
  border-top-color: #dce5d6 !important;
}

.az-site-footer .az-footer-top,
.az-site-footer .az-footer-brand,
.az-site-footer .az-footer-brand p,
.az-site-footer .az-footer-logo,
.az-site-footer .az-footer-col,
.az-site-footer .az-footer-contact {
  text-align: left !important;
}

.az-site-footer .az-footer-logo {
  justify-content: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.az-site-footer .az-footer-menu {
  grid-column: span 3;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  align-content: start;
}

@media (max-width: 760px) {
  .az-site-footer .az-footer-menu {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.az-site-footer {
  margin-top: var(--az-space-16);
  border-top: 1px solid var(--az-border) !important;
  background: var(--az-surface) !important;
  color: var(--az-text) !important;
  font-family: var(--az-font-body);
}

.az-site-footer .az-footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(160px, 0.8fr));
  gap: var(--az-space-8);
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--az-space-12) var(--az-space-8);
}

.az-site-footer .az-footer-logo {
  display: inline-flex;
  color: var(--az-text) !important;
  font-family: var(--az-font-heading);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.az-site-footer .az-footer-brand p {
  max-width: 42ch;
  margin: var(--az-space-4) 0 0;
  color: var(--az-text-soft) !important;
  font-size: 15px;
  line-height: 1.55;
}

.az-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--az-space-2);
  margin-top: var(--az-space-5);
}

.az-footer-badges span {
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 7px 9px;
  background: var(--az-bg-soft);
  color: var(--az-text-soft);
  font-size: 13px;
  font-weight: 700;
}

.az-site-footer .az-footer-menu {
  display: grid;
  grid-column: auto;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 9px;
}

.az-site-footer .az-footer-menu strong {
  margin-bottom: var(--az-space-1);
  color: var(--az-text) !important;
  font-family: var(--az-font-heading);
  font-size: 14px;
  font-weight: 800;
}

.az-site-footer .az-footer-menu a {
  color: var(--az-muted) !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.az-site-footer .az-footer-menu a:hover {
  color: var(--az-primary) !important;
}

.az-site-footer .az-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--az-space-4);
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--az-border) !important;
  padding: var(--az-space-5) var(--az-space-8);
  color: var(--az-muted) !important;
  font-size: 13px;
  font-weight: 600;
}

body .site-header,
body .ct-header {
  font-family: var(--az-font-body);
}

body .site-header a,
body .ct-header a,
#header a,
#header .menu a,
#header [data-id="menu"] a {
  color: var(--az-text) !important;
  font-weight: 700;
}

body .site-header a:hover,
body .ct-header a:hover,
body .site-header [aria-current="page"],
body .ct-header [aria-current="page"],
#header a:hover,
#header .menu a:hover,
#header [data-id="menu"] a:hover,
#header .current-menu-item > a,
#header .current_page_item > a,
#header [aria-current="page"] {
  color: var(--az-primary) !important;
}

@media (max-width: 760px) {
  .az-site-footer .az-footer-top {
    grid-template-columns: 1fr;
    padding: var(--az-space-10) var(--az-space-4);
  }

  .az-site-footer .az-footer-bottom {
    flex-direction: column;
    padding: var(--az-space-5) var(--az-space-4);
  }
}

body.home .site-main {
  background: var(--az-bg);
}

body.home .az-reference-hero {
  min-height: 336px;
  margin: 10px 0 10px;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-md);
  background: var(--az-bg-soft);
}

body.home .az-hero-track {
  min-height: 336px;
}

body.home .az-hero-banner-link,
body.home .az-hero-banner,
body.home .az-hero-commerce {
  height: 336px;
}

body.home .az-hero-commerce {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 24px;
  padding: 28px 42px;
}

body.home .az-hero-commerce__copy h2 {
  max-width: 520px;
  font-size: clamp(36px, 4.1vw, 52px);
  line-height: 0.98;
}

body.home .az-hero-commerce__copy p {
  max-width: 440px;
  margin-top: 12px;
  font-size: 16px;
}

body.home .az-hero-commerce__copy em {
  margin-top: 12px;
  font-size: 20px;
}

body.home .az-hero-commerce__copy strong {
  margin-top: 12px;
  border-radius: var(--az-radius-sm);
  background: var(--az-primary);
}

body.home .az-hero-commerce__media {
  min-height: 272px;
  border-radius: var(--az-radius-md);
}

body.home .az-hero-commerce__media img {
  width: min(84%, 330px);
  max-height: 300px;
}

body.home .az-service-row {
  max-width: none;
  margin: 10px 0 12px;
  gap: 10px;
}

.az-quick-deals {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin: 10px 0 10px;
}

.az-quick-deals__head {
  display: grid;
  align-content: center;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 12px 14px;
  background: var(--az-primary);
  color: #fff;
}

.az-quick-deals__head span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  opacity: 0.78;
  text-transform: uppercase;
}

.az-quick-deals__head strong {
  margin-top: 4px;
  font-family: var(--az-font-heading);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.az-quick-deals__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.az-quick-deal-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  column-gap: 10px;
  align-items: center;
  min-height: 96px;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 9px;
  background: var(--az-surface);
}

.az-quick-deal-card__media {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 68px;
  height: 78px;
  border-radius: var(--az-radius-sm);
  background: var(--az-bg-soft);
  overflow: hidden;
}

.az-quick-deal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.az-quick-deal-card__copy {
  min-width: 0;
}

.az-quick-deal-card__copy a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--az-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.18;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.az-quick-deal-card__copy strong {
  display: block;
  margin-top: 5px;
  color: var(--az-primary);
  font-family: var(--az-font-heading);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.az-quick-deal-card__copy del,
.az-quick-deal-card__copy .screen-reader-text {
  display: none;
}

.az-quick-deal-card__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: var(--az-radius-sm);
  background: var(--az-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.az-quick-deal-card__buy:hover {
  background: var(--az-primary-dark);
  color: #fff;
}

body.home .az-service-row div {
  grid-template-columns: auto 1fr;
  justify-items: start;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 9px 12px;
  background: var(--az-surface);
  text-align: left;
}

body.home .az-service-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--az-radius-sm);
  background: var(--az-success-soft);
  color: var(--az-success);
  box-shadow: none;
}

body.home .az-service-icon svg {
  width: 18px;
  height: 18px;
}

body.home .az-product-section-head--first {
  margin-top: 14px;
  margin-bottom: 14px;
}

body.home .az-product-section-head--first h2 {
  font-size: clamp(26px, 3vw, 34px);
}

body.home .az-home-title {
  margin-top: 26px;
}

.az-card-type-flag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 8px auto 0;
  border: 1px solid #d8e1d3;
  border-radius: 999px;
  padding: 5px 9px;
  background: #fff7d9;
  color: #74520f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  body.home .az-reference-hero,
  body.home .az-hero-track,
  body.home .az-hero-banner-link,
  body.home .az-hero-banner,
  body.home .az-hero-commerce {
    height: auto;
    min-height: 0;
  }

  body.home .az-hero-commerce {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  body.home .az-service-row {
    grid-template-columns: 1fr 1fr;
  }

  .az-quick-deals {
    grid-template-columns: 1fr;
  }

  .az-quick-deals__grid {
    grid-template-columns: 1fr 1fr;
  }

  .az-quick-deal-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .az-quick-deal-card__media {
    width: 58px;
  }
}

@media (max-width: 1000px) {
  .az-shop-toolbar,
  .az-series-rail,
  .az-series-rail--brand,
  .az-series-rail--iget {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .az-commerce-filters {
    grid-template-columns: 1fr;
  }

  .az-commerce-filters nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .az-shop-toolbar,
  .az-series-rail,
  .az-series-rail--brand,
  .az-series-rail--iget,
  .az-brand-hero__media--double {
    grid-template-columns: 1fr;
  }

  .az-shop-toolbar a,
  .az-series-rail a {
    min-height: auto;
  }

  .az-commerce-filters {
    padding: 14px;
  }

  .az-brand-hero__media--double img {
    height: 250px;
  }
}

/* Product shelf refinement: dense, retail-first WooCommerce shelves. */
body.woocommerce-shop ul.products,
body.tax-product_cat ul.products,
.az-page-shell ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products {
  gap: 14px;
  align-items: stretch;
}

body.woocommerce-shop ul.products li.product,
body.tax-product_cat ul.products li.product,
.az-page-shell ul.products li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  min-height: 432px;
  padding: 10px;
  border-color: #e1e8da;
  border-radius: var(--az-radius-md);
  background: #fff;
  box-shadow: none;
}

body.woocommerce-shop ul.products li.product:hover,
body.tax-product_cat ul.products li.product:hover,
.az-page-shell ul.products li.product:hover,
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: #cfd9c8;
  box-shadow: 0 10px 22px rgba(38, 55, 45, 0.07);
  transform: translateY(-1px);
}

body.woocommerce-shop ul.products li.product a.woocommerce-LoopProduct-link,
body.tax-product_cat ul.products li.product a.woocommerce-LoopProduct-link,
.az-page-shell ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

body.woocommerce-shop ul.products li.product img,
body.tax-product_cat ul.products li.product img,
.az-page-shell ul.products li.product img,
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
  display: block;
  width: 100%;
  height: 232px;
  margin: 0 0 10px;
  border: 1px solid #edf1e9;
  border-radius: var(--az-radius-sm);
  padding: 12px;
  background: #f8faf4;
  object-fit: contain;
  object-position: center;
}

body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
.az-page-shell ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 2.72em;
  margin: 0;
  overflow: hidden;
  padding: 0;
  color: var(--az-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.36;
  text-transform: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.woocommerce-shop ul.products li.product .az-card-chips,
body.tax-product_cat ul.products li.product .az-card-chips,
.az-page-shell ul.products li.product .az-card-chips,
.woocommerce ul.products li.product .az-card-chips,
.woocommerce-page ul.products li.product .az-card-chips {
  display: flex;
  min-height: 42px;
  align-content: flex-start;
  gap: 5px;
  margin: 7px 0 8px;
}

body.woocommerce-shop ul.products li.product .az-card-chips span,
body.tax-product_cat ul.products li.product .az-card-chips span,
.az-page-shell ul.products li.product .az-card-chips span,
.woocommerce ul.products li.product .az-card-chips span,
.woocommerce-page ul.products li.product .az-card-chips span {
  border: 1px solid #e2e8dc;
  border-radius: 5px;
  padding: 4px 6px;
  background: #f8faf4;
  color: #5e6a59;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

body.woocommerce-shop ul.products li.product .az-card-type-flag,
body.tax-product_cat ul.products li.product .az-card-type-flag,
.az-page-shell ul.products li.product .az-card-type-flag,
.woocommerce ul.products li.product .az-card-type-flag,
.woocommerce-page ul.products li.product .az-card-type-flag {
  margin: 0 0 8px;
  border-radius: 5px;
  background: #fff8df;
  font-size: 10px;
}

body.woocommerce-shop ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
.az-page-shell ul.products li.product .price,
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  display: flex;
  min-height: 30px;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  margin: 0 0 9px;
  color: var(--az-primary);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

body.woocommerce-shop ul.products li.product .price del,
body.tax-product_cat ul.products li.product .price del,
.az-page-shell ul.products li.product .price del,
.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
  color: #8a9386;
  font-size: 13px;
  font-weight: 700;
  opacity: 1;
}

body.woocommerce-shop ul.products li.product .price ins,
body.tax-product_cat ul.products li.product .price ins,
.az-page-shell ul.products li.product .price ins,
.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
  color: var(--az-primary);
  font-size: 20px;
  text-decoration: none;
}

body.woocommerce-shop ul.products li.product .button,
body.tax-product_cat ul.products li.product .button,
.az-page-shell ul.products li.product .button,
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  order: 20;
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid #d7dfd2;
  border-radius: var(--az-radius-sm);
  background: #fff;
  color: var(--az-text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

body.woocommerce-shop ul.products li.product .button:hover,
body.tax-product_cat ul.products li.product .button:hover,
.az-page-shell ul.products li.product .button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
  border-color: var(--az-primary);
  background: #fff7f4;
  color: var(--az-primary);
}

body.woocommerce-shop ul.products li.product .az-loop-buy-now,
body.tax-product_cat ul.products li.product .az-loop-buy-now,
.az-page-shell ul.products li.product .az-loop-buy-now,
.woocommerce ul.products li.product .az-loop-buy-now,
.woocommerce-page ul.products li.product .az-loop-buy-now {
  display: inline-flex;
  order: 19;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid var(--az-primary);
  border-radius: var(--az-radius-sm);
  background: var(--az-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

body.woocommerce-shop ul.products li.product .az-loop-buy-now:hover,
body.tax-product_cat ul.products li.product .az-loop-buy-now:hover,
.az-page-shell ul.products li.product .az-loop-buy-now:hover,
.woocommerce ul.products li.product .az-loop-buy-now:hover,
.woocommerce-page ul.products li.product .az-loop-buy-now:hover {
  border-color: var(--az-primary-dark);
  background: var(--az-primary-dark);
  color: #fff;
}

body.woocommerce-shop ul.products li.product .az-sale-flag,
body.tax-product_cat ul.products li.product .az-sale-flag,
.az-page-shell ul.products li.product .az-sale-flag,
.woocommerce ul.products li.product .az-sale-flag,
.woocommerce-page ul.products li.product .az-sale-flag {
  top: 12px;
  left: 12px;
  border-radius: 5px;
  padding: 6px 8px;
  background: var(--az-primary);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0;
}

body.woocommerce-shop .woocommerce-ordering,
body.tax-product_cat .woocommerce-ordering,
.az-page-shell .woocommerce-ordering {
  margin-bottom: 14px;
}

body.woocommerce-shop .woocommerce-ordering select,
body.tax-product_cat .woocommerce-ordering select,
.az-page-shell .woocommerce-ordering select {
  min-height: 40px;
  border: 1px solid #d7dfd2;
  border-radius: var(--az-radius-sm);
  background-color: #fff;
  color: var(--az-text);
  font-size: 13px;
  font-weight: 700;
}

body.woocommerce-shop .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count,
.az-page-shell .woocommerce-result-count {
  color: var(--az-muted);
  font-size: 13px;
  font-weight: 700;
}

.az-shop-toolbar,
.az-series-rail {
  gap: 10px;
}

.az-shop-toolbar a,
.az-series-rail a,
.az-commerce-filters {
  border-color: #e1e8da;
  border-radius: var(--az-radius-sm);
  background: var(--az-surface);
  box-shadow: none;
}

.az-shop-toolbar a,
.az-series-rail a {
  min-height: 94px;
  padding: 14px;
}

.az-shop-toolbar a:hover,
.az-series-rail a:hover,
.az-commerce-filters nav a:hover,
.az-shelf-heading a:hover {
  border-color: var(--az-primary);
  background: #fff7f4;
  box-shadow: none;
  color: var(--az-primary);
  transform: translateY(-1px);
}

.az-shop-toolbar span,
.az-series-rail span,
.az-shop-toolbar em,
.az-commerce-filters span {
  color: var(--az-muted);
  font-size: 12px;
  line-height: 1.35;
}

.az-shop-toolbar span {
  color: #5e6a59;
  letter-spacing: 0.04em;
}

.az-shop-toolbar strong {
  font-size: 20px;
}

.az-commerce-filters {
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 14px;
  margin: 14px 0 16px;
  padding: 14px;
}

.az-commerce-filters strong {
  font-size: 18px;
}

.az-commerce-filters nav {
  gap: 7px;
}

.az-commerce-filters nav a,
.az-shelf-heading a {
  border-radius: var(--az-radius-sm);
  padding: 8px 10px;
  font-size: 11px;
  letter-spacing: 0;
}

.az-series-rail {
  margin: 14px 0 24px;
}

.az-series-rail a {
  min-height: 84px;
}

.az-series-rail strong {
  font-size: 16px;
}

.az-shelf-heading {
  margin: 22px 0 12px;
  padding-top: 18px;
}

.az-shelf-heading h2 {
  font-size: clamp(26px, 2.4vw, 34px);
}

@media (max-width: 1000px) {
  body.woocommerce-shop ul.products,
  body.tax-product_cat ul.products,
  .az-page-shell ul.products,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    gap: 12px;
  }

  body.woocommerce-shop ul.products li.product img,
  body.tax-product_cat ul.products li.product img,
  .az-page-shell ul.products li.product img,
  .woocommerce ul.products li.product img,
  .woocommerce-page ul.products li.product img {
    height: 220px;
  }
}

@media (max-width: 680px) {
  body.woocommerce-shop ul.products li.product,
  body.tax-product_cat ul.products li.product,
  .az-page-shell ul.products li.product,
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    min-height: 0;
  }

  body.woocommerce-shop ul.products li.product img,
  body.tax-product_cat ul.products li.product img,
  .az-page-shell ul.products li.product img,
  .woocommerce ul.products li.product img,
  .woocommerce-page ul.products li.product img {
    height: 260px;
  }

  .az-commerce-filters {
    grid-template-columns: 1fr;
  }

  .az-commerce-filters nav a,
  .az-shelf-heading a {
    width: auto;
  }
}

/* Alibarbar official brand pass: clean commerce base with restrained gold accents. */
:root {
  --az-bg: #f7f7f4;
  --az-bg-soft: #efefea;
  --az-surface: #ffffff;
  --az-surface-raised: #ffffff;
  --az-text: #191813;
  --az-text-soft: #464238;
  --az-muted: #746f63;
  --az-border: #e3e0d8;
  --az-border-strong: #c9b477;
  --az-primary: #b88a2d;
  --az-primary-dark: #815f1d;
  --az-primary-soft: #fff7df;
  --az-success: #426b43;
  --az-success-soft: #edf5e9;
  --az-accent: var(--az-primary);
  --az-dark: #191813;
  --az-ink: var(--az-text);
  --az-line: var(--az-border);
  --az-soft: var(--az-bg-soft);
}

body,
.az-page-shell,
.az-home-ausclone {
  background:
    radial-gradient(circle at 8% 0%, rgba(184, 138, 45, 0.055), transparent 28%),
    linear-gradient(180deg, #fafaf8 0%, #f6f6f2 42%, #f3f3ee 100%);
}

body .site-header a:hover,
body .ct-header a:hover,
body .site-header [aria-current="page"],
body .ct-header [aria-current="page"],
#header a:hover,
#header .menu a:hover,
#header [data-id="menu"] a:hover,
#header .current-menu-item > a,
#header .current_page_item > a,
#header [aria-current="page"] {
  color: var(--az-primary-dark) !important;
}

body.home .az-reference-hero,
.az-reference-hero {
  min-height: 430px;
  border: 1px solid rgba(201, 180, 119, 0.34);
  border-radius: var(--az-radius-md);
  background: #15130f;
  box-shadow: 0 18px 42px rgba(25, 24, 19, 0.14);
}

body.home .az-hero-track,
.az-hero-track,
body.home .az-hero-banner-link,
.az-hero-banner-link,
body.home .az-hero-commerce,
.az-hero-commerce,
.az-hero-official {
  min-height: 430px;
  height: 430px;
}

.az-hero-official {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: 26px;
  align-items: center;
  overflow: hidden;
  padding: 42px 54px;
  color: #fff7e7;
  background:
    radial-gradient(circle at 80% 12%, rgba(220, 178, 87, 0.22), transparent 28%),
    linear-gradient(135deg, #14120e 0%, #241b10 48%, #11100d 100%);
}

.az-hero-official__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  object-fit: cover;
  object-position: center;
}

.az-hero-official::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 18, 14, 0.86) 0%, rgba(20, 18, 14, 0.5) 42%, rgba(20, 18, 14, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.az-hero-official > *:not(.az-hero-official__bg) {
  position: relative;
  z-index: 2;
}

.az-hero-official .az-hero-commerce__copy {
  max-width: 620px;
}

.az-hero-official .az-hero-commerce__copy span {
  color: #e9c978;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.az-hero-official .az-hero-commerce__copy h2 {
  max-width: 640px;
  color: #fff5df;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.az-hero-official .az-hero-commerce__copy p {
  max-width: 520px;
  color: #e5d7bd;
  font-size: 17px;
}

.az-hero-official .az-hero-commerce__copy em {
  color: #f4d27e;
}

.az-hero-official .az-hero-commerce__copy strong {
  border: 1px solid #e1bd63;
  border-radius: var(--az-radius-sm);
  background: #d5a33c;
  color: #17120b;
  box-shadow: 0 12px 24px rgba(213, 163, 60, 0.22);
}

.az-hero-official__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 310px;
  border: 1px solid rgba(228, 199, 118, 0.3);
  background:
    radial-gradient(circle at 50% 110%, rgba(184, 138, 45, 0.22), transparent 38%),
    rgba(255, 247, 223, 0.08);
}

.az-hero-official__products::before {
  display: none;
}

.az-hero-official__products img {
  width: 100%;
  max-height: 292px;
  border-radius: var(--az-radius-sm);
  padding: 8px;
  background: rgba(255, 255, 252, 0.94);
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.34));
}

.az-hero-official__feature {
  min-height: 315px;
  border: 1px solid rgba(228, 199, 118, 0.3);
  background: #15130f;
}

.az-hero-official__feature::before {
  display: none;
}

.az-hero-official__feature img {
  width: 100%;
  max-height: 320px;
  border-radius: var(--az-radius-sm);
  object-fit: cover;
  object-position: center;
}

.az-brand-hero,
.az-brand-hero--contact,
.az-brand-hero--faq,
.az-brand-hero--shop,
.az-brand-hero--wholesale,
.az-brand-hero--alibarbar,
.az-brand-hero--iget {
  border-color: var(--az-border);
  background:
    radial-gradient(circle at 88% 18%, rgba(184, 138, 45, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #faf8f1 54%, #f4f4ef 100%);
  color: var(--az-text);
  box-shadow: 0 14px 32px rgba(25, 24, 19, 0.08);
}

.az-brand-hero h1,
.az-brand-hero .az-brand-hero__copy > p:not(.az-kicker),
.az-brand-hero .az-kicker {
  color: var(--az-text);
}

.az-brand-hero .az-kicker {
  color: var(--az-primary-dark);
}

.az-brand-hero .az-brand-hero__copy > p:not(.az-kicker) {
  color: var(--az-muted);
}

.az-brand-hero__media,
.az-brand-hero--iget .az-brand-hero__media img,
.az-shop-hero-main,
.az-shop-hero-mini img {
  border: 1px solid var(--az-border);
  background: #ffffff;
}

.az-brand-hero__media img {
  background: #ffffff;
}

.az-button--primary,
.az-offer-primary,
.az-footer-contact a,
.az-quick-deals__head,
.az-quick-deal-card__buy,
.woocommerce ul.products li.product .az-loop-buy-now,
.woocommerce-page ul.products li.product .az-loop-buy-now {
  background: var(--az-primary);
  color: #18150f;
}

.az-button--primary:hover,
.az-offer-primary:hover,
.az-footer-contact a:hover,
.az-quick-deal-card__buy:hover,
.woocommerce ul.products li.product .az-loop-buy-now:hover,
.woocommerce-page ul.products li.product .az-loop-buy-now:hover {
  background: var(--az-primary-dark);
  color: #ffffff;
}

.az-button--ghost,
.az-offer-secondary,
.az-commerce-filters nav a,
.az-shelf-heading a,
.az-category-chips a {
  border-color: var(--az-border);
  background: #ffffff;
  color: var(--az-text);
}

.az-section-label,
.az-offer-copy span,
.az-product-section-head span,
.az-full-range span,
.az-faq-clone span,
.az-kicker,
.az-shop-promo span,
.az-footer-col strong,
.az-footer-contact strong {
  color: var(--az-primary-dark);
}

.az-offer-signup,
.az-offer-signup--compact,
.az-full-range,
.az-commerce-filters,
.az-filter-dock,
.az-faq-clone,
.az-site-footer {
  border-color: var(--az-border);
  background: #ffffff;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
  color: var(--az-primary-dark);
}

.az-sale-flag,
.woocommerce ul.products li.product .az-sale-flag,
.woocommerce-page ul.products li.product .az-sale-flag {
  background: #191813;
  color: #f3d37b;
}

.az-site-footer,
.az-site-footer--compact {
  border-top: 1px solid rgba(201, 180, 119, 0.26);
  background: #191813 !important;
  color: #f6eedc !important;
}

.az-site-footer .az-footer-logo,
.az-site-footer .az-footer-menu strong {
  color: #f3d37b !important;
}

.az-site-footer .az-footer-brand p,
.az-site-footer .az-footer-menu a,
.az-site-footer .az-footer-bottom {
  color: #d8d1c2 !important;
}

.az-site-footer .az-footer-badges span {
  border-color: rgba(243, 211, 123, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #f3d37b;
}

body.woocommerce-shop ul.products li.product,
body.tax-product_cat ul.products li.product,
.az-page-shell ul.products li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.az-quick-deal-card,
.az-category-card,
.az-series-card,
.az-trust-card,
.az-route-card,
.az-wholesale-card,
.az-contact-card {
  border-color: var(--az-border);
  background: var(--az-surface);
  box-shadow: 0 10px 28px rgba(25, 24, 19, 0.07);
}

body.woocommerce-shop ul.products li.product img,
body.tax-product_cat ul.products li.product img,
.az-page-shell ul.products li.product img,
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img,
.az-quick-deal-card__media {
  border-color: var(--az-border);
  background: #f8f8f5;
}

/* Ecommerce header pass: one navigation system for desktop and mobile. */
#header,
#header [data-row],
#header [data-row*="middle"],
#header .ct-container,
#header .ct-header {
  background: rgba(255, 255, 252, 0.96) !important;
  color: var(--az-text) !important;
}

#header {
  border-bottom: 1px solid rgba(227, 224, 216, 0.9);
  box-shadow: 0 10px 28px rgba(25, 24, 19, 0.06) !important;
}

#header [data-row] {
  border-bottom-color: rgba(227, 224, 216, 0.9) !important;
}

#header .ct-container {
  gap: 18px;
}

#header .site-title a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--az-text) !important;
  font-family: var(--az-font-heading);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

#header .site-title a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--az-primary);
  box-shadow: 0 0 0 5px rgba(184, 138, 45, 0.12);
}

#header [data-id="menu"] > ul,
#header .menu {
  align-items: center;
  gap: 4px;
}

#header .menu > li > a,
#header [data-id="menu"] .menu > li > a {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--az-text-soft) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

#header .menu > li > a:hover,
#header [data-id="menu"] .menu > li > a:hover,
#header .current-menu-item > a,
#header .current_page_item > a,
#header [aria-current="page"] {
  background: var(--az-primary-soft);
  color: var(--az-primary-dark) !important;
}

#header .menu > li > a:active,
#header .ct-header-search:active,
#header .ct-header-trigger:active {
  transform: translateY(1px);
}

#header .az-nav-wholesale > a {
  border: 1px solid rgba(184, 138, 45, 0.34);
  background: #ffffff;
  color: var(--az-primary-dark) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 247, 223, 0.8);
}

#header .menu > li.az-nav-wholesale > a,
#header [data-id="menu"] .menu > li.az-nav-wholesale > a {
  color: var(--az-primary-dark) !important;
}

#header .az-nav-cart > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--az-primary);
  background: var(--az-primary);
  color: #18150f !important;
  box-shadow: 0 10px 22px rgba(184, 138, 45, 0.22);
}

#header .menu > li.az-nav-cart > a,
#header [data-id="menu"] .menu > li.az-nav-cart > a {
  color: #18150f !important;
}

#header .az-nav-cart > a:hover {
  background: var(--az-primary-dark);
  color: #ffffff !important;
}

#header .menu > li.az-nav-cart > a:hover,
#header [data-id="menu"] .menu > li.az-nav-cart > a:hover {
  color: #ffffff !important;
}

#header .az-nav-cart > a::before {
  content: "";
  width: 15px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 4px 4px;
  transform: translateY(1px);
}

#header .az-nav-cart-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #18150f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

#header .ct-header-search,
#header .ct-header-trigger {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--az-border) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: var(--az-text) !important;
  box-shadow: 0 8px 18px rgba(25, 24, 19, 0.06);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

#header .ct-header-search:hover,
#header .ct-header-trigger:hover,
#header .ct-header-search[aria-expanded="true"] {
  border-color: rgba(184, 138, 45, 0.42) !important;
  background: var(--az-primary-soft) !important;
  color: var(--az-primary-dark) !important;
}

#header .ct-header-search .ct-label,
#header .ct-header-trigger .ct-label {
  color: inherit !important;
  font-size: 12px;
  font-weight: 900;
}

#search-modal {
  background: rgba(25, 24, 19, 0.42) !important;
}

#search-modal .ct-panel-actions,
#offcanvas .ct-panel-actions {
  padding: 20px;
}

#search-modal .ct-toggle-close,
#offcanvas .ct-toggle-close {
  border: 1px solid var(--az-border) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: var(--az-text) !important;
}

#search-modal .ct-search-form {
  width: min(720px, calc(100vw - 32px));
  margin: 12vh auto 0;
  border: 1px solid rgba(201, 180, 119, 0.38);
  border-radius: 24px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(25, 24, 19, 0.2);
}

#search-modal .ct-search-form-inner,
#search-modal .ct-pseudo-input {
  border: 1px solid var(--az-border) !important;
  border-radius: 18px !important;
  background: #f8f8f5 !important;
}

#search-modal input[type="search"],
#search-modal .modal-field {
  color: var(--az-text) !important;
  font-family: var(--az-font-body);
  font-size: 18px !important;
}

#search-modal input[type="search"]::placeholder {
  color: var(--az-muted);
}

#search-modal button[type="submit"],
#search-modal [data-button] {
  color: var(--az-primary-dark) !important;
}

#offcanvas {
  background: rgba(25, 24, 19, 0.34) !important;
}

#offcanvas .ct-panel-inner {
  border-left: 1px solid rgba(201, 180, 119, 0.34);
  background: #ffffff !important;
  box-shadow: -22px 0 60px rgba(25, 24, 19, 0.18);
}

#offcanvas nav,
#offcanvas .mobile-menu,
#offcanvas .menu {
  width: 100%;
}

#offcanvas .menu,
#offcanvas .mobile-menu > ul {
  display: grid;
  gap: 8px;
  padding: 8px 20px 24px;
}

#offcanvas .menu a,
#offcanvas .mobile-menu > ul > li > a,
#offcanvas .ct-menu-link {
  min-height: 46px;
  border: 1px solid var(--az-border);
  border-radius: 16px;
  padding: 0 16px !important;
  background: #ffffff;
  color: var(--az-text) !important;
  font-size: 15px;
  font-weight: 850;
}

#offcanvas .menu a:hover,
#offcanvas .ct-menu-link:hover,
#offcanvas .current-menu-item > a {
  border-color: rgba(184, 138, 45, 0.42);
  background: var(--az-primary-soft);
  color: var(--az-primary-dark) !important;
}

#offcanvas .az-nav-cart > a,
#offcanvas .az-nav-wholesale > a {
  border-color: var(--az-primary);
}

#offcanvas .az-nav-cart > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--az-primary);
  color: #18150f !important;
}

#offcanvas .az-nav-cart > a::before {
  content: "";
  width: 15px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 4px 4px;
  transform: translateY(1px);
}

@media (max-width: 1120px) {
  #header .menu > li > a,
  #header [data-id="menu"] .menu > li > a {
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  #header .site-title a {
    font-size: 18px;
  }

  #header .ct-header-search,
  #header .ct-header-trigger {
    min-width: 40px;
    height: 40px;
  }

  #search-modal .ct-search-form {
    margin-top: 84px;
    border-radius: 20px;
    padding: 12px;
  }
}

/* Replacement commerce header: built around search, cart and category navigation. */
body #header {
  display: none !important;
}

.az-ecommerce-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--az-border);
  background: #ffffff;
  color: var(--az-text);
  box-shadow: 0 12px 34px rgba(25, 24, 19, 0.07);
}

.az-header-inner {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
}

.az-header-trust {
  border-bottom: 1px solid rgba(227, 224, 216, 0.8);
  background: #191813;
  color: #f5ead1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.az-header-trust .az-header-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.az-header-trust span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.az-header-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--az-primary);
}

.az-header-main {
  background:
    radial-gradient(circle at 8% 0%, rgba(184, 138, 45, 0.08), transparent 26%),
    #ffffff;
}

.az-header-main__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(360px, 1.38fr) auto;
  min-height: 82px;
  align-items: center;
  gap: 24px;
}

.az-header-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--az-text);
  text-decoration: none;
}

.az-header-logo:hover {
  color: var(--az-primary-dark);
}

.az-header-logo__mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 138, 45, 0.35);
  border-radius: 14px;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.6), transparent 26%),
    linear-gradient(135deg, #f3d37b 0%, #b88a2d 56%, #7b5819 100%);
  box-shadow: 0 12px 24px rgba(184, 138, 45, 0.22);
}

.az-header-logo strong {
  display: block;
  font-family: var(--az-font-heading);
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

.az-header-logo em {
  display: block;
  margin-top: 4px;
  color: var(--az-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.az-header-search {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 1px solid var(--az-border);
  border-radius: 999px;
  padding: 5px;
  background: #f8f8f5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.az-header-search:focus-within {
  border-color: rgba(184, 138, 45, 0.5);
  box-shadow: 0 0 0 4px rgba(184, 138, 45, 0.12);
}

.az-header-search input[type="search"],
.az-mobile-search__panel input[type="search"] {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--az-text);
  font-family: var(--az-font-body);
  font-size: 15px;
  font-weight: 700;
}

.az-header-search input[type="search"] {
  min-height: 44px;
  padding: 0 18px;
}

.az-header-search input::placeholder,
.az-mobile-search__panel input::placeholder {
  color: var(--az-muted);
}

.az-header-search button,
.az-mobile-search__panel button {
  border: 0;
  border-radius: 999px;
  background: var(--az-primary);
  color: #18150f;
  font-family: var(--az-font-body);
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.az-header-search button {
  min-height: 44px;
  padding: 0 22px;
}

.az-header-search button:hover,
.az-mobile-search__panel button:hover {
  background: var(--az-primary-dark);
  color: #ffffff;
}

.az-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.az-header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.az-header-action--secondary {
  border: 1px solid var(--az-border);
  background: #ffffff;
  color: var(--az-text-soft);
}

.az-header-action--secondary:hover {
  border-color: rgba(184, 138, 45, 0.42);
  background: var(--az-primary-soft);
  color: var(--az-primary-dark);
}

.az-header-action--cart,
.az-mobile-cart {
  gap: 9px;
  border: 1px solid var(--az-primary);
  background: var(--az-primary);
  color: #18150f;
  box-shadow: 0 12px 24px rgba(184, 138, 45, 0.22);
}

.az-header-action--cart:hover,
.az-mobile-cart:hover {
  background: var(--az-primary-dark);
  color: #ffffff;
}

.az-header-cart-icon {
  width: 15px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 4px 4px;
}

.az-header-action--cart strong,
.az-mobile-cart strong {
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #18150f;
  font-size: 11px;
  line-height: 1;
}

.az-header-mobile-actions {
  display: none;
}

.az-header-nav {
  border-top: 1px solid rgba(227, 224, 216, 0.9);
  background: #fbfbf8;
}

.az-header-nav__row {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.az-header-menu__list,
.az-mobile-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.az-header-menu__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.az-header-menu__list .az-nav-cart {
  display: none;
}

.az-header-menu__list a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--az-text-soft);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.az-header-menu__list a:hover,
.az-header-menu__list .current-menu-item > a,
.az-header-menu__list .current_page_item > a {
  background: var(--az-primary-soft);
  color: var(--az-primary-dark);
}

.az-header-menu__list .az-nav-wholesale > a {
  border: 1px solid rgba(184, 138, 45, 0.34);
  background: #ffffff;
  color: var(--az-primary-dark);
}

.az-header-nav__promo {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  background: #191813;
  color: #f3d37b;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.az-header-nav__promo:hover {
  background: var(--az-primary-dark);
  color: #ffffff;
}

.az-mobile-search,
.az-mobile-menu {
  position: relative;
}

.az-mobile-search summary,
.az-mobile-menu summary,
.az-mobile-cart {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--az-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--az-text);
  font-size: 0;
  list-style: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(25, 24, 19, 0.08);
}

.az-mobile-menu summary {
  width: auto;
  min-width: 58px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 950;
}

.az-mobile-search summary::-webkit-details-marker,
.az-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.az-mobile-search__panel,
.az-mobile-menu__panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(340px, calc(100vw - 28px));
  border: 1px solid rgba(201, 180, 119, 0.36);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(25, 24, 19, 0.18);
}

.az-mobile-search__panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px;
}

.az-mobile-search__panel input[type="search"] {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 14px;
  background: #f8f8f5;
}

.az-mobile-search__panel button {
  padding: 0 14px;
}

.az-mobile-menu__panel {
  padding: 10px;
}

.az-mobile-nav-list {
  display: grid;
  gap: 8px;
}

.az-mobile-nav-list a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--az-border);
  border-radius: 16px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--az-text);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.az-mobile-nav-list a:hover,
.az-mobile-nav-list .current-menu-item > a,
.az-mobile-nav-list .current_page_item > a {
  border-color: rgba(184, 138, 45, 0.42);
  background: var(--az-primary-soft);
  color: var(--az-primary-dark);
}

.az-mobile-nav-list .az-nav-cart > a {
  border-color: var(--az-primary);
  background: var(--az-primary);
  color: #18150f;
}

.az-header-mobile-actions .az-mobile-cart {
  border-color: var(--az-primary);
  background: var(--az-primary);
  color: #18150f;
  box-shadow: 0 12px 24px rgba(184, 138, 45, 0.22);
}

.az-header-mobile-actions .az-mobile-cart:hover,
.az-header-mobile-actions .az-mobile-cart:focus-visible {
  background: var(--az-primary-dark);
  color: #ffffff;
}

@media (max-width: 1120px) {
  .az-header-main__grid {
    grid-template-columns: minmax(205px, 0.8fr) minmax(300px, 1.2fr) auto;
    gap: 16px;
  }

  .az-header-menu__list a {
    padding: 0 10px;
    font-size: 12px;
  }

  .az-header-action--secondary {
    display: none;
  }
}

@media (max-width: 860px) {
  .az-header-trust .az-header-inner {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 18px;
    white-space: nowrap;
  }

  .az-header-main__grid {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
  }

  .az-header-search,
  .az-header-actions,
  .az-header-nav {
    display: none;
  }

  .az-header-mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .az-header-inner {
    width: min(100% - 24px, 1320px);
  }

  .az-header-logo {
    gap: 9px;
  }

  .az-header-logo__mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .az-header-logo strong {
    font-size: 19px;
  }

  .az-header-logo em {
    display: none;
  }

  .az-mobile-search summary,
  .az-mobile-menu summary,
  .az-mobile-cart {
    width: 40px;
    height: 40px;
  }

  .az-mobile-menu summary {
    width: auto;
    min-width: 54px;
  }
}

/* Compact specialist-store header: Alibarbar and IGET first, not a full marketplace. */
.az-ecommerce-header {
  box-shadow: 0 8px 24px rgba(25, 24, 19, 0.06);
}

.az-header-main__grid {
  grid-template-columns: auto minmax(360px, 1fr) minmax(210px, 280px) auto;
  min-height: 72px;
  gap: 18px;
}

.az-header-logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.az-header-logo strong {
  font-size: 21px;
}

.az-header-logo em {
  margin-top: 3px;
  font-size: 11px;
}

.az-header-menu {
  min-width: 0;
}

.az-header-menu__list {
  justify-content: center;
  gap: 2px;
}

.az-header-menu__list a {
  min-height: 34px;
  padding: 0 11px;
  font-size: 13px;
}

.az-header-menu__list .az-nav-primary-brand > a {
  background: var(--az-primary-soft);
  color: var(--az-primary-dark);
}

.az-header-search {
  min-width: 0;
  padding: 4px;
}

.az-header-search input[type="search"] {
  min-height: 38px;
  padding: 0 13px;
  font-size: 13px;
}

.az-header-search button {
  min-height: 38px;
  padding: 0 15px;
  font-size: 12px;
}

.az-header-actions {
  gap: 0;
}

.az-header-action {
  min-height: 40px;
  padding: 0 12px;
}

.az-header-action--cart {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
}

.az-header-action--cart strong {
  position: absolute;
  transform: translate(15px, -14px);
  min-width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  background: #191813;
  color: #f3d37b;
  font-size: 10px;
}

.az-header-nav {
  display: none;
}

@media (max-width: 1120px) {
  .az-header-main__grid {
    grid-template-columns: auto minmax(300px, 1fr) minmax(170px, 220px) auto;
    gap: 12px;
  }

  .az-header-menu__list a {
    padding: 0 8px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .az-header-main__grid {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
  }

  .az-header-menu,
  .az-header-search,
  .az-header-actions {
    display: none;
  }

  .az-header-mobile-actions {
    display: flex;
  }
}

@media (max-width: 520px) {
  .az-header-logo strong {
    font-size: 18px;
  }

  .az-header-logo__mark {
    width: 34px;
    height: 34px;
  }
}

/* Final approved header: compact Alibarbar + IGET specialist navigation. */
.az-ecommerce-header {
  background: rgba(255, 255, 252, 0.98);
  backdrop-filter: blur(10px);
}

.az-header-main__grid {
  grid-template-columns: auto minmax(430px, 1fr) auto auto;
  min-height: 74px;
}

.az-header-menu__list {
  justify-content: flex-start;
  gap: 4px;
}

.az-header-menu__list a {
  min-height: 36px;
  padding: 0 12px;
}

.az-header-search {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.az-header-search summary {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--az-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--az-text);
  list-style: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(25, 24, 19, 0.07);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.az-header-search summary::-webkit-details-marker {
  display: none;
}

.az-header-search[open] summary,
.az-header-search summary:hover {
  border-color: rgba(184, 138, 45, 0.42);
  background: var(--az-primary-soft);
  color: var(--az-primary-dark);
}

.az-header-search__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(220px, 320px) auto;
  gap: 8px;
  width: min(430px, calc(100vw - 32px));
  border: 1px solid rgba(201, 180, 119, 0.36);
  border-radius: 20px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(25, 24, 19, 0.16);
}

.az-header-search:not([open]) .az-header-search__panel,
.az-mobile-search:not([open]) .az-mobile-search__panel,
.az-mobile-menu:not([open]) .az-mobile-menu__panel {
  display: none;
}

.az-header-search input[type="search"] {
  min-height: 42px;
  border: 1px solid var(--az-border);
  border-radius: 999px;
  padding: 0 14px;
  background: #f8f8f5;
  color: var(--az-text);
  font-size: 14px;
}

.az-header-search button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--az-primary);
  color: #18150f;
  font-size: 12px;
  font-weight: 950;
}

.az-header-action--cart {
  width: 42px;
  height: 42px;
}

.az-header-action--cart strong {
  top: 0;
  right: 0;
  transform: translate(6px, -6px);
}

.az-mobile-nav-list .az-nav-home > a {
  background: var(--az-primary-soft);
  color: var(--az-primary-dark);
}

@media (max-width: 1120px) {
  .az-header-main__grid {
    grid-template-columns: auto minmax(360px, 1fr) auto auto;
  }

  .az-header-menu__list a {
    padding: 0 9px;
  }
}

@media (max-width: 900px) {
  .az-header-main__grid {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
  }

  .az-header-menu,
  .az-header-search,
  .az-header-actions {
    display: none;
  }
}

@media (max-width: 1000px) {
  .az-hero-official {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
    padding: 34px;
  }

  .az-hero-official .az-hero-commerce__copy h2 {
    font-size: clamp(38px, 5.4vw, 56px);
  }
}

@media (max-width: 680px) {
  body.home .az-reference-hero,
  .az-reference-hero,
  body.home .az-hero-track,
  .az-hero-track,
  body.home .az-hero-banner-link,
  .az-hero-banner-link,
  body.home .az-hero-commerce,
  .az-hero-commerce,
  .az-hero-official {
    min-height: 360px;
    height: 360px;
  }

  .az-hero-official {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .az-hero-official .az-hero-commerce__copy h2 {
    max-width: 360px;
    font-size: 40px;
  }

  .az-hero-official .az-hero-commerce__copy p {
    max-width: 320px;
    font-size: 14px;
  }

  .az-hero-official__products,
  .az-hero-official__feature {
    display: none;
  }
}

/* OZ Shop Vape reference header: simple ecommerce layout. */
.az-ecommerce-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
  color: #111111;
  box-shadow: none;
  backdrop-filter: none;
  font-family: "Jost", var(--az-font-body);
}

.az-header-inner {
  width: min(100% - 28px, 1320px);
  margin: 0 auto;
}

.az-header-trust--single {
  border-bottom: 0;
  background: var(--az-primary);
  color: #ffffff;
  font-family: "Jost", var(--az-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.az-header-trust--single .az-header-inner {
  min-height: 34px;
  justify-content: center;
}

.az-header-trust--single span::before {
  display: none;
}

.az-header-main {
  background: #ffffff;
}

.az-header-main__grid {
  display: grid;
  position: relative;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  min-height: 68px;
  align-items: center;
  gap: 18px;
}

.az-header-logo {
  min-width: 168px;
  gap: 9px;
  color: #111111;
}

.az-header-logo:hover {
  color: var(--az-primary);
}

.az-header-logo__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--az-primary);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: none;
}

.az-header-logo__mark::before {
  content: "AU";
  color: var(--az-primary);
  font-family: "Jost", var(--az-font-body);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.az-header-logo strong {
  font-family: "Jost", var(--az-font-body);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.az-header-logo em {
  margin-top: 1px;
  color: #777777;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.az-header-menu {
  min-width: 0;
}

.az-header-menu__list {
  justify-content: flex-start;
  gap: 0;
}

.az-header-menu__list > li {
  position: relative;
}

.az-header-menu__list a {
  min-height: 68px;
  border-radius: 0;
  padding: 0 9px;
  color: #111111;
  font-family: "Jost", var(--az-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.az-header-menu__list > .az-nav-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.az-header-menu__list a:hover,
.az-header-menu__list .current-menu-item > a,
.az-header-menu__list .current_page_item > a,
.az-header-menu__list .az-nav-primary-brand > a {
  background: transparent;
  color: var(--az-primary);
}

.az-header-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 80;
  display: none;
  min-width: 244px;
  margin: 0;
  padding: 8px 0;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.12);
  list-style: none;
}

.az-header-menu__list > .az-nav-has-children:hover > .az-header-submenu,
.az-header-menu__list > .az-nav-has-children:focus-within > .az-header-submenu {
  display: block;
}

.az-header-submenu a {
  display: flex;
  min-height: 38px;
  align-items: center;
  border-radius: 0;
  padding: 0 16px;
  color: #111111;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.az-header-submenu a:hover {
  background: #fff7f5;
  color: var(--az-primary);
}

.az-header-menu__list > .az-nav-mega-parent {
  position: static;
}

.az-header-mega-menu {
  left: 50%;
  width: min(100vw - 28px, 1180px);
  min-width: 0;
  padding: 34px 34px 38px;
  transform: translateX(-50%);
}

.az-header-mega-menu > li {
  margin: 0;
  padding: 0;
}

.az-header-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.az-header-mega-menu .az-header-mega-card {
  display: block;
  min-height: 0;
  padding: 0;
  color: #111111;
  text-align: center;
  text-decoration: none;
}

.az-header-mega-menu .az-header-mega-card:hover {
  background: transparent;
  color: var(--az-primary);
}

.az-header-mega-card__image {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 14px;
  background: #f6f6f6;
}

.az-header-mega-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.az-header-mega-card:hover .az-header-mega-card__image img {
  transform: scale(1.03);
}

.az-header-mega-card__title {
  display: block;
  color: inherit;
  font-family: "Jost", var(--az-font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.az-header-menu__list .az-nav-wholesale > a {
  border: 0;
  background: transparent;
  color: #111111;
}

.az-header-search {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.az-header-search summary {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  list-style: none;
  cursor: pointer;
  box-shadow: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.az-header-search summary::-webkit-details-marker,
.az-mobile-search summary::-webkit-details-marker,
.az-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.az-header-search[open] summary,
.az-header-search summary:hover {
  background: #ffffff;
  color: var(--az-primary);
}

.az-header-search__panel {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(220px, 320px) auto;
  gap: 8px;
  width: min(430px, calc(100vw - 28px));
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
}

.az-header-search:not([open]) .az-header-search__panel,
.az-mobile-search:not([open]) .az-mobile-search__panel,
.az-mobile-menu:not([open]) .az-mobile-menu__panel {
  display: none;
}

.az-header-search input[type="search"],
.az-mobile-search__panel input[type="search"] {
  min-height: 42px;
  border: 1px solid #dedede;
  border-radius: 2px;
  padding: 0 12px;
  background: #ffffff;
  color: #111111;
  font-family: "Jost", var(--az-font-body);
  font-size: 14px;
  font-weight: 400;
}

.az-header-search button,
.az-mobile-search__panel button {
  min-height: 42px;
  border: 0;
  border-radius: 2px;
  padding: 0 16px;
  background: var(--az-primary);
  color: #ffffff;
  font-family: "Jost", var(--az-font-body);
  font-size: 13px;
  font-weight: 600;
}

.az-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.az-header-action {
  min-height: 38px;
  border-radius: 0;
  padding: 0 8px;
  color: #111111;
  font-family: "Jost", var(--az-font-body);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: none;
}

.az-header-action:hover {
  color: var(--az-primary);
}

.az-header-action--whatsapp {
  border: 0;
  background: transparent;
}

.az-header-action--cart,
.az-mobile-cart {
  position: relative;
  width: 38px;
  height: 38px;
  min-height: 38px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #ffffff;
  color: #111111;
  box-shadow: none;
}

.az-header-action--cart:hover,
.az-mobile-cart:hover {
  background: #ffffff;
  color: var(--az-primary);
}

.az-header-cart-icon {
  width: 16px;
  height: 13px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 1px 1px 3px 3px;
}

.az-header-action--cart strong,
.az-mobile-cart strong {
  position: absolute;
  top: 4px;
  right: 2px;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--az-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  transform: translate(6px, -6px);
}

.az-header-mobile-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.az-mobile-search,
.az-mobile-menu {
  position: relative;
}

.az-mobile-search summary,
.az-mobile-menu summary {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #ffffff;
  color: #111111;
  font-family: "Jost", var(--az-font-body);
  font-size: 13px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

.az-mobile-search summary:hover,
.az-mobile-menu summary:hover {
  color: var(--az-primary);
}

.az-mobile-search__panel,
.az-mobile-menu__panel {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  z-index: 70;
  width: min(360px, calc(100vw - 28px));
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
}

.az-mobile-search__panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px;
}

.az-mobile-nav-list {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.az-mobile-subnav-list {
  margin: 0;
  padding: 0 0 6px;
  list-style: none;
  background: #fbfbfb;
}

.az-mobile-nav-list a {
  display: flex;
  min-height: 40px;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 16px;
  color: #111111;
  font-family: "Jost", var(--az-font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.az-mobile-nav-list > .az-nav-has-children > a {
  font-weight: 700;
}

.az-mobile-nav-list > .az-nav-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.az-mobile-subnav-list a {
  min-height: 34px;
  padding-left: 28px;
  color: #444444;
  font-size: 13px;
  font-weight: 500;
}

.az-mobile-nav-list li:last-child a {
  border-bottom: 0;
}

.az-mobile-nav-list a:hover,
.az-mobile-nav-list .az-nav-home > a {
  background: #fff7f5;
  color: var(--az-primary);
}

@media (max-width: 1240px) {
  .az-header-main__grid {
    gap: 12px;
  }

  .az-header-menu__list a {
    padding: 0 7px;
    font-size: 12px;
  }

  .az-header-logo {
    min-width: 150px;
  }

  .az-header-logo strong {
    font-size: 20px;
  }

  .az-header-mega-menu {
    width: min(100vw - 28px, 1020px);
    padding-inline: 26px;
  }

  .az-header-mega-menu__grid {
    gap: 20px;
  }
}

@media (max-width: 1080px) {
  .az-header-main__grid {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 62px;
  }

  .az-header-menu,
  .az-header-search,
  .az-header-actions {
    display: none;
  }

  .az-header-mobile-actions {
    display: flex;
  }

  .az-header-mega-menu {
    display: none;
  }
}

@media (max-width: 520px) {
  .az-header-inner {
    width: min(100% - 20px, 1320px);
  }

  .az-header-trust--single {
    font-size: 11px;
    text-align: center;
  }

  .az-header-logo {
    min-width: 0;
  }

  .az-header-logo__mark {
    width: 30px;
    height: 30px;
  }

  .az-header-logo strong {
    font-size: 18px;
  }

  .az-header-logo em {
    display: none;
  }
}
/* Refined auxiliary-page scale: compact ecommerce support pages, not campaign heroes. */
body.page-id-302 .hero-section,
body.page-id-299 .hero-section,
body.page-id-16 .hero-section {
  display: none;
}

body.page-id-302 .ct-container-full,
body.page-id-299 .ct-container-full,
body.page-id-16 .ct-container-full {
  padding-top: 32px;
  padding-bottom: 32px;
}

.az-info-page--polished {
  max-width: 1180px;
  margin-inline: auto;
  font-size: 15px;
}

.az-info-page--polished .az-info-hero {
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 16px;
  margin: 18px 0 16px;
}

.az-info-page--polished .az-info-hero__copy,
.az-info-page--polished .az-info-hero__panel,
.az-info-page--polished .az-info-composer,
.az-info-page--polished .az-info-form-card,
.az-info-page--polished .az-info-side-note {
  border-color: #e4e0d5;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(48, 44, 32, 0.035);
}

.az-info-page--polished .az-info-hero__copy {
  min-height: 238px;
  padding: 30px 32px;
}

.az-info-page--polished .az-info-hero__copy h1 {
  max-width: 720px;
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.az-info-page--polished .az-info-hero__copy > p:not(.az-kicker) {
  max-width: 62ch;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
}

.az-info-page--polished .az-actions {
  margin-top: 20px;
}

.az-info-page--polished .az-info-hero__panel {
  min-height: 238px;
  padding: 26px 24px;
}

.az-info-page--polished .az-info-hero__panel span,
.az-info-page--polished .az-info-link-stack span {
  font-size: 11px;
  letter-spacing: 0.06em;
}

.az-info-page--polished .az-info-hero__panel strong {
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.18;
}

.az-info-page--polished .az-info-hero__panel p {
  max-width: 36ch;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.58;
}

.az-info-page--polished .az-info-composer {
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.8fr);
  gap: 28px;
  margin: 16px 0 28px;
  padding: 28px 32px;
}

.az-info-page--polished .az-info-composer--form {
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.72fr);
  gap: 16px;
  padding: 0;
}

.az-info-page--polished .az-info-composer__main h2,
.az-info-page--polished .az-info-form-card h2 {
  font-size: clamp(25px, 2.3vw, 32px);
  line-height: 1.16;
  letter-spacing: 0;
}

.az-info-page--polished .az-info-side-note h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.az-info-page--polished .az-info-composer__main p:not(.az-kicker),
.az-info-page--polished .az-info-form-card .az-section-head p,
.az-info-page--polished .az-info-side-note p,
.az-info-page--polished .az-info-side-note li {
  max-width: 60ch;
  font-size: 14px;
  line-height: 1.65;
}

.az-info-page--polished .az-info-form-card {
  padding: 28px 32px 32px;
}

.az-info-page--polished .az-info-side-note {
  padding: 26px 24px;
}

.az-info-page--polished .az-info-link-stack {
  gap: 0;
  border-top: 1px solid #e8e4da;
}

.az-info-page--polished .az-info-link-stack a {
  border: 0;
  border-bottom: 1px solid #e8e4da;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 767px) {
  body.page-id-302 .ct-container-full,
  body.page-id-299 .ct-container-full,
  body.page-id-16 .ct-container-full {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .az-info-page--polished .az-info-hero,
  .az-info-page--polished .az-info-composer,
  .az-info-page--polished .az-info-composer--form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .az-info-page--polished .az-info-hero {
    margin-top: 12px;
  }

  .az-info-page--polished .az-info-hero__copy,
  .az-info-page--polished .az-info-hero__panel,
  .az-info-page--polished .az-info-form-card,
  .az-info-page--polished .az-info-side-note,
  .az-info-page--polished .az-info-composer {
    min-height: 0;
    padding: 22px 18px;
  }

  .az-info-page--polished .az-info-hero__copy h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .az-info-page--polished .az-info-hero__copy > p:not(.az-kicker) {
    font-size: 14px;
  }

  .az-info-page--polished .az-info-hero__panel strong {
    font-size: 20px;
  }

  .az-info-page--polished .az-info-composer__main h2,
  .az-info-page--polished .az-info-form-card h2 {
    font-size: 25px;
  }
}

/* Single-column auxiliary pages */
.az-info-page--polished .az-info-single {
  width: min(100%, 860px);
  margin: 18px auto 36px;
}

.az-info-page--polished .az-info-single__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.az-info-page--polished .az-info-single__intro h1 {
  margin: 12px 0 0;
  color: var(--az-text);
  font-family: var(--az-font-heading);
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.az-info-page--polished .az-info-single__intro .az-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(196, 144, 40, .3);
  border-radius: 999px;
  background: rgba(196, 144, 40, .08);
  color: var(--az-primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.az-info-page--polished .az-info-single__lead {
  max-width: 66ch;
  margin: 16px auto 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.az-info-page--polished .az-info-single__body {
  max-width: 700px;
  margin: 34px auto 0;
  padding-top: 28px;
  border-top: 1px solid #e5e1d7;
}

.az-info-page--polished .az-info-single__body p {
  margin: 0;
  color: var(--az-text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.az-info-page--polished .az-info-single__body p + p {
  margin-top: 16px;
}

.az-info-page--polished .az-info-single__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.az-info-page--polished .az-info-single__text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--az-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.az-info-page--polished .az-info-single__form {
  margin-top: 34px;
  padding: 30px 34px 34px;
  border: 1px solid #e2ded3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(48, 44, 32, 0.035);
}

.az-info-page--polished .az-info-single__form form,
.az-info-page--polished .az-info-single__form .woocommerce-form-track-order {
  margin: 0;
}

.az-info-page--polished .az-info-single__form input[type="text"],
.az-info-page--polished .az-info-single__form input[type="email"],
.az-info-page--polished .az-info-single__form input[type="tel"],
.az-info-page--polished .az-info-single__form textarea,
.az-info-page--polished .az-info-single__form select {
  border-radius: 6px !important;
  border-color: #d8d4ca !important;
  background: #ffffff !important;
  color: var(--az-text) !important;
  font-size: 15px !important;
}

.az-info-page--polished .az-info-single__form input:focus,
.az-info-page--polished .az-info-single__form textarea:focus,
.az-info-page--polished .az-info-single__form select:focus {
  border-color: var(--az-primary) !important;
  box-shadow: 0 0 0 3px rgba(184, 138, 45, 0.16) !important;
  outline: 0 !important;
}

.az-info-page--polished .az-info-single__form button,
.az-info-page--polished .az-info-single__form input[type="submit"],
.az-info-page--polished .az-info-single__form .ff-btn-submit,
.az-info-page--polished .az-info-single__form .woocommerce-button {
  min-height: 46px !important;
  border-radius: 6px !important;
  background: var(--az-primary) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
}

.az-info-page--polished .az-info-single__support,
.az-info-page--polished .az-info-single__support-row {
  margin: 18px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.az-info-page--polished .az-info-single__support-row {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.az-info-page--polished .az-info-single__support-row p {
  margin: 0;
}

.az-info-page--polished .az-info-single__support a,
.az-info-page--polished .az-info-single__support-row a {
  color: var(--az-text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  .az-info-page--polished .az-info-single {
    margin-top: 10px;
    margin-bottom: 24px;
  }

  .az-info-page--polished .az-info-single__intro {
    text-align: left;
  }

  .az-info-page--polished .az-info-single__intro h1 {
    font-size: 30px;
    line-height: 1.14;
  }

  .az-info-page--polished .az-info-single__lead {
    margin-top: 12px;
    font-size: 14px;
  }

  .az-info-page--polished .az-info-single__body {
    margin-top: 24px;
    padding-top: 22px;
  }

  .az-info-page--polished .az-info-single__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .az-info-page--polished .az-info-single__actions .az-button,
  .az-info-page--polished .az-info-single__text-link {
    width: 100%;
    justify-content: center;
  }

  .az-info-page--polished .az-info-single__form {
    margin-top: 24px;
    padding: 22px 18px 24px;
  }

  .az-info-page--polished .az-info-single__support-row {
    display: grid;
    gap: 8px;
    text-align: left;
  }
}
/* Refined wholesale enquiry flow */
body.page-id-14 .hero-section {
  display: none;
}

body.page-id-14 .ct-container-full {
  padding-top: 32px;
  padding-bottom: 32px;
}

.az-wholesale-page--refined {
  max-width: 1180px;
  margin-inline: auto;
}

.az-wholesale-conversion {
  margin: 18px 0 36px;
}

.az-wholesale-conversion__intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.az-wholesale-conversion__intro h1 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--az-text);
  font-family: var(--az-font-heading);
  font-size: clamp(36px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.az-wholesale-conversion__intro > p:not(.az-kicker) {
  max-width: 66ch;
  margin: 16px auto 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.65;
}

.az-wholesale-conversion__intro .az-button {
  margin-top: 22px;
}

.az-wholesale-conversion__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin: 38px auto 0;
  padding: 20px 0;
  border-top: 1px solid #e3dfd5;
  border-bottom: 1px solid #e3dfd5;
}

.az-wholesale-conversion__facts > div {
  padding: 0 24px;
}

.az-wholesale-conversion__facts > div + div {
  border-left: 1px solid #e3dfd5;
}

.az-wholesale-conversion__facts dt {
  color: var(--az-primary-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-wholesale-conversion__facts dd {
  margin: 7px 0 0;
  color: var(--az-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.az-wholesale-conversion__form {
  width: min(100%, 860px);
  margin: 46px auto 0;
  padding: 32px 36px 36px;
  border: 1px solid #e2ded3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(48, 44, 32, 0.035);
}

.az-wholesale-conversion__form-head {
  max-width: 650px;
  margin-bottom: 26px;
}

.az-wholesale-conversion__form h2,
.az-wholesale-conversion__shelf h2 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-heading);
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
}

.az-wholesale-conversion__form-head > p:not(.az-kicker) {
  margin: 12px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.65;
}

.az-wholesale-conversion__form input[type="text"],
.az-wholesale-conversion__form input[type="email"],
.az-wholesale-conversion__form input[type="tel"],
.az-wholesale-conversion__form textarea,
.az-wholesale-conversion__form select {
  border-radius: 6px !important;
  border-color: #d8d4ca !important;
  background: #ffffff !important;
  color: var(--az-text) !important;
  font-size: 15px !important;
}

.az-wholesale-conversion__form button,
.az-wholesale-conversion__form input[type="submit"],
.az-wholesale-conversion__form .ff-btn-submit {
  min-height: 46px !important;
  border-radius: 6px !important;
  background: var(--az-primary) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
}

.az-wholesale-conversion__shelf {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid #e3dfd5;
}

.az-wholesale-conversion__shelf-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.az-wholesale-conversion__shelf-head > a {
  color: var(--az-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 767px) {
  body.page-id-14 .ct-container-full {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .az-wholesale-conversion {
    margin-top: 10px;
    margin-bottom: 24px;
  }

  .az-wholesale-conversion__intro {
    text-align: left;
  }

  .az-wholesale-conversion__intro h1 {
    font-size: 30px;
    line-height: 1.14;
  }

  .az-wholesale-conversion__intro > p:not(.az-kicker) {
    margin-top: 12px;
    font-size: 14px;
  }

  .az-wholesale-conversion__intro .az-button {
    width: 100%;
    justify-content: center;
  }

  .az-wholesale-conversion__facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding: 0;
  }

  .az-wholesale-conversion__facts > div {
    padding: 16px 0;
  }

  .az-wholesale-conversion__facts > div + div {
    border-top: 1px solid #e3dfd5;
    border-left: 0;
  }

  .az-wholesale-conversion__form {
    margin-top: 30px;
    padding: 22px 18px 24px;
  }

  .az-wholesale-conversion__shelf {
    margin-top: 36px;
    padding-top: 26px;
  }

  .az-wholesale-conversion__shelf-head {
    display: grid;
    gap: 12px;
  }
}
/* Contact-led wholesale page */
.az-wholesale-page--contact-led {
  max-width: 1080px;
  margin-inline: auto;
}

.az-wholesale-contact {
  margin: 18px 0 36px;
}

.az-wholesale-contact__intro {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.az-wholesale-contact__intro h1 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-heading);
  font-size: clamp(36px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.az-wholesale-contact__intro > p:not(.az-kicker) {
  max-width: 68ch;
  margin: 16px auto 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.65;
}

.az-wholesale-contact__intro .az-button {
  margin-top: 22px;
}

.az-wholesale-contact__visual {
  width: min(100%, 920px);
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e9c95f;
}

.az-wholesale-contact__visual img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 52%;
}

.az-wholesale-contact__range,
.az-wholesale-contact__brief,
.az-wholesale-contact__process,
.az-wholesale-contact__faq {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid #e1ddd2;
}

.az-wholesale-contact__section-head {
  max-width: 720px;
}

.az-wholesale-contact__section-head h2,
.az-wholesale-contact__cta h2 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-heading);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.14;
  letter-spacing: 0;
}

.az-wholesale-contact__section-head > p:not(.az-kicker),
.az-wholesale-contact__process > p,
.az-wholesale-contact__cta > p:not(.az-kicker) {
  max-width: 68ch;
  margin: 12px 0 0;
  color: var(--az-muted);
  font-size: 15px;
  line-height: 1.68;
}

.az-wholesale-range-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  margin-top: 28px;
}

.az-wholesale-range-list h3 {
  margin: 0 0 10px;
  color: var(--az-text);
  font-family: var(--az-font-heading);
  font-size: 22px;
  line-height: 1.2;
}

.az-wholesale-range-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e7e3da;
}

.az-wholesale-range-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 49px;
  border-bottom: 1px solid #e7e3da;
}

.az-wholesale-range-list li strong {
  color: var(--az-text);
  font-size: 14px;
}

.az-wholesale-range-list li span {
  color: var(--az-muted);
  font-size: 13px;
  white-space: nowrap;
}

.az-wholesale-contact__brief ol {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e7e3da;
}

.az-wholesale-contact__brief li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #e7e3da;
}

.az-wholesale-contact__brief li > span {
  color: var(--az-primary-dark);
  font-size: 12px;
  font-weight: 800;
}

.az-wholesale-contact__brief strong {
  color: var(--az-text);
  font-size: 15px;
}

.az-wholesale-contact__brief li p {
  margin: 5px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.6;
}

.az-wholesale-contact__process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: end;
}

.az-wholesale-contact__process > p {
  margin: 0;
}

.az-wholesale-contact__cta {
  margin-top: 46px;
  padding: 38px 42px;
  border-radius: 8px;
  background: #f4f2e9;
  text-align: center;
}

.az-wholesale-contact__cta > p:not(.az-kicker) {
  margin-right: auto;
  margin-left: auto;
}

.az-wholesale-contact__cta .az-button {
  margin-top: 20px;
}

.az-wholesale-faq-list {
  margin-top: 24px;
  border-top: 1px solid #e2ded4;
}

.az-wholesale-faq-list details {
  border-bottom: 1px solid #e2ded4;
}

.az-wholesale-faq-list summary {
  padding: 19px 34px 19px 0;
  color: var(--az-text);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.az-wholesale-faq-list details p {
  max-width: 72ch;
  margin: -4px 0 20px;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .az-wholesale-contact {
    margin-top: 10px;
    margin-bottom: 24px;
  }

  .az-wholesale-contact__intro {
    text-align: left;
  }

  .az-wholesale-contact__intro h1 {
    font-size: 30px;
    line-height: 1.14;
  }

  .az-wholesale-contact__intro > p:not(.az-kicker) {
    margin-top: 12px;
    font-size: 14px;
  }

  .az-wholesale-contact__intro .az-button,
  .az-wholesale-contact__cta .az-button {
    width: 100%;
    justify-content: center;
  }

  .az-wholesale-contact__visual {
    margin-top: 24px;
    border-radius: 6px;
  }

  .az-wholesale-contact__visual img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .az-wholesale-contact__range,
  .az-wholesale-contact__brief,
  .az-wholesale-contact__process,
  .az-wholesale-contact__faq {
    margin-top: 38px;
    padding-top: 26px;
  }

  .az-wholesale-range-list,
  .az-wholesale-contact__process {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .az-wholesale-contact__process {
    gap: 12px;
  }

  .az-wholesale-contact__cta {
    margin-top: 38px;
    padding: 28px 18px;
    text-align: left;
  }
}

/* Header and hero V2 cascade lock. Keep this after legacy page rules. */
body.home .ct-container-full {
  padding-top: var(--az-v2-top-gap);
}

body .az-header-inner {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
}

body .az-header-trust--single {
  height: 32px;
  font-size: 12px;
}

body .az-header-trust--single .az-header-inner {
  min-height: 32px;
  justify-content: space-between;
}

body .az-header-main__grid {
  grid-template-columns: 230px minmax(0, 1fr) 44px auto;
  min-height: 72px;
  gap: 20px;
}

body .az-header-logo {
  min-width: 0;
  gap: 11px;
}

body .az-header-logo__mark {
  width: 38px;
  height: 38px;
  border-width: 1.5px;
}

body .az-header-logo strong {
  font-size: 23px;
}

body .az-header-logo em {
  color: #677169;
  font-size: 10px;
}

body .az-header-menu__list {
  gap: 4px;
}

body .az-header-menu__list a {
  min-height: 44px;
  border-radius: 4px;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 600;
}

body .az-header-menu__list a:hover,
body .az-header-menu__list .current-menu-item > a,
body .az-header-menu__list .current_page_item > a,
body .az-header-menu__list .az-nav-primary-brand > a {
  background: #e9f0eb;
  color: #214938;
}

body .az-header-search summary,
body .az-header-action--cart {
  width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 4px;
}

body .az-header-actions {
  gap: 2px;
}

body.home .ct-container-full,
body.home .az-home-ausclone {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin-inline: auto;
}

body.home .az-home-ausclone {
  width: 100%;
  max-width: none;
}

body.home .az-reference-hero--v2 {
  width: 100%;
  max-width: none;
  margin-top: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #15130f;
  box-shadow: 0 12px 32px rgba(23, 32, 25, 0.09);
}

body.home .az-reference-hero--v2 .az-hero-slide {
  position: relative;
  inset: auto;
  display: block;
  min-height: 0;
  height: auto;
  opacity: 1;
  transform: none;
  animation: none;
}

body.home .az-hero-v2 > img {
  display: block;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1080px) {
  body .az-header-main__grid {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 62px;
  }
}

@media (max-width: 680px) {
  body .az-header-inner,
  body.home .ct-container-full,
  body.home .az-home-ausclone {
    width: min(calc(100% - 32px), var(--az-v2-shell));
  }

  body .az-header-trust--single .az-header-inner {
    justify-content: center;
  }

  body.home .az-reference-hero--v2 {
    border-radius: 4px;
  }

  body.home .az-hero-v2 > img {
    aspect-ratio: 1.16 / 1;
  }
}

/* Homepage trust strip and global contact rail. */
.az-home-trust-strip {
  width: 100%;
  max-width: none;
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid #dfe3dd;
  border-radius: 0;
  background: #fff;
}

.az-home-trust-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 24px;
}

.az-home-trust-item + .az-home-trust-item {
  border-left: 1px solid #dfe3dd;
}

.az-home-trust-item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #765617;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.az-home-trust-icon { width:20px; height:20px; display:block; background-position:center; background-repeat:no-repeat; background-size:20px 20px; }
.az-home-trust-icon--delivery { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23765617' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h11v9H3zM14 10h4l3 3v3h-7'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/svg%3E"); }
.az-home-trust-icon--checkout { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23765617' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 9h18M7 15h4'/%3E%3C/svg%3E"); }
.az-home-trust-icon--tracking { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23765617' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4zM8 12l3 3 5-6'/%3E%3C/svg%3E"); }
.az-home-trust-icon--support { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23765617' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3C/svg%3E"); }

.az-home-trust-item strong,
.az-home-trust-item small {
  display: block;
}

.az-home-trust-item strong {
  color: #172019;
  font-size: 13px;
  line-height: 1.3;
}

.az-home-trust-item small {
  margin-top: 2px;
  color: #677169;
  font-size: 11px;
  line-height: 1.35;
}

.az-contact-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 90;
  display: grid;
  gap: 0;
  padding: 4px;
  border: 1px solid #dfe3dd;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(23, 32, 25, 0.13);
  transform: translateY(-50%);
}

.az-contact-rail a {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: #fff;
  transition: transform 160ms ease, background-color 160ms ease;
}

.az-contact-rail a + a {
  border-top: 1px solid #dfe3dd;
}

.az-contact-rail a:hover,
.az-contact-rail a:focus-visible {
  z-index: 1;
  background: #f2f4f1;
  transform: translateX(-3px);
  outline: 0;
}

.az-contact-rail svg {
  width: 25px;
  height: 25px;
}

.az-contact-rail .whatsapp,
.az-contact-rail .whatsapp:hover {
  color: #25d366;
}

.az-contact-rail .telegram,
.az-contact-rail .telegram:hover {
  color: #26a5e4;
}

.az-contact-rail .whatsapp svg,
.az-contact-rail .telegram svg {
  fill: currentColor;
}

.az-contact-rail .email svg {
  width: 26px;
  height: 26px;
}

.az-contact-rail span {
  position: absolute;
  right: 59px;
  top: 50%;
  padding: 7px 10px;
  border-radius: 3px;
  background: #172019;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translate(5px, -50%);
  transition: 160ms ease;
}

.az-contact-rail a:hover span,
.az-contact-rail a:focus-visible span {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

@media (max-width: 680px) {
  .az-home-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .az-home-trust-item {
    padding: 12px;
  }

  .az-home-trust-item + .az-home-trust-item {
    border-left: 0;
  }

  .az-home-trust-item:nth-child(even) {
    border-left: 1px solid #dfe3dd;
  }

  .az-home-trust-item:nth-child(n + 3) {
    border-top: 1px solid #dfe3dd;
  }

  .az-contact-rail {
    right: 10px;
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .az-contact-rail a {
    width: 44px;
    height: 44px;
  }

  .az-contact-rail svg {
    width: 22px;
    height: 22px;
  }

  .az-contact-rail .telegram,
  .az-contact-rail .email {
    display: none;
  }

  .az-contact-rail span {
    display: none;
  }
}

/* Homepage FAQ V2. */
.az-home-faq-v2 {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
  margin-top: 72px;
  padding-top: 0;
}

.az-home-faq-head {
  position: sticky;
  top: 126px;
}

.az-home-faq-head > span {
  display: block;
  margin-bottom: 7px;
  color: #765617;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.az-home-faq-head h2 {
  margin: 0;
  color: #172019;
  font-family: "Outfit", var(--az-font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.az-home-faq-head p {
  margin: 12px 0 18px;
  color: #677169;
  font-size: 15px;
}

.az-home-faq-head a {
  display: inline-block;
  border-bottom: 1px solid #172019;
  padding-bottom: 3px;
  color: #172019;
  font-size: 13px;
  font-weight: 700;
}

.az-home-faq-list {
  border-top: 1px solid #c9cfc8;
}

.az-home-faq-item {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #c9cfc8;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.az-home-faq-question {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 2px;
  color: #172019;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.az-home-faq-question::-webkit-details-marker {
  display: none;
}

.az-home-faq-question::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  transition: transform 160ms ease;
}

.az-home-faq-item[open] .az-home-faq-question::after {
  transform: rotate(45deg);
}

.az-home-faq-item > p {
  max-width: 760px;
  margin: 0;
  padding: 0 40px 20px 2px;
  color: #677169;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 680px) {
  .az-home-faq-v2 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
  }

  .az-home-faq-head {
    position: static;
  }

  .az-home-faq-head h2 {
    font-size: 27px;
  }

  .az-home-faq-question {
    min-height: 62px;
    font-size: 14px;
  }
}

/* Homepage Alibarbar series navigation V2. */
.az-home-series-v2 {
  width: 100%;
  max-width: none;
  margin-top: 72px;
}

.az-home-series-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.az-home-series-head > div > span {
  display: block;
  margin-bottom: 7px;
  color: #765617;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.az-home-series-head h2 {
  margin: 0;
  color: #172019;
  font-family: "Outfit", var(--az-font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.az-home-series-head p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #677169;
  font-size: 15px;
}

.az-home-series-head > a {
  flex: 0 0 auto;
  border-bottom: 1px solid #172019;
  padding-bottom: 3px;
  color: #172019;
  font-size: 13px;
  font-weight: 700;
}

.az-home-series-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.az-home-series-card {
  overflow: hidden;
  display: block;
  border: 1px solid #dfe3dd;
  border-radius: 6px;
  background: #fff;
  color: #172019;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.az-home-series-card:hover {
  border-color: #c4a762;
  color: #172019;
  box-shadow: 0 12px 32px rgba(23, 32, 25, 0.09);
  transform: translateY(-2px);
}

.az-home-series-media {
  height: 240px;
  display: grid;
  place-items: center;
  background: #f4e6b8;
}

.az-home-series-media img {
  width: 80%;
  height: 92%;
  object-fit: contain;
}

.az-home-series-copy {
  display: block;
  padding: 17px;
}

.az-home-series-copy strong,
.az-home-series-copy small {
  display: block;
}

.az-home-series-copy strong {
  font-family: "Outfit", var(--az-font-heading);
  font-size: 19px;
  font-weight: 600;
}

.az-home-series-copy small {
  margin-top: 4px;
  color: #677169;
  font-size: 12px;
}

.az-home-series-copy em {
  display: inline-block;
  margin-top: 10px;
  color: #765617;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .az-home-series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .az-home-series-v2 {
    margin-top: 48px;
  }

  .az-home-series-head {
    align-items: start;
    gap: 16px;
    margin-bottom: 18px;
  }

  .az-home-series-head h2 {
    font-size: 27px;
  }

  .az-home-series-head p {
    font-size: 13px;
  }

  .az-home-series-grid {
    gap: 8px;
  }

  .az-home-series-media {
    height: 168px;
  }

  .az-home-series-copy {
    padding: 12px;
  }

  .az-home-series-copy strong {
    font-size: 16px;
  }

  .az-home-series-copy em {
    margin-top: 7px;
  }
}

.az-home-series-card .az-home-series-media {
  overflow: hidden;
}

.az-home-series-card .az-home-series-media img {
  width: 100%;
  height: 240px !important;
  max-height: 100%;
  padding: 12px;
  object-fit: contain;
}

@media (max-width: 680px) {
  .az-home-series-card .az-home-series-media img {
    height: 168px !important;
  }
}
/* Alibarbar paid-traffic landing page */
.az-alibarbar-offer-page .entry-header,
.az-alibarbar-offer-page .ct-footer { display:none; }
.az-alibarbar-offer-page .site-main,
.az-alibarbar-offer-page .content-area { margin:0; padding:0; }
.az-alibarbar-landing { --landing-ink:#18211b; --landing-muted:#69716b; --landing-gold:#a77921; --landing-gold-dark:#725315; --landing-line:#dfe3df; color:var(--landing-ink); background:#f5f6f4; font-family:"DM Sans",sans-serif; }
.az-alibarbar-landing * { box-sizing:border-box; }
.az-alibarbar-landing a { text-decoration:none; }
.az-landing-main { width:min(calc(100% - clamp(32px,6vw,96px)),1440px); margin:0 auto; padding:14px 0 0; }
.az-landing-purchase { display:grid; grid-template-columns:minmax(0,1.12fr) minmax(500px,.88fr); min-height:590px; overflow:hidden; background:#fff; box-shadow:0 18px 46px rgba(24,33,27,.07); }
.az-landing-media { position:relative; min-width:0; display:grid; place-items:center; overflow:hidden; background:#f0f1ee; }
.az-landing-media::before { content:"ALIBARBAR"; position:absolute; left:5%; top:3%; color:rgba(24,33,27,.035); font:700 clamp(70px,9vw,138px)/1 "Outfit"; }
.az-landing-media::after { content:""; position:absolute; inset:auto 12% 8%; height:1px; background:#d8dcd7; }
.az-landing-media img { position:relative; z-index:1; width:88%; height:540px; object-fit:contain; filter:drop-shadow(0 22px 18px rgba(24,33,27,.12)); }
.az-landing-media > span { position:absolute; z-index:2; left:20px; bottom:18px; padding:7px 10px; border:1px solid #e0e3df; border-radius:3px; background:#fff; color:var(--landing-muted); font-size:11px; }
.az-landing-panel { display:flex; flex-direction:column; padding:18px 28px; border-left:1px solid #e7e9e6; }
.az-landing-breadcrumb { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:10px; color:#858e87; font-size:12px; }
.az-landing-breadcrumb a { color:inherit; }
.az-landing-brand { margin:0 0 8px; color:var(--landing-gold-dark); font-size:12px; font-weight:700; text-transform:uppercase; }
.az-landing-panel h1 { margin:0; color:var(--landing-ink); font:600 48px/1.02 "Outfit"; letter-spacing:0; }
.az-landing-summary { max-width:54ch; margin:6px 0 10px; color:var(--landing-muted); font-size:14px; line-height:1.55; }
.az-landing-series-switch { display:grid; grid-template-columns:repeat(4,1fr); gap:4px; margin-bottom:10px; padding:4px; border:1px solid #d9ddd8; border-radius:5px; background:#f2f3f1; }
.az-landing-series-switch button { min-height:38px; padding:4px 5px; border:0; border-radius:3px; background:transparent; color:#59615b; font-size:11px; font-weight:700; cursor:pointer; }
.az-landing-series-switch button:hover { background:#fff; }
.az-landing-series-switch button[aria-selected="true"] { background:#fff; color:var(--landing-ink); box-shadow:0 1px 5px rgba(24,33,27,.09); }
.az-landing-choice-label { display:flex; justify-content:space-between; gap:16px; margin:5px 0 8px; font-size:13px; font-weight:700; }
.az-landing-choice-label span { color:var(--landing-gold-dark); }
.az-landing-flavour-select { width:100%; min-height:46px; padding:0 42px 0 13px; border:1px solid #ccd2cc; border-radius:4px; background:#fff; color:var(--landing-ink); font-weight:600; }
.az-landing-order-row { display:grid; grid-template-columns:122px 1fr; align-items:end; gap:12px; margin-top:10px; padding-top:9px; border-top:1px solid var(--landing-line); }
.az-landing-order-row label { display:block; margin-bottom:7px; font-size:12px; font-weight:700; }
.az-landing-qty { height:50px; display:grid; grid-template-columns:36px 1fr 36px; border:1px solid #cbd1cb; border-radius:4px; }
.az-landing-qty button { padding:0; border:0; background:#fff; color:var(--landing-ink); font-size:20px; cursor:pointer; }
.az-landing-qty output { display:grid; place-items:center; font-weight:700; font-variant-numeric:tabular-nums; }
.az-landing-price { text-align:right; }
.az-landing-price del { margin-right:7px; color:#8a928c; font-size:13px; }
.az-landing-price strong { color:var(--landing-ink); font:600 34px "Outfit"; font-variant-numeric:tabular-nums; }
.az-landing-price > span { display:block; color:var(--landing-muted); font-size:11px; }
.az-landing-actions { display:grid; grid-template-columns:1fr 1fr 50px; gap:7px; margin-top:10px; }
.az-landing-actions > a { min-height:50px; display:flex; align-items:center; justify-content:center; padding:0 10px; border:1px solid var(--landing-gold); border-radius:4px; font-size:13px; font-weight:700; }
.az-landing-buy-now { background:var(--landing-gold); color:#fff; }
.az-landing-buy-now:hover { border-color:var(--landing-gold-dark); background:var(--landing-gold-dark); color:#fff; }
.az-landing-add-cart { border-color:#ccd2cc !important; background:#fff; color:var(--landing-ink); }
.az-landing-add-cart:hover { border-color:var(--landing-gold) !important; background:#f7f2e6; color:var(--landing-ink); }
.az-landing-whatsapp { border-color:#d9ddd8 !important; background:#fff; color:#1e9b50; }
.az-landing-whatsapp svg { width:24px; height:24px; fill:currentColor; }
.az-landing-sku { margin:11px 0 0; color:var(--landing-muted); font-size:11px; }
.az-landing-checkout-note { margin:auto 0 0; padding-top:10px; border-top:1px solid #eceeeb; color:var(--landing-muted); font-size:11px; line-height:1.45; }
.az-landing-trust { min-height:68px; display:grid; grid-template-columns:repeat(4,1fr); margin-top:14px; border-top:1px solid var(--landing-line); border-bottom:1px solid var(--landing-line); background:#fff; }
.az-landing-trust article { display:flex; flex-direction:column; justify-content:center; padding:11px 20px; }
.az-landing-trust article + article { border-left:1px solid var(--landing-line); }
.az-landing-trust strong { font-size:12px; }
.az-landing-trust span { color:var(--landing-muted); font-size:10px; }
.az-landing-details { display:grid; grid-template-columns:.82fr 1.18fr; gap:80px; padding:76px 0; }
.az-landing-details h2,.az-landing-faq h2,.az-landing-contact h2 { margin:0; color:var(--landing-ink); font:600 36px/1.08 "Outfit"; letter-spacing:0; }
.az-landing-details > div > p,.az-landing-faq > div > p,.az-landing-contact p { color:var(--landing-muted); }
.az-landing-detail-media { min-height:340px; display:grid; place-items:center; margin-top:24px; background:#eef0ed; }
.az-landing-detail-media img { width:84%; height:310px; object-fit:contain; filter:drop-shadow(0 16px 14px rgba(24,33,27,.1)); }
.az-landing-details dl { margin:0; border-top:1px solid #cbd1cb; }
.az-landing-details dl > div { min-height:60px; display:grid; grid-template-columns:180px 1fr; align-items:center; gap:20px; border-bottom:1px solid var(--landing-line); }
.az-landing-details dt { color:var(--landing-muted); font-size:13px; }
.az-landing-details dd { margin:0; font-size:14px; font-weight:700; }
.az-landing-details dd a { color:var(--landing-gold-dark); }
.az-landing-order-info { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--landing-line); border-bottom:1px solid var(--landing-line); background:#fff; }
.az-landing-order-info article { padding:34px 28px; }
.az-landing-order-info article + article { border-left:1px solid var(--landing-line); }
.az-landing-order-info strong { font:600 18px "Outfit"; }
.az-landing-order-info p { margin:8px 0 0; color:var(--landing-muted); font-size:13px; }
.az-landing-faq { display:grid; grid-template-columns:300px 1fr; gap:90px; padding:76px 0; }
.az-landing-faq-list { border-top:1px solid #cbd1cb; }
.az-landing-faq-list details { border-bottom:1px solid #cbd1cb; }
.az-landing-faq-list summary { min-height:64px; display:flex; align-items:center; justify-content:space-between; padding:14px 2px; font-weight:700; cursor:pointer; list-style:none; }
.az-landing-faq-list summary::after { content:"+"; font-size:20px; font-weight:400; }
.az-landing-faq-list details[open] summary::after { content:"-"; }
.az-landing-faq-list details p { max-width:760px; margin:0; padding:0 36px 18px 2px; color:var(--landing-muted); font-size:13px; }
.az-landing-contact { display:flex; align-items:center; justify-content:space-between; gap:40px; margin-inline:calc(50% - 50vw); padding:38px max(clamp(16px,3vw,48px),calc((100vw - 1440px)/2)); border-top:1px solid var(--landing-line); background:#fff; }
.az-landing-contact h2 { font-size:28px; }
.az-landing-contact p { margin:5px 0 0; }
.az-landing-contact-icons { display:flex; gap:10px; }
.az-landing-contact-icons a { width:54px; height:54px; display:grid; place-items:center; border:1px solid #dce0dc; border-radius:5px; background:#fff; }
.az-landing-contact-icons a:hover { border-color:var(--landing-gold); background:#f7f7f5; }
.az-landing-contact-icons svg { width:28px; height:28px; fill:none; stroke:#5d665f; stroke-width:1.8; }
.az-landing-contact-icons a:nth-child(1) svg { fill:#25d366; stroke:none; }
.az-landing-contact-icons a:nth-child(2) svg { fill:#26a5e4; stroke:none; }
.az-alibarbar-landing > .az-site-footer { margin-top:0; }
.az-alibarbar-landing button:focus-visible,.az-alibarbar-landing a:focus-visible,.az-alibarbar-landing select:focus-visible { outline:3px solid rgba(167,121,33,.25); outline-offset:2px; }
@media (max-width:1100px) {
  .az-landing-purchase { grid-template-columns:1fr 500px; }
  .az-landing-panel { padding:24px; }
  .az-landing-panel h1 { font-size:40px; }
  .az-landing-details { gap:40px; }
}
@media (max-width:760px) {
  .az-landing-main { width:min(calc(100% - 24px),1440px); padding-top:12px; }
  .az-landing-purchase { grid-template-columns:1fr; min-height:0; }
  .az-landing-media { min-height:280px; }
  .az-landing-media::before { font-size:56px; }
  .az-landing-media img { width:94%; height:270px; }
  .az-landing-panel { padding:24px 16px; border-left:0; border-top:1px solid #e7e9e6; }
  .az-landing-panel h1 { font-size:34px; }
  .az-landing-series-switch { display:flex; overflow-x:auto; }
  .az-landing-series-switch button { flex:0 0 118px; }
  .az-landing-order-row { grid-template-columns:104px 1fr; }
  .az-landing-actions { grid-template-columns:1fr 1fr 50px; }
  .az-landing-trust { grid-template-columns:repeat(2,1fr); }
  .az-landing-trust article { padding:11px 9px; }
  .az-landing-trust article:nth-child(even) { border-left:1px solid var(--landing-line); }
  .az-landing-trust article:nth-child(n+3) { border-top:1px solid var(--landing-line); }
  .az-landing-details,.az-landing-faq { grid-template-columns:1fr; gap:30px; padding:48px 0; }
  .az-landing-details h2,.az-landing-faq h2 { font-size:28px; }
  .az-landing-detail-media { min-height:260px; }
  .az-landing-detail-media img { height:240px; }
  .az-landing-details dl > div { grid-template-columns:120px 1fr; }
  .az-landing-order-info { grid-template-columns:1fr; }
  .az-landing-order-info article + article { border-left:0; border-top:1px solid var(--landing-line); }
  .az-landing-contact { gap:20px; }
  .az-landing-contact h2 { font-size:23px; }
  .az-landing-contact p { max-width:30ch; font-size:12px; }
  .az-landing-contact-icons a { width:48px; height:48px; }
}
/* Homepage series-first commerce structure */
.az-home-commerce-trimmed > .az-site-footer { width:100%; max-width:none; margin-left:0 !important; margin-right:0 !important; }
.az-home-commerce-trimmed > .az-home-faq-v2 { padding:56px 40px; background:#fff; }
.az-home-commerce-trimmed .az-home-faq-head { position:static; top:auto; }
.az-home-commerce-trimmed > .az-home-quick-order,
.az-home-commerce-trimmed > .az-home-iget-series,
.az-home-commerce-trimmed > .az-home-multiple-packs,
.az-home-commerce-trimmed > .az-offer-signup { width:100%; max-width:none; margin-left:0 !important; margin-right:0 !important; }
.az-home-quick-order { display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; align-items:center; margin-top:64px; padding:36px 40px; border-top:1px solid #dfe3dd; border-bottom:1px solid #dfe3dd; background:#fff; }
.az-home-quick-copy > span,.az-home-iget-copy > span,.az-home-multiple-packs > div > span { color:#765617; font-size:11px; font-weight:700; text-transform:uppercase; }
.az-home-quick-copy h2,.az-home-iget-copy h2,.az-home-multiple-packs h2 { margin:7px 0 0; color:#172019; font:600 32px/1.1 "Outfit"; letter-spacing:0; }
.az-home-quick-copy p,.az-home-iget-copy p,.az-home-multiple-packs p { margin:10px 0 0; color:#677169; font-size:14px; }
.az-home-quick-controls { display:grid; grid-template-columns:90px 1fr; gap:8px 12px; align-items:center; }
.az-home-quick-controls label { font-size:12px; font-weight:700; }
.az-home-quick-controls select { min-height:44px; padding:0 38px 0 12px; border:1px solid #cbd1cb; border-radius:4px; background:#fff; }
.az-home-quick-bottom { grid-column:1/-1; display:grid; grid-template-columns:112px 1fr 150px; gap:12px; align-items:center; margin-top:5px; }
.az-home-quick-qty { height:46px; display:grid; grid-template-columns:34px 1fr 34px; border:1px solid #cbd1cb; border-radius:4px; }
.az-home-quick-qty button { padding:0; border:0; background:#fff; font-size:18px; cursor:pointer; }
.az-home-quick-qty output { display:grid; place-items:center; font-weight:700; }
.az-home-quick-price { text-align:right; font:600 24px "Outfit"; font-variant-numeric:tabular-nums; }
.az-home-quick-buy { min-height:46px; display:flex; align-items:center; justify-content:center; border-radius:4px; background:#b9892d; color:#fff; font-size:13px; font-weight:700; }
.az-home-iget-series { display:grid; grid-template-columns:1.05fr .95fr; min-height:420px; margin-top:64px; overflow:hidden; background:#fff; }
.az-home-iget-visual { display:grid; place-items:center; background:#eef0ed; }
.az-home-iget-visual img { width:88%; height:390px; object-fit:contain; }
.az-home-iget-copy { padding:40px; }
.az-home-iget-copy nav { display:grid; grid-template-columns:1fr 1fr; gap:0 20px; margin-top:22px; border-top:1px solid #dfe3dd; }
.az-home-iget-link { min-height:54px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid #dfe3dd; color:#172019; font-size:13px; font-weight:700; }
.az-home-iget-link:hover { color:#765617; }
.az-home-iget-all { display:inline-block; margin-top:22px; border-bottom:1px solid #172019; color:#172019; font-size:12px; font-weight:700; }
.az-home-multiple-packs { display:grid; grid-template-columns:.8fr 1.2fr; gap:64px; margin-top:64px; padding:36px 40px; background:#eaf0eb; }
.az-home-pack-links { border-top:1px solid #c9d2cb; }
.az-home-pack-links a { min-height:58px; display:flex; align-items:center; justify-content:space-between; gap:20px; border-bottom:1px solid #c9d2cb; color:#172019; }
.az-home-pack-links strong { font-size:14px; }.az-home-pack-links span { color:#765617; font-size:11px; font-weight:700; }
@media(max-width:900px){.az-home-quick-order,.az-home-iget-series,.az-home-multiple-packs{grid-template-columns:1fr;gap:28px}.az-home-iget-visual{min-height:300px}.az-home-iget-visual img{height:290px}}
@media(max-width:680px){.az-home-commerce-trimmed > .az-home-faq-v2{padding:36px 18px}.az-home-quick-order,.az-home-multiple-packs{margin-top:48px;padding:26px 18px}.az-home-quick-copy h2,.az-home-iget-copy h2,.az-home-multiple-packs h2{font-size:27px}.az-home-quick-controls{grid-template-columns:1fr}.az-home-quick-bottom{grid-column:auto;grid-template-columns:94px 1fr}.az-home-quick-buy{grid-column:1/-1}.az-home-iget-series{margin-top:48px}.az-home-iget-copy{padding:26px 18px}.az-home-iget-copy nav{grid-template-columns:1fr}.az-home-multiple-packs{gap:22px}}
/* Alibarbar Ingot 9000 series archive */
body.az-series-archive-page .hero-section { display:none; }
body.az-series-archive-page .ct-container-full { width:min(calc(100% - clamp(32px,6vw,96px)),1440px); max-width:1440px; margin-inline:auto; padding-inline:0; }
body.az-series-archive-page .woocommerce-notices-wrapper { margin-top:18px; }
.az-series-archive-header { display:grid; grid-template-columns:.9fr 1.1fr; min-height:430px; overflow:hidden; margin-top:24px; background:#fff; }
.az-series-archive-copy { padding:42px; }
.az-series-archive-copy nav { display:flex; flex-wrap:wrap; gap:7px; color:#7b847d; font-size:12px; }
.az-series-archive-copy nav a { color:inherit; }
.az-series-archive-brand { margin:42px 0 7px; color:#765617; font-size:11px; font-weight:700; text-transform:uppercase; }
.az-series-archive-copy h1 { margin:0; color:#172019; font:600 52px/1 "Outfit"; letter-spacing:0; }
.az-series-archive-copy > p:last-of-type { max-width:58ch; margin:14px 0 0; color:#677169; font-size:14px; line-height:1.65; }
.az-series-archive-copy dl { display:grid; grid-template-columns:repeat(3,1fr); margin:30px 0 0; border-top:1px solid #dfe3dd; border-bottom:1px solid #dfe3dd; }
.az-series-archive-copy dl div { padding:15px 10px 15px 0; }.az-series-archive-copy dt { color:#78817a; font-size:10px; text-transform:uppercase; }.az-series-archive-copy dd { margin:3px 0 0; color:#172019; font-weight:700; }
.az-series-archive-media { position:relative; display:grid; place-items:center; background:#eef0ed; }
.az-series-archive-media::before { content:"INGOT 9000"; position:absolute; top:22px; right:24px; color:rgba(23,32,25,.045); font:700 clamp(58px,7vw,106px)/1 "Outfit"; }
.az-series-archive-media img { position:relative; width:82%; height:400px; object-fit:contain; filter:drop-shadow(0 18px 16px rgba(23,32,25,.12)); }
.az-series-archive-nav { display:grid; grid-template-columns:1.3fr .7fr; gap:28px; padding:26px 30px; border-top:1px solid #dfe3dd; background:#fff; }
.az-series-archive-nav strong { display:block; margin-bottom:9px; font-size:12px; }
.az-series-flavours > div { display:flex; flex-wrap:wrap; gap:6px; }.az-series-flavour-link,.az-series-packs a { min-height:36px; display:inline-flex; align-items:center; padding:0 11px; border:1px solid #d6dbd6; border-radius:4px; background:#fff; color:#364039; font-size:11px; font-weight:700; }
.az-series-flavour-link:hover,.az-series-packs a:hover { border-color:#b9892d; color:#765617; }
.az-series-packs > div { display:flex; flex-wrap:wrap; gap:6px; }
.az-series-order-notes { display:grid; grid-template-columns:repeat(4,1fr); margin-top:14px; border-top:1px solid #dfe3dd; border-bottom:1px solid #dfe3dd; background:#fff; }
.az-series-order-notes article { padding:14px 20px; }.az-series-order-notes article+article { border-left:1px solid #dfe3dd; }.az-series-order-notes strong,.az-series-order-notes span { display:block; }.az-series-order-notes strong { font-size:12px; }.az-series-order-notes span { margin-top:2px; color:#677169; font-size:10px; }
.az-series-shelf-heading { display:flex; align-items:end; justify-content:space-between; gap:30px; margin:56px 0 22px; }
.az-series-shelf-heading span { color:#765617; font-size:11px; font-weight:700; text-transform:uppercase; }.az-series-shelf-heading h2 { margin:5px 0 0; color:#172019; font:600 32px/1.1 "Outfit"; letter-spacing:0; }.az-series-shelf-heading > a { border-bottom:1px solid #172019; color:#172019; font-size:12px; font-weight:700; }
body.az-series-archive-page .woocommerce-result-count,body.az-series-archive-page .woocommerce-ordering { margin-bottom:18px; }
body.az-series-archive-page ul.products { width:100%; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
body.az-series-archive-page ul.products li.product { min-height:500px; border-color:#dfe3dd; border-radius:5px; background:#fff; box-shadow:none; }
body.az-series-archive-page ul.products li.product:hover { border-color:#c6aa68; box-shadow:0 10px 25px rgba(23,32,25,.07); }
body.az-series-archive-page ul.products li.product img { height:250px; background:#f1f2ef; }
body.az-series-archive-page ul.products li.product .woocommerce-loop-product__title { font-size:15px; }
body.az-series-archive-page ul.products li.product .az-loop-buy-now { min-height:42px; }
body.az-series-archive-page ul.products li.product .button { min-height:40px; background:#fff; }
@media(max-width:900px){.az-series-archive-header{grid-template-columns:1fr}.az-series-archive-media{min-height:320px}.az-series-archive-media img{height:300px}.az-series-archive-nav{grid-template-columns:1fr}.az-series-order-notes{grid-template-columns:repeat(2,1fr)}.az-series-order-notes article:nth-child(odd){border-left:0}.az-series-order-notes article:nth-child(n+3){border-top:1px solid #dfe3dd}body.az-series-archive-page ul.products{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:680px){body.az-series-archive-page .ct-container-full{width:min(calc(100% - 24px),1440px)}.az-series-archive-header{margin-top:12px}.az-series-archive-copy{padding:26px 18px}.az-series-archive-brand{margin-top:28px}.az-series-archive-copy h1{font-size:38px}.az-series-archive-copy dl{grid-template-columns:1fr}.az-series-archive-copy dl div+div{border-top:1px solid #dfe3dd}.az-series-archive-media{min-height:260px}.az-series-archive-media img{height:250px}.az-series-archive-nav{padding:22px 18px}.az-series-shelf-heading{margin-top:42px}.az-series-shelf-heading h2{font-size:27px}body.az-series-archive-page ul.products{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}body.az-series-archive-page ul.products li.product{min-height:0;padding:8px}body.az-series-archive-page ul.products li.product img{height:180px}}

/* Product-first hierarchy for the Ingot 9000 shelf. */
body.az-series-archive-page .az-series-archive-header { grid-template-columns:1.25fr .75fr; min-height:220px; margin-top:18px; }
body.az-series-archive-page .az-series-archive-copy { padding:24px 30px; }
body.az-series-archive-page .az-series-archive-brand { margin:22px 0 5px; }
body.az-series-archive-page .az-series-archive-copy h1 { font-size:38px; }
body.az-series-archive-page .az-series-archive-copy > p:last-of-type { margin-top:8px; }
body.az-series-archive-page .az-series-archive-facts { display:flex; flex-wrap:wrap; gap:0; margin-top:18px; border-top:1px solid #dfe3dd; }
body.az-series-archive-page .az-series-archive-facts span { padding:10px 18px 0 0; color:#59635c; font-size:11px; font-weight:700; }
body.az-series-archive-page .az-series-archive-facts span+span { padding-left:18px; border-left:1px solid #dfe3dd; }
body.az-series-archive-page .az-series-archive-media img { width:72%; height:210px; }
body.az-series-archive-page .az-series-archive-media::before { top:18px; font-size:62px; }
body.az-series-archive-page .az-series-archive-toolbar { float:left; min-height:48px; display:flex; align-items:center; gap:18px; margin:26px 0 18px; }
body.az-series-archive-page .az-series-archive-toolbar strong { font-size:14px; }
body.az-series-archive-page .az-series-archive-toolbar a { border-bottom:1px solid #172019; color:#172019; font-size:12px; font-weight:700; }
body.az-series-archive-page .woocommerce-result-count { display:none; }
body.az-series-archive-page .woocommerce-ordering { float:right; margin:26px 0 18px; }
body.az-series-archive-page .woo-listing-top { justify-content:flex-end; }
body.az-series-archive-page ul.products { clear:both; }
body.az-series-archive-page ul.products li.product .button { order:19; min-height:42px; border-color:#b9892d; background:#b9892d; color:#fff; }
body.az-series-archive-page ul.products li.product .button:hover { border-color:#765617; background:#765617; color:#fff; }
body.az-series-archive-page ul.products li.product .az-loop-buy-now { order:20; min-height:30px; margin-top:7px; border:0; background:transparent; color:#59635c; font-size:11px; text-decoration:underline; text-underline-offset:3px; }
body.az-series-archive-page ul.products li.product .az-loop-buy-now:hover { background:transparent; color:#765617; }
body.az-series-archive-page .az-series-after-shelf { display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; margin-top:58px; padding:34px 38px; background:#eaf0eb; }
body.az-series-archive-page .az-series-after-shelf > div > span { color:#765617; font-size:11px; font-weight:700; text-transform:uppercase; }
body.az-series-archive-page .az-series-after-shelf h2 { margin:6px 0 0; color:#172019; font:600 28px/1.1 "Outfit"; letter-spacing:0; }
body.az-series-archive-page .az-series-after-shelf p { margin:9px 0 0; color:#677169; font-size:13px; }
body.az-series-archive-page .az-series-packs { border-top:1px solid #cbd4cd; }
body.az-series-archive-page .az-series-packs a { min-height:54px; display:flex; align-items:center; justify-content:space-between; border:0; border-bottom:1px solid #cbd4cd; border-radius:0; padding:0; background:transparent; color:#172019; font-size:13px; }
body.az-series-archive-page .az-series-packs a span { color:#765617; font-size:10px; }
body.az-series-archive-page .az-series-order-notes { margin:14px 0 0; }
@media(max-width:900px){body.az-series-archive-page .az-series-archive-header{grid-template-columns:1fr 280px}body.az-series-archive-page .az-series-archive-media{min-height:220px}body.az-series-archive-page .az-series-archive-media img{height:210px}body.az-series-archive-page .az-series-after-shelf{grid-template-columns:1fr;gap:24px}}
@media(max-width:680px){body.az-series-archive-page .az-series-archive-header{grid-template-columns:1fr}body.az-series-archive-page .az-series-archive-copy{padding:22px 18px}body.az-series-archive-page .az-series-archive-brand{margin-top:18px}body.az-series-archive-page .az-series-archive-copy h1{font-size:34px}body.az-series-archive-page .az-series-archive-media{min-height:190px}body.az-series-archive-page .az-series-archive-media img{height:180px}body.az-series-archive-page .az-series-archive-toolbar{margin:18px 0 12px}body.az-series-archive-page .woocommerce-ordering{float:none;width:100%;margin:0 0 16px}body.az-series-archive-page .woocommerce-ordering select{width:100%}body.az-series-archive-page .az-series-after-shelf{margin-top:42px;padding:26px 18px}}

/* Compact ecommerce category title bar. */
body.az-series-archive-page .az-series-category-titlebar { margin-top:16px; padding:20px 28px 22px; border-top:1px solid #dfe3dd; border-bottom:1px solid #dfe3dd; background:#fff; }
body.az-series-archive-page .az-series-category-titlebar nav { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:16px; color:#7b847d; font-size:11px; }
body.az-series-archive-page .az-series-category-titlebar nav a { color:inherit; }
body.az-series-archive-page .az-series-category-heading { display:flex; align-items:end; justify-content:space-between; gap:40px; }
body.az-series-archive-page .az-series-category-heading h1 { margin:0; color:#172019; font:600 36px/1.05 "Outfit"; letter-spacing:0; }
body.az-series-archive-page .az-series-category-heading p { margin:7px 0 0; color:#677169; font-size:13px; }
body.az-series-archive-page .az-series-category-facts { display:grid; grid-template-columns:repeat(3,minmax(100px,1fr)); min-width:390px; border-left:1px solid #dfe3dd; }
body.az-series-archive-page .az-series-category-fact { padding:4px 20px; }
body.az-series-archive-page .az-series-category-fact+ .az-series-category-fact { border-left:1px solid #dfe3dd; }
body.az-series-archive-page .az-series-category-fact small,body.az-series-archive-page .az-series-category-fact strong { display:block; }
body.az-series-archive-page .az-series-category-fact small { color:#7b847d; font-size:9px; text-transform:uppercase; }
body.az-series-archive-page .az-series-category-fact strong { margin-top:3px; color:#172019; font-size:13px; }
body.az-series-archive-page .az-series-archive-toolbar { margin-top:16px; }
body.az-series-archive-page .woocommerce-ordering { margin-top:16px; }
@media(max-width:780px){body.az-series-archive-page .az-series-category-heading{align-items:start;flex-direction:column;gap:18px}body.az-series-archive-page .az-series-category-facts{width:100%;min-width:0;border-top:1px solid #dfe3dd;border-left:0;padding-top:12px}body.az-series-archive-page .az-series-category-fact:first-child{padding-left:0}}
@media(max-width:680px){body.az-series-archive-page .az-series-category-titlebar{margin-top:10px;padding:17px 16px 18px}body.az-series-archive-page .az-series-category-titlebar nav{margin-bottom:13px}body.az-series-archive-page .az-series-category-heading h1{font-size:31px}body.az-series-archive-page .az-series-category-facts{grid-template-columns:repeat(3,1fr)}body.az-series-archive-page .az-series-category-fact{padding:3px 9px}body.az-series-archive-page .az-series-category-fact strong{font-size:11px}}

/* Archive spacing and trust consistency. */
body.az-series-archive-page #main > .ct-container { padding-top:0; padding-bottom:0; }
body.az-series-archive-page .az-series-category-titlebar { margin-top:12px; }
body.az-series-archive-page .az-series-after-shelf { margin-top:36px; }
body.az-series-archive-page .az-series-order-notes.az-home-trust-strip { width:100%; min-height:72px; margin:12px 0 0; }
body.az-series-archive-page .az-series-order-notes .az-home-trust-item { padding:12px 24px; }
body.az-series-archive-page .az-site-footer { margin-top:18px; }
@media(max-width:680px){body.az-series-archive-page #main > .ct-container{padding-bottom:0}body.az-series-archive-page .az-series-category-titlebar{margin-top:8px}body.az-series-archive-page .az-series-after-shelf{margin-top:28px}body.az-series-archive-page .az-site-footer{margin-top:12px}}

/* Final single-product container alignment overrides. */
body.single-product .woocommerce-product-gallery .ct-media-container { width:100%; height:auto !important; min-height:0; aspect-ratio:1/1; background:#f1f2ef; }
body.single-product .woocommerce-product-gallery .ct-media-container img { width:100%; height:100%; object-fit:contain; }
body.single-product .az-single-detail-grid { width:var(--theme-container-width); max-width:1440px; margin:52px auto 16px; }
@media(max-width:680px){body.single-product .az-single-detail-grid{margin-top:36px}}
/* Single-product purchase hierarchy */
body.single-product .product-entry-wrapper { align-items:start; }
body.single-product .woocommerce-product-gallery { min-height:0; }
body.single-product .woocommerce-product-gallery .flex-viewport,body.single-product .woocommerce-product-gallery__image { min-height:520px; background:#f1f2ef; }
body.single-product .woocommerce-product-gallery__image a { min-height:520px; display:grid; place-items:center; }
body.single-product .woocommerce-product-gallery__image img { width:88%; height:500px; object-fit:contain; }
body.single-product .summary .product_title { margin-bottom:10px; font:600 36px/1.08 "Outfit"; letter-spacing:0; }
body.single-product .summary .price { margin-bottom:14px; }
body.single-product .summary .woocommerce-product-details__short-description { margin-bottom:22px; color:#677169; font-size:14px; line-height:1.65; }
body.single-product .summary .ct-product-add-to-cart { margin-top:20px; }
body.single-product form.cart { display:grid; grid-template-columns:118px 1fr 1fr; gap:9px; align-items:end; }
body.single-product form.cart .stock { grid-column:1/-1; margin:0 0 3px; font-size:12px; }
body.single-product form.cart .quantity { width:118px; margin:0; }
body.single-product form.cart .single_add_to_cart_button,body.single-product .az-single-buy-now { min-height:50px; display:flex; align-items:center; justify-content:center; margin:0; border:1px solid #b9892d; border-radius:4px; font-size:13px; font-weight:700; }
body.single-product form.cart .single_add_to_cart_button { background:#fff; color:#172019; }
body.single-product form.cart .single_add_to_cart_button:hover { background:#f6f0e2; color:#172019; }
body.single-product .az-single-buy-now { background:#b9892d; color:#fff; }
body.single-product .az-single-buy-now:hover { border-color:#765617; background:#765617; color:#fff; }
body.single-product .az-single-purchase-notes { display:grid; grid-template-columns:repeat(3,1fr); margin-top:14px; border-top:1px solid #dfe3dd; border-bottom:1px solid #dfe3dd; }
body.single-product .az-single-purchase-notes span { padding:11px 10px 11px 0; }
body.single-product .az-single-purchase-notes span+span { padding-left:12px; border-left:1px solid #dfe3dd; }
body.single-product .az-single-purchase-notes strong,body.single-product .az-single-purchase-notes small { display:block; }
body.single-product .az-single-purchase-notes strong { color:#172019; font-size:11px; }
body.single-product .az-single-purchase-notes small { margin-top:2px; color:#677169; font-size:9px; }
body.single-product .summary .product_meta,body.single-product .summary > .ct-product-divider:last-of-type { display:none; }
body.single-product .az-single-detail-grid { clear:both; width:var(--theme-container-width); max-width:1440px; display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:52px auto 16px; }
body.single-product form.cart { display:block; }
body.single-product form.cart .ct-cart-actions { display:grid !important; width:100%; grid-template-columns:118px minmax(0,1fr) minmax(0,1fr); gap:9px; align-items:stretch; }
body.single-product form.cart .ct-cart-actions .quantity { grid-column:1; width:118px; height:50px; order:1; }
body.single-product form.cart .ct-cart-actions .single_add_to_cart_button { grid-column:2; width:100%; height:50px; min-height:50px; order:2; }
body.single-product form.cart .ct-cart-actions .az-single-buy-now { grid-column:3; width:100%; height:50px; order:3; }
body.single-product .woocommerce-tabs { width:var(--theme-container-width); max-width:1440px; margin:42px auto 0; }
body.single-product .related.products { width:var(--theme-container-width); max-width:1440px; margin-left:auto; margin-right:auto; }
body.single-product .az-single-detail-grid .az-single-spec-panel,body.single-product .az-single-detail-grid .az-bulk-price-panel { height:100%; margin:0; }
body.single-product .az-single-detail-grid .az-single-spec-panel { display:grid; grid-template-columns:.8fr 1.2fr; gap:22px; align-items:start; padding:26px; }
body.single-product .az-single-detail-grid .az-single-spec-panel__head { margin:0; }
body.single-product .az-single-detail-grid .az-single-spec-panel dl { margin:0; }
body.single-product .az-single-detail-grid .az-bulk-price-panel { padding:26px; }
body.single-product .az-single-confidence-strip { margin-top:14px; }
body.single-product .woocommerce-tabs { margin-top:42px; }
@media(max-width:900px){body.single-product form.cart{grid-template-columns:110px 1fr}body.single-product .az-single-buy-now{grid-column:2}body.single-product .az-single-detail-grid{grid-template-columns:1fr}}
@media(max-width:680px){body.single-product .woocommerce-product-gallery .flex-viewport,body.single-product .woocommerce-product-gallery__image,body.single-product .woocommerce-product-gallery__image a{min-height:340px}body.single-product .woocommerce-product-gallery__image img{height:320px}body.single-product .summary .product_title{font-size:30px}body.single-product form.cart{grid-template-columns:96px 1fr}body.single-product form.cart .quantity{width:96px}body.single-product form.cart .single_add_to_cart_button{grid-column:2}body.single-product .az-single-buy-now{grid-column:1/-1}body.single-product .az-single-purchase-notes{grid-template-columns:1fr}body.single-product .az-single-purchase-notes span+span{padding-left:0;border-top:1px solid #dfe3dd;border-left:0}body.single-product .az-single-detail-grid{margin-top:36px}body.single-product .az-single-detail-grid .az-single-spec-panel{grid-template-columns:1fr}}
@media(max-width:680px){body.single-product form.cart .ct-cart-actions{grid-template-columns:96px 1fr}body.single-product form.cart .ct-cart-actions .quantity{width:96px}body.single-product form.cart .ct-cart-actions .single_add_to_cart_button{grid-column:2}body.single-product form.cart .ct-cart-actions .az-single-buy-now{grid-column:1/-1}body.single-product .woocommerce-tabs{margin-top:32px}}

/* Confirmed single-product ecommerce layout, 2026-07-21. */
body.single-product .product-entry-wrapper {
  width: var(--theme-container-width);
  max-width: 1440px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  gap: clamp(40px, 4.5vw, 68px);
  align-items: start;
  margin-inline: auto;
}
body.single-product .woocommerce-product-gallery,
body.single-product .summary {
  width: 100% !important;
  max-width: none;
}
body.single-product .woocommerce-product-gallery .flex-viewport,
body.single-product .woocommerce-product-gallery__image,
body.single-product .woocommerce-product-gallery__image a {
  min-height: 0;
  aspect-ratio: 1.12 / 1;
  background: #f4e6b8;
}
body.single-product .woocommerce-product-gallery__image a { display: grid; place-items: center; }
body.single-product .woocommerce-product-gallery__image img { width: 100%; height: 100%; padding: 18px; object-fit: contain; }
body.single-product .summary { max-width: 552px; padding-top: 4px; }
body.single-product .summary > .product_title:first-of-type { display: none; }
body.single-product .summary .woocommerce-product-details__short-description { display: none; }
body.single-product .az-single-series { margin-bottom: 8px; color: #765617; font-size: 12px; font-weight: 700; text-transform: uppercase; }
body.single-product .az-single-sku { margin-top: 5px; color: #677169; font-size: 12px; }
body.single-product .az-single-flavour-switcher { width: 100%; margin-top: 22px; }
body.single-product .az-single-flavour-switcher label { display: block; margin-bottom: 8px; color: #172019; font-size: 14px; font-weight: 700; }
body.single-product .az-single-flavour-switcher select {
  width: 100%;
  height: 52px;
  padding: 0 42px 0 14px;
  border: 1px solid #c7cec7;
  border-radius: 4px;
  background-color: #fff;
  color: #172019;
  font-size: 15px;
  cursor: pointer;
}
body.single-product .az-single-flavour-switcher select:focus-visible { border-color: #b9892d; outline: 3px solid rgba(185,137,45,.18); outline-offset: 1px; }
body.single-product .summary .product_title { margin-bottom: 8px; font: 600 clamp(40px, 3.1vw, 50px)/1.04 "Outfit"; }
body.single-product .summary .price { margin: 20px 0 1px; font-variant-numeric: tabular-nums; }
body.single-product .summary .ct-product-add-to-cart { margin-top: 22px; }
body.single-product form.cart .ct-cart-actions {
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  align-items: stretch;
}
body.single-product form.cart .ct-cart-actions .quantity {
  grid-column: 1/-1;
  width: 140px;
  height: 48px;
  margin-bottom: 6px;
}
body.single-product form.cart .ct-cart-actions .single_add_to_cart_button,
body.single-product form.cart .ct-cart-actions .az-single-buy-now {
  grid-column: auto;
  width: 100%;
  height: 52px;
  min-height: 52px;
  margin: 0;
}
body.single-product .az-single-service-strip {
  clear: both;
  width: var(--theme-container-width);
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  margin: 22px auto 0;
  border-top: 1px solid #c7cec7;
  border-bottom: 1px solid #c7cec7;
}
body.single-product .az-single-service-item {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  color: #172019;
}
body.single-product .az-single-service-item + .az-single-service-item { border-left: 1px solid #dfe3dd; }
body.single-product .az-single-service-item > span strong,
body.single-product .az-single-service-item > span small { display: block; }
body.single-product .az-single-service-item strong { font: 600 15px "Outfit"; }
body.single-product .az-single-service-item small { margin-top: 3px; color: #677169; font-size: 13px; }
body.single-product .az-single-service-item--bulk { justify-content: space-between; background: #f5ecd8; }
body.single-product .az-single-service-item--bulk b { color: #765617; font-size: 18px; }
body.single-product .woocommerce-tabs {
  width: var(--theme-container-width);
  max-width: 1440px;
  margin: 48px auto 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.single-product .woocommerce-tabs .wc-tabs {
  display: flex;
  justify-content: center;
  gap: 46px;
  margin: 0;
  border-bottom: 1px solid #c7cec7;
}
body.single-product .woocommerce-tabs .wc-tabs li { margin: 0; padding: 0; border: 0; background: transparent; }
body.single-product .woocommerce-tabs .wc-tabs li a { min-height: 48px; display: flex; align-items: center; padding: 0 0 14px; color: #677169 !important; font: 600 17px "Outfit"; text-transform: none !important; }
body.single-product .woocommerce-tabs .wc-tabs li.active a { border-bottom: 3px solid #b9892d !important; color: #172019 !important; }
body.single-product .woocommerce-tabs .wc-tabs li a:focus-visible { outline: 3px solid rgba(185,137,45,.28); outline-offset: 3px; }
body.single-product .woocommerce-tabs .panel {
  max-width: 1000px;
  min-height: 176px;
  margin: 0 auto;
  padding: 30px 0;
}
body.single-product .woocommerce-tabs .panel > h2:first-child { display: none; }
body.single-product .az-single-spec-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 28px 48px;
  margin: 0;
}
body.single-product .az-single-spec-grid dt { color: #677169; font-size: 11px; font-weight: 500; text-transform: uppercase; }
body.single-product .az-single-spec-grid dd { margin: 5px 0 0; color: #172019; font-size: 15px; font-weight: 500; }
body.single-product .az-single-tab-copy { max-width: 760px; margin: 0 auto; color: #677169; font-size: 15px; line-height: 1.75; }
body.single-product .related.products { width: var(--theme-container-width); max-width: 1440px; margin: 58px auto 0; }
body.single-product .related.products > h2 { margin-bottom: 20px; font: 600 30px/1.15 "Outfit"; }
body.single-product .related.products ul.products { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
body.single-product .related.products ul.products li.product {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid #dfe3dd;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
body.single-product .related.products ul.products li.product:hover { border-color: #c4a762; box-shadow: 0 12px 32px rgba(23,32,25,.09); transform: translateY(-2px); }
body.single-product .related.products ul.products li.product .ct-media-container,
body.single-product .related.products ul.products li.product > a:first-child { overflow: hidden; background: #f4e6b8; }
body.single-product .related.products ul.products li.product img { width: 100%; height: 240px; margin: 0; padding: 12px; object-fit: contain; }
body.single-product .related.products ul.products li.product .woocommerce-loop-product__title { margin: 0; padding: 17px 17px 0; font: 600 18px/1.25 "Outfit"; }
body.single-product .related.products ul.products li.product .price { margin: 10px 17px 0; font-size: 16px; font-weight: 600; }
body.single-product .related.products ul.products li.product .button,
body.single-product .related.products ul.products li.product .az-loop-buy-now { width: auto; min-height: 0; margin: 10px 17px 17px; padding: 0; border: 0; background: transparent; color: #765617; font-size: 11px; font-weight: 700; text-align: left; }
body.single-product .related.products { display: none !important; }
body.single-product .az-single-series-recommendations { width: var(--theme-container-width); max-width: 1440px; margin: 58px auto 0; }
body.single-product .az-single-series-recommendations > header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
body.single-product .az-single-series-recommendations h2 { margin: 0; font: 600 30px/1.15 "Outfit"; }
body.single-product .az-single-series-recommendations header a { border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; }
body.single-product .az-single-series-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
body.single-product .az-single-series-grid--3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
body.single-product .az-single-series-card { overflow: hidden; display: block; border: 1px solid #dfe3dd; border-radius: 6px; background: #fff; color: #172019; transition: transform 180ms ease,border-color 180ms ease,box-shadow 180ms ease; }
body.single-product .az-single-series-card:hover { border-color: #c4a762; color: #172019; box-shadow: 0 12px 32px rgba(23,32,25,.09); transform: translateY(-2px); }
body.single-product .az-single-series-media { height: 240px; display: grid; place-items: center; overflow: hidden; background: #f4e6b8; }
body.single-product .az-single-series-media img { width: 100%; height: 240px; padding: 12px; object-fit: contain; }
body.single-product .az-single-series-copy { display: block; padding: 17px; }
body.single-product .az-single-series-copy strong,body.single-product .az-single-series-copy small { display: block; }
body.single-product .az-single-series-copy strong { font: 600 19px "Outfit"; }
body.single-product .az-single-series-copy small { margin-top: 4px; color: #677169; font-size: 12px; }
body.single-product .az-single-series-copy em { display: inline-block; margin-top: 10px; color: #765617; font-size: 11px; font-style: normal; font-weight: 700; }
@media(max-width:980px){
  body.single-product .product-entry-wrapper{grid-template-columns:minmax(0,1fr) 420px;gap:28px}
  body.single-product .az-single-service-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.single-product .az-single-service-item:nth-child(3),body.single-product .az-single-service-item:nth-child(4){border-top:1px solid #dfe3dd}
  body.single-product .az-single-service-item:nth-child(3){border-left:0}
  body.single-product .related.products ul.products{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.single-product .az-single-series-grid,body.single-product .az-single-series-grid--3{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:760px){body.single-product .product-entry-wrapper{grid-template-columns:1fr}body.single-product .summary{max-width:none}}
@media(max-width:680px){
  body.single-product .ct-container-full{padding-top:14px}
  body.single-product .product{margin-top:0}
  body.single-product .woocommerce-product-gallery .flex-viewport,body.single-product .woocommerce-product-gallery__image,body.single-product .woocommerce-product-gallery__image a{aspect-ratio:1/1}
  body.single-product .woocommerce-product-gallery__image img{height:100%;padding:10px}
  body.single-product .summary .product_title{font-size:36px}
  body.single-product form.cart .ct-cart-actions{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  body.single-product form.cart .ct-cart-actions .quantity{grid-column:1/-1;width:140px}
  body.single-product form.cart .ct-cart-actions .single_add_to_cart_button,body.single-product form.cart .ct-cart-actions .az-single-buy-now{grid-column:auto}
  body.single-product .az-single-service-strip{margin-top:14px}
  body.single-product .az-single-service-item{min-height:96px;gap:10px;padding:16px 12px}
  body.single-product .az-single-service-item strong{font-size:14px}
  body.single-product .az-single-service-item small{font-size:12px}
  body.single-product .az-single-service-item--bulk b{display:none}
  body.single-product .woocommerce-tabs{margin-top:36px}
  body.single-product .woocommerce-tabs .wc-tabs{justify-content:flex-start;gap:25px;overflow-x:auto}
  body.single-product .woocommerce-tabs .wc-tabs li a{font-size:15px;white-space:nowrap}
  body.single-product .woocommerce-tabs .panel{min-height:210px;padding-top:24px}
  body.single-product .az-single-spec-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px 18px}
  body.single-product .related.products{margin-top:44px}
  body.single-product .related.products ul.products{gap:8px}
  body.single-product .related.products ul.products li.product img{height:168px;padding:8px}
  body.single-product .related.products ul.products li.product .woocommerce-loop-product__title{padding:12px 12px 0;font-size:16px}
  body.single-product .related.products ul.products li.product .price{margin:9px 12px 0;font-size:15px}
  body.single-product .related.products ul.products li.product .button,body.single-product .related.products ul.products li.product .az-loop-buy-now{margin:9px 12px 12px}
  body.single-product .az-single-series-recommendations{margin-top:44px}
  body.single-product .az-single-series-recommendations>header{align-items:start}
  body.single-product .az-single-series-recommendations h2{font-size:27px}
  body.single-product .az-single-series-grid{gap:8px}
  body.single-product .az-single-series-media{height:168px}
  body.single-product .az-single-series-media img{height:168px;padding:8px}
  body.single-product .az-single-series-copy{padding:12px}
body.single-product .az-single-series-copy strong{font-size:16px}
}

/* Simple information pages V2: centered support-page system based on approved prototype. */
.az-simple-info-page {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell)) !important;
  max-width: var(--az-v2-shell) !important;
  margin-inline: auto !important;
  padding-top: 34px;
  background: transparent !important;
}

.az-simple-info {
  --az-info-heading: #16241c;
  --az-info-ink: #1f2a23;
  --az-info-body-strong: #2c382f;
  --az-info-body: #465148;
  --az-info-muted: #6f786f;
  --az-info-faint: #8b9289;
  --az-info-gold-text: #6f541b;
  display: grid;
  gap: 0;
  width: min(100%, 920px);
  max-width: 920px;
  margin: 0 auto 56px;
  color: var(--az-info-body);
}

.az-simple-info--policy {
  width: min(100%, 780px);
  max-width: 780px;
}

.az-simple-info .az-page-breadcrumb,
.az-simple-info__header,
.az-simple-info__body,
.az-simple-info__note,
.az-simple-info__links {
  width: min(100%, 760px);
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.az-simple-info--policy .az-page-breadcrumb,
.az-simple-info--policy .az-simple-info__header,
.az-simple-info--policy .az-simple-info__body,
.az-simple-info--policy .az-simple-info__links {
  width: 100%;
  max-width: 780px;
}

.az-simple-info .az-page-breadcrumb {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--az-info-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.az-simple-info .az-page-breadcrumb a {
  color: var(--az-info-muted);
}

.az-simple-info .az-kicker {
  display: none;
}

.az-simple-info__header {
  display: grid;
  gap: 14px;
  border-bottom: 1px solid #ded8ca;
  padding: 0 0 24px;
}

.az-simple-info__header h1 {
  max-width: 760px;
  margin: 0;
  color: var(--az-info-heading);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(36px, 3.4vw, 44px);
  font-weight: 660;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.az-simple-info__header p:not(.az-kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--az-info-muted);
  font-size: 16px;
  font-weight: 430;
  line-height: 1.65;
  text-wrap: pretty;
}

.az-simple-updated {
  color: var(--az-info-faint) !important;
  font-size: 13px !important;
  font-weight: 520 !important;
}

.az-simple-info__body {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.az-simple-info__body p,
.az-simple-info__note p {
  max-width: 760px;
  margin: 0;
  color: var(--az-info-body);
  font-size: 16px;
  font-weight: 430;
  line-height: 1.72;
  text-wrap: pretty;
}

.az-simple-info__body h2 {
  margin: 12px 0 -4px;
  color: var(--az-info-body-strong);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.az-simple-fact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 920px);
  max-width: 920px;
  margin: 30px auto 0;
  border-top: 1px solid #ded8ca;
  border-bottom: 1px solid #ded8ca;
}

.az-simple-fact-row article {
  min-height: 108px;
  padding: 20px 22px;
}

.az-simple-fact-row article + article {
  border-left: 1px solid #ded8ca;
}

.az-simple-fact-row strong,
.az-simple-fact-row span {
  display: block;
}

.az-simple-fact-row strong {
  margin-bottom: 7px;
  color: var(--az-info-body-strong);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.35;
}

.az-simple-fact-row span {
  color: var(--az-info-muted);
  font-size: 14px;
  font-weight: 430;
  line-height: 1.55;
}

.az-simple-contact-list {
  display: grid;
  gap: 12px;
  width: min(100%, 760px);
  max-width: 760px;
  margin: 28px auto 0;
  border-top: 0;
}

.az-simple-contact-link {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid #ded8ca;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(54, 49, 34, .055);
  color: var(--az-info-body-strong);
  padding: 18px 20px;
  text-decoration: none;
  transition: border-color .16s ease-out, box-shadow .16s ease-out, transform .16s ease-out;
}

.az-simple-contact-link:hover,
.az-simple-contact-link:focus-visible {
  border-color: var(--az-primary);
  box-shadow: 0 18px 52px rgba(54, 49, 34, .085);
  color: var(--az-info-body-strong);
  transform: translateY(-1px);
}

.az-simple-contact-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #f7f4ec;
}

.az-simple-contact-link strong {
  color: var(--az-info-body-strong);
  font-size: 20px;
  font-weight: 620;
  line-height: 1.25;
}

.az-simple-contact-link small {
  color: var(--az-info-muted);
  font-size: 15px;
  font-weight: 430;
  line-height: 1.5;
}

.az-simple-contact-link em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  background: #f2ead8;
  color: var(--az-info-gold-text);
  font-size: 13px;
  font-style: normal;
  font-weight: 680;
  padding: 0 16px;
}

.az-simple-info__note {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  border-top: 1px solid #ded8ca;
  border-bottom: 1px solid #ded8ca;
  background: transparent;
  padding: 16px 0;
}

.az-simple-info__note h2 {
  display: none;
}

.az-simple-info__note p {
  color: var(--az-info-faint);
  font-size: 15px;
  font-weight: 430;
  line-height: 1.6;
}

.az-simple-policy-sections {
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid #ded8ca;
}

.az-simple-policy-sections h2 {
  margin: 0;
  padding-top: 22px;
  border-top: 0;
}

.az-simple-policy-sections p {
  padding-bottom: 22px;
  border-bottom: 1px solid #ebe6dc;
}

.az-simple-info__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  border-top: 1px solid #ebe6dc;
  padding-top: 22px;
}

.az-simple-info__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid transparent;
  color: var(--az-info-gold-text);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.az-simple-info__links a:hover,
.az-simple-info__links a:focus-visible {
  border-bottom-color: currentColor;
}

@media (max-width: 980px) {
  .az-simple-fact-row {
    grid-template-columns: 1fr;
  }

  .az-simple-fact-row article + article {
    border-top: 1px solid #ded8ca;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .az-simple-info-page {
    width: min(calc(100% - 32px), var(--az-v2-shell)) !important;
    padding-top: 24px;
  }

  .az-simple-info {
    width: 100%;
    margin-bottom: 36px;
  }

  .az-simple-info .az-page-breadcrumb {
    margin-bottom: 16px;
  }

  .az-simple-info__header {
    padding-bottom: 20px;
  }

  .az-simple-info__header h1 {
    font-size: 32px;
    line-height: 1.1;
  }

  .az-simple-info__header p:not(.az-kicker),
  .az-simple-info__body p,
  .az-simple-policy-sections p {
    font-size: 15px;
  }

  .az-simple-contact-link {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 15px;
  }

  .az-simple-contact-link__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .az-simple-contact-link em {
    grid-column: 2;
    justify-self: start;
  }
}

/* Cart page: compact continuation of the product purchase path. */
body.woocommerce-cart .site-main,
body.woocommerce-cart .ct-container-full,
body.woocommerce-cart .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.woocommerce-cart .ct-container-full {
  margin-top: -40px;
}

body.woocommerce-cart .woocommerce {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin: 0 auto;
  padding: 8px 0 64px;
}

body.woocommerce-cart .woocommerce::before {
  display: none;
  content: none;
}

.az-cart-page-header {
  grid-column: 1 / -1;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--az-border-strong);
}

.az-cart-page-header nav {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--az-muted);
  font-size: 12px;
}

.az-cart-page-header nav a:hover {
  color: #765617;
}

.az-cart-page-header h1 {
  margin: 0;
  color: var(--az-text);
  font: 600 42px/1 var(--az-font-heading);
}

.az-cart-page-header p {
  margin: 9px 0 0;
  color: var(--az-muted);
  font-size: 13px;
}

body.woocommerce-cart .ct-woocommerce-cart-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: start;
}

body.woocommerce-cart .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
  grid-column: 1 / -1;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
  min-height: 0;
  margin: 0;
  border: 1px solid #dfd3b7;
  border-top: 1px solid #dfd3b7;
  border-radius: 4px;
  padding: 13px 16px 13px 44px;
  background: #fbf8ef;
  color: var(--az-text);
  font-size: 13px;
}

body.woocommerce-cart .woocommerce-message .button {
  display: none;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .ct-woocommerce-cart-form > .cart_totals,
body.woocommerce-cart .cart-collaterals .cart_totals {
  border: 1px solid var(--az-border);
  border-radius: 6px;
  padding: 22px;
  background: #fff;
}

body.woocommerce-cart .woocommerce-cart-form {
  grid-column: 1;
  width: 100%;
}

body.woocommerce-cart .ct-woocommerce-cart-form > .cart_totals,
body.woocommerce-cart .cart-collaterals {
  grid-column: 2;
  width: 100%;
  margin: 0;
}

body.woocommerce-cart .ct-woocommerce-cart-form > .cart_totals,
body.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%;
  float: none;
}

body.woocommerce-cart .cart_totals h2 {
  margin: 0 0 18px;
  font: 600 27px/1.15 var(--az-font-heading);
}

body.woocommerce-cart table.shop_table {
  margin: 0;
  border: 0;
  border-radius: 0;
}

body.woocommerce-cart table.shop_table th {
  padding: 10px 8px 15px;
  border-bottom: 1px solid var(--az-border-strong);
  font-size: 11px;
  letter-spacing: 0;
}

body.woocommerce-cart table.shop_table td {
  padding: 18px 8px;
}

body.woocommerce-cart .product-thumbnail img {
  width: 88px;
  height: 88px;
  border-radius: 4px;
  background: #f4e6b8;
  object-fit: contain;
}

body.woocommerce-cart .product-name a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

body.woocommerce-cart .product-price,
body.woocommerce-cart .product-subtotal {
  color: var(--az-text);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

body.woocommerce-cart .quantity input.qty {
  min-height: 42px;
  border-color: var(--az-border-strong);
  border-radius: 4px;
  background: #fff;
}

body.woocommerce-cart .actions {
  padding: 18px 0 0 !important;
}

body.woocommerce-cart .coupon {
  display: flex;
  gap: 8px;
}

body.woocommerce-cart .coupon .input-text {
  width: 150px;
  min-height: 42px;
  border-color: var(--az-border-strong);
  border-radius: 4px;
}

body.woocommerce-cart button.button,
body.woocommerce-cart a.button {
  min-height: 42px;
  border: 1px solid #214938;
  border-radius: 4px;
  padding: 0 17px;
  background: #fff;
  color: #214938;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

body.woocommerce-cart button.button:hover,
body.woocommerce-cart a.button:hover {
  background: #e9f0eb;
  color: #214938;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  padding: 18px 0 0;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #b9892d;
  border-radius: 4px;
  background: #b9892d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  border-color: #765617;
  background: #765617;
  color: #fff;
}

body.woocommerce-cart .wc-empty-cart-message {
  margin: 24px 0 0;
  border: 1px solid var(--az-border);
  border-radius: 6px;
  padding: 28px;
  background: #fff;
  text-align: center;
}

body.woocommerce-cart .wc-empty-cart-message:empty {
  display: none;
}

body.woocommerce-cart .cart-empty.woocommerce-info {
  justify-content: center;
  margin-top: 24px;
  padding: 18px 24px;
  text-align: center;
}

body.woocommerce-cart .wc-empty-cart-message .woocommerce-info {
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 15px;
}

body.woocommerce-cart .return-to-shop {
  margin: 14px 0 0;
  text-align: center;
}

body.woocommerce-cart .return-to-shop .button {
  min-width: 180px;
  border-color: #b9892d;
  background: #b9892d;
  color: #fff;
}

body.woocommerce-cart .az-site-footer {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin: 0 auto;
}

@media (max-width: 900px) {
  body.woocommerce-cart .ct-woocommerce-cart-form {
    grid-template-columns: 1fr;
  }

  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-cart .ct-woocommerce-cart-form > .cart_totals,
  body.woocommerce-cart .cart-collaterals {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  body.woocommerce-cart .woocommerce {
    width: min(calc(100% - 32px), var(--az-v2-shell));
    padding: 10px 0 44px;
  }

  .az-cart-page-header {
    padding-bottom: 18px;
  }

  .az-cart-page-header nav {
    margin-bottom: 10px;
  }

  .az-cart-page-header h1 {
    font-size: 34px;
  }

  body.woocommerce-cart .ct-woocommerce-cart-form {
    gap: 16px;
  }

  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-cart .ct-woocommerce-cart-form > .cart_totals,
  body.woocommerce-cart .cart-collaterals .cart_totals {
    padding: 16px;
  }

  body.woocommerce-cart .product-thumbnail img {
    width: 72px;
    height: 72px;
  }

  body.woocommerce-cart .actions,
  body.woocommerce-cart .coupon {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.woocommerce-cart .coupon .input-text,
  body.woocommerce-cart .actions > button.button {
    width: 100%;
  }
}

/* Checkout page: billing first, order review second. */
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .ct-container-full,
body.woocommerce-checkout .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout .ct-container-full {
  margin-top: -40px;
}

body.woocommerce-checkout .woocommerce {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin: 0 auto;
  padding: 8px 0 64px;
}

body.woocommerce-checkout .woocommerce::before {
  display: none;
  content: none;
}

.az-checkout-page-header {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--az-border-strong);
}

.az-checkout-page-header nav {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--az-muted);
  font-size: 12px;
}

.az-checkout-page-header nav a:hover {
  color: #765617;
}

.az-checkout-page-header h1 {
  margin: 0;
  color: var(--az-text);
  font: 600 42px/1 var(--az-font-heading);
}

.az-checkout-page-header p {
  margin: 9px 0 0;
  color: var(--az-muted);
  font-size: 13px;
}

.az-checkout-support-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.az-checkout-support-strip article {
  display: grid;
  gap: 5px;
  border: 1px solid var(--az-border);
  border-radius: 6px;
  background: #fff;
  padding: 13px 14px;
}

.az-checkout-support-strip strong {
  color: var(--az-text);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.az-checkout-support-strip span {
  color: var(--az-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error {
  margin-top: 24px;
}

body.woocommerce-checkout .woocommerce-notices-wrapper:empty {
  display: none;
  margin: 0;
}

body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error {
  min-height: 0;
  margin-bottom: 0;
  border: 1px solid #dfd3b7;
  border-top: 1px solid #dfd3b7;
  border-radius: 4px;
  padding: 13px 16px 13px 44px;
  background: #fbf8ef;
  color: var(--az-text);
  font-size: 13px;
}

body.woocommerce-checkout .woocommerce-message .button {
  min-height: 36px;
  border: 1px solid #214938;
  border-radius: 4px;
  padding: 0 14px;
  background: #fff;
  color: #214938;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

body.woocommerce-checkout .woocommerce-error li,
body.woocommerce-checkout .woocommerce-error li strong {
  color: #8b2d22;
}

body.woocommerce-checkout form.ct-woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 0 32px;
  align-items: start;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

body.woocommerce-checkout #customer_details {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

body.woocommerce-checkout .ct-order-review {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  border: 1px solid var(--az-border);
  border-radius: 6px;
  padding: 22px;
  background: #fff;
}

body.woocommerce-checkout #order_review_heading {
  margin: 0 0 18px;
  border: 0;
  padding: 0;
  background: transparent;
  font: 600 27px/1.15 var(--az-font-heading);
}

body.woocommerce-checkout #order_review {
  width: 100%;
}

body.woocommerce-checkout #customer_details,
body.woocommerce-checkout .ct-order-review {
  border: 1px solid var(--az-border);
  border-radius: 6px;
  padding: 22px;
  background: #fff;
}

body.woocommerce-checkout #order_review {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

body.woocommerce-checkout #customer_details h3 {
  margin: 0 0 20px;
  font: 600 27px/1.15 var(--az-font-heading);
}

body.woocommerce-checkout #ship-to-different-address {
  margin-top: 28px;
  font-size: 16px;
}

body.woocommerce-checkout .form-row {
  margin-bottom: 16px;
}

body.woocommerce-checkout .form-row label {
  margin-bottom: 7px;
  color: var(--az-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select,
body.woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 48px;
  border: 1px solid var(--az-border-strong);
  border-radius: 4px;
  background: #fff;
  color: var(--az-text);
  box-shadow: none;
}

body.woocommerce-checkout textarea {
  min-height: 96px;
  padding-top: 12px;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout .select2-container--focus .select2-selection--single {
  border-color: #b9892d;
  box-shadow: 0 0 0 3px rgba(185, 137, 45, 0.14);
  outline: 0;
}

body.woocommerce-checkout table.shop_table {
  margin: 0 0 18px;
  border: 0;
  border-radius: 0;
}

body.woocommerce-checkout table.shop_table th {
  padding: 10px 8px 14px;
  border-bottom: 1px solid var(--az-border-strong);
  font-size: 11px;
  letter-spacing: 0;
}

body.woocommerce-checkout table.shop_table td {
  padding: 14px 8px;
}

body.woocommerce-checkout .product-name {
  color: var(--az-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

body.woocommerce-checkout .order-total th,
body.woocommerce-checkout .order-total td {
  color: var(--az-text);
  font-size: 15px;
}

body.woocommerce-checkout #payment {
  border-radius: 4px;
  background: #f7f8f5;
}

body.woocommerce-checkout #payment ul.payment_methods {
  border-bottom-color: var(--az-border);
}

body.woocommerce-checkout #payment .payment_box {
  background: #fff;
  color: var(--az-muted);
  font-size: 13px;
}

body.woocommerce-checkout #payment .wc_payment_method > input:checked + label::before {
  border-color: #b9892d !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text {
  color: var(--az-muted);
  font-size: 12px;
  line-height: 1.55;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a {
  color: #765617;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 50px;
  border: 1px solid #b9892d;
  border-radius: 4px;
  background: #b9892d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

body.woocommerce-checkout #place_order:hover {
  border-color: #765617;
  background: #765617;
  color: #fff;
}

body.woocommerce-checkout .az-site-footer {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin: 0 auto;
}

@media (max-width: 900px) {
  body.woocommerce-checkout form.ct-woocommerce-checkout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout .ct-order-review {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  body.woocommerce-checkout .woocommerce {
    width: min(calc(100% - 32px), var(--az-v2-shell));
    padding: 10px 0 44px;
  }

  .az-checkout-page-header {
    padding-bottom: 18px;
  }

  .az-checkout-page-header nav {
    margin-bottom: 10px;
  }

  .az-checkout-page-header h1 {
    font-size: 34px;
  }

  .az-checkout-support-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout .ct-order-review {
    padding-inline: 16px;
  }

  body.woocommerce-checkout .form-row-first,
  body.woocommerce-checkout .form-row-last {
    width: 100%;
    float: none;
  }
}

/* Wholesale page: same shell and vertical rhythm as the commerce path. */
body.page-id-14 .ct-container-full {
  width: 100%;
  max-width: none;
  padding-top: 8px;
}

body.page-id-14 .entry-content {
  margin: 0;
}

body.page-id-14 .az-wholesale-page--contact-led {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin-inline: auto;
}

body.page-id-14 .az-wholesale-contact {
  margin: 0 0 28px;
}

body.page-id-14 .az-wholesale-contact__visual {
  width: min(100%, 920px);
  margin-top: 26px;
}

body.page-id-14 .az-wholesale-contact__visual img {
  height: 280px;
}

body.page-id-14 .az-wholesale-contact__range,
body.page-id-14 .az-wholesale-contact__brief,
body.page-id-14 .az-wholesale-contact__faq {
  margin-top: 38px;
  padding-top: 24px;
}

body.page-id-14 .az-wholesale-contact__cta {
  margin-top: 38px;
  padding: 30px 36px;
}

body.page-id-14 .az-site-footer {
  width: 100%;
  max-width: var(--az-v2-shell);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 680px) {
  body.page-id-14 .ct-container-full {
    padding-top: 6px;
  }

  body.page-id-14 .az-wholesale-page--contact-led {
    width: min(calc(100% - 32px), var(--az-v2-shell));
  }

  body.page-id-14 .az-wholesale-contact__visual img {
    height: auto;
  }

  body.page-id-14 .az-wholesale-contact__cta {
    padding: 24px 16px;
  }
}

/* Alibarbar brand directory: series-first without duplicating the Shop shelf. */
body.page-id-17 .ct-container-full {
  width: 100%;
  max-width: none;
  padding-top: 8px;
}

body.page-id-17 .entry-content {
  margin: 0;
  margin-top: -40px;
}

body.page-id-17 .az-alibarbar-page {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin-inline: auto;
}

.az-alibarbar-directory {
  color: var(--az-text);
}

.az-alibarbar-directory__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 540px);
  gap: 64px;
  align-items: center;
  padding: 0 0 44px;
  border-bottom: 1px solid var(--az-border-strong);
}

.az-alibarbar-directory__intro nav {
  display: flex;
  gap: 7px;
  margin-bottom: 26px;
  color: var(--az-muted);
  font-size: 12px;
}

.az-alibarbar-directory__intro nav a:hover {
  color: #765617;
}

.az-alibarbar-directory__intro h1 {
  max-width: 760px;
  margin: 0;
  font: 600 48px/1.05 var(--az-font-heading);
}

.az-alibarbar-directory__intro > p:not(.az-kicker) {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--az-muted);
  font-size: 15px;
  line-height: 1.65;
}

.az-alibarbar-directory__intro .az-actions {
  margin-top: 24px;
}

.az-alibarbar-directory__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 360px;
  padding: 14px;
  background: #fff;
}

.az-alibarbar-directory__media img {
  width: 100%;
  height: 332px;
  margin: 0;
  background: #f4e6b8;
  object-fit: contain;
}

.az-alibarbar-directory__series {
  padding: 46px 0 0;
}

.az-alibarbar-directory__series > header {
  max-width: 720px;
}

.az-alibarbar-directory__series h2 {
  margin: 0;
  font: 600 36px/1.12 var(--az-font-heading);
}

.az-alibarbar-directory__series > header > p:not(.az-kicker) {
  margin: 10px 0 0;
  color: var(--az-muted);
  font-size: 14px;
}

.az-alibarbar-series-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.az-alibarbar-series-card {
  overflow: hidden;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--az-border);
  border-radius: 6px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.az-alibarbar-series-card:hover {
  border-color: #c9b477;
  box-shadow: var(--az-shadow-card);
  transform: translateY(-2px);
}

.az-alibarbar-series-card__media {
  height: 240px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f4e6b8;
}

.az-alibarbar-series-card__media img {
  width: 100%;
  height: 240px;
  margin: 0;
  padding: 12px;
  object-fit: contain;
}

.az-alibarbar-series-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.az-alibarbar-series-card__copy small {
  color: #765617;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.az-alibarbar-series-card__copy strong {
  margin-top: 4px;
  color: var(--az-text);
  font: 600 19px/1.25 var(--az-font-heading);
}

.az-alibarbar-series-card__copy > span {
  margin-top: 5px;
  color: var(--az-muted);
  font-size: 12px;
}

.az-alibarbar-series-card__copy em {
  margin-top: 14px;
  color: #765617;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.az-alibarbar-directory__next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  border-top: 1px solid var(--az-border-strong);
  border-bottom: 1px solid var(--az-border-strong);
  padding: 28px 0;
}

.az-alibarbar-directory__next h2 {
  margin: 0;
  font: 600 26px/1.15 var(--az-font-heading);
}

.az-alibarbar-directory__next p:not(.az-kicker) {
  max-width: 68ch;
  margin: 6px 0 0;
  color: var(--az-muted);
  font-size: 13px;
}

body.page-id-17 .az-site-footer {
  width: 100%;
  max-width: var(--az-v2-shell);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1000px) {
  .az-alibarbar-directory__hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .az-alibarbar-series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.page-id-17 .ct-container-full {
    padding-top: 6px;
  }

  body.page-id-17 .az-alibarbar-page {
    width: min(calc(100% - 32px), var(--az-v2-shell));
  }

  .az-alibarbar-directory__hero {
    padding-bottom: 30px;
  }

  .az-alibarbar-directory__intro nav {
    margin-bottom: 16px;
  }

  .az-alibarbar-directory__intro h1 {
    font-size: 34px;
  }

  .az-alibarbar-directory__media {
    min-height: 0;
  }

  .az-alibarbar-directory__media img {
    height: 230px;
  }

  .az-alibarbar-directory__series {
    padding-top: 34px;
  }

  .az-alibarbar-directory__series h2 {
    font-size: 30px;
  }

  .az-alibarbar-series-grid {
    gap: 8px;
  }

  .az-alibarbar-series-card__media,
  .az-alibarbar-series-card__media img {
    height: 168px;
  }

  .az-alibarbar-series-card__media img {
    padding: 8px;
  }

  .az-alibarbar-series-card__copy {
    padding: 12px;
  }

  .az-alibarbar-series-card__copy strong {
    font-size: 16px;
  }

  .az-alibarbar-directory__next {
    grid-template-columns: 1fr;
  }

  .az-alibarbar-directory__next .az-button {
    width: 100%;
    justify-content: center;
  }
}

/* IGET brand directory: shared brand components with a six-series grid. */
body.page-id-18 .ct-container-full {
  width: 100%;
  max-width: none;
  padding-top: 8px;
}

body.page-id-18 .entry-content {
  margin: 0;
  margin-top: -40px;
}

body.page-id-18 .az-iget-page {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin-inline: auto;
}

.az-iget-series-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-id-18 .az-site-footer {
  width: 100%;
  max-width: var(--az-v2-shell);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1000px) {
  .az-iget-series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.page-id-18 .ct-container-full {
    padding-top: 6px;
  }

  body.page-id-18 .az-iget-page {
    width: min(calc(100% - 32px), var(--az-v2-shell));
  }
}

/* FAQ decision page: compact buying support, aligned with the 1440px commerce shell. */
body.page-id-15 .site-main,
body.page-id-15 .ct-container-full,
body.page-id-15 .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page-id-15 .ct-container-full {
  margin-top: -40px;
}

.az-faq-decision-page {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin: 0 auto;
}

body.page-id-15 .az-faq-decision-page > * {
  width: 100%;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.az-faq-decision-hero {
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 20px 24px 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(184, 138, 45, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fbfaf5 58%, #f5f6f0 100%);
}

.az-faq-decision-hero .az-page-breadcrumb {
  margin-bottom: 14px;
}

.az-faq-decision-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: 34px;
  align-items: end;
}

.az-faq-decision-hero__copy {
  max-width: 640px;
}

.az-faq-decision-hero__copy h1 {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 620;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.az-faq-decision-hero__copy .az-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(196, 144, 40, .3);
  border-radius: 999px;
  background: rgba(196, 144, 40, .08);
  color: var(--az-primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.az-faq-decision-hero__copy > p:not(.az-kicker) {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.62;
}

.az-faq-decision-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.az-faq-action {
  display: grid;
  gap: 7px;
  min-height: 108px;
  align-content: center;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-xs);
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--az-text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.az-faq-action:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 138, 45, 0.48);
  background: #ffffff;
}

.az-faq-action--primary {
  border-color: rgba(184, 138, 45, 0.52);
  background: #f8f0d9;
}

.az-faq-action strong {
  font-family: "Outfit", var(--az-font-heading);
  font-size: 18px;
  font-weight: 650;
}

.az-faq-action span {
  color: var(--az-muted);
  font-size: 13px;
  line-height: 1.45;
}

.az-faq-choice-bar {
  position: static;
  z-index: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 22px;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-xs);
  padding: 8px;
  background: #ffffff;
}

.az-faq-choice-bar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 16px;
  color: var(--az-text);
  font-size: 13px;
  font-weight: 750;
}

.az-faq-choice-bar a:hover {
  background: #f4efe0;
}

.az-faq-decision-grid {
  display: grid;
  grid-template-columns: 332px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.az-faq-decision-aside {
  position: sticky;
  top: 158px;
  border-left: 3px solid var(--az-primary);
  padding: 4px 0 4px 18px;
}

.az-faq-decision-aside span,
.az-faq-bottom-route span {
  display: block;
  margin-bottom: 8px;
  color: var(--az-primary-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-faq-decision-aside h2 {
  margin: 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(23px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.az-faq-decision-aside p {
  margin: 14px 0 18px;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.6;
}

.az-faq-decision-aside a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid var(--az-text);
  color: var(--az-text);
  font-size: 13px;
  font-weight: 800;
}

.az-faq-decision-list {
  display: grid;
  gap: 18px;
}

.az-faq-group {
  border-top: 1px solid var(--az-border);
  padding-top: 18px;
  scroll-margin-top: 108px;
}

.az-faq-group__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
}

.az-faq-group__head span {
  color: var(--az-primary-dark);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 800;
}

.az-faq-group__head h2 {
  margin: 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
}

.az-faq-group details {
  border-bottom: 1px solid var(--az-border);
}

.az-faq-group summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  color: var(--az-text);
  font-size: 16px;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}

.az-faq-group summary::-webkit-details-marker {
  display: none;
}

.az-faq-group summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--az-primary-dark);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.az-faq-group details[open] summary::after {
  transform: rotate(45deg);
}

.az-faq-group p {
  max-width: 820px;
  margin: 0;
  padding: 0 58px 18px 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.62;
}

.az-faq-bottom-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 34px 0 0;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 24px;
  background: #fbfaf5;
}

.az-faq-bottom-route h2 {
  margin: 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.12;
}

.az-faq-bottom-route__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.az-faq-bottom-route__links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--az-border);
  border-radius: 6px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--az-text);
  font-size: 13px;
  font-weight: 800;
}

.az-faq-bottom-route__links a:first-child {
  border-color: var(--az-primary);
  background: var(--az-primary);
  color: #ffffff;
}

@media (max-width: 980px) {
  .az-faq-decision-hero__grid,
  .az-faq-decision-grid,
  .az-faq-bottom-route {
    grid-template-columns: 1fr;
  }

  .az-faq-decision-hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .az-faq-decision-aside {
    position: static;
  }

  .az-faq-bottom-route__links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .az-faq-decision-page {
    width: min(calc(100% - 32px), var(--az-v2-shell));
  }

  .az-faq-decision-hero {
    padding: 16px;
  }

  .az-faq-decision-hero__grid {
    gap: 20px;
  }

  .az-faq-decision-hero__copy h1 {
    font-size: 34px;
  }

  .az-faq-decision-hero__actions,
  .az-faq-decision-grid {
    grid-template-columns: 1fr;
  }

  .az-faq-choice-bar {
    position: static;
  }

  .az-faq-choice-bar a {
    flex: 1 1 calc(50% - 8px);
  }

  .az-faq-group summary {
    align-items: flex-start;
    font-size: 15px;
  }

  .az-faq-group p {
    padding-right: 0;
  }

  .az-faq-bottom-route {
    padding: 18px;
  }
}

/* Simplified FAQ: quick support answers instead of a long buying document. */
.az-faq-page--simple .az-faq-decision-hero {
  padding: 18px 24px 26px;
}

.az-faq-simple-hero {
  max-width: 720px;
}

.az-faq-simple-hero h1 {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.az-faq-simple-hero > p:not(.az-kicker) {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.6;
}

.az-faq-page--simple .az-faq-choice-bar {
  margin: 10px 0 18px;
}

.az-faq-simple-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}

.az-faq-simple-group {
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  background: #ffffff;
  overflow: hidden;
}

.az-faq-simple-group h2 {
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--az-border);
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}

.az-faq-simple-group details {
  border-bottom: 1px solid var(--az-border);
}

.az-faq-simple-group details:last-child {
  border-bottom: 0;
}

.az-faq-simple-group summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 22px;
  color: var(--az-text);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.az-faq-simple-group summary::-webkit-details-marker {
  display: none;
}

.az-faq-simple-group summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--az-primary-dark);
  font-size: 20px;
  font-weight: 500;
}

.az-faq-simple-group details[open] summary::after {
  content: "-";
}

.az-faq-simple-group p {
  max-width: 760px;
  margin: 0;
  padding: 0 54px 18px 22px;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.58;
}

.az-faq-page--simple .az-faq-bottom-route {
  max-width: 980px;
  margin: 22px auto 0;
}

@media (max-width: 680px) {
  .az-faq-page--simple .az-faq-decision-hero {
    padding: 16px 18px 20px;
  }

  .az-faq-simple-hero h1 {
    font-size: 32px;
  }

  .az-faq-simple-group h2 {
    padding: 16px 18px;
    font-size: 19px;
  }

  .az-faq-simple-group summary {
    padding: 14px 18px;
  }

  .az-faq-simple-group p {
    padding: 0 38px 16px 18px;
  }
}

/* Contact decision page: direct channels first, form as a secondary support path. */
body.page-id-16 .site-main,
body.page-id-16 .ct-container-full,
body.page-id-16 .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page-id-16 .ct-container-full {
  margin-top: 0;
  padding-top: 28px;
}

.az-contact-decision-page {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin: 0 auto;
}

body.page-id-16 .az-contact-decision-page > * {
  width: 100%;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

body.page-id-16 .az-contact-rail {
  display: none;
}

body.page-id-15 .az-contact-rail,
body.page-id-302 .az-contact-rail {
  display: none !important;
}

.az-contact-decision-hero {
  border-bottom: 1px solid var(--az-border-strong);
  padding: 4px 0 30px;
}

.az-contact-decision-hero .az-page-breadcrumb {
  margin-bottom: 20px;
}

.az-contact-decision-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 42px;
  align-items: center;
}

.az-contact-decision-hero__copy h1 {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.az-contact-decision-hero__copy .az-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(196, 144, 40, .3);
  border-radius: 999px;
  background: rgba(196, 144, 40, .08);
  color: var(--az-primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
}

.az-contact-decision-hero__copy > p:not(.az-kicker) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.62;
}

.az-contact-decision-hero__panel {
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 22px;
  background: #fbfaf5;
}

.az-contact-decision-hero__panel span,
.az-contact-support-map__head span,
.az-contact-form-compact__head span {
  display: block;
  margin-bottom: 8px;
  color: var(--az-primary-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-contact-decision-hero__panel strong {
  display: block;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 20px;
  font-weight: 620;
  line-height: 1.2;
}

.az-contact-decision-hero__panel p {
  margin: 12px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.58;
}

.az-contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 34px;
}

.az-contact-channel {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 20px;
  background: #ffffff;
  color: var(--az-text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.az-contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 138, 45, 0.5);
  background: #fbfaf5;
}

.az-contact-channel__icon {
  width: 58px;
  height: 58px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--az-border);
  border-radius: 8px;
  background: #ffffff;
}

.az-contact-channel__icon svg {
  width: 34px;
  height: 34px;
}

.az-contact-channel--whatsapp .az-contact-channel__icon svg,
.az-contact-channel--telegram .az-contact-channel__icon svg {
  fill: currentColor;
}

.az-contact-channel--whatsapp .az-contact-channel__icon {
  color: #25d366;
}

.az-contact-channel--telegram .az-contact-channel__icon {
  color: #26a5e4;
}

.az-contact-channel strong {
  display: block;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 20px;
  font-weight: 620;
}

.az-contact-channel small {
  display: block;
  margin-top: 6px;
  color: var(--az-muted);
  font-size: 13px;
  line-height: 1.45;
}

.az-contact-support-map {
  border-top: 1px solid var(--az-border);
  padding-top: 24px;
}

.az-contact-support-map__head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.az-contact-support-map__head h2,
.az-contact-form-compact__head h2 {
  max-width: 620px;
  margin: 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.az-contact-support-map__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.az-contact-support-map__grid article {
  border-left: 2px solid var(--az-primary);
  padding: 4px 18px 4px 16px;
}

.az-contact-support-map__grid strong {
  color: var(--az-text);
  font-size: 16px;
  font-weight: 750;
}

.az-contact-support-map__grid p {
  margin: 8px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.58;
}

.az-contact-route-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 10px;
  background: #fbfaf5;
}

.az-contact-route-strip a {
  display: grid;
  gap: 5px;
  min-height: 82px;
  align-content: center;
  border-radius: 7px;
  padding: 12px;
  color: var(--az-text);
}

.az-contact-route-strip a:hover {
  background: #ffffff;
}

.az-contact-route-strip strong {
  font-size: 14px;
  font-weight: 800;
}

.az-contact-route-strip span {
  color: var(--az-muted);
  font-size: 12px;
  line-height: 1.35;
}

.az-contact-form-compact {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin: 34px 0 0;
  border-top: 1px solid var(--az-border);
  padding-top: 26px;
}

.az-contact-form-compact__head p {
  max-width: 46ch;
  margin: 10px 0 0;
  color: var(--az-muted);
  font-size: 13px;
  line-height: 1.58;
}

.az-contact-form-compact__body {
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 24px;
  background: #ffffff;
}

.az-contact-form-compact__body form {
  margin: 0;
}

.az-contact-form-compact__body input[type="text"],
.az-contact-form-compact__body input[type="email"],
.az-contact-form-compact__body input[type="tel"],
.az-contact-form-compact__body textarea,
.az-contact-form-compact__body select {
  border-radius: 6px !important;
  border-color: #d8d4ca !important;
  background: #ffffff !important;
  color: var(--az-text) !important;
}

.az-contact-form-compact__body .ff-btn-submit,
.az-contact-form-compact__body button,
.az-contact-form-compact__body input[type="submit"] {
  min-height: 46px !important;
  border-radius: 6px !important;
  background: var(--az-primary) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
}

@media (max-width: 980px) {
  .az-contact-decision-hero__grid,
  .az-contact-channel-grid,
  .az-contact-support-map__grid,
  .az-contact-form-compact {
    grid-template-columns: 1fr;
  }

  .az-contact-route-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .az-contact-decision-page {
    width: min(calc(100% - 32px), var(--az-v2-shell));
  }

  .az-contact-decision-hero__copy h1 {
    font-size: 36px;
  }

  .az-contact-decision-hero__grid {
    gap: 22px;
  }

  .az-contact-channel {
    min-height: 122px;
    padding: 16px;
  }

  .az-contact-route-strip {
    grid-template-columns: 1fr;
  }

  .az-contact-form-compact__body {
    padding: 18px;
  }
}

/* Simplified contact page: direct channels first, no form or long support document. */
.az-contact-page--simple {
  display: grid;
  gap: 18px;
}

.az-contact-simple-hero {
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 22px 24px 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(184, 138, 45, 0.1), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fbfaf5 64%, #f6f4ec 100%);
}

.az-contact-simple-hero .az-page-breadcrumb {
  margin-bottom: 24px;
}

.az-contact-simple-hero h1 {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(36px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.az-contact-simple-hero > p:not(.az-kicker) {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.58;
}

.az-contact-page--simple .az-contact-channel-grid {
  margin: 0;
}

.az-contact-simple-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 14px 16px;
  background: #ffffff;
  color: var(--az-muted);
  font-size: 13px;
  line-height: 1.45;
}

.az-contact-simple-note strong {
  color: var(--az-text);
  font-weight: 750;
}

.az-contact-simple-note span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid #e5e1d7;
  border-radius: 999px;
  padding: 0 10px;
  background: #fbfaf5;
}

.az-contact-route-strip--simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

@media (max-width: 680px) {
  .az-contact-page--simple {
    gap: 14px;
  }

  .az-contact-simple-hero {
    padding: 16px 18px 22px;
  }

  .az-contact-simple-hero .az-page-breadcrumb {
    margin-bottom: 18px;
  }

  .az-contact-simple-hero h1 {
    font-size: 34px;
  }

  .az-contact-route-strip--simple {
    grid-template-columns: 1fr;
  }
}

/* Plain information pages: simple, narrow and low-noise like mature ecommerce support pages. */
.az-simple-info-page {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), 980px);
  max-width: 980px;
  margin-inline: auto;
}

body.page-id-16 .az-simple-info-page,
body.page-id-302 .az-simple-info-page {
  padding-top: 28px;
  background: transparent !important;
}

body.page-id-16 .entry-content,
body.page-id-302 .entry-content,
body.page-id-16 .az-simple-info,
body.page-id-302 .az-simple-info {
  background: transparent !important;
}

body.page-id-16 .entry-content > .az-site-footer,
body.page-id-302 .entry-content > .az-site-footer {
  width: 100vw;
  max-width: none !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
}

.az-simple-info-page + .az-site-footer,
.entry-content > .az-site-footer {
  width: 100vw;
  max-width: none !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
}

.az-simple-info {
  display: grid;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 56px;
  color: var(--az-text);
}

.az-simple-info .az-page-breadcrumb {
  margin: 0;
  color: var(--az-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.az-simple-info__header {
  display: grid;
  gap: 14px;
  border-bottom: 1px solid #ddd8cb;
  padding: 0 0 24px;
}

.az-simple-info__header h1 {
  max-width: 720px;
  margin: 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.08;
  text-wrap: balance;
}

.az-simple-info__header p:not(.az-kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--az-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  text-wrap: pretty;
}

.az-simple-info__body {
  display: grid;
  gap: 16px;
  width: 100%;
}

.az-simple-info__body p,
.az-simple-info__note p {
  max-width: 720px;
  margin: 0;
  color: var(--az-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
  text-wrap: pretty;
}

.az-simple-info__body h2 {
  margin: 8px 0 -4px;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.25;
}

.az-simple-contact-list {
  display: grid;
  gap: 14px;
  width: 100%;
  border-top: 0;
}

.az-simple-contact-link {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid #d9d2c2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(37, 42, 31, .055);
  color: var(--az-text);
  padding: 18px 20px;
  text-decoration: none;
  transition: border-color .16s ease-out, box-shadow .16s ease-out, color .16s ease-out, transform .16s ease-out;
}

.az-simple-contact-link:hover,
.az-simple-contact-link:focus-visible {
  border-bottom-color: var(--az-primary);
  border-color: var(--az-primary);
  box-shadow: 0 20px 50px rgba(37, 42, 31, .08);
  color: var(--az-primary-dark);
  transform: translateY(-2px);
}

.az-simple-contact-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #f7f4ec;
}

.az-simple-contact-link__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.az-simple-contact-link--whatsapp .az-simple-contact-link__icon {
  background: rgba(37, 211, 102, .12);
  color: #128c4a;
}

.az-simple-contact-link--telegram .az-simple-contact-link__icon {
  background: rgba(42, 171, 238, .12);
  color: #168ac4;
}

.az-simple-contact-link--email .az-simple-contact-link__icon {
  background: rgba(184, 138, 45, .14);
  color: var(--az-primary-dark);
}

.az-simple-contact-link__body {
  display: grid;
  gap: 6px;
}

.az-simple-contact-link strong {
  font-size: 20px;
  font-weight: 750;
  line-height: 1.25;
}

.az-simple-contact-link small {
  color: var(--az-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.az-simple-contact-link em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  background: #f7f4ec;
  color: var(--az-primary-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  padding: 0 18px;
}

.az-simple-info__note {
  display: grid;
  gap: 8px;
  width: 100%;
  border-top: 1px solid #ddd8cb;
  border-bottom: 1px solid #ddd8cb;
  background: transparent;
  padding: 20px 0;
}

.az-simple-info__note h2 {
  margin: 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
}

.az-simple-info__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  width: 100%;
  padding-top: 0;
}

.az-simple-info__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid transparent;
  color: var(--az-primary-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.az-simple-info__links a:hover,
.az-simple-info__links a:focus-visible {
  border-bottom-color: currentColor;
}

@media (max-width: 680px) {
  .az-simple-info-page {
    width: min(calc(100% - 32px), 980px);
  }

  .az-simple-info {
    gap: 18px;
    margin-bottom: 36px;
  }

  .az-simple-info__header {
    padding-bottom: 18px;
  }

  .az-simple-info__header h1 {
    font-size: 34px;
  }

  .az-simple-contact-link {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 15px;
  }

  .az-simple-contact-link em {
    grid-column: 2;
    justify-self: start;
  }
}

/* Track order support page: WooCommerce lookup with clear support routes. */
body.page-id-299 .site-main,
body.page-id-299 .ct-container-full,
body.page-id-299 .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page-id-299 .ct-container-full {
  margin-top: -40px;
}

.az-track-decision-page {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin: 0 auto;
}

body.page-id-299 .az-track-decision-page > * {
  width: 100%;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.az-track-hero {
  border-bottom: 1px solid var(--az-border-strong);
  padding: 0 0 28px;
}

.az-track-hero .az-page-breadcrumb {
  margin-bottom: 20px;
}

.az-track-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 52px;
  align-items: end;
}

.az-track-hero__copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.az-track-hero__copy > p:not(.az-kicker) {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.62;
}

.az-track-hero__note {
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 22px 24px;
  background: #fbfaf5;
}

.az-track-hero__note span,
.az-track-form-section__head span {
  display: block;
  margin-bottom: 10px;
  color: var(--az-primary-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.az-track-hero__note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.az-track-hero__note li {
  position: relative;
  padding-left: 18px;
  color: var(--az-text);
  font-size: 14px;
  line-height: 1.5;
}

.az-track-hero__note li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--az-primary);
}

.az-track-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin: 32px 0 0;
}

.az-track-form-section__head h2 {
  margin: 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 32px;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
}

.az-track-form-section__head p {
  margin: 12px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.6;
}

.az-track-form-card {
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius-sm);
  padding: 26px;
  background: #ffffff;
}

.az-track-form-card .woocommerce-form-track-order {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.az-track-form-card .woocommerce-form-track-order > p:first-child {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.58;
}

.az-track-form-card .woocommerce-form-track-order .form-row {
  width: 100%;
  margin: 0;
  padding: 0;
}

.az-track-form-card .woocommerce-form-track-order .form-row label {
  color: var(--az-text);
  font-size: 13px;
  font-weight: 750;
}

.az-track-form-card .woocommerce-form-track-order input.input-text {
  min-height: 48px;
  border-color: #d8d4ca;
  border-radius: 6px;
  background: #ffffff;
  color: var(--az-text);
}

.az-track-form-card .woocommerce-form-track-order .button {
  min-height: 48px;
  border-radius: 6px !important;
  background: var(--az-primary) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
}

.az-track-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  border-top: 1px solid var(--az-border);
  padding-top: 28px;
}

.az-track-help-grid article {
  border-left: 2px solid var(--az-primary);
  padding: 4px 18px 4px 16px;
}

.az-track-help-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--az-primary-dark);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 800;
}

.az-track-help-grid strong {
  display: block;
  color: var(--az-text);
  font-size: 17px;
  font-weight: 750;
}

.az-track-help-grid p {
  margin: 8px 0 12px;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.58;
}

.az-track-help-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid var(--az-text);
  color: var(--az-text);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .az-track-hero__grid,
  .az-track-form-section,
  .az-track-help-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .az-track-decision-page {
    width: min(calc(100% - 32px), var(--az-v2-shell));
  }

  .az-track-hero__copy h1 {
    font-size: 36px;
  }

  .az-track-hero__grid {
    gap: 22px;
  }

  .az-track-form-card {
    padding: 18px;
  }

  .az-track-form-card .woocommerce-form-track-order {
    grid-template-columns: 1fr;
  }
}

/* Track order simplified pass: keep the lookup form as the only primary task. */
.az-track-simple-page .az-track-simple-hero {
  max-width: 760px !important;
  margin-inline: auto !important;
  display: grid;
  justify-items: center;
  padding: 2px 0 28px;
  text-align: center;
}

.az-track-simple-hero .az-page-breadcrumb {
  margin-bottom: 18px;
}

.az-track-simple-hero h1 {
  margin: 10px 0 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(38px, 3.7vw, 54px);
  font-weight: 620;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.az-track-simple-hero .az-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(196, 144, 40, .3);
  border-radius: 999px;
  background: rgba(196, 144, 40, .08);
  color: var(--az-primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
}

.az-track-simple-hero > p:not(.az-kicker) {
  max-width: 520px;
  margin: 10px auto 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.55;
}

.az-track-simple-form {
  max-width: 720px !important;
  margin: 6px auto 0 !important;
}

body.page-id-299 .az-track-simple-page > .az-track-simple-hero {
  max-width: 760px !important;
  margin-inline: auto !important;
}

body.page-id-299 .az-track-simple-page > .az-track-simple-form,
body.page-id-299 .az-track-simple-page > .az-track-simple-links {
  max-width: 720px !important;
  margin-inline: auto !important;
}

.az-track-simple-form__head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.az-track-simple-form__head h2 {
  margin: 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.1;
}

.az-track-simple-form__head span {
  color: var(--az-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.az-track-simple-page .az-track-form-card {
  max-width: 720px;
  margin-inline: auto;
  padding: 24px;
}

.az-track-simple-page .az-track-form-card .woocommerce-form-track-order {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
}

.az-track-simple-page .az-track-form-card .woocommerce-form-track-order > p:first-child {
  display: none;
}

.az-track-simple-page .az-track-form-card .woocommerce-form-track-order .clear {
  display: none;
}

.az-track-simple-page .az-track-form-card .woocommerce-form-track-order .form-row,
.az-track-simple-page .az-track-form-card .woocommerce-form-track-order .form-row-first,
.az-track-simple-page .az-track-form-card .woocommerce-form-track-order .form-row-last {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.az-track-simple-page .az-track-form-card .woocommerce-form-track-order .form-row label {
  display: block;
  margin: 0 0 8px;
  color: var(--az-text);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.az-track-simple-page .az-track-form-card .woocommerce-form-track-order input.input-text {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(20, 32, 26, .16);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  color: var(--az-text);
  font-size: 15px;
  line-height: 1.4;
  padding: 0 16px;
}

.az-track-simple-page .az-track-form-card .woocommerce-form-track-order input.input-text:focus {
  border-color: var(--az-primary);
  box-shadow: 0 0 0 3px rgba(196, 144, 40, .16);
  outline: none;
}

.az-track-simple-page .az-track-form-card .woocommerce-form-track-order .form-row-last {
  display: block !important;
}

.az-track-simple-page .az-track-form-card .woocommerce-form-track-order .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 180px;
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: var(--az-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
}

.az-track-simple-page .az-track-form-card .woocommerce-form-track-order .form-row:not(.form-row-first):not(.form-row-last) {
  display: flex !important;
  justify-content: flex-start;
  padding-top: 2px !important;
}

.az-secure-track-form {
  display: grid;
  gap: 14px;
  margin: 0;
}

.az-secure-track-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: 14px;
}

.az-secure-track-form p {
  margin: 0;
}

.az-secure-track-form label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--az-text);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.az-secure-track-form label span {
  color: var(--az-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.az-secure-track-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(20, 32, 26, .16);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  color: var(--az-text);
  font-size: 15px;
  line-height: 1.4;
  padding: 0 16px;
}

.az-secure-track-form input:focus {
  border-color: var(--az-primary);
  box-shadow: 0 0 0 3px rgba(196, 144, 40, .16);
  outline: none;
}

.az-secure-track-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: var(--az-primary);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
}

.az-secure-track-note {
  display: block;
  color: var(--az-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.az-secure-track-notice {
  margin-top: 16px;
  border: 1px solid rgba(20, 32, 26, .12);
  border-radius: 12px;
  background: #fffaf0;
  padding: 14px 16px;
}

.az-secure-track-notice p {
  margin: 0;
  color: var(--az-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.az-secure-track-notice--error {
  background: #fff7f4;
}

.az-secure-track-support {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.az-secure-track-support a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(20, 32, 26, .12);
  border-radius: 999px;
  background: #fff;
  color: var(--az-text);
  font-size: 12px;
  font-weight: 800;
  padding: 0 13px;
}

.az-secure-track-results {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.az-secure-track-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(20, 32, 26, .12);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}

.az-secure-track-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(20, 32, 26, .1);
  padding-bottom: 12px;
}

.az-secure-track-card__top span {
  color: var(--az-muted);
  font-size: 13px;
  font-weight: 800;
}

.az-secure-track-card__top strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(196, 144, 40, .16);
  color: var(--az-primary-dark);
  font-size: 12px;
  font-weight: 850;
  padding: 0 12px;
}

.az-secure-track-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.az-secure-track-meta div {
  display: grid;
  gap: 4px;
  border-radius: 10px;
  background: #f8f5ee;
  padding: 11px 12px;
}

.az-secure-track-meta dt,
.az-secure-track-items h3 {
  margin: 0;
  color: var(--az-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.az-secure-track-meta dd {
  margin: 0;
  color: var(--az-text);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.az-secure-track-items {
  display: grid;
  gap: 9px;
}

.az-secure-track-items div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(20, 32, 26, .08);
  padding-top: 10px;
}

.az-secure-track-items span {
  color: var(--az-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.az-secure-track-items strong {
  color: var(--az-text);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.az-secure-track-privacy {
  margin: 0;
  color: var(--az-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.az-track-simple-links {
  max-width: 720px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 16px auto 0 !important;
  padding-bottom: 28px;
}

.az-track-simple-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid transparent;
  color: var(--az-text);
  font-size: 13px;
  font-weight: 750;
}

.az-track-simple-links a:first-child {
  color: var(--az-primary-dark);
}

.az-track-simple-links a:hover {
  border-bottom-color: currentColor;
}

@media (max-width: 680px) {
  .az-track-simple-hero h1 {
    font-size: 36px;
  }

  .az-track-simple-form__head {
    display: grid;
    gap: 6px;
  }

  .az-track-simple-page .az-track-form-card {
    padding: 18px;
  }

  .az-secure-track-fields,
  .az-secure-track-meta {
    grid-template-columns: 1fr;
  }

  .az-track-simple-page .az-track-form-card .woocommerce-form-track-order .button {
    width: 100%;
  }

  .az-track-simple-links {
    display: grid;
    gap: 6px;
  }

  body.page-id-299 .az-contact-rail {
    display: none;
  }
}

/* Wholesale page: compact enquiry path, using the global WordPress header/footer. */
body.page-id-14 .ct-container-full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 6px 0 0;
}

body.page-id-14 .entry-content,
body.page-id-14 .site-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page-id-14 .az-wholesale-page--simple {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell));
  max-width: var(--az-v2-shell);
  margin-inline: auto;
}

body.page-id-14 .az-wholesale-page--simple > * {
  width: 100%;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.az-wholesale-simple {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--az-text);
}

.az-wholesale-simple .az-page-breadcrumb {
  margin: 0 0 -1px;
  color: var(--az-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.az-wholesale-simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .74fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--az-border-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(23, 32, 27, .055);
}

.az-wholesale-simple-hero__copy {
  padding: clamp(24px, 2.7vw, 38px);
}

.az-wholesale-simple-hero h1 {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(36px, 3.45vw, 50px);
  font-weight: 640;
  line-height: 1.02;
  letter-spacing: -.028em;
  text-wrap: balance;
}

.az-wholesale-simple-hero__copy > p:not(.az-kicker) {
  max-width: 600px;
  margin: 15px 0 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.62;
}

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

.az-wholesale-simple-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d4ca;
  border-radius: 6px;
  padding: 0 18px;
  background: #fff;
  color: var(--az-success);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.az-wholesale-simple-button--primary {
  border-color: var(--az-primary);
  background: var(--az-primary);
  color: #fff;
}

.az-wholesale-simple-button:hover {
  transform: translateY(-1px);
}

.az-wholesale-simple-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.az-wholesale-simple-notes span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--az-border);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, .72);
  color: var(--az-muted);
  font-size: 13px;
  font-weight: 700;
}

.az-wholesale-simple-hero__media {
  position: relative;
  min-height: 340px;
  display: grid;
  align-content: end;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 42%, rgba(255, 226, 132, .42), transparent 34%),
    linear-gradient(145deg, #fff6db 0%, #d2aa48 54%, #2a2117 100%);
}

.az-wholesale-simple-brand-tabs {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(10px);
}

.az-wholesale-simple-brand-tabs button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: transparent;
  color: var(--az-text);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.az-wholesale-simple-brand-tabs button.is-active {
  background: var(--az-primary);
  color: #fff;
}

.az-wholesale-simple-hero__media img {
  position: absolute;
  z-index: 1;
  right: 6%;
  bottom: 0;
  display: block;
  width: 78%;
  height: 84%;
  object-fit: contain;
  opacity: .96;
  filter: drop-shadow(0 28px 34px rgba(25, 21, 15, .28));
}

.az-wholesale-simple-hero__media[data-brand-view="iget"] img {
  right: 10%;
  bottom: 10%;
  width: 60%;
  height: 68%;
}

.az-wholesale-simple-hero__media::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 21, 15, .02), rgba(25, 21, 15, .72));
}

.az-wholesale-simple-hero__media figcaption {
  position: relative;
  z-index: 2;
  margin: 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 7px;
  padding: 16px;
  background: rgba(255, 255, 255, .9);
  color: var(--az-text);
}

.az-wholesale-simple-hero__media figcaption span,
.az-wholesale-simple-send span,
.az-wholesale-simple-range article > div > span,
.az-wholesale-simple-process span {
  display: block;
  color: var(--az-primary-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.az-wholesale-simple-hero__media figcaption strong {
  display: block;
  margin-top: 6px;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.08;
}

.az-wholesale-simple-send,
.az-wholesale-simple-section,
.az-wholesale-simple-process,
.az-wholesale-simple-contact {
  overflow: hidden;
  border: 1px solid var(--az-border);
  border-radius: 8px;
  background: #fff;
}

.az-wholesale-simple-send {
  display: grid;
  grid-template-columns: 220px repeat(5, minmax(0, 1fr));
}

.az-wholesale-simple-send > div {
  min-height: 66px;
  display: grid;
  align-content: center;
  border-left: 1px solid var(--az-border);
  padding: 14px 16px;
}

.az-wholesale-simple-send > div:first-child {
  border-left: 0;
}

.az-wholesale-simple-send__title {
  background: #fbfaf5;
}

.az-wholesale-simple-send strong {
  display: block;
  margin-top: 4px;
  color: var(--az-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.az-wholesale-simple-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 22px 0;
}

.az-wholesale-simple-section__head h2,
.az-wholesale-simple-contact h2 {
  margin: 8px 0 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.az-wholesale-simple-section__head > p {
  max-width: 520px;
  margin: 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.55;
}

.az-wholesale-simple-range {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
}

.az-wholesale-simple-range article {
  min-height: 228px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--az-border);
  border-radius: 7px;
  padding: 20px;
  background: #fbfaf5;
}

.az-wholesale-simple-range h3 {
  margin: 6px 0 0;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.az-wholesale-simple-range p {
  margin: 10px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.55;
}

.az-wholesale-simple-range img {
  width: 100%;
  max-height: 186px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(23, 32, 27, .14));
}

.az-wholesale-simple-series {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.az-wholesale-simple-series b {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dfd8c8;
  border-radius: 999px;
  padding: 0 10px;
  background: #fff;
  color: var(--az-text);
  font-size: 12px;
  font-weight: 800;
}

.az-wholesale-simple-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.az-wholesale-simple-process article {
  min-height: 156px;
  border-left: 1px solid var(--az-border);
  padding: 22px;
  background: #fff;
}

.az-wholesale-simple-process article:first-child {
  border-left: 0;
}

.az-wholesale-simple-process strong {
  display: block;
  margin-top: 10px;
  color: var(--az-text);
  font-family: "Outfit", var(--az-font-heading);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.12;
}

.az-wholesale-simple-process p {
  margin: 10px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.55;
}

.az-wholesale-simple-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 92% 20%, rgba(184, 138, 45, .1), transparent 26%),
    #fff;
}

.az-wholesale-simple-contact p:not(.az-kicker) {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.55;
}

.az-wholesale-simple-contact__icons {
  display: flex;
  gap: 10px;
}

.az-wholesale-simple-contact__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--az-border);
  border-radius: 8px;
  background: #fff;
}

.az-wholesale-simple-contact__icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.az-wholesale-simple-contact__icon--wa {
  color: #25d366;
}

.az-wholesale-simple-contact__icon--tg {
  color: #26a5e4;
}

.az-wholesale-simple-contact__icon--mail {
  color: #c71610;
}

body.page-id-14 .az-contact-rail {
  display: none;
}

@media (max-width: 1080px) {
  .az-wholesale-simple-hero,
  .az-wholesale-simple-range,
  .az-wholesale-simple-contact {
    grid-template-columns: 1fr;
  }

  .az-wholesale-simple-send {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .az-wholesale-simple-send__title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body.page-id-14 .az-wholesale-page--simple {
    width: min(calc(100% - 32px), var(--az-v2-shell));
  }

  .az-wholesale-simple {
    gap: 12px;
    margin-bottom: 22px;
  }

  .az-wholesale-simple-hero__copy {
    padding: 24px 18px;
  }

  .az-wholesale-simple-hero h1 {
    font-size: 36px;
  }

  .az-wholesale-simple-hero__media {
    min-height: 300px;
  }

  .az-wholesale-simple-actions,
  .az-wholesale-simple-contact__icons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .az-wholesale-simple-button,
  .az-wholesale-simple-contact__icon {
    width: 100%;
  }

  .az-wholesale-simple-send,
  .az-wholesale-simple-process,
  .az-wholesale-simple-range article {
    grid-template-columns: 1fr;
  }

  .az-wholesale-simple-send > div,
  .az-wholesale-simple-process article {
    border-top: 1px solid var(--az-border);
    border-left: 0;
  }

  .az-wholesale-simple-send > div:first-child,
  .az-wholesale-simple-process article:first-child {
    border-top: 0;
  }

  .az-wholesale-simple-section__head {
    display: grid;
    padding: 20px 18px 0;
  }

  .az-wholesale-simple-range {
    padding: 14px;
  }

  .az-wholesale-simple-range article,
  .az-wholesale-simple-contact {
    padding: 18px;
  }
}

/* Final simple info-page system: About, Contact and policy pages. */
body.page-id-3 .entry-title,
body.page-id-16 .entry-title,
body.page-id-302 .entry-title,
body.page-id-362 .entry-title,
body.page-id-363 .entry-title,
body.page-id-364 .entry-title {
  display: none !important;
}

body.page-id-3 .hero-section,
body.page-id-16 .hero-section,
body.page-id-302 .hero-section,
body.page-id-362 .hero-section,
body.page-id-363 .hero-section,
body.page-id-364 .hero-section {
  display: none !important;
}

body.page-id-3 .ct-container-full,
body.page-id-16 .ct-container-full,
body.page-id-302 .ct-container-full,
body.page-id-362 .ct-container-full,
body.page-id-363 .ct-container-full,
body.page-id-364 .ct-container-full {
  padding-top: 32px !important;
}

body.page-id-3 .az-simple-info-page,
body.page-id-16 .az-simple-info-page,
body.page-id-302 .az-simple-info-page,
body.page-id-362 .az-simple-info-page,
body.page-id-363 .az-simple-info-page,
body.page-id-364 .az-simple-info-page {
  width: min(calc(100% - (2 * var(--az-v2-gutter))), var(--az-v2-shell)) !important;
  max-width: var(--az-v2-shell) !important;
  margin-inline: auto !important;
  padding-top: 28px !important;
  padding-bottom: 56px !important;
  background: transparent !important;
}

body.page-id-3 .az-simple-info,
body.page-id-16 .az-simple-info,
body.page-id-302 .az-simple-info,
body.page-id-362 .az-simple-info,
body.page-id-363 .az-simple-info,
body.page-id-364 .az-simple-info {
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
  margin-inline: auto !important;
  padding: 0 !important;
  color: #465148 !important;
}

body.page-id-3 .az-simple-info--policy,
body.page-id-362 .az-simple-info--policy,
body.page-id-363 .az-simple-info--policy,
body.page-id-364 .az-simple-info--policy {
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
}

body.page-id-3 .az-page-breadcrumb,
body.page-id-16 .az-page-breadcrumb,
body.page-id-302 .az-page-breadcrumb,
body.page-id-362 .az-page-breadcrumb,
body.page-id-363 .az-page-breadcrumb,
body.page-id-364 .az-page-breadcrumb {
  color: #8b9289 !important;
  font-size: 13px !important;
  font-weight: 560 !important;
}

body.page-id-3 .az-simple-info__header,
body.page-id-16 .az-simple-info__header,
body.page-id-302 .az-simple-info__header,
body.page-id-362 .az-simple-info__header,
body.page-id-363 .az-simple-info__header,
body.page-id-364 .az-simple-info__header {
  width: 100% !important;
  max-width: 1040px !important;
  margin-top: 28px !important;
}

body.page-id-3 .az-simple-info--policy .az-simple-info__header,
body.page-id-362 .az-simple-info--policy .az-simple-info__header,
body.page-id-363 .az-simple-info--policy .az-simple-info__header,
body.page-id-364 .az-simple-info--policy .az-simple-info__header {
  max-width: 860px !important;
}

body.page-id-3 .az-simple-info h1,
body.page-id-16 .az-simple-info h1,
body.page-id-302 .az-simple-info h1,
body.page-id-362 .az-simple-info h1,
body.page-id-363 .az-simple-info h1,
body.page-id-364 .az-simple-info h1 {
  margin: 0 !important;
  color: #16241c !important;
  font-size: clamp(32px, 3vw, 42px) !important;
  font-weight: 660 !important;
  letter-spacing: -.035em !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}

body.page-id-3 .az-simple-info__header p,
body.page-id-16 .az-simple-info__header p,
body.page-id-302 .az-simple-info__header p,
body.page-id-362 .az-simple-info__header p,
body.page-id-363 .az-simple-info__header p,
body.page-id-364 .az-simple-info__header p,
body.page-id-3 .az-simple-info__body p,
body.page-id-16 .az-simple-info__body p,
body.page-id-302 .az-simple-info__body p,
body.page-id-362 .az-simple-info__body p,
body.page-id-363 .az-simple-info__body p,
body.page-id-364 .az-simple-info__body p,
body.page-id-3 .az-simple-info__note p,
body.page-id-16 .az-simple-info__note p,
body.page-id-302 .az-simple-info__note p,
body.page-id-362 .az-simple-info__note p,
body.page-id-363 .az-simple-info__note p,
body.page-id-364 .az-simple-info__note p {
  color: #465148 !important;
  font-size: 16px !important;
  font-weight: 430 !important;
  line-height: 1.72 !important;
}

body.page-id-3 .az-simple-info__header p,
body.page-id-16 .az-simple-info__header p,
body.page-id-302 .az-simple-info__header p,
body.page-id-362 .az-simple-info__header p,
body.page-id-363 .az-simple-info__header p,
body.page-id-364 .az-simple-info__header p {
  max-width: 760px !important;
  margin-top: 14px !important;
}

body.page-id-3 .az-simple-info--policy .az-simple-info__body,
body.page-id-362 .az-simple-info--policy .az-simple-info__body,
body.page-id-363 .az-simple-info--policy .az-simple-info__body,
body.page-id-364 .az-simple-info--policy .az-simple-info__body,
body.page-id-3 .az-simple-info--policy .az-simple-info__links,
body.page-id-362 .az-simple-info--policy .az-simple-info__links,
body.page-id-363 .az-simple-info--policy .az-simple-info__links,
body.page-id-364 .az-simple-info--policy .az-simple-info__links {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
}

body.page-id-302 .az-simple-info__body,
body.page-id-302 .az-simple-info__body p,
body.page-id-302 .az-simple-info__links {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
}

body.page-id-3 .az-simple-info h2,
body.page-id-16 .az-simple-info h2,
body.page-id-302 .az-simple-info h2,
body.page-id-362 .az-simple-info h2,
body.page-id-363 .az-simple-info h2,
body.page-id-364 .az-simple-info h2,
body.page-id-3 .az-simple-info strong,
body.page-id-16 .az-simple-info strong,
body.page-id-302 .az-simple-info strong,
body.page-id-362 .az-simple-info strong,
body.page-id-363 .az-simple-info strong,
body.page-id-364 .az-simple-info strong {
  color: #2c382f !important;
  font-weight: 620 !important;
}

body.page-id-16 .az-simple-contact-list {
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
  margin-top: 26px !important;
}

body.page-id-16 .az-simple-contact-link strong {
  color: #2c382f !important;
  font-weight: 620 !important;
}

body.page-id-16 .az-simple-contact-link small {
  color: #6f786f !important;
  font-weight: 430 !important;
}

body.page-id-3 .az-simple-policy-sections,
body.page-id-362 .az-simple-policy-sections,
body.page-id-363 .az-simple-policy-sections,
body.page-id-364 .az-simple-policy-sections {
  width: 100% !important;
  max-width: 860px !important;
  margin-top: 26px !important;
}

@media (max-width: 680px) {
  body.page-id-3 .az-simple-info-page,
  body.page-id-16 .az-simple-info-page,
  body.page-id-302 .az-simple-info-page,
  body.page-id-362 .az-simple-info-page,
  body.page-id-363 .az-simple-info-page,
  body.page-id-364 .az-simple-info-page {
    width: min(calc(100% - 32px), var(--az-v2-shell)) !important;
    padding-top: 20px !important;
    padding-bottom: 36px !important;
  }

  body.page-id-3 .az-simple-info h1,
  body.page-id-16 .az-simple-info h1,
  body.page-id-302 .az-simple-info h1,
  body.page-id-362 .az-simple-info h1,
  body.page-id-363 .az-simple-info h1,
  body.page-id-364 .az-simple-info h1 {
    font-size: 32px !important;
  }
}

/* Keep the widened info pages on one visual left rail. */
body.page-id-3 .az-page-breadcrumb,
body.page-id-16 .az-page-breadcrumb,
body.page-id-302 .az-page-breadcrumb,
body.page-id-362 .az-page-breadcrumb,
body.page-id-363 .az-page-breadcrumb,
body.page-id-364 .az-page-breadcrumb,
body.page-id-3 .az-simple-info__header,
body.page-id-16 .az-simple-info__header,
body.page-id-302 .az-simple-info__header,
body.page-id-362 .az-simple-info__header,
body.page-id-363 .az-simple-info__header,
body.page-id-364 .az-simple-info__header,
body.page-id-3 .az-simple-info__body,
body.page-id-16 .az-simple-info__body,
body.page-id-302 .az-simple-info__body,
body.page-id-362 .az-simple-info__body,
body.page-id-363 .az-simple-info__body,
body.page-id-364 .az-simple-info__body,
body.page-id-3 .az-simple-info__note,
body.page-id-16 .az-simple-info__note,
body.page-id-302 .az-simple-info__note,
body.page-id-362 .az-simple-info__note,
body.page-id-363 .az-simple-info__note,
body.page-id-364 .az-simple-info__note,
body.page-id-3 .az-simple-info__links,
body.page-id-16 .az-simple-info__links,
body.page-id-302 .az-simple-info__links,
body.page-id-362 .az-simple-info__links,
body.page-id-363 .az-simple-info__links,
body.page-id-364 .az-simple-info__links,
body.page-id-302 .az-simple-fact-row,
body.page-id-16 .az-simple-contact-list {
  margin-left: 0 !important;
  margin-right: auto !important;
}

body.page-id-302 .az-simple-info__body,
body.page-id-302 .az-simple-info__body p,
body.page-id-3 .az-simple-info--policy .az-simple-info__header,
body.page-id-362 .az-simple-info--policy .az-simple-info__header,
body.page-id-363 .az-simple-info--policy .az-simple-info__header,
body.page-id-364 .az-simple-info--policy .az-simple-info__header,
body.page-id-3 .az-simple-info--policy .az-simple-info__body,
body.page-id-362 .az-simple-info--policy .az-simple-info__body,
body.page-id-363 .az-simple-info--policy .az-simple-info__body,
body.page-id-364 .az-simple-info--policy .az-simple-info__body,
body.page-id-3 .az-simple-info--policy .az-simple-info__body p,
body.page-id-362 .az-simple-info--policy .az-simple-info__body p,
body.page-id-363 .az-simple-info--policy .az-simple-info__body p,
body.page-id-364 .az-simple-info--policy .az-simple-info__body p,
body.page-id-3 .az-simple-info--policy .az-simple-info__links,
body.page-id-362 .az-simple-info--policy .az-simple-info__links,
body.page-id-363 .az-simple-info--policy .az-simple-info__links,
body.page-id-364 .az-simple-info--policy .az-simple-info__links {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
}

body.page-id-302 .az-simple-fact-row,
body.page-id-16 .az-simple-contact-list,
body.page-id-16 .az-simple-info__note {
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
}

body.page-id-16 .az-simple-info__links {
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
}

/* Match copy width to the widened info-page rail. */
body.page-id-3 .az-simple-info h1,
body.page-id-16 .az-simple-info h1,
body.page-id-302 .az-simple-info h1,
body.page-id-362 .az-simple-info h1,
body.page-id-363 .az-simple-info h1,
body.page-id-364 .az-simple-info h1,
body.page-id-3 .az-simple-info__header p,
body.page-id-16 .az-simple-info__header p,
body.page-id-302 .az-simple-info__header p,
body.page-id-362 .az-simple-info__header p,
body.page-id-363 .az-simple-info__header p,
body.page-id-364 .az-simple-info__header p,
body.page-id-3 .az-simple-info__body,
body.page-id-16 .az-simple-info__body,
body.page-id-302 .az-simple-info__body,
body.page-id-362 .az-simple-info__body,
body.page-id-363 .az-simple-info__body,
body.page-id-364 .az-simple-info__body,
body.page-id-3 .az-simple-info__body p,
body.page-id-16 .az-simple-info__body p,
body.page-id-302 .az-simple-info__body p,
body.page-id-362 .az-simple-info__body p,
body.page-id-363 .az-simple-info__body p,
body.page-id-364 .az-simple-info__body p,
body.page-id-3 .az-simple-info__note p,
body.page-id-16 .az-simple-info__note p,
body.page-id-302 .az-simple-info__note p,
body.page-id-362 .az-simple-info__note p,
body.page-id-363 .az-simple-info__note p,
body.page-id-364 .az-simple-info__note p,
body.page-id-3 .az-simple-info__links,
body.page-id-16 .az-simple-info__links,
body.page-id-302 .az-simple-info__links,
body.page-id-362 .az-simple-info__links,
body.page-id-363 .az-simple-info__links,
body.page-id-364 .az-simple-info__links {
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
}

/* Policy pages should also fill the widened text rail. */
body.page-id-3 .az-simple-info--policy .az-simple-info__header,
body.page-id-362 .az-simple-info--policy .az-simple-info__header,
body.page-id-363 .az-simple-info--policy .az-simple-info__header,
body.page-id-364 .az-simple-info--policy .az-simple-info__header,
body.page-id-3 .az-simple-info--policy .az-simple-info__body,
body.page-id-362 .az-simple-info--policy .az-simple-info__body,
body.page-id-363 .az-simple-info--policy .az-simple-info__body,
body.page-id-364 .az-simple-info--policy .az-simple-info__body,
body.page-id-3 .az-simple-info--policy .az-simple-info__body p,
body.page-id-362 .az-simple-info--policy .az-simple-info__body p,
body.page-id-363 .az-simple-info--policy .az-simple-info__body p,
body.page-id-364 .az-simple-info--policy .az-simple-info__body p,
body.page-id-3 .az-simple-info--policy .az-simple-info__links,
body.page-id-362 .az-simple-info--policy .az-simple-info__links,
body.page-id-363 .az-simple-info--policy .az-simple-info__links,
body.page-id-364 .az-simple-info--policy .az-simple-info__links {
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
}

/* Adult age verification gate. */
.az-age-gate[hidden] {
  display: none !important;
}

.az-age-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.az-age-gate-open,
.az-age-gate-open body {
  overflow: hidden;
}

.az-age-gate__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 24%, rgba(184, 138, 45, .26), transparent 34%),
    linear-gradient(135deg, rgba(14, 31, 22, .88), rgba(36, 42, 31, .78));
  backdrop-filter: blur(10px);
}

.az-age-gate__dialog {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(184, 138, 45, .34);
  border-radius: 28px;
  background: #fbfaf5;
  box-shadow: 0 32px 90px rgba(10, 20, 14, .34);
  color: #16241c;
  padding: 34px;
  text-align: center;
}

.az-age-gate__mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(184, 138, 45, .42);
  border-radius: 16px;
  background: #fff;
  color: #8a681e;
  font-family: "Outfit", var(--az-font-heading);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: .08em;
}

.az-age-gate__eyebrow {
  margin: 18px 0 10px;
  color: #8a681e;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.az-age-gate h2 {
  margin: 0;
  color: #14251b;
  font-family: "Outfit", var(--az-font-heading);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 680;
  letter-spacing: -.04em;
  line-height: 1;
}

.az-age-gate p:not(.az-age-gate__eyebrow) {
  max-width: 440px;
  margin: 18px auto 0;
  color: #536057;
  font-size: 16px;
  font-weight: 430;
  line-height: 1.7;
}

.az-age-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.az-age-gate__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.az-age-gate__button:hover,
.az-age-gate__button:focus-visible {
  transform: translateY(-1px);
}

.az-age-gate__button--primary {
  border: 1px solid #b88a2d;
  background: #b88a2d;
  color: #fff;
  box-shadow: 0 14px 34px rgba(184, 138, 45, .25);
}

.az-age-gate__button--secondary {
  border: 1px solid #d6cfbf;
  background: #fff;
  color: #263328;
}

@media (max-width: 560px) {
  .az-age-gate {
    padding: 16px;
  }

  .az-age-gate__dialog {
    border-radius: 22px;
    padding: 28px 20px;
  }

  .az-age-gate__actions {
    grid-template-columns: 1fr;
  }
}

/* Final responsive shell pass: keep every commerce and info page on the same 1440px rail. */
.az-page-shell,
.az-header-inner,
.az-site-footer,
.entry-content > .az-site-footer,
.az-simple-info-page + .az-site-footer,
.az-unified-shop__inner,
.az-track-decision-page,
body.woocommerce-page .woocommerce,
body.archive.woocommerce .woocommerce,
body.woocommerce-cart .woocommerce,
body.woocommerce-checkout .woocommerce,
body.single-product .woocommerce,
body.tax-product_cat .woocommerce,
body.post-type-archive-product .woocommerce,
body.woocommerce-cart .az-site-footer,
body.woocommerce-checkout .az-site-footer,
body.single-product .az-site-footer,
body.tax-product_cat .az-site-footer,
body.post-type-archive-product .az-site-footer {
  width: var(--az-v2-page-width) !important;
  max-width: var(--az-v2-shell) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.page-id-3 .az-simple-info,
body.page-id-16 .az-simple-info,
body.page-id-302 .az-simple-info,
body.page-id-362 .az-simple-info,
body.page-id-363 .az-simple-info,
body.page-id-364 .az-simple-info {
  width: 100% !important;
  max-width: var(--az-v2-shell) !important;
}

body.page-id-16 .az-simple-contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1120px) !important;
  max-width: 1120px !important;
}

body.page-id-16 .az-simple-info__note,
body.page-id-16 .az-simple-info__links,
body.page-id-302 .az-simple-fact-row {
  width: min(100%, 1120px) !important;
  max-width: 1120px !important;
}

.az-simple-contact-link--telegram,
.az-contact-channel--telegram,
.az-contact-rail .telegram {
  display: none !important;
}

body.post-type-archive-product .woocommerce-products-header,
body.post-type-archive-product .woocommerce-result-count,
body.post-type-archive-product .woocommerce-ordering,
body.post-type-archive-product ul.products,
body.post-type-archive-product nav.woocommerce-pagination {
  display: none !important;
}

body.post-type-archive-product .az-unified-shop {
  padding-top: 0;
}

body.post-type-archive-product .az-unified-shop__inner {
  width: var(--az-v2-page-width) !important;
}

body.post-type-archive-product .az-site-footer {
  margin-top: 0 !important;
}

@media (max-width: 680px) {
  :root {
    --az-v2-gutter: 16px;
  }

  body,
  .site-main,
  .entry-content,
  .ct-container-full {
    overflow-x: clip;
  }

  .az-page-shell,
  .az-header-inner,
  .az-site-footer,
  .entry-content > .az-site-footer,
  .az-simple-info-page + .az-site-footer,
  .az-unified-shop__inner,
  .az-track-decision-page,
  body.woocommerce-page .woocommerce,
  body.archive.woocommerce .woocommerce,
  body.woocommerce-cart .woocommerce,
  body.woocommerce-checkout .woocommerce,
  body.single-product .woocommerce,
  body.tax-product_cat .woocommerce,
  body.post-type-archive-product .woocommerce,
  body.woocommerce-cart .az-site-footer,
  body.woocommerce-checkout .az-site-footer,
  body.single-product .az-site-footer,
  body.tax-product_cat .az-site-footer,
  body.post-type-archive-product .az-site-footer {
    width: calc(100% - 32px) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .az-simple-info {
    max-width: none !important;
  }

  .az-unified-shop__head {
    gap: 16px;
    padding: 8px 0 18px;
  }

  .az-unified-shop__title h1 {
    font-size: 34px;
    letter-spacing: -0.02em;
  }

  .az-shop-result {
    font-size: 12px;
  }

  .az-unified-shop__tools {
    gap: 8px;
  }

  .az-shop-search input,
  .az-shop-sort {
    height: 44px;
    font-size: 13px;
  }

  .az-shop-series > strong {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .az-shop-series__chips {
    margin-right: -16px;
    padding-right: 16px;
  }

  .az-shop-series__chips button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .az-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 16px;
  }

  .az-shop-card {
    border-radius: 8px;
  }

  .az-shop-card__media,
  .az-shop-card__media img {
    height: 148px;
  }

  .az-shop-card__body {
    padding: 11px;
  }

  .az-shop-card__body > span {
    font-size: 9px;
  }

  .az-shop-card__body h2 {
    min-height: 42px;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .az-shop-card__price {
    font-size: 16px;
  }

  .az-shop-card__actions a {
    min-height: 38px;
    font-size: 11px;
  }

  .az-shop-wholesale {
    margin-top: 34px;
    padding: 18px 16px;
  }

  .az-simple-contact-list {
    grid-template-columns: 1fr !important;
  }

  .az-simple-contact-link {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .az-simple-contact-link em {
    grid-column: 2;
  }

  body .entry-content > .az-site-footer,
  body .az-simple-info-page + .az-site-footer {
    width: calc(100% - 32px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body .az-page-shell .az-site-footer {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  body.page-id-16 .entry-content > .az-site-footer,
  body.page-id-302 .entry-content > .az-site-footer {
    width: calc(100% - 32px) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.tax-product_cat.woocommerce-page .woocommerce,
  body.single-product.woocommerce-page .woocommerce {
    width: calc(100% - 32px) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

body.page-id-16 .entry-content > .az-site-footer,
body.page-id-302 .entry-content > .az-site-footer {
  width: var(--az-v2-page-width) !important;
  max-width: var(--az-v2-shell) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body .az-page-shell .az-site-footer {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

body.home .ct-container-full,
body.home .az-home,
body.home .az-home-ausclone,
body.home .az-home-commerce-trimmed {
  width: var(--az-v2-page-width) !important;
  max-width: var(--az-v2-shell) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.home .az-home-commerce-trimmed > .az-site-footer,
body.home .az-home-commerce-trimmed > .az-home-faq-v2,
body.home .az-home-commerce-trimmed > .az-home-quick-order,
body.home .az-home-commerce-trimmed > .az-home-iget-series,
body.home .az-home-commerce-trimmed > .az-home-multiple-packs,
body.home .az-home-commerce-trimmed > .az-offer-signup {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

@media (max-width: 680px) {
  body.page-id-16 .entry-content > .az-site-footer,
  body.page-id-302 .entry-content > .az-site-footer {
    width: calc(100% - 32px) !important;
    max-width: none !important;
  }

  body.home .ct-container-full,
  body.home .az-home,
  body.home .az-home-ausclone,
  body.home .az-home-commerce-trimmed {
    width: calc(100% - 32px) !important;
    max-width: none !important;
  }
}

/* Final mobile shell pass: keep the 1440px desktop system, but remove the heavy phone gutters. */
@media (max-width: 680px) {
  :root {
    --az-v2-gutter: 10px;
  }

  .az-page-shell,
  .az-header-inner,
  .az-site-footer,
  .entry-content > .az-site-footer,
  .az-simple-info-page,
  .az-simple-info-page + .az-site-footer,
  .az-unified-shop__inner,
  .az-track-decision-page,
  body.home .ct-container-full,
  body.home .az-home,
  body.home .az-home-ausclone,
  body.home .az-home-commerce-trimmed,
  body.woocommerce-page .woocommerce,
  body.archive.woocommerce .woocommerce,
  body.woocommerce-cart .woocommerce,
  body.woocommerce-checkout .woocommerce,
  body.single-product .woocommerce,
  body.tax-product_cat .woocommerce,
  body.post-type-archive-product .woocommerce,
  body.woocommerce-cart .az-site-footer,
  body.woocommerce-checkout .az-site-footer,
  body.single-product .az-site-footer,
  body.tax-product_cat .az-site-footer,
  body.post-type-archive-product .az-site-footer,
  body.page-id-16 .entry-content > .az-site-footer,
  body.page-id-302 .entry-content > .az-site-footer,
  body.page-id-3 .az-simple-info-page,
  body.page-id-16 .az-simple-info-page,
  body.page-id-302 .az-simple-info-page,
  body.page-id-362 .az-simple-info-page,
  body.page-id-363 .az-simple-info-page,
  body.page-id-364 .az-simple-info-page {
    width: calc(100% - 20px) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body .az-page-shell .az-site-footer,
  body.home .az-home-commerce-trimmed > .az-site-footer,
  body.home .az-home-commerce-trimmed > .az-home-faq-v2,
  body.home .az-home-commerce-trimmed > .az-home-quick-order,
  body.home .az-home-commerce-trimmed > .az-home-iget-series,
  body.home .az-home-commerce-trimmed > .az-home-multiple-packs,
  body.home .az-home-commerce-trimmed > .az-offer-signup {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  body.home .az-home-commerce-trimmed > .az-home-faq-v2 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  body.home .az-home-quick-order,
  body.home .az-home-multiple-packs,
  body.home .az-home-iget-copy {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  body.home .az-home-trust-item,
  .az-shop-wholesale,
  .az-simple-contact-link,
  .az-wholesale-simple-hero__copy,
  .az-wholesale-simple-range article,
  .az-wholesale-simple-contact {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .az-wholesale-simple-section__head {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .az-shop-series__chips {
    margin-right: -10px !important;
    padding-right: 10px !important;
  }
}

/* Home sits inside the already constrained theme container, so inner wrappers must not shrink again. */
body.home .az-home,
body.home .az-home-ausclone,
body.home .az-home-commerce-trimmed {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

@media (max-width: 680px) {
  body.home .az-home,
  body.home .az-home-ausclone,
  body.home .az-home-commerce-trimmed {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

/* Paid-traffic landing page width pass: align with the store shell and remove mobile column overflow. */
.az-alibarbar-offer-page .az-landing-main {
  width: var(--az-v2-page-width) !important;
  max-width: var(--az-v2-shell) !important;
  padding-top: 28px !important;
}

.az-alibarbar-offer-page .az-landing-purchase {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr) !important;
  min-height: 560px !important;
}

.az-alibarbar-offer-page .az-landing-panel {
  min-width: 0 !important;
  padding: 24px 32px !important;
}

.az-alibarbar-offer-page .az-landing-media,
.az-alibarbar-offer-page .az-landing-panel {
  width: 100% !important;
}

.az-alibarbar-offer-page .az-landing-trust {
  margin-top: 12px !important;
}

.az-alibarbar-offer-page .az-landing-details,
.az-alibarbar-offer-page .az-landing-faq {
  gap: 64px !important;
  padding: 64px 0 !important;
}

.az-alibarbar-offer-page .az-landing-contact {
  margin-inline: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.az-alibarbar-offer-page .az-alibarbar-landing > .az-site-footer {
  width: var(--az-v2-page-width) !important;
  max-width: var(--az-v2-shell) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (max-width: 900px) {
  .az-alibarbar-offer-page .az-landing-purchase {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  .az-alibarbar-offer-page .az-landing-main,
  .az-alibarbar-offer-page .az-alibarbar-landing > .az-site-footer {
    width: calc(100% - 20px) !important;
    max-width: none !important;
  }

  .az-alibarbar-offer-page .az-landing-main {
    padding-top: 12px !important;
  }

  .az-alibarbar-offer-page .az-landing-purchase {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .az-alibarbar-offer-page .az-landing-media,
  .az-alibarbar-offer-page .az-landing-panel {
    width: 100% !important;
    min-width: 0 !important;
  }

  .az-alibarbar-offer-page .az-landing-media {
    min-height: 260px !important;
  }

  .az-alibarbar-offer-page .az-landing-media img {
    width: 92% !important;
    max-width: 300px !important;
    height: 250px !important;
  }

  .az-alibarbar-offer-page .az-landing-panel {
    padding: 18px 12px !important;
  }

  .az-alibarbar-offer-page .az-landing-series-switch {
    margin-right: -12px !important;
    padding-right: 12px !important;
  }

  .az-alibarbar-offer-page .az-landing-order-row {
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .az-alibarbar-offer-page .az-landing-actions {
    grid-template-columns: 1fr 1fr 46px !important;
    gap: 6px !important;
  }

  .az-alibarbar-offer-page .az-landing-trust,
  .az-alibarbar-offer-page .az-landing-details,
  .az-alibarbar-offer-page .az-landing-order-info,
  .az-alibarbar-offer-page .az-landing-faq {
    width: 100% !important;
  }

  .az-alibarbar-offer-page .az-landing-details,
  .az-alibarbar-offer-page .az-landing-faq {
    gap: 26px !important;
    padding: 40px 0 !important;
  }

  .az-alibarbar-offer-page .az-landing-contact {
    width: 100% !important;
    margin-inline: 0 !important;
    padding: 22px 12px !important;
  }
}

/* Landing pages are rendered inside WordPress constrained content; normalize the outer wrapper too. */
.az-alibarbar-offer-page .ct-container-full {
  padding-top: 0 !important;
}

.az-alibarbar-offer-page .az-contact-rail {
  display: none !important;
}

.az-alibarbar-offer-page .entry-content {
  width: 100% !important;
  max-width: none !important;
}

.az-alibarbar-offer-page .az-alibarbar-landing {
  width: var(--az-v2-page-width) !important;
  max-width: var(--az-v2-shell) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.az-alibarbar-offer-page .az-landing-main {
  width: 100% !important;
  max-width: none !important;
  padding-top: 0 !important;
}

.az-alibarbar-offer-page .az-alibarbar-landing > .az-site-footer {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

@media (max-width: 680px) {
  .az-alibarbar-offer-page .ct-container-full {
    padding-top: 0 !important;
  }

  .az-alibarbar-offer-page .az-alibarbar-landing {
    width: calc(100% - 20px) !important;
    max-width: none !important;
  }

  .az-alibarbar-offer-page .az-landing-main,
  .az-alibarbar-offer-page .az-alibarbar-landing > .az-site-footer {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Paid landing page final polish: compact bottom, calmer FAQ typography, real inner padding. */
.az-alibarbar-offer-page .site-main,
.az-alibarbar-offer-page .ct-container-full,
.az-alibarbar-offer-page article,
.az-alibarbar-offer-page .entry-content,
.az-alibarbar-offer-page .az-alibarbar-landing {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.az-alibarbar-offer-page .az-landing-faq {
  grid-template-columns: 320px minmax(0, 1fr) !important;
  gap: 52px !important;
  padding: 44px 32px !important;
  border-top: 1px solid var(--landing-line) !important;
  border-bottom: 1px solid var(--landing-line) !important;
  background: #fff !important;
}

.az-alibarbar-offer-page .az-landing-faq h2 {
  font-size: 28px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.01em !important;
}

.az-alibarbar-offer-page .az-landing-faq > div > p {
  max-width: 26ch !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.az-alibarbar-offer-page .az-landing-faq-list summary {
  padding-right: 4px !important;
  padding-left: 4px !important;
  font-size: 14px !important;
}

.az-alibarbar-offer-page .az-landing-faq-list details p {
  font-size: 13px !important;
  line-height: 1.55 !important;
}

@media (max-width: 680px) {
  .az-alibarbar-offer-page .az-landing-faq {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 26px 12px !important;
  }

  .az-alibarbar-offer-page .az-landing-faq h2 {
    font-size: 24px !important;
    line-height: 1.14 !important;
  }

  .az-alibarbar-offer-page .az-landing-faq > div > p {
    max-width: none !important;
    font-size: 13px !important;
  }

  .az-alibarbar-offer-page .az-landing-faq-list summary {
    min-height: 56px !important;
    font-size: 13px !important;
  }
}

/* Paid landing page details/contact polish: keep helper sections quiet and aligned. */
.az-alibarbar-offer-page .az-landing-details {
  grid-template-columns: 360px minmax(0, 1fr) !important;
  gap: 52px !important;
  padding: 46px 32px !important;
  border-top: 1px solid var(--landing-line) !important;
  background: #f8f8f5 !important;
}

.az-alibarbar-offer-page .az-landing-details h2 {
  font-size: 28px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.01em !important;
}

.az-alibarbar-offer-page .az-landing-details > div > p {
  max-width: 30ch !important;
  margin-top: 8px !important;
  color: #5f6861 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.az-alibarbar-offer-page .az-landing-detail-media {
  min-height: 260px !important;
  margin-top: 22px !important;
  border: 1px solid #e0e3df !important;
  background: #eef0ed !important;
}

.az-alibarbar-offer-page .az-landing-detail-media img {
  width: 82% !important;
  max-width: 280px !important;
  height: 240px !important;
}

.az-alibarbar-offer-page .az-landing-details dl > div {
  min-height: 56px !important;
  grid-template-columns: 150px minmax(0, 1fr) !important;
}

.az-alibarbar-offer-page .az-landing-details dt {
  color: #68716a !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
}

.az-alibarbar-offer-page .az-landing-details dd {
  color: var(--landing-ink) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.az-alibarbar-offer-page .az-landing-contact {
  margin-inline: 0 !important;
  padding: 24px 32px !important;
  border-top: 1px solid var(--landing-line) !important;
  background: #fff !important;
}

.az-alibarbar-offer-page .az-landing-contact h2 {
  color: var(--landing-ink) !important;
  font-size: 24px !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em !important;
}

.az-alibarbar-offer-page .az-landing-contact p {
  margin-top: 6px !important;
  color: #5f6861 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.az-alibarbar-offer-page .az-landing-contact-icons a {
  width: 50px !important;
  height: 50px !important;
  border-radius: 6px !important;
}

@media (max-width: 680px) {
  .az-alibarbar-offer-page .az-landing-details {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 28px 12px !important;
  }

  .az-alibarbar-offer-page .az-landing-details h2 {
    font-size: 24px !important;
  }

  .az-alibarbar-offer-page .az-landing-details > div > p {
    max-width: none !important;
    font-size: 13px !important;
  }

  .az-alibarbar-offer-page .az-landing-detail-media {
    min-height: 220px !important;
  }

  .az-alibarbar-offer-page .az-landing-detail-media img {
    height: 210px !important;
  }

  .az-alibarbar-offer-page .az-landing-details dl > div {
    grid-template-columns: 118px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .az-alibarbar-offer-page .az-landing-contact {
    align-items: flex-start !important;
    padding: 22px 12px !important;
  }

  .az-alibarbar-offer-page .az-landing-contact h2 {
    font-size: 22px !important;
  }

  .az-alibarbar-offer-page .az-landing-contact p {
    max-width: 28ch !important;
    font-size: 13px !important;
  }

  .az-alibarbar-offer-page .az-landing-contact-icons a {
    width: 46px !important;
    height: 46px !important;
  }
}

