:root {
  --az-font-light: "Manrope Light", "Manrope", "Manrope Normal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --az-font-normal: "Manrope Normal", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --az-font-bold: "Manrope Bold", "Manrope", "Manrope Normal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --az-font-family: var(--az-font-normal);
  --az-font-heading: var(--az-font-bold);
  --az-heading-font: var(--az-font-bold);

  /* AZeeMall official brand palette */
  --az-blue: #0064D2;
  --az-blue-hover: #0053AD;
  --az-purple: #6F42C1;
  --az-button-bg: var(--az-blue);
  --az-button-hover: var(--az-purple);
  --az-red: #E53238;
  --az-yellow: #F5AF02;
  --az-green: #198754;
  --az-navy: #0F1923;
  --az-black: #191919;
  --az-white: #FFFFFF;
  --az-gray-50: #FAFAFA;
  --az-gray-100: #F5F5F5;
  --az-gray-200: #E5E5E5;
  --az-gray-500: #707070;
  --az-gray-700: #454545;

  /* Semantic storefront tokens */
  --az-bg-page: var(--az-white);
  --az-bg-soft: var(--az-gray-50);
  --az-bg-muted: var(--az-gray-100);
  --az-text-primary: var(--az-black);
  --az-text-secondary: var(--az-gray-500);
  --az-primary: var(--az-blue);
  --az-primary-hover: var(--az-blue-hover);
  --az-sale: var(--az-red);
  --az-rating: var(--az-yellow);
  --az-stock: var(--az-green);

  /* Legacy aliases retained for component compatibility. */
  --az-walnut: var(--az-text-secondary);
  --az-gold: var(--az-primary);
  --az-terracotta: var(--az-primary);
  --az-cream: var(--az-bg-page);
  --az-surface: var(--az-white);
  --az-text: var(--az-text-primary);
  --az-border: var(--az-gray-200);
  --az-muted: var(--az-text-secondary);
  --az-error: var(--az-red);
  --az-success: var(--az-green);
  --az-radius-sm: 10px;
  --az-radius-md: 14px;
  --az-radius-lg: 18px;
  --az-radius-xl: 24px;
  --az-container: 1320px;
  --az-shadow-soft: 0 2px 10px rgba(0,0,0,.04);
  --az-shadow-hover: 0 12px 30px rgba(0,0,0,.08);
  --az-shadow-lg: 0 20px 50px rgba(0,0,0,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--az-cream); color: var(--az-text); font-family: var(--az-font-normal); }
body.az-lock-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { -webkit-appearance: none; appearance: none; }
img { display: block; max-width: 100%; height: auto; }
.az-container { width: min(100% - 48px, var(--az-container)); margin-inline: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.az-icon { display: inline-block; flex: 0 0 auto; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 24px; border-radius: var(--az-radius-sm); border: 1px solid transparent; cursor: pointer; font-size: 15px; font-weight: 500; transition: 200ms ease; }
.btn-primary { background: var(--az-button-bg); color: #fff; }
.btn-primary:hover { background: var(--az-button-hover); transform: translateY(-1px); }
.btn-outline { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.56); color: #fff; backdrop-filter: blur(8px); }
.btn-outline:hover { background: #fff; color: var(--az-text); transform: translateY(-1px); }

/* Header — v0.4.3 */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--az-surface); box-shadow: var(--az-shadow-soft); transition: 240ms ease; }
.site-header.is-scrolled { box-shadow: var(--az-shadow-hover); }
.site-header.is-scrolled .top-notice { height: 0; opacity: 0; overflow: hidden; }
.top-notice { height: 36px; background: var(--az-text); color: var(--az-cream); font-size: 13px; font-weight: 500; transition: 240ms ease; }
.top-notice__inner { height: 100%; display: flex; align-items: center; justify-content: center; }
.top-notice__message { display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.main-header { background: var(--az-surface); border-bottom: 1px solid var(--az-border); }
.main-header__inner { height: 76px; display: grid; grid-template-columns: 170px minmax(0, 1fr) auto; align-items: center; gap: 22px; }
.main-header__menu { display: none; }
.site-logo__link, .custom-logo-link { display: inline-flex; align-items: center; }
.site-logo__image, .custom-logo-link img { max-width: 155px; max-height: 56px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; min-width: 0; }
.primary-nav { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.primary-nav li { margin: 0; }
.primary-nav a { display: inline-flex; align-items: center; min-height: 42px; padding: 0 13px; border-radius: 999px; font-size: 15px; font-weight: 500; color: var(--az-text); transition: 200ms ease; white-space: nowrap; }
.primary-nav a:hover, .primary-nav .current-menu-item > a, .primary-nav .current-menu-ancestor > a { color: var(--az-terracotta); background: var(--az-cream); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.header-actions__search { display: inline-grid; }
.header-register { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 18px; border-radius: var(--az-radius-sm); background: var(--az-button-bg); color: #fff; font-size: 14px; font-weight: 600; transition: 200ms ease; white-space: nowrap; }
.header-register:hover { background: var(--az-button-hover); transform: translateY(-1px); }
.icon-button { position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 50%; background: transparent; color: var(--az-walnut); cursor: pointer; transition: 200ms ease; }
.icon-button:hover { background: var(--az-cream); color: var(--az-terracotta); }
.cart-count { position: absolute; top: 6px; right: 5px; min-width: 18px; height: 18px; display: inline-grid; place-items: center; padding: 0 5px; border-radius: 999px; background: var(--az-terracotta); color: #fff; font-size: 10px; font-weight: 700; line-height: 1; }

.mobile-menu-backdrop { position: fixed; inset: 0; z-index: 1200; background: rgba(25,25,25,.38); opacity: 0; transition: 250ms ease; }
.mobile-menu-backdrop.is-open { opacity: 1; }
.mobile-menu { position: fixed; inset: 0 auto 0 0; z-index: 1210; width: 86vw; max-width: 360px; background: var(--az-surface); border-radius: 0 20px 20px 0; transform: translateX(-105%); transition: 280ms ease; box-shadow: var(--az-shadow-lg); display: flex; flex-direction: column; }
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__header { height: 72px; flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid var(--az-border); }
.mobile-menu__nav { overflow-y: auto; }
.mobile-nav { list-style: none; margin: 0; padding: 8px 18px 24px; }
.mobile-nav a { display: flex; align-items: center; min-height: 52px; border-bottom: 1px solid var(--az-border); font-size: 16px; font-weight: 500; color: var(--az-text); }
.mobile-nav a:hover { color: var(--az-terracotta); }
.mobile-menu__footer { margin-top: auto; padding: 18px; border-top: 1px solid var(--az-border); display: grid; gap: 10px; }
.mobile-menu__footer a { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; color: var(--az-walnut); font-weight: 500; }

.search-overlay { position: fixed; inset: 0; z-index: 1300; opacity: 0; pointer-events: none; transition: 220ms ease; }
.search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-overlay__backdrop { position: absolute; inset: 0; background: rgba(25,25,25,.38); }
.search-overlay__panel { position: relative; background: #fff; border-bottom: 1px solid var(--az-border); box-shadow: var(--az-shadow-lg); transform: translateY(-100%); transition: 280ms ease; }
.search-overlay.is-open .search-overlay__panel { transform: translateY(0); }
.search-overlay__inner { padding-block: 24px 28px; }
.search-overlay__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.search-overlay__header p { margin: 0; font-family: var(--az-font-bold); font-size: 32px; font-weight: 500; color: var(--az-text); }
.search-overlay__form { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.search-overlay__form input[type="search"] { height: 56px; border-radius: 999px; border: 1px solid var(--az-border); background: var(--az-cream); padding: 0 22px; color: var(--az-text); outline: none; transition: 200ms ease; }
.search-overlay__form input[type="search"]:focus { border-color: var(--az-gold); box-shadow: 0 0 0 3px rgba(0,100,210,.18); background: #fff; }
.search-overlay__suggestions { margin-top: 16px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--az-muted); font-size: 14px; }
.search-overlay__suggestions a { display: inline-flex; align-items: center; height: 32px; padding: 0 12px; border-radius: 999px; background: var(--az-cream); color: var(--az-walnut); }
.search-overlay__suggestions a:hover { color: var(--az-terracotta); }

.az-version-panel { padding: 96px 0; background: var(--az-cream); }
.az-version-panel__eyebrow { color: var(--az-walnut); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.az-version-panel h1 { margin: 0 0 12px; font-family: var(--az-font-bold); font-size: clamp(42px, 5vw, 72px); font-weight: 500; line-height: 1.05; color: var(--az-text); }
.az-version-panel p { max-width: 640px; font-size: 16px; line-height: 1.7; color: var(--az-muted); }
.site-footer-placeholder { padding: 32px 0; border-top: 1px solid var(--az-border); background: #fff; color: var(--az-muted); font-size: 14px; }

/* Homepage Full-Width Hero — v0.3.8 */
.home-hero { width: 100vw; margin-inline: calc(50% - 50vw); padding: 0; background: var(--az-cream); overflow: hidden; }
.home-hero__viewport { position: relative; width: 100vw; overflow: hidden; border-radius: 0; background: #191919; border: 0; box-shadow: none; }
.home-hero__track { position: relative; min-height: clamp(560px, 72vh, 760px); }
.home-hero__slide { position: absolute; inset: 0; display: grid; align-items: center; opacity: 0; pointer-events: none; transition: opacity 520ms ease; min-height: clamp(560px, 72vh, 760px); }
.home-hero__slide.is-active { opacity: 1; pointer-events: auto; position: relative; }
.home-hero__media { position: absolute; inset: 0; margin: 0; background: #191919; overflow: hidden; z-index: 1; }
.home-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,25,25,.76) 0%, rgba(25,25,25,.52) 36%, rgba(25,25,25,.18) 70%, rgba(25,25,25,.08) 100%); pointer-events: none; }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 900ms ease; }
.home-hero__slide.is-active .home-hero__media img { transform: scale(1); }
.home-hero__content { position: relative; z-index: 2; width: min(100% - 48px, var(--az-container)); margin-inline: auto; max-width: 720px; justify-self: start; padding: 86px 0 110px; color: #fff; }
.home-hero__eyebrow { margin: 0 0 16px; color: #e5e5e5; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.home-hero__title { margin: 0; color: #fff; font-family: var(--az-font-bold); font-size: clamp(54px, 7vw, 96px); font-weight: 500; line-height: .94; letter-spacing: -.025em; text-wrap: balance; }
.home-hero__text { max-width: 560px; margin: 24px 0 0; color: rgba(255,255,255,.86); font-size: 18px; line-height: 1.75; }
.home-hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.home-hero__controls { position: absolute; left: 50%; bottom: 28px; z-index: 5; display: inline-flex; align-items: center; justify-content: center; gap: 12px; transform: translateX(-50%); padding: 8px 10px; border-radius: 999px; background: rgba(25,25,25,.18); backdrop-filter: blur(10px); }
.home-hero__arrow { width: 34px; height: 34px; display: inline-grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.12); color: #fff; cursor: pointer; transition: 200ms ease; }
.home-hero__arrow:hover { background: #fff; color: var(--az-text); transform: translateY(-1px); }
.home-hero__dots { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.home-hero__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.48); cursor: pointer; transition: 200ms ease; }
.home-hero__dot.is-active { width: 32px; background: #fff; }
.home-next-phase { padding: 72px 0 96px; background: var(--az-cream); }
.home-next-phase__eyebrow { margin: 0 0 8px; color: var(--az-walnut); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.home-next-phase h2 { margin: 0; color: var(--az-text); font-family: var(--az-font-bold); font-size: clamp(32px, 4vw, 52px); font-weight: 500; line-height: 1.08; }


/* Header desktop nav hotfix — v0.4.3 */
@media (min-width: 901px) {
  .desktop-nav { display: flex; visibility: visible; opacity: 1; }
  .main-header__menu { display: none; }
}
@media (max-width: 1180px) {
  .main-header__inner { grid-template-columns: 150px minmax(0, 1fr) auto; gap: 14px; }
  .primary-nav { gap: 2px; }
  .primary-nav a { padding: 0 10px; font-size: 14px; }
  .header-register { padding: 0 14px; }
}
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .main-header__inner { grid-template-columns: 44px 1fr auto; gap: 10px; height: 64px; }
  .main-header__menu { display: inline-grid; }
  .site-logo { justify-self: center; }
  .site-logo__image, .custom-logo-link img { max-width: 132px; max-height: 48px; }
  .header-actions__search { display: inline-grid; }
  .header-register { display: none; }
  .header-actions { gap: 0; }
}
@media (max-width: 767px) {
  .az-container { width: min(100% - 32px, var(--az-container)); }
  .top-notice { height: 34px; font-size: 12px; }
  .top-notice__message span { max-width: 280px; overflow: hidden; text-overflow: ellipsis; }
  .search-overlay__inner { padding-block: 18px 22px; }
  .search-overlay__header p { font-size: 26px; }
  .search-overlay__form { grid-template-columns: 1fr; }
  .search-overlay__form input[type="search"] { height: 52px; }
  .search-overlay__form .btn { width: 100%; height: 52px; }
  .az-version-panel { padding: 64px 0; }
  .home-hero { width: 100vw; margin-inline: calc(50% - 50vw); }
  .home-hero__viewport { width: 100vw; }
  .home-hero__track, .home-hero__slide { min-height: 620px; min-height: 78svh; }
  .home-hero__media::after { background: linear-gradient(180deg, rgba(25,25,25,.38) 0%, rgba(25,25,25,.72) 58%, rgba(25,25,25,.84) 100%); }
  .home-hero__content { width: min(100% - 32px, var(--az-container)); max-width: none; align-self: end; padding: 64px 0 96px; }
  .home-hero__title { max-width: none; font-size: clamp(32px, 10vw, 44px); line-height: 1.08; }
  .home-hero__text { max-width: 620px; margin-top: 18px; font-size: 14px; line-height: 1.7; }
  .home-hero__actions { margin-top: 26px; gap: 10px; }
  .home-hero__actions .btn { width: 100%; height: 50px; }
  .home-hero__controls { left: 50%; right: auto; bottom: 18px; justify-content: center; transform: translateX(-50%); }
  .home-hero__arrow { width: 34px; height: 34px; }
  .home-next-phase { padding: 48px 0 72px; }
}

/* Homepage Category Showcase — v0.11.9 */
.section-heading {
  margin-bottom: 44px;
}
.section-heading__eyebrow {
  margin: 0 0 12px;
  color: var(--az-terracotta);
  font-family: var(--az-font-bold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-heading__row {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 36px;
  align-items: end;
}
.section-heading h2 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-normal);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--az-muted);
  font-family: var(--az-font-light);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}
.home-categories {
  padding: 92px 0;
  background: var(--az-cream);
}
.home-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}
.category-card {
  position: relative;
  display: flex;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(0,100,210, .28);
  border-radius: 22px;
  background: #f2f2f2;
  color: var(--az-text);
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(25,25,25, .065);
  outline: none;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
  pointer-events: none;
}
.category-card--featured,
.category-card--compact {
  grid-column: span 1;
  min-height: 0;
}
.category-card__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  margin: 0;
  overflow: hidden;
  background: #f2f2f2;
}
.category-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25,25,25, .02) 20%, rgba(25,25,25, .22) 58%, rgba(25,25,25, .76) 100%);
  pointer-events: none;
}
.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 650ms cubic-bezier(.2, .7, .2, 1), filter 650ms ease;
}
.category-card__content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: 100%;
  padding: 24px;
  color: #fff;
}
.category-card--featured .category-card__content {
  max-width: none;
  padding: 24px;
}
.category-card__content h3,
.category-card--featured .category-card__content h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-family: var(--az-font-bold);
  font-size: clamp(25px, 2.15vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.category-card__content p {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.84);
  font-family: var(--az-font-light);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}
.category-card--compact .category-card__content p,
.category-card--featured .category-card__content p {
  display: none;
}
.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: rgba(255,255,255,.92);
  font-family: var(--az-font-normal);
  font-size: 13px;
  font-weight: 400;
}
.category-card__link span {
  transition: transform 220ms ease;
}
.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,100,210, .62);
  box-shadow: 0 22px 48px rgba(25,25,25, .14);
}
.category-card:hover .category-card__media img {
  transform: scale(1.065);
  filter: saturate(1.035) contrast(1.02);
}
.category-card:hover .category-card__link span {
  transform: translateX(4px);
}
.category-card:focus-visible {
  outline: 3px solid rgba(0,100,210, .42);
  outline-offset: 4px;
  border-color: var(--az-terracotta);
}


/* Homepage New Arrivals + Product Card — v0.3.9 */
.section-heading__row--with-link { align-items: end; }
.section-heading__aside { display: grid; gap: 16px; justify-items: start; }
.section-heading__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(112,112,112,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  color: var(--az-walnut);
  font-size: 15px;
  font-weight: 700;
  transition: 220ms ease;
}
.section-heading__link span { transition: transform 220ms ease; }
.section-heading__link:hover {
  background: var(--az-text);
  border-color: var(--az-text);
  color: #fff;
  transform: translateY(-1px);
}
.section-heading__link:hover span { transform: translateX(4px); }
.home-products {
  position: relative;
  overflow: hidden;
  padding: 8px 0 108px;
  background:
    radial-gradient(circle at 8% 0%, rgba(0,100,210,.18), transparent 32%),
    linear-gradient(180deg, var(--az-cream) 0%, #f7f7f7 100%);
}
.home-products::before {
  content: "";
  position: absolute;
  inset: 56px auto auto 0;
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  filter: blur(2px);
  transform: translateX(-46%);
  pointer-events: none;
}
.home-products .az-container { position: relative; z-index: 1; }
.home-products__heading { margin-bottom: 40px; }
.az-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 24px; }
.az-product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(229,229,229,.9);
  border-radius: 22px;
  box-shadow: 0 2px 18px rgba(25,25,25,.035);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}
.az-product-card::after {
  content: "";
  position: absolute;
  inset-inline: 18px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(0,100,210,.85), transparent);
  opacity: 0;
  transition: opacity 320ms ease;
}
.az-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 46px rgba(25,25,25,.105);
  border-color: rgba(0,100,210,.68);
  background: #fff;
}
.az-product-card:hover::after { opacity: 1; }
.az-product-card__media-wrap {
  position: relative;
  overflow: hidden;
  margin: 12px 12px 0;
  background: linear-gradient(135deg, #f2f2f2, #f7f7f7);
  border-radius: 18px;
}
.az-product-card__media { display: block; aspect-ratio: 1 / 1; overflow: hidden; }
.az-product-card__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.01); transition: transform 620ms ease, filter 620ms ease; }
.az-product-card:hover .az-product-card__media img { transform: scale(1.055); filter: saturate(1.04) contrast(1.02); }
.az-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(25,25,25,.88);
  color: #fff;
  box-shadow: 0 8px 22px rgba(25,25,25,.12);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.az-product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--az-walnut);
  box-shadow: 0 8px 24px rgba(25,25,25,.10);
  backdrop-filter: blur(10px);
  transition: 220ms ease;
}
.az-product-card__wishlist:hover { color: var(--az-terracotta); background: #fff; transform: translateY(-2px) scale(1.03); }
.az-product-card__body { display: grid; gap: 9px; padding: 17px 18px 18px; flex: 1; }
.az-product-card__category {
  margin: 0;
  color: var(--az-walnut);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: .86;
}
.az-product-card__title {
  min-height: 46px;
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-normal);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.42;
}
.az-product-card__title a { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 200ms ease; }
.az-product-card__title a:hover { color: var(--az-terracotta); }
.az-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(229,229,229,.72);
}
.az-product-card__price { color: var(--az-text); font-size: 18px; font-weight: 800; line-height: 1.2; letter-spacing: -.01em; }
.az-product-card__price del { margin-right: 7px; color: #8a8a8a; font-size: 13px; font-weight: 500; opacity: .78; }
.az-product-card__price ins { color: var(--az-terracotta); text-decoration: none; }
.az-product-card__add {
  min-width: 76px;
  height: 40px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 17px !important;
  border: 1px solid rgba(112,112,112,.22) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: var(--az-walnut) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  transition: 220ms ease;
}
.az-product-card__add:hover { background: var(--az-terracotta) !important; border-color: var(--az-terracotta) !important; color: #fff !important; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,100,210,.22); }

@media (max-width: 1024px) {
  .home-products { padding-bottom: 78px; }
  .az-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 20px; }
}
@media (max-width: 767px) {
  .home-products { padding: 0 0 68px; }
  .home-products__heading { margin-bottom: 30px; }
  .section-heading__aside { gap: 12px; }
  .section-heading__link { min-height: 40px; padding-inline: 16px; font-size: 14px; }
  .az-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
  .az-product-card { border-radius: 16px; }
  .az-product-card::after { inset-inline: 14px; }
  .az-product-card__media-wrap { margin: 8px 8px 0; border-radius: 14px; }
  .az-product-card__badge { top: 9px; left: 9px; height: 23px; padding: 0 8px; font-size: 9px; }
  .az-product-card__wishlist { top: 9px; right: 9px; width: 34px; height: 34px; }
  .az-product-card__body { gap: 7px; padding: 12px; }
  .az-product-card__category { font-size: 9px; letter-spacing: .11em; }
  .az-product-card__title { min-height: 40px; font-size: 13.5px; line-height: 1.42; }
  .az-product-card__footer { display: grid; gap: 10px; align-items: stretch; padding-top: 11px; }
  .az-product-card__price { font-size: 15.5px; }
  .az-product-card__add { width: 100%; min-width: 0; height: 38px; padding: 0 12px !important; font-size: 13px !important; }
}



/* Homepage Dual Promo Banners — v0.4.1 */
.home-promo {
  position: relative;
  padding: 104px 0;
  background:
    linear-gradient(180deg, #f7f7f7 0%, var(--az-cream) 100%);
}
.home-promo__heading { max-width: 720px; margin-bottom: 42px; }
.home-promo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.home-promo-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(229,229,229,.9);
  border-radius: 24px;
  background: linear-gradient(135deg, #f0f0f0, #f7f7f7);
  color: #fff;
  isolation: isolate;
  box-shadow: 0 2px 20px rgba(25,25,25,.04);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}
.home-promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(25,25,25,.12);
  border-color: rgba(0,100,210,.72);
}
.home-promo-card__media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: -2;
  background: #f0f0f0;
}
.home-promo-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25,25,25,.72) 0%, rgba(25,25,25,.28) 54%, rgba(25,25,25,.08) 100%);
}
.home-promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms ease, filter 700ms ease;
}
.home-promo-card:hover .home-promo-card__media img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.02);
}
.home-promo-card:not(:has(.home-promo-card__media)) {
  color: var(--az-text);
}
.home-promo-card:not(:has(.home-promo-card__media))::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -12%;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(0,100,210,.22);
  z-index: -1;
}
.home-promo-card__content {
  width: min(100%, 520px);
  padding: 36px;
}
.home-promo-card__kicker {
  margin: 0 0 12px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-promo-card:not(:has(.home-promo-card__media)) .home-promo-card__kicker { color: var(--az-terracotta); }
.home-promo-card h3 {
  max-width: 430px;
  margin: 0;
  color: currentColor;
  font-family: var(--az-font-bold);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
}
.home-promo-card__text {
  max-width: 430px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.7;
}
.home-promo-card:not(:has(.home-promo-card__media)) .home-promo-card__text { color: var(--az-muted); }
.home-promo-card__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: currentColor;
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 800;
  transition: 220ms ease;
}
.home-promo-card__button span { transition: transform 220ms ease; }
.home-promo-card__button:hover {
  background: #fff;
  border-color: #fff;
  color: var(--az-text);
  transform: translateY(-2px);
}
.home-promo-card__button:hover span { transform: translateX(4px); }
.home-promo-card:not(:has(.home-promo-card__media)) .home-promo-card__button {
  border-color: rgba(112,112,112,.22);
  background: var(--az-text);
  color: #fff;
}

@media (max-width: 1024px) {
  .home-promo { padding: 82px 0; }
  .home-promo__grid { gap: 18px; }
  .home-promo-card { min-height: 380px; }
  .home-promo-card__content { padding: 28px; }
}
@media (max-width: 767px) {
  .home-promo { padding: 68px 0; }
  .home-promo__heading { margin-bottom: 30px; }
  .home-promo__grid { grid-template-columns: 1fr; gap: 16px; }
  .home-promo-card { min-height: 360px; border-radius: 18px; }
  .home-promo-card__media::after { background: linear-gradient(to top, rgba(25,25,25,.72), rgba(25,25,25,.18)); }
  .home-promo-card__content { padding: 24px; }
  .home-promo-card h3 { font-size: 38px; }
  .home-promo-card__text { margin-top: 12px; font-size: 14px; }
  .home-promo-card__button { min-height: 42px; margin-top: 18px; padding-inline: 17px; }
}

/* Homepage Popular Products — v0.4.1 */
.home-products--popular {
  padding: 110px 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(0,100,210,.18), transparent 30%),
    linear-gradient(180deg, var(--az-cream) 0%, #f5f5f5 100%);
}
.home-products--popular::before { display: none; }
.home-products__panel {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border: 1px solid rgba(229,229,229,.88);
  border-radius: 32px;
  background: rgba(255,255,255,.46);
  box-shadow: 0 20px 58px rgba(25,25,25,.055);
}
.home-products__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), transparent 42%),
    radial-gradient(circle at 12% 12%, rgba(0,100,210,.08), transparent 28%);
}
.home-products__panel > * { position: relative; z-index: 1; }
.home-products--popular .az-product-card {
  background: rgba(255,255,255,.96);
}
.home-products--popular .section-heading__eyebrow { color: var(--az-terracotta); }

@media (max-width: 1024px) {
  .home-products--popular { padding: 82px 0; }
  .home-products__panel { padding: 34px 24px; border-radius: 26px; }
}
@media (max-width: 767px) {
  .home-products--popular { padding: 68px 0; }
  .home-products__panel { padding: 28px 14px; border-radius: 22px; }
}


/* Homepage CTA — flat white + AZeeMall yellow v0.17.4 */
.home-cta {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
}
.home-cta__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  width: 100%;
  min-height: 560px;
  padding: clamp(72px, 7vw, 120px) clamp(28px, 7vw, 120px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 92% 18%, rgba(245,175,2,.12) 0 9%, transparent 9.5%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #fffdf4 100%);
  color: #191919;
  box-shadow: none;
  isolation: isolate;
}
.home-cta__inner::before {
  content: "";
  position: absolute;
  left: clamp(28px, 7vw, 120px);
  bottom: 38px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(245,175,2,.24) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: .48;
  pointer-events: none;
}
.home-cta__inner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(32vw, 460px);
  height: 6px;
  background: linear-gradient(90deg, rgba(245,175,2,0), #f5af02);
  pointer-events: none;
}
.home-cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.home-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #d69b00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-cta__eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.home-cta h2 {
  max-width: 680px;
  margin: 0;
  color: #191919;
  font-family: var(--az-font-bold);
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.home-cta__text {
  max-width: 600px;
  margin: 22px 0 0;
  color: #686868;
  font-size: 17px;
  line-height: 1.75;
}
.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.home-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.home-cta__button span { transition: transform 220ms ease; }
.home-cta__button:hover { transform: translateY(-2px); }
.home-cta__button:hover span { transform: translateX(4px); }
.home-cta__button--primary {
  border: 1px solid #f5af02;
  background: #f5c21b;
  color: #191919;
  box-shadow: 0 14px 28px rgba(245,175,2,.20);
}
.home-cta__button--primary:hover {
  border-color: #dea000;
  background: #e7aa00;
  color: #191919;
  box-shadow: 0 16px 32px rgba(245,175,2,.26);
}
.home-cta__button--secondary {
  border: 1px solid rgba(25,25,25,.16);
  background: #ffffff;
  color: #191919;
  box-shadow: none;
}
.home-cta__button--secondary:hover {
  border-color: #f5af02;
  background: #fffaf0;
  color: #191919;
}
.home-cta__visual {
  position: relative;
  z-index: 2;
  min-height: 410px;
  border-radius: 28px;
}
.home-cta__visual::before {
  content: "";
  position: absolute;
  inset: -18px -22px 18px 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(245,175,2,.42), rgba(255,226,118,.14));
  z-index: 0;
}
.home-cta__visual img,
.home-cta__placeholder {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 1px solid rgba(25,25,25,.08);
  border-radius: 28px;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(18,28,45,.11);
}
.home-cta__placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffffff, #fff9e7);
}
.home-cta__placeholder span {
  color: #d69b00;
  font-family: var(--az-font-bold);
  font-size: 46px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .home-cta__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
    padding: 76px 44px 84px;
  }
  .home-cta__content { max-width: 760px; }
  .home-cta__visual,
  .home-cta__visual img,
  .home-cta__placeholder { min-height: 360px; }
}
@media (max-width: 767px) {
  .home-cta__inner {
    gap: 30px;
    padding: 58px 20px 66px;
    background:
      radial-gradient(circle at 100% 9%, rgba(245,175,2,.12) 0 8%, transparent 8.5%),
      #ffffff;
  }
  .home-cta__inner::before {
    left: 20px;
    bottom: 18px;
    width: 76px;
    height: 76px;
    background-size: 10px 10px;
  }
  .home-cta__inner::after { width: 44vw; height: 4px; }
  .home-cta__eyebrow { margin-bottom: 16px; font-size: 12px; }
  .home-cta__eyebrow::before { width: 30px; }
  .home-cta h2 { font-size: clamp(34px, 10vw, 44px); line-height: 1.06; }
  .home-cta__text { margin-top: 16px; font-size: 15px; line-height: 1.7; }
  .home-cta__actions { display: grid; gap: 12px; margin-top: 24px; }
  .home-cta__button { width: 100%; min-height: 50px; padding: 0 24px; }
  .home-cta__visual { min-height: 270px; border-radius: 22px; }
  .home-cta__visual::before { inset: -10px -10px 12px 16px; border-radius: 24px; }
  .home-cta__visual img,
  .home-cta__placeholder { min-height: 270px; border-radius: 22px; }
  .home-cta__placeholder span { font-size: 34px; }
}


/* Header final polish — v0.4.3 */
.site-header {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.main-header__inner {
  height: 84px;
  grid-template-columns: 160px minmax(260px, 1fr) auto auto;
  gap: 24px;
}
.desktop-nav {
  justify-content: center;
  overflow: visible;
}
.primary-nav {
  gap: 8px;
}
.primary-nav a {
  min-height: 44px;
  padding-inline: 14px;
}
.desktop-nav .primary-nav > .menu-item {
  position: relative;
}
.desktop-nav .primary-nav .sub-menu {
  position: absolute;
  z-index: 40;
  inset-block-start: calc(100% + 8px);
  inset-inline-start: 0;
  min-width: 210px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid var(--az-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(25,25,25, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.desktop-nav .primary-nav .sub-menu .sub-menu {
  inset-block-start: -8px;
  inset-inline-start: calc(100% + 8px);
}
.desktop-nav .primary-nav .menu-item:hover > .sub-menu,
.desktop-nav .primary-nav .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.desktop-nav .primary-nav .sub-menu a {
  display: flex;
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
  white-space: normal;
}
.mobile-nav .sub-menu {
  margin: 0;
  padding-inline-start: 18px;
  list-style: none;
}
.mobile-nav .sub-menu a {
  min-height: 46px;
  font-size: 15px;
}
.header-actions {
  min-width: max-content;
}
.header-register {
  background: var(--az-button-bg);
  color: #fff;
}
.header-register:hover {
  background: var(--az-button-hover);
}
@media (max-width: 1180px) {
  .main-header__inner { grid-template-columns: 148px minmax(220px, 1fr) auto; gap: 14px; }
}
@media (max-width: 900px) {
  .main-header__inner { height: 64px; grid-template-columns: 44px 1fr auto; }
}


/* Homepage Shop by Categories — v0.11.9 */
.home-product-categories {
  position: relative;
  overflow: hidden;
  padding: 88px 0 94px;
  background:
    radial-gradient(circle at 8% 14%, rgba(0,100,210,.10), transparent 27%),
    radial-gradient(circle at 92% 88%, rgba(0,100,210,.07), transparent 27%),
    linear-gradient(180deg, #f5f5f5 0%, #fafafa 100%);
}
.home-product-categories::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  right: -205px;
  top: -190px;
  border: 1px solid rgba(0,100,210,.14);
  border-radius: 50%;
  pointer-events: none;
}
.home-product-categories .az-container {
  position: relative;
  z-index: 1;
}
.home-product-categories__heading {
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}
.home-product-categories__heading .section-heading__eyebrow {
  display: inline-block;
}
.home-product-categories__heading .section-heading__row {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
}
.home-product-categories__heading .section-heading__row p {
  max-width: 650px;
}
.home-product-categories__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.15vw, 32px);
  align-items: stretch;
}
.home-product-category {
  position: relative;
  min-width: 0;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--az-text);
  text-align: center;
  outline: none;
  transition: transform 260ms ease, color 260ms ease;
}
.home-product-category__media {
  position: relative;
  width: clamp(136px, 13.4vw, 188px);
  max-width: 100%;
  aspect-ratio: 1;
  flex: 0 0 auto;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(0,100,210,.34);
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 34px rgba(25,25,25,.085);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
.home-product-category__media::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 50%;
  box-shadow: inset 0 0 28px rgba(25,25,25,.04);
  pointer-events: none;
}
.home-product-category__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.01);
  transition: transform 520ms cubic-bezier(.2,.7,.2,1), filter 520ms ease;
}
.home-product-category__content {
  width: 100%;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 5px;
  margin-top: 18px;
  padding-inline: 4px;
}
.home-product-category h3 {
  display: -webkit-box;
  min-height: 2.55em;
  overflow: hidden;
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-bold);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.275;
  letter-spacing: -.018em;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-product-category__label {
  color: var(--az-muted);
  font-family: var(--az-font-light);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
}
.home-product-category__arrow {
  display: none;
}
.home-product-category:hover {
  color: var(--az-terracotta);
  transform: translateY(-5px);
}
.home-product-category:hover .home-product-category__media {
  border-color: rgba(0,100,210,.54);
  box-shadow: 0 21px 46px rgba(25,25,25,.135);
  transform: translateY(-2px);
}
.home-product-category:hover .home-product-category__media img {
  transform: scale(1.065);
  filter: saturate(1.035) contrast(1.02);
}
.home-product-category:hover h3 {
  color: var(--az-terracotta);
}
.home-product-category:focus-visible .home-product-category__media {
  outline: 3px solid rgba(0,100,210,.28);
  outline-offset: 5px;
  border-color: var(--az-terracotta);
}



/* Footer — v0.4.7 */
.site-footer {
  margin-top: 96px;
  padding: 0 0 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-top: 1px solid var(--az-border);
  color: var(--az-text);
}
.site-footer__container { position: relative; }
.footer-newsletter {
  transform: translateY(-48px);
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: 32px;
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(229,229,229,.9);
  box-shadow: 0 18px 46px rgba(25,25,25,.08);
}
.footer-newsletter__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--az-terracotta);
}
.footer-newsletter h2 {
  margin: 0;
  font-family: var(--az-font-bold);
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 500;
}
.footer-newsletter p:not(.footer-newsletter__eyebrow) {
  margin: 12px 0 0;
  max-width: 560px;
  color: var(--az-muted);
  line-height: 1.7;
}
.footer-newsletter__form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--az-border);
  border-radius: 999px;
  background: var(--az-cream);
}
.footer-newsletter__form input {
  min-width: 0;
  flex: 1;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 14px;
  color: var(--az-text);
}
.footer-newsletter__form button {
  height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--az-terracotta);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 200ms ease;
}
.footer-newsletter__form button:hover { background: var(--az-button-hover); transform: translateY(-1px); }
.site-footer__main {
  display: grid;
  grid-template-columns: 1.45fr .8fr .9fr 1fr;
  gap: 44px;
  padding: 18px 0 42px;
}
.site-footer__brand p {
  margin: 18px 0 0;
  max-width: 360px;
  color: var(--az-muted);
  line-height: 1.75;
}
.site-footer__logo .site-logo__image,
.site-footer__logo .custom-logo-link img { max-width: 150px; max-height: 54px; }
.site-footer__social {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border: 1px solid var(--az-border);
  color: var(--az-walnut);
  font-size: 13px;
  font-weight: 600;
  transition: 200ms ease;
}
.site-footer__social a:hover { color: var(--az-terracotta); background: #fff; transform: translateY(-1px); }
.footer-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--az-text);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: default;
}
.footer-accordion__trigger span:last-child { display: none; }
.footer-accordion__panel { margin-top: 18px; }
.footer-links,
.footer-contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-links a,
.footer-contact-list a { color: var(--az-muted); transition: 200ms ease; }
.footer-links a:hover,
.footer-contact-list a:hover { color: var(--az-terracotta); }
.footer-contact-list li { display: grid; gap: 4px; color: var(--az-muted); line-height: 1.6; }
.footer-contact-list span { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--az-walnut); }
.footer-contact-list p { margin: 0; color: var(--az-muted); }
.site-footer__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--az-border);
  border-bottom: 1px solid var(--az-border);
}
.site-footer__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.56);
  color: var(--az-walnut);
  font-size: 14px;
  font-weight: 600;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: var(--az-muted);
  font-size: 13px;
}
.site-footer__bottom p { margin: 0; }
.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 14px;
}
.site-footer__badges span,
.site-footer__trustpilot {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(229,229,229,.72);
  color: var(--az-muted);
}
.site-footer__trustpilot span { color: #00B67A; border: 0; background: transparent; min-height: auto; padding: 0; margin-right: 4px; }
.site-footer__trustpilot:hover { color: var(--az-terracotta); }

@media (max-width: 1024px) {
  .footer-newsletter { grid-template-columns: 1fr; }
  .site-footer__main { grid-template-columns: 1.2fr 1fr 1fr; }
  .site-footer__contact { grid-column: 2 / 4; }
}
@media (max-width: 767px) {
  .site-footer { margin-top: 72px; padding-bottom: 26px; }
  .footer-newsletter {
    transform: translateY(-34px);
    padding: 24px;
    border-radius: 22px;
    gap: 20px;
  }
  .footer-newsletter__form { display: grid; border-radius: 18px; }
  .footer-newsletter__form input { height: 46px; }
  .footer-newsletter__form button { width: 100%; }
  .site-footer__main { display: grid; grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .site-footer__brand { padding-bottom: 24px; }
  .site-footer__brand p { max-width: none; }
  .footer-accordion { border-top: 1px solid var(--az-border); }
  .footer-accordion__trigger { min-height: 58px; cursor: pointer; font-size: 16px; }
  .footer-accordion__trigger span:last-child { display: inline-flex; color: var(--az-terracotta); font-size: 22px; font-weight: 400; }
  .footer-accordion__trigger[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
  .footer-accordion__panel { display: none; margin-top: 0; padding: 0 0 20px; }
  .footer-accordion.is-open .footer-accordion__panel { display: block; }
  .site-footer__trust { grid-template-columns: 1fr; gap: 10px; }
  .site-footer__trust-item { justify-content: flex-start; padding: 0 18px; }
  .site-footer__bottom { display: grid; gap: 16px; text-align: center; }
  .site-footer__badges { justify-content: center; }
}


/* Footer dark refinement — v0.4.8 */
.site-footer {
  margin-top: 96px;
  padding: 0 0 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(0,100,210,.18), transparent 32%),
    linear-gradient(180deg, #0f1923 0%, #0b1219 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  color: #ffffff;
}
.footer-newsletter {
  background: linear-gradient(135deg, #191919 0%, #111a23 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 58px rgba(0,0,0,.28);
}
.footer-newsletter__eyebrow { color: #2f80df; }
.footer-newsletter h2 { color: #ffffff; }
.footer-newsletter p:not(.footer-newsletter__eyebrow) { color: rgba(255,255,255,.72); }
.footer-newsletter__form {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.footer-newsletter__form input { color: #ffffff; }
.footer-newsletter__form input::placeholder { color: rgba(255,255,255,.58); }
.footer-newsletter__form button { background: var(--az-button-bg); color: #fff; }
.footer-newsletter__form button:hover { background: var(--az-button-hover); color: #fff; }
.site-footer__brand p,
.footer-links a,
.footer-contact-list a,
.footer-contact-list li,
.footer-contact-list p,
.site-footer__bottom { color: rgba(255,255,255,.68); }
.footer-accordion__trigger {
  margin: 0;
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.footer-accordion__panel { display: block !important; margin-top: 18px; padding: 0; }

/* Mobile navigation accordion — v0.13.0 */
.mobile-nav .menu-item-has-children {
  position: relative;
}
.mobile-nav .menu-item-has-children > a {
  padding-inline-end: 52px;
}
.mobile-nav__submenu-toggle {
  position: absolute;
  z-index: 2;
  inset-block-start: 0;
  inset-inline-end: 0;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--az-walnut);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}
.mobile-nav__submenu-toggle:hover,
.mobile-nav__submenu-toggle:focus-visible {
  background: var(--az-cream);
  color: var(--az-terracotta);
  outline: none;
}
.mobile-nav__submenu-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 280ms cubic-bezier(.2,.75,.25,1);
}
.mobile-nav .menu-item-has-children.is-submenu-open > .mobile-nav__submenu-toggle svg {
  transform: rotate(180deg);
}
.mobile-nav .sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    max-height 320ms cubic-bezier(.2,.75,.25,1),
    opacity 180ms ease,
    visibility 0s linear 320ms;
}
.mobile-nav .menu-item-has-children.is-submenu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    max-height 320ms cubic-bezier(.2,.75,.25,1),
    opacity 220ms ease,
    visibility 0s linear 0s;
}
.mobile-nav .sub-menu > li:last-child > a {
  margin-bottom: 4px;
}
.footer-links a:hover,
.footer-contact-list a:hover { color: #4c94e8; }
.footer-contact-list span { color: #2f80df; }
.site-footer__social a {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
}
.site-footer__social a:hover { background: rgba(255,255,255,.12); color: #4c94e8; }
.site-footer__trust {
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.site-footer__trust-item {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
}
.site-footer__badges span,
.site-footer__trustpilot {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color: rgba(255,255,255,.68);
}
.site-footer__trustpilot span { color: #00B67A; }
.site-footer__trustpilot:hover { color: #4c94e8; }
@media (max-width: 767px) {
  .site-footer { margin-top: 72px; padding-bottom: 30px; }
  .site-footer__main { gap: 30px; padding-top: 0; padding-bottom: 36px; }
  .site-footer__brand { padding-bottom: 0; }
  .footer-accordion { border-top: 0; padding-top: 0; }
  .footer-accordion__trigger { min-height: auto; cursor: default; font-size: 17px; }
  .footer-accordion__trigger span:last-child { display: none !important; }
  .footer-accordion__panel { display: block !important; margin-top: 14px; padding: 0; }
  .site-footer__trust { grid-template-columns: 1fr; gap: 10px; }
  .site-footer__trust-item { justify-content: flex-start; padding: 0 18px; }
  .site-footer__bottom { display: grid; gap: 16px; text-align: center; }
  .site-footer__badges { justify-content: center; }
}

/* Footer mobile stack hotfix — v0.4.8.1 */
@media (max-width: 767px) {
  .site-footer__main {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .site-footer__brand,
  .site-footer__column,
  .site-footer__contact,
  .footer-accordion {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }
}

/* Shop archive foundation — v0.5.0 */
.az-shop-page {
  background: #fafafa;
  padding: 48px 0 96px;
}
.az-shop-page .az-container {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
}
.woocommerce .az-shop-page .woocommerce-breadcrumb,
.az-shop-header__breadcrumb .woocommerce-breadcrumb {
  margin: 0 0 18px;
  color: var(--az-muted);
  font-size: 13px;
}
.woocommerce .az-shop-page .woocommerce-breadcrumb a,
.az-shop-header__breadcrumb a {
  color: var(--az-walnut);
}
.az-shop-header {
  margin-bottom: 48px;
}
.az-shop-header__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}
.az-shop-header__eyebrow {
  margin: 0 0 8px;
  color: var(--az-terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.az-shop-header h1 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-bold);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: .98;
}
.az-shop-header__description {
  max-width: 650px;
  margin-top: 14px;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.7;
}
.az-shop-header__description p { margin: 0; }
.az-shop-header__tools {
  display: flex;
  align-items: center;
  gap: 18px;
}
.az-shop-header__count,
.woocommerce-result-count {
  margin: 0 !important;
  color: var(--az-muted);
  font-size: 14px;
}
.woocommerce-ordering { margin: 0 !important; }
.woocommerce-ordering select {
  min-width: 190px;
  height: 46px;
  padding: 0 42px 0 16px;
  border: 1px solid var(--az-border);
  border-radius: 999px;
  background: #fff;
  color: var(--az-text);
  font-size: 14px;
}
.az-shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.az-shop-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--az-border);
  border-radius: 24px;
  background: #fff;
}
.az-shop-sidebar__head h2,
.az-filter-group h3 {
  margin: 0;
  color: var(--az-text);
  font-size: 15px;
  font-weight: 700;
}
.az-shop-sidebar__head { padding-bottom: 18px; border-bottom: 1px solid var(--az-border); }
.az-filter-group { display: grid; gap: 12px; }
.az-filter-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.az-filter-list a,
.az-filter-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--az-muted);
  font-size: 14px;
  transition: 200ms ease;
}
.az-filter-list a:hover {
  background: #ffffff;
  color: var(--az-terracotta);
}
.az-filter-list small { color: var(--az-walnut); }
.az-shop-products .products,
.woocommerce .az-shop-products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.woocommerce .az-shop-products ul.products::before,
.woocommerce .az-shop-products ul.products::after { display: none !important; }
.woocommerce .az-shop-products ul.products li.product,
.az-shop-products .product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
.az-shop-pagination {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  border: 0;
  margin: 0;
}
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--az-border);
  border-radius: 12px;
  background: #fff;
  color: var(--az-walnut);
  font-size: 14px;
  font-weight: 600;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--az-terracotta);
  border-color: var(--az-terracotta);
  color: #fff;
}
.az-shop-empty {
  max-width: 520px;
  margin: 0 auto;
  padding: 56px 32px;
  border: 1px solid var(--az-border);
  border-radius: 28px;
  background: #fff;
  text-align: center;
}
.az-shop-empty__eyebrow {
  margin: 0 0 8px;
  color: var(--az-terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.az-shop-empty h2 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-bold);
  font-size: 38px;
  font-weight: 500;
}
.az-shop-empty p { color: var(--az-muted); }
.az-shop-mobile-tools { display: none; }
@media (max-width: 1100px) {
  .az-shop-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 24px; }
  .az-shop-products .products,
  .woocommerce .az-shop-products ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  body .az-contact-page__hero { padding-top: clamp(58px, 8vw, 82px); }
  body .az-contact-page__content-inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; }
  body .az-contact-panel, body .az-contact-form-card { width: 100%; }
  body .az-contact-page__details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .az-shop-header__content { grid-template-columns: 1fr; align-items: start; }
  .az-shop-header__tools { display: none; }
  .az-shop-mobile-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: -18px 0 24px;
  }
  .az-shop-mobile-tools__button {
    height: 46px;
    padding: 0 18px;
    border: 1px solid var(--az-border);
    border-radius: 999px;
    background: #fff;
    color: var(--az-text);
    font-weight: 600;
  }
  .az-shop-layout { grid-template-columns: 1fr; }
  .az-shop-sidebar { display: none; }
}
@media (max-width: 767px) {
  .az-shop-page { padding: 32px 0 72px; }
  .az-shop-page .az-container { padding-inline: 16px; }
  .az-shop-header { margin-bottom: 36px; }
  .az-shop-header h1 { font-size: 44px; }
  .az-shop-header__description { font-size: 15px; }
  .az-shop-products .products,
  .woocommerce .az-shop-products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }
  .woocommerce-ordering select { min-width: 160px; max-width: 52vw; }
  .az-shop-pagination { margin-top: 48px; }

  body .az-contact-page { overflow-x: clip; }
  body .az-contact-page__hero { padding: 48px 0 22px; }
  body .az-contact-page__heading { width: min(100%, 620px); }
  body .az-contact-page__eyebrow, body .az-contact-panel__eyebrow, body .az-contact-form-card__eyebrow { margin-bottom: 9px; font-size: 10px; letter-spacing: .13em; }
  body .az-contact-page__title { font-size: clamp(34px, 10vw, 44px); line-height: 1.05; }
  body .az-contact-page__intro { margin-top: 13px; font-size: 14px; line-height: 1.65; }
  body .az-contact-page__content { padding: 14px 0 64px; }
  body .az-contact-page__content-inner { gap: 16px; }
  body .az-contact-panel, body .az-contact-form-card { padding: 24px 20px; border-radius: 22px; }
  body .az-contact-panel__head h2, body .az-contact-form-card__head h2 { font-size: 28px; }
  body .az-contact-panel__head > p:last-child, body .az-contact-form-card__head > p:last-child { margin-top: 11px; font-size: 13px; line-height: 1.65; }
  body .az-contact-page__details { grid-template-columns: minmax(0, 1fr); margin-top: 26px; }
  body .az-contact-detail { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; padding: 15px 0; }
  body .az-contact-detail__icon { width: 38px; height: 38px; }
  body .az-contact-form { margin-top: 24px; }
  body .az-contact-form__grid { grid-template-columns: minmax(0, 1fr); gap: 15px; }
  body .az-contact-field--wide { grid-column: auto; }
  body .az-contact-field input { height: 50px; }
  body .az-contact-field textarea { min-height: 156px; }
  body .az-contact-form__footer { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; margin-top: 18px; }
  body .az-contact-form__submit { width: 100%; max-width: none; min-width: 0; }
  body .az-contact-toast { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); width: calc(100vw - 20px); grid-template-columns: 34px minmax(0, 1fr) 30px; gap: 10px; padding: 12px; border-radius: 16px; }
  body .az-contact-toast__icon { width: 34px; height: 34px; }
}


/* Archive product card refinement — v0.5.1 */
.az-shop-products .az-product-card--archive {
  border-radius: 20px;
  background: #fff;
  border-color: rgba(229,229,229,.96);
  box-shadow: 0 6px 26px rgba(25,25,25,.045);
}
.az-shop-products .az-product-card--archive:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(25,25,25,.11);
  border-color: rgba(0,100,210,.72);
}
.az-shop-products .az-product-card--archive .az-product-card__media-wrap {
  margin: 10px 10px 0;
  border-radius: 16px;
}
.az-shop-products .az-product-card--archive .az-product-card__badge {
  background: var(--az-terracotta);
  color: #fff;
}
.az-shop-products .az-product-card--archive .az-product-card__body {
  gap: 8px;
  padding: 15px 16px 16px;
}
.az-shop-products .az-product-card--archive .az-product-card__category {
  color: var(--az-terracotta);
  font-size: 10px;
}
.az-shop-products .az-product-card--archive .az-product-card__title {
  min-height: 45px;
  font-size: 15.5px;
  font-weight: 650;
}
.az-product-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 18px;
  color: #0064d2;
  font-size: 12px;
}
.az-product-card__rating .star-rating {
  float: none;
  margin: 0;
  font-size: 12px;
  width: 5.4em;
  color: #0064d2;
}
.az-product-card__rating span {
  color: var(--az-muted);
  font-size: 12px;
  font-weight: 600;
}
.az-shop-products .az-product-card--archive .az-product-card__footer {
  margin-top: 6px;
  padding-top: 13px;
}
.az-shop-products .az-product-card--archive .az-product-card__price {
  font-size: 17px;
}
.az-shop-products .az-product-card--archive .az-product-card__add {
  min-width: 88px;
  height: 40px;
  background: var(--az-button-bg) !important;
  border-color: var(--az-button-bg) !important;
  color: #fff !important;
}
.az-shop-products .az-product-card--archive .az-product-card__add:hover {
  background: var(--az-button-hover) !important;
  border-color: var(--az-button-hover) !important;
}
@media (max-width: 767px) {
  .az-shop-products .az-product-card--archive { border-radius: 16px; }
  .az-shop-products .az-product-card--archive .az-product-card__media-wrap { margin: 8px 8px 0; border-radius: 13px; }
  .az-shop-products .az-product-card--archive .az-product-card__body { padding: 11px; gap: 6px; }
  .az-shop-products .az-product-card--archive .az-product-card__title { min-height: 39px; font-size: 13.5px; line-height: 1.42; }
  .az-product-card__rating { display: none; }
  .az-shop-products .az-product-card--archive .az-product-card__footer { display: grid; gap: 9px; }
  .az-shop-products .az-product-card--archive .az-product-card__price { font-size: 15px; }
  .az-shop-products .az-product-card--archive .az-product-card__add { width: 100%; min-width: 0; height: 38px; }
}

/* Shop mobile container alignment hotfix — v0.5.1.1 */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .az-shop-page {
    width: 100%;
    overflow-x: hidden;
  }

  .az-shop-page .az-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }

  .az-shop-mobile-tools,
  .az-shop-layout,
  .az-shop-products {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .az-shop-products .products,
  .woocommerce .az-shop-products ul.products {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: stretch !important;
    box-sizing: border-box;
  }

  .woocommerce .az-shop-products ul.products li.product,
  .az-shop-products .product,
  .az-shop-products .az-product-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
}


/* Shop archive layout + filters — v0.5.3 */
.az-shop-page .woocommerce-breadcrumb,
.az-shop-header__breadcrumb .woocommerce-breadcrumb {
  margin: 0;
  color: var(--az-muted);
  font-size: 13px;
}
.az-shop-header {
  position: relative;
  margin-bottom: 40px;
  padding: 34px 0 0;
}
.az-shop-header::before {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--az-terracotta);
  border-radius: 999px;
}
.az-shop-header__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.az-shop-header__eyebrow {
  margin: 0 0 8px;
  color: var(--az-terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.az-shop-header h1 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-heading-font);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  line-height: .98;
}
.az-shop-header__description {
  max-width: 620px;
  margin-top: 14px;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.7;
}
.az-shop-header__description p { margin: 0; }
.az-shop-header__tools {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}
.az-shop-header__count,
.woocommerce-result-count {
  margin: 0;
  color: var(--az-muted);
  font-size: 14px;
  font-weight: 500;
}
.az-shop-header__sort .woocommerce-ordering,
.az-shop-mobile-tools__sort .woocommerce-ordering { margin: 0; }
.az-shop-header__sort select,
.az-shop-mobile-tools__sort select,
.woocommerce-ordering select {
  min-height: 44px;
  max-width: 100%;
  padding: 0 14px;
  border: 1px solid var(--az-border);
  border-radius: 12px;
  background: #fff;
  color: var(--az-text);
  font-size: 14px;
}
.az-shop-mobile-tools {
  display: none;
}
.az-shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.az-shop-sidebar {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(229,229,229,.95);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 34px rgba(25,25,25,.055);
  backdrop-filter: blur(8px);
  max-height: calc(100vh - 132px);
  max-height: calc(100dvh - 132px);
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(112,112,112,.34) transparent;
}
.az-shop-sidebar::-webkit-scrollbar {
  width: 8px;
}
.az-shop-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.az-shop-sidebar::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(112,112,112,.34);
  background-clip: padding-box;
}
.az-shop-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(112,112,112,.5);
  background-clip: padding-box;
}
.az-shop-sidebar__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--az-border);
}
.az-shop-sidebar__head p {
  margin: 0 0 4px;
  color: var(--az-terracotta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.az-shop-sidebar__head h2 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-heading-font);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}
.az-shop-sidebar__close {
  display: none;
}
.az-filter-group {
  padding: 18px 0;
  border-bottom: 1px solid rgba(229,229,229,.8);
}
.az-filter-group:last-child { border-bottom: 0; padding-bottom: 0; }
.az-filter-group h3 {
  margin: 0 0 12px;
  color: var(--az-text);
  font-size: 14px;
  font-weight: 700;
}
.az-filter-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.az-filter-list a,
.az-filter-list li > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--az-muted);
  text-decoration: none;
  font-size: 14px;
  transition: 220ms ease;
}
.az-filter-list small {
  color: rgba(112,112,112,.75);
  font-size: 12px;
  font-weight: 700;
}
.az-filter-list a:hover,
.az-filter-list a.is-active {
  background: var(--az-cream);
  color: var(--az-terracotta);
}
.az-filter-list a.is-active small { color: var(--az-terracotta); }
.az-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.az-active-filters span {
  width: 100%;
  color: var(--az-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.az-active-filters a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--az-cream);
  color: var(--az-text);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.az-active-filters__clear {
  background: var(--az-terracotta) !important;
  color: #fff !important;
}
.az-shop-products .products,
.woocommerce .az-shop-products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 22px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.woocommerce .az-shop-products ul.products::before,
.woocommerce .az-shop-products ul.products::after { display: none !important; }
.woocommerce .az-shop-products ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
.az-shop-pagination {
  margin-top: 64px;
  text-align: center;
}
.az-shop-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin: 0 3px;
  padding: 0 13px;
  border: 1px solid var(--az-border);
  border-radius: 12px;
  background: #fff;
  color: var(--az-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.az-shop-pagination .page-numbers.current,
.az-shop-pagination a.page-numbers:hover {
  border-color: var(--az-terracotta);
  background: var(--az-terracotta);
  color: #fff;
}
.az-shop-empty {
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 28px;
  border: 1px solid var(--az-border);
  border-radius: 24px;
  background: #fff;
  text-align: center;
}
.az-shop-empty__eyebrow {
  color: var(--az-terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.az-shop-empty h2 {
  margin: 8px 0;
  color: var(--az-text);
  font-family: var(--az-heading-font);
  font-size: 38px;
  font-weight: 500;
}
.az-shop-empty p:not(.az-shop-empty__eyebrow) {
  color: var(--az-muted);
}
@media (max-width: 1180px) {
  .az-shop-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 24px; }
  .az-shop-products .products,
  .woocommerce .az-shop-products ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .az-shop-header__content { display: grid; gap: 20px; }
  .az-shop-header__tools { justify-content: space-between; }
  .az-shop-layout { grid-template-columns: 1fr; }
  .az-shop-sidebar { position: fixed; top: 0; left: 0; z-index: 1205; width: min(88vw, 360px); max-width: 360px; height: 100dvh; max-height: none; overflow-y: auto; border-radius: 0 22px 22px 0; transform: translateX(-105%); transition: transform 280ms ease; }
  .az-shop-sidebar.is-open { transform: translateX(0); }
  .az-shop-sidebar__close { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--az-border); border-radius: 999px; background: #fff; color: var(--az-text); }
  .az-shop-filter-backdrop { position: fixed; inset: 0; z-index: 1200; background: rgba(25,25,25,.42); opacity: 0; transition: opacity 260ms ease; }
  .az-shop-filter-backdrop.is-open { opacity: 1; }
  .az-shop-mobile-tools { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; margin: -10px 0 26px; }
  .az-shop-mobile-tools__button { min-height: 46px; border: 1px solid var(--az-border); border-radius: 14px; background: #fff; color: var(--az-text); font-size: 14px; font-weight: 700; }
  .az-shop-mobile-tools__sort select { width: 100%; min-height: 46px; }
  .az-shop-header__sort { display: none; }
  .az-shop-header__count { font-size: 13px; }
}
@media (max-width: 767px) {
  .az-shop-page { padding-top: 28px; padding-bottom: 76px; }
  .az-shop-header { margin-bottom: 28px; padding-top: 16px; }
  .az-shop-header::before { width: 72px; margin-bottom: 18px; }
  .az-shop-header h1 { font-size: 44px; }
  .az-shop-header__description { font-size: 15px; }
  .az-shop-products .products,
  .woocommerce .az-shop-products ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
}

/* Shop header + mobile drawer hotfix — v0.5.3.1 */
.az-shop-header {
  margin: 0 0 42px;
  padding: 0;
}
.az-shop-header::before {
  display: none !important;
}
.az-shop-header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 238px;
  padding: 44px 28px;
  border: 1px solid rgba(229,229,229,.72);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 22%, rgba(0,100,210,.22), transparent 34%),
    linear-gradient(135deg, #20252a 0%, #191919 52%, #151c22 100%);
  text-align: center;
  overflow: hidden;
}
.az-shop-header__breadcrumb,
.az-shop-header__breadcrumb .woocommerce-breadcrumb {
  margin: 0 0 14px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 13px;
}
.az-shop-header__breadcrumb a {
  color: #ffffff !important;
  text-decoration: none;
}
.az-shop-header__eyebrow {
  color: #0064d2;
}
.az-shop-header h1 {
  color: #FFFFFF;
}
.az-shop-header__description {
  margin-inline: auto;
  color: rgba(255,255,255,.78);
}
.az-shop-header__description p {
  margin-inline: auto;
}
.az-shop-header__tools {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}
.az-shop-header__count,
.az-shop-header__tools .woocommerce-result-count {
  color: rgba(255,255,255,.76);
}
.az-shop-header__tools .woocommerce-ordering select {
  border-color: rgba(255,255,255,.26);
  background-color: rgba(255,255,255,.96);
}
.woocommerce .az-shop-page > .woocommerce-breadcrumb {
  display: none !important;
}
@media (max-width: 900px) {
  .az-shop-sidebar {
    display: grid;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1205;
    width: min(88vw, 360px);
    max-width: 360px;
    height: 100dvh;
    max-height: none;
    overflow-y: auto;
    border-radius: 0 22px 22px 0;
    transform: translateX(-105%);
    transition: transform 280ms ease;
  }
  .az-shop-sidebar.is-open {
    transform: translateX(0);
  }
  .az-shop-filter-backdrop {
    z-index: 1200;
  }
  .az-shop-header__content {
    min-height: 190px;
    padding: 34px 22px;
    border-radius: 26px;
  }
  .az-shop-header__tools {
    display: none;
  }
}
@media (max-width: 767px) {
  .az-shop-header {
    margin-bottom: 24px;
  }
  .az-shop-header__content {
    min-height: 180px;
    padding: 30px 18px;
    border-radius: 22px;
  }
  .az-shop-header h1 {
    font-size: 46px;
  }
  .az-shop-header__description {
    max-width: 320px;
    font-size: 14.5px;
  }
  .az-shop-mobile-tools {
    margin-top: 0 !important;
  }
}

/* v0.5.3.2 — Cart notice + no in-card View Cart link */
.az-product-card a.added_to_cart,
.az-product-card a.wc-forward,
.az-product-card__footer > a.added_to_cart,
.az-product-card__footer > a.wc-forward {
  display: none !important;
}
.az-product-card__add.added,
.az-product-card__add.loading {
  min-width: 76px !important;
  background: var(--az-walnut) !important;
  color: #fff !important;
}
.az-product-card__add.loading::after,
.az-product-card__add.added::after {
  display: none !important;
  content: none !important;
}
.az-cart-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto 30px;
  align-items: center;
  gap: 12px;
  width: min(420px, calc(100vw - 32px));
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(229,229,229,.35);
  border-radius: 18px;
  background: rgba(25,25,25,.96);
  color: #fff;
  box-shadow: 0 22px 52px rgba(0,0,0,.24);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.az-cart-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.az-cart-toast__icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--az-terracotta);
  color: #fff;
  font-weight: 900;
}
.az-cart-toast__content { min-width: 0; display: grid; gap: 2px; }
.az-cart-toast__title { color: #fff; font-size: 14px; font-weight: 800; line-height: 1.2; }
.az-cart-toast__text { color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.45; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.az-cart-toast__link {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--az-walnut);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.az-cart-toast__close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 767px) {
  .az-cart-toast {
    left: 12px;
    right: 12px;
    bottom: 14px;
    width: auto;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    padding: 12px;
    border-radius: 16px;
  }
  .az-cart-toast__icon { width: 34px; height: 34px; }
  .az-cart-toast__close { display: none; }
  .az-cart-toast__text { max-width: 150px; }
  .az-cart-toast__link { height: 34px; padding: 0 12px; }
}

/* Shop banner controls — v0.5.3.3 */
.az-shop-header {
  overflow: hidden;
  padding: 44px 32px;
  border: 1px solid rgba(229,229,229, .85);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 15%, rgba(0,100,210, .20), transparent 34%),
    linear-gradient(135deg, #22282d 0%, #42484e 100%);
  color: #ffffff;
}
.az-shop-header--image {
  background-image:
    linear-gradient(rgba(0, 0, 0, var(--az-shop-banner-overlay, .45)), rgba(0, 0, 0, var(--az-shop-banner-overlay, .45))),
    var(--az-shop-banner-image);
  background-size: cover;
  background-position: center;
}
.az-shop-header--image.az-shop-header--no-overlay { background-image: var(--az-shop-banner-image); }
.az-shop-header::before { display: none; }
.az-shop-header__breadcrumb .woocommerce-breadcrumb,
.az-shop-header__breadcrumb .woocommerce-breadcrumb a,
.az-shop-header__eyebrow,
.az-shop-header h1,
.az-shop-header__description,
.az-shop-header__count,
.az-shop-header .woocommerce-result-count { color: inherit; }
.az-shop-header__breadcrumb .woocommerce-breadcrumb { opacity: .78; }
.az-shop-header__eyebrow { color: #4c94e8; }
.az-shop-header__content { min-height: 156px; align-items: center; text-align: center; justify-content: center; }
.az-shop-header__copy { max-width: 760px; margin-inline: auto; }
.az-shop-header__tools { position: absolute; right: 28px; bottom: 24px; }
.az-shop-header__sort select,
.az-shop-mobile-tools__sort select,
.woocommerce-ordering select { background: rgba(255,255,255,.92); }
@media (max-width: 767px) {
  .az-shop-header { margin-bottom: 28px; padding: 32px 18px; border-radius: 22px; }
  .az-shop-header__content { min-height: 130px; }
  .az-shop-header__tools { display: none; }
  .az-shop-header h1 { font-size: 42px; }
  .az-shop-header__description { font-size: 14.5px; }
}


/* v0.17.8 — Shop / category / product-search header light redesign */
.az-shop-header {
  position: relative;
  margin: 0 0 34px;
  padding: 42px 0 38px;
  min-height: 0;
  display: block;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(229,229,229,.86);
  border-bottom: 1px solid rgba(229,229,229,.92);
  border-radius: 0;
  background: #ffffff;
  color: #191919;
  box-shadow: none;
}
.az-shop-header--image,
.az-shop-header--image.az-shop-header--no-overlay {
  background-image: none;
  background: #ffffff;
}
.az-shop-header--image::after,
.az-shop-header--image.az-shop-header--no-overlay::after {
  display: none;
}
.az-shop-header__breadcrumb {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto 22px;
  padding: 0 24px;
}
.az-shop-header__breadcrumb .woocommerce-breadcrumb {
  margin: 0;
  color: #7a7a7a;
  font-size: 13px;
  opacity: 1;
}
.az-shop-header__breadcrumb .woocommerce-breadcrumb a {
  color: #666666;
  text-decoration: none;
}
.az-shop-header__breadcrumb .woocommerce-breadcrumb a:hover {
  color: #0064d2;
}
.az-shop-header__content {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 0;
  width: min(100%, 920px);
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: center;
}
.az-shop-header__copy {
  max-width: 820px;
  margin-inline: auto;
}
.az-shop-header__eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  color: #0064d2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.az-shop-header h1 {
  margin: 0;
  color: #191919;
  font-family: var(--az-font-bold);
  font-size: clamp(42px, 5.1vw, 64px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.az-shop-header__description {
  max-width: 680px;
  margin: 16px auto 0;
  color: #707070;
  font-size: 16px;
  line-height: 1.7;
}
.az-shop-header__description p { margin: 0; }
.az-shop-header__tools { display: none; }
.az-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 26px;
}
.az-shop-toolbar__count,
.az-shop-toolbar__count .woocommerce-result-count {
  margin: 0 !important;
  color: var(--az-muted);
  font-size: 14px;
}
.az-shop-toolbar__sort .woocommerce-ordering { margin: 0 !important; }
.az-shop-toolbar__sort select,
.az-shop-mobile-tools__sort select,
.woocommerce-ordering select {
  min-height: 46px;
  border: 1px solid var(--az-border);
  border-radius: 14px;
  background: #fff;
  color: var(--az-text);
  padding: 0 42px 0 16px;
}
@media (max-width: 900px) {
  .az-shop-toolbar { display: none; }
  .az-shop-header {
    padding: 34px 0 32px;
    margin-bottom: 26px;
  }
  .az-shop-header__breadcrumb {
    margin-bottom: 16px;
    padding: 0 20px;
  }
  .az-shop-header__content {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .az-shop-header {
    padding: 30px 0 28px;
    margin-bottom: 24px;
  }
  .az-shop-header__breadcrumb {
    margin-bottom: 14px;
    padding: 0 16px;
  }
  .az-shop-header__content {
    padding: 0 16px;
  }
  .az-shop-header h1 {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.08;
  }
  .az-shop-header__description {
    max-width: 520px;
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.65;
  }
}

/* v0.5.4 — Shop Grid Polish */
.az-shop-layout {
  gap: 36px;
}
.az-shop-products {
  min-width: 0;
}
.az-shop-products .products,
.woocommerce .az-shop-products ul.products {
  align-items: stretch;
  gap: 34px 24px !important;
}
.woocommerce .az-shop-products ul.products li.product,
.az-shop-products .product {
  min-width: 0 !important;
}
.az-shop-products .az-product-card--archive {
  height: 100%;
  isolation: isolate;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.az-shop-products .az-product-card--archive .az-product-card__body {
  min-height: 0;
}
.az-shop-products .az-product-card--archive .az-product-card__title {
  margin-bottom: 2px;
}
.az-shop-products .az-product-card--archive .az-product-card__footer {
  margin-top: auto;
}
.az-shop-products .az-product-card--archive .az-product-card__media-wrap {
  background: linear-gradient(135deg, #ffffff, #FFFFFF);
}
.az-shop-products .az-product-card--archive .az-product-card__media img {
  will-change: transform;
}
.az-shop-toolbar {
  padding: 14px 16px;
  border: 1px solid rgba(229,229,229,.86);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(25,25,25,.045);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.az-shop-pagination {
  margin-top: 70px;
}
.az-shop-pagination .page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.az-shop-pagination a.page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,100,210,.18);
}
.woocommerce nav.woocommerce-pagination ul {
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 10px;
}
.az-shop-empty {
  box-shadow: 0 16px 42px rgba(25,25,25,.06);
}
@media (max-width: 1180px) {
  .az-shop-layout { gap: 28px; }
  .az-shop-products .products,
  .woocommerce .az-shop-products ul.products { gap: 30px 18px !important; }
}
@media (max-width: 900px) {
  .az-shop-mobile-tools {
    position: relative;
    z-index: 5;
  }
  .az-shop-layout { gap: 0; }
  .az-shop-products .products,
  .woocommerce .az-shop-products ul.products { gap: 26px 14px !important; }
}
@media (max-width: 767px) {
  .az-shop-page { padding-bottom: 82px; }
  .az-shop-mobile-tools {
    gap: 10px;
    margin-bottom: 24px;
  }
  .az-shop-products .products,
  .woocommerce .az-shop-products ul.products {
    gap: 24px 12px !important;
  }
  .az-shop-products .az-product-card--archive:hover {
    transform: none;
    box-shadow: 0 6px 26px rgba(25,25,25,.045);
  }
  .az-shop-pagination {
    margin-top: 52px;
  }
  .az-shop-pagination .page-numbers,
  .woocommerce nav.woocommerce-pagination ul li a,
  .woocommerce nav.woocommerce-pagination ul li span {
    min-width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}

/* v0.5.5 — Shop Empty States */
.az-shop-empty {
  position: relative;
  overflow: hidden;
  max-width: 640px;
  margin: 18px auto 0;
  padding: 64px 34px;
  border: 1px solid rgba(229,229,229,.95);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(0,100,210,.16), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #fafafa 100%);
  box-shadow: 0 18px 52px rgba(25,25,25,.075);
  text-align: center;
}
.az-shop-empty::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(0,100,210,.18);
  border-radius: 22px;
  pointer-events: none;
}
.az-shop-empty__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--az-terracotta);
  box-shadow: inset 0 0 0 1px rgba(0,100,210,.22);
}
.az-shop-empty__eyebrow,
.az-shop-empty h2,
.az-shop-empty p,
.az-shop-empty__actions {
  position: relative;
  z-index: 1;
}
.az-shop-empty h2 {
  max-width: 520px;
  margin-inline: auto;
}
.az-shop-empty p:not(.az-shop-empty__eyebrow) {
  max-width: 440px;
  margin: 0 auto 26px;
  line-height: 1.7;
}
.az-shop-empty__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.az-shop-empty__actions .az-btn {
  min-height: 46px;
}
.az-btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--az-border);
  border-radius: 999px;
  background: #fff;
  color: var(--az-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}
.az-btn--secondary:hover {
  border-color: var(--az-terracotta);
  color: var(--az-terracotta);
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .az-shop-empty {
    margin-top: 4px;
    padding: 48px 22px;
    border-radius: 24px;
  }
  .az-shop-empty::before {
    inset: 10px;
    border-radius: 18px;
  }
  .az-shop-empty__icon {
    width: 58px;
    height: 58px;
  }
  .az-shop-empty h2 {
    font-size: 32px;
  }
  .az-shop-empty__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}


/* v0.17.8 — Product search header light controls */
.az-shop-header--search .az-shop-header__content { max-width: 920px; }
.az-shop-header--search .az-shop-header__copy { max-width: 820px; }
.az-shop-search-form {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 680px;
  padding: 7px;
  border: 1px solid #dedede;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(25,25,25,.055);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.az-shop-search-form input[type="search"] {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: #f7f7f7;
  color: #191919;
  outline: none;
  font-size: 15px;
}
.az-shop-search-form input[type="search"]::placeholder { color: #8a8a8a; }
.az-shop-search-form input[type="search"]:focus {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,100,210,.16);
}
.az-shop-search-form button {
  height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: #0064d2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.az-shop-search-form button:hover {
  background: #6f42c1;
  transform: translateY(-1px);
}
.az-shop-search-suggestions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #707070;
  font-size: 13px;
}
.az-shop-search-suggestions a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid #dedede;
  border-radius: 999px;
  background: #ffffff;
  color: #444444;
  text-decoration: none;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms ease;
}
.az-shop-search-suggestions a:hover {
  border-color: rgba(0,100,210,.34);
  background: #f7fbff;
  color: #0064d2;
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .az-shop-search-form {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 8px;
    max-width: 100%;
    box-shadow: none;
  }
  .az-shop-search-form input[type="search"],
  .az-shop-search-form button {
    width: 100%;
    height: 48px;
  }
  .az-shop-search-suggestions {
    justify-content: center;
    margin-top: 14px;
  }
}

/* v0.5.7 — Category archive final polish */
.az-shop-header--category .az-shop-header__eyebrow{color:#0064d2}.az-shop-header--category .az-shop-header__description{max-width:680px}.tax-product_cat .az-shop-header,.tax-product_tag .az-shop-header{margin-bottom:34px}

/* Single Product Foundation v0.6.0 */
.az-product-page {
  background: #fafafa;
  padding: 36px 0 96px;
}
.az-product-container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.az-product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 13px;
  color: #707070;
}
.az-product-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 220ms ease;
}
.az-product-breadcrumb a:hover { color: #0064d2; }
.az-product-breadcrumb span:last-child { color: #191919; }
.az-product-main {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(360px, 45fr);
  gap: 56px;
  align-items: start;
}
.az-product-gallery,
.az-product-summary__inner,
.az-product-trust,
.az-product-details,
.az-product-related {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
}
.az-product-gallery {
  padding: 18px;
  overflow: hidden;
}
.az-product-gallery .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.az-product-gallery .woocommerce-product-gallery__wrapper {
  margin: 0;
}
.az-product-gallery .woocommerce-product-gallery__image a,
.az-product-gallery .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
}
.az-product-gallery .woocommerce-product-gallery__image img {
  border-radius: 18px;
  background: #ffffff;
  object-fit: cover;
}
.az-product-gallery .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 14px 0 0 !important;
  padding: 0 !important;
}
.az-product-gallery .flex-control-thumbs li {
  width: auto !important;
  float: none !important;
  list-style: none;
}
.az-product-gallery .flex-control-thumbs img {
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  opacity: .72;
  transition: opacity 220ms ease, border-color 220ms ease;
}
.az-product-gallery .flex-control-thumbs img.flex-active,
.az-product-gallery .flex-control-thumbs img:hover {
  opacity: 1;
  border-color: #0064d2;
}
.az-product-summary__inner {
  padding: 34px;
  position: sticky;
  top: 116px;
}
.az-product-summary .product_title,
.az-product-summary h1 {
  margin: 8px 0 16px;
  font-family: var(--az-font-bold);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  color: #191919;
}
.az-product-summary .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 14px;
  color: #707070;
}
.az-product-summary .star-rating { color: #0064d2; }
.az-product-summary .price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 700;
  color: #191919;
}
.az-product-summary .price del {
  font-size: 18px;
  color: #8a8a8a;
  opacity: 1;
}
.az-product-summary .price ins {
  color: #0064d2;
  text-decoration: none;
}
.az-product-summary .woocommerce-product-details__short-description {
  margin: 0 0 26px;
  color: #707070;
  font-size: 16px;
  line-height: 1.75;
}
.az-product-purchase {
  padding-top: 22px;
  border-top: 1px solid #e5e5e5;
}
.az-product-purchase form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  flex-wrap: wrap;
}
.az-product-purchase .quantity .qty {
  width: 82px;
  height: 52px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  color: #191919;
  text-align: center;
}
.az-product-purchase .single_add_to_cart_button {
  min-height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: var(--az-button-bg);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}
.az-product-purchase .single_add_to_cart_button:hover {
  background: var(--az-button-hover);
  transform: translateY(-1px);
}
.az-product-meta-wrap {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
  color: #707070;
  font-size: 14px;
  line-height: 1.8;
}
.az-product-meta-wrap a { color: #191919; text-decoration: none; }
.az-product-meta-wrap a:hover { color: #0064d2; }
.az-product-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  padding: 20px;
}
.az-product-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 14px;
  border-radius: 16px;
  background: #fafafa;
  color: #191919;
  font-size: 14px;
  font-weight: 600;
}
.az-product-trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #0064d2;
  color: #fff;
  font-size: 13px;
  flex: 0 0 auto;
}
.az-product-details,
.az-product-related {
  margin-top: 34px;
  padding: 34px;
}
.az-product-details .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border-bottom: 1px solid #e5e5e5;
}
.az-product-details .woocommerce-tabs ul.tabs li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
.az-product-details .woocommerce-tabs ul.tabs li::before,
.az-product-details .woocommerce-tabs ul.tabs li::after { display: none !important; }
.az-product-details .woocommerce-tabs ul.tabs a {
  display: inline-flex;
  padding: 0 0 14px;
  color: #707070;
  text-decoration: none;
  font-weight: 700;
}
.az-product-details .woocommerce-tabs ul.tabs li.active a { color: #0064d2; }
.az-product-details .woocommerce-Tabs-panel,
.az-product-details .woocommerce-Tabs-panel p {
  color: #707070;
  line-height: 1.8;
}
.az-product-details h2,
.az-product-related h2 {
  margin-top: 0;
  font-family: var(--az-font-bold);
  color: #191919;
  font-size: 34px;
  font-weight: 500;
}
.az-product-related ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0 !important;
  padding: 0 !important;
}
.az-product-related ul.products::before,
.az-product-related ul.products::after { display: none !important; }
@media (max-width: 1024px) {
  .az-product-main { grid-template-columns: 1fr; gap: 28px; }
  .az-product-summary__inner { position: static; }
  .az-product-trust { grid-template-columns: 1fr; }
  .az-product-related ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .az-product-page { padding: 24px 0 72px; }
  .az-product-container { padding-left: 16px; padding-right: 16px; }
  .az-product-breadcrumb { font-size: 12px; margin-bottom: 18px; }
  .az-product-gallery { padding: 10px; border-radius: 18px; }
  .az-product-gallery .woocommerce-product-gallery__image img { border-radius: 14px; }
  .az-product-summary__inner,
  .az-product-details,
  .az-product-related { padding: 22px; border-radius: 18px; }
  .az-product-summary .product_title,
  .az-product-summary h1 { font-size: 36px; }
  .az-product-summary .price { font-size: 24px; }
  .az-product-purchase form.cart { align-items: stretch; }
  .az-product-purchase .quantity { width: 100%; }
  .az-product-purchase .quantity .qty { width: 100%; }
  .az-product-purchase .single_add_to_cart_button { width: 100%; }
  .az-product-trust { margin-top: 24px; padding: 14px; border-radius: 18px; }
  .az-product-related ul.products { gap: 14px; }
}

/* Single Product Gallery v0.6.1 */
.az-product-gallery {
  position: relative;
  padding: 20px;
  background:
    radial-gradient(circle at 18% 8%, rgba(0,100,210,.13), transparent 34%),
    #fff;
}
.az-product-gallery .woocommerce-product-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.az-product-gallery .woocommerce-product-gallery .flex-viewport {
  grid-column: 2;
  grid-row: 1;
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(229,229,229,.9);
}
.az-product-gallery .woocommerce-product-gallery__wrapper {
  margin: 0 !important;
}
.az-product-gallery .woocommerce-product-gallery__image,
.az-product-gallery .woocommerce-product-gallery__image a {
  background: #ffffff;
}
.az-product-gallery .woocommerce-product-gallery__image a {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.az-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 520ms ease, filter 520ms ease;
}
.az-product-gallery .woocommerce-product-gallery__image:hover img {
  transform: scale(1.018);
  filter: saturate(1.04) contrast(1.02);
}
.az-product-gallery .woocommerce-product-gallery .flex-control-thumbs {
  grid-column: 1;
  grid-row: 1;
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  max-height: 640px;
  overflow-y: auto;
  overscroll-behavior: contain;
  margin: 0 !important;
  padding: 2px 2px 2px 0 !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(25,25,25,.24) transparent;
}
.az-product-gallery .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar { width: 4px; }
.az-product-gallery .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar-thumb {
  background: rgba(25,25,25,.22);
  border-radius: 999px;
}
.az-product-gallery .flex-control-thumbs li {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.az-product-gallery .flex-control-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(229,229,229,.95);
  background: #ffffff;
  opacity: .72;
  cursor: pointer;
  transition: opacity 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.az-product-gallery .flex-control-thumbs img.flex-active,
.az-product-gallery .flex-control-thumbs img:hover {
  opacity: 1;
  border-color: #0064d2;
  box-shadow: 0 10px 22px rgba(25,25,25,.10);
  transform: translateY(-1px);
}
.az-product-gallery .woocommerce-product-gallery__trigger {
  top: 18px !important;
  right: 18px !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 12px 30px rgba(25,25,25,.16);
}
.az-product-gallery .woocommerce-product-gallery__trigger::before,
.az-product-gallery .woocommerce-product-gallery__trigger::after {
  border-color: #191919 !important;
}
@media (max-width: 1024px) {
  .az-product-gallery .woocommerce-product-gallery {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .az-product-gallery {
    padding: 10px;
  }
  .az-product-gallery .woocommerce-product-gallery {
    display: block;
  }
  .az-product-gallery .woocommerce-product-gallery .flex-viewport {
    border-radius: 16px;
  }
  .az-product-gallery .woocommerce-product-gallery__image a {
    aspect-ratio: 1 / 1;
  }
  .az-product-gallery .woocommerce-product-gallery__image img {
    border-radius: 16px;
  }
  .az-product-gallery .woocommerce-product-gallery .flex-control-thumbs {
    display: flex !important;
    flex-direction: row;
    gap: 10px;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 12px 0 0 !important;
    padding: 0 2px 4px !important;
    scroll-snap-type: x mandatory;
  }
  .az-product-gallery .flex-control-thumbs li {
    flex: 0 0 64px;
    scroll-snap-align: start;
  }
  .az-product-gallery .flex-control-thumbs img {
    border-radius: 12px;
  }
  .az-product-gallery .woocommerce-product-gallery__trigger {
    top: 14px !important;
    right: 14px !important;
    width: 38px !important;
    height: 38px !important;
  }
}

/* v0.6.2 — Product Summary polish */
.az-product-summary__inner{overflow:hidden;background:radial-gradient(circle at 100% 0%,rgba(0,100,210,.12),transparent 30%),#fff}.az-product-summary__eyebrow{display:inline-flex;width:fit-content;margin:0 0 12px;color:#0064d2;font-size:12px;font-weight:800;letter-spacing:.12em;line-height:1.2;text-transform:uppercase;text-decoration:none}.az-product-summary__eyebrow:hover{color:#191919}.az-product-summary .product_title,.az-product-summary h1{margin-top:0;margin-bottom:14px;letter-spacing:-.025em}.az-product-summary__rating-row:empty{display:none}.az-product-summary__rating-row{margin-bottom:18px}.az-product-summary__rating-row .woocommerce-product-rating{width:fit-content;min-height:34px;padding:7px 12px;border:1px solid rgba(229,229,229,.9);border-radius:999px;background:#fafafa;margin:0}.az-product-summary__rating-row .woocommerce-review-link{color:#707070;font-size:13px;text-decoration:none}.az-product-summary__rating-row .woocommerce-review-link:hover{color:#0064d2}.az-product-summary__price-row{display:flex;align-items:center;flex-wrap:wrap;gap:12px;margin:0 0 20px}.az-product-summary__price-row .price{margin:0}.az-product-summary__saving{display:inline-flex;align-items:center;justify-content:center;min-height:30px;padding:0 12px;border-radius:999px;background:rgba(0,100,210,.11);color:#0064d2;font-size:12px;font-weight:800;letter-spacing:.02em}.az-product-summary__excerpt{margin:0 0 24px;padding:0 0 24px;border-bottom:1px solid #e5e5e5}.az-product-summary__excerpt .woocommerce-product-details__short-description,.az-product-summary__excerpt .woocommerce-product-details__short-description p{margin:0;color:#707070;font-size:16px;line-height:1.78}.az-product-summary__excerpt .woocommerce-product-details__short-description{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}.az-product-summary__status-grid{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin:0 0 22px}.az-product-summary__status,.az-product-summary__sku{display:inline-flex;align-items:center;gap:8px;min-height:38px;padding:0 13px;border:1px solid #e5e5e5;border-radius:999px;background:#fafafa;color:#191919;font-size:13px;font-weight:700}.az-product-summary__status-dot{width:8px;height:8px;border-radius:999px;background:#198754;box-shadow:0 0 0 4px rgba(122,143,77,.14)}.az-product-summary__status--out-of-stock .az-product-summary__status-dot,.az-product-summary__status--outofstock .az-product-summary__status-dot{background:#e53238;box-shadow:0 0 0 4px rgba(229,50,56,.14)}.az-product-summary__sku span{color:#707070;font-weight:600}.az-product-summary__sku strong{color:#191919;font-weight:800}.az-product-summary .stock{display:none}.az-product-meta-wrap .sku_wrapper{display:none}.az-product-meta-wrap{color:#707070}.az-product-meta-wrap>span{display:block;margin-bottom:4px}@media(max-width:767px){.az-product-summary__inner{padding:24px}.az-product-summary__eyebrow{font-size:11px;margin-bottom:10px}.az-product-summary__rating-row .woocommerce-product-rating{padding-inline:10px}.az-product-summary__price-row{gap:10px;margin-bottom:18px}.az-product-summary__saving{min-height:28px;font-size:11px}.az-product-summary__excerpt{margin-bottom:18px;padding-bottom:18px}.az-product-summary__status-grid{gap:8px;margin-bottom:18px}.az-product-summary__status,.az-product-summary__sku{min-height:36px;padding-inline:11px;font-size:12px}}

/* v0.6.3 — Purchase Section */
.az-product-purchase{margin-top:4px;padding-top:24px}.az-product-purchase form.cart{display:grid;grid-template-columns:132px minmax(0,1fr);gap:14px;align-items:stretch}.az-product-purchase .quantity{position:relative;display:grid;grid-template-columns:40px minmax(0,1fr) 40px;align-items:center;min-height:56px;border:1px solid #e5e5e5;border-radius:999px;background:#fafafa;overflow:hidden}.az-product-purchase .quantity .qty{width:100%;height:56px;border:0;border-radius:0;background:transparent;color:#191919;font-size:15px;font-weight:800;text-align:center;-moz-appearance:textfield}.az-product-purchase .quantity .qty::-webkit-outer-spin-button,.az-product-purchase .quantity .qty::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.az-qty-btn{display:inline-flex;align-items:center;justify-content:center;width:40px;height:56px;border:0;background:transparent;color:#707070;font-size:20px;font-weight:700;cursor:pointer;transition:color 220ms ease,background 220ms ease}.az-qty-btn:hover{background:rgba(0,100,210,.14);color:#0064d2}.az-product-purchase .single_add_to_cart_button{width:100%;min-height:56px;padding:0 28px;border-radius:999px;background:var(--az-button-bg);box-shadow:0 14px 30px rgba(0,100,210,.20);letter-spacing:.01em}.az-product-purchase .single_add_to_cart_button:hover{background:var(--az-button-hover);box-shadow:0 16px 34px rgba(111,66,193,.24)}.az-product-purchase .single_add_to_cart_button.loading{opacity:.78}.az-product-wishlist{display:inline-flex;align-items:center;justify-content:center;gap:9px;width:100%;min-height:48px;margin-top:12px;border:1px solid #e5e5e5;border-radius:999px;background:#fff;color:#191919;font-size:14px;font-weight:800;cursor:pointer;transition:border-color 220ms ease,color 220ms ease,background 220ms ease,transform 220ms ease}.az-product-wishlist:hover,.az-product-wishlist.is-active{border-color:rgba(0,100,210,.36);background:rgba(0,100,210,.08);color:#0064d2;transform:translateY(-1px)}.az-product-sticky-cart{position:fixed;right:16px;bottom:16px;left:16px;z-index:990;display:none;align-items:center;justify-content:space-between;gap:14px;padding:12px;border:1px solid rgba(229,229,229,.92);border-radius:22px;background:rgba(255,255,255,.94);box-shadow:0 18px 55px rgba(25,25,25,.18);backdrop-filter:blur(14px)}.az-product-sticky-cart__price{display:flex;align-items:baseline;gap:8px;color:#191919;font-size:16px;font-weight:900;line-height:1.1}.az-product-sticky-cart__price del{color:#8a8a8a;font-size:12px;font-weight:700}.az-product-sticky-cart__price ins{color:#0064d2;text-decoration:none}.az-product-sticky-cart__button{flex:0 0 auto;min-height:46px;padding:0 22px;border:0;border-radius:999px;background:var(--az-button-bg);color:#fff;font-size:14px;font-weight:900;cursor:pointer}.az-product-sticky-cart__button:hover{background:var(--az-button-hover)}.woocommerce div.product form.cart .variations{width:100%;margin-bottom:16px}.woocommerce div.product form.cart .variations select{min-height:46px;border:1px solid #e5e5e5;border-radius:14px;background:#fff;color:#191919;padding:0 14px}@media(max-width:640px){.az-product-page{padding-bottom:112px}.az-product-purchase form.cart{grid-template-columns:1fr;gap:12px}.az-product-purchase .quantity{width:100%;grid-template-columns:52px minmax(0,1fr) 52px;min-height:54px}.az-qty-btn{width:52px;height:54px}.az-product-purchase .quantity .qty{height:54px}.az-product-purchase .single_add_to_cart_button{min-height:54px}.az-product-sticky-cart{display:flex}}

/* v0.6.4 — Variable Products */
.az-product-purchase form.variations_form.cart{display:block}.az-product-purchase .variations{width:100%;margin:0 0 20px;border-collapse:separate;border-spacing:0 12px}.az-product-purchase .variations tbody,.az-product-purchase .variations tr,.az-product-purchase .variations th,.az-product-purchase .variations td{display:block;width:100%}.az-product-purchase .variations tr{position:relative;padding:16px;border:1px solid #e5e5e5;border-radius:18px;background:linear-gradient(180deg,#fff 0%,#ffffff 100%)}.az-product-purchase .variations th.label{padding:0 0 10px;text-align:left}.az-product-purchase .variations th.label label{margin:0;color:#191919;font-size:13px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.az-product-purchase .variations td.value{padding:0}.az-product-purchase .variations select{width:100%;min-height:50px;padding:0 44px 0 16px;border:1px solid #e5e5e5;border-radius:999px;background-color:#fafafa;color:#191919;font-size:14px;font-weight:800;outline:none;transition:border-color 220ms ease,box-shadow 220ms ease,background 220ms ease}.az-product-purchase .variations select:focus{border-color:rgba(0,100,210,.55);background:#fff;box-shadow:0 0 0 4px rgba(0,100,210,.12)}.az-product-purchase .reset_variations{display:inline-flex!important;align-items:center;width:fit-content;min-height:32px;margin-top:10px;padding:0 12px;border-radius:999px;background:rgba(0,100,210,.09);color:#0064d2;font-size:12px;font-weight:800;text-decoration:none}.az-product-purchase .reset_variations:hover{background:rgba(0,100,210,.14);color:#191919}.az-product-purchase .single_variation_wrap{margin-top:4px}.az-product-purchase .woocommerce-variation{display:grid;gap:10px;margin-bottom:16px}.az-product-purchase .woocommerce-variation-price .price{display:inline-flex;align-items:baseline;gap:10px;margin:0;color:#191919;font-size:26px;font-weight:900}.az-product-purchase .woocommerce-variation-price .price del{color:#9a9a9a;font-size:16px;font-weight:600}.az-product-purchase .woocommerce-variation-price .price ins{color:#0064d2;text-decoration:none}.az-product-purchase .woocommerce-variation-availability .stock{display:inline-flex;align-items:center;min-height:34px;margin:0;padding:0 12px;border-radius:999px;background:rgba(122,143,77,.12);color:#198754;font-size:13px;font-weight:800}.az-product-purchase .woocommerce-variation-availability .stock.out-of-stock{background:rgba(229,50,56,.12);color:#e53238}.az-product-purchase .woocommerce-variation-description,.az-product-purchase .woocommerce-variation-description p{margin:0;color:#707070;font-size:14px;line-height:1.65}.az-product-purchase .woocommerce-variation-add-to-cart{display:grid;grid-template-columns:132px minmax(0,1fr);gap:14px;align-items:stretch}.az-product-purchase .woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button,.az-product-purchase .single_add_to_cart_button.disabled,.az-product-purchase .single_add_to_cart_button:disabled{opacity:.55;cursor:not-allowed;box-shadow:none}.az-product-purchase .woocommerce-info,.az-product-purchase .woocommerce-message,.az-product-purchase .woocommerce-error{margin:0 0 14px;border-radius:16px}@media(max-width:640px){.az-product-purchase .variations tr{padding:14px;border-radius:16px}.az-product-purchase .variations select{min-height:48px;font-size:13px}.az-product-purchase .woocommerce-variation-add-to-cart{grid-template-columns:1fr;gap:12px}.az-product-purchase .woocommerce-variation-price .price{font-size:24px}}

/* v0.6.5 — Single product trust signals */
.az-product-trust{
  display:grid;
  grid-template-columns: minmax(220px,.85fr) minmax(0,2.15fr);
  gap:20px;
  margin-top:34px;
  padding:22px;
  border-radius:24px;
  background:linear-gradient(135deg,#191919 0%,#2b3238 58%,#3f464d 100%);
  border:1px solid rgba(245,175,2,.18);
  box-shadow:0 22px 60px rgba(25,25,25,.14);
  color:#fff;
}
.az-product-trust__intro{display:flex;flex-direction:column;justify-content:center;gap:8px;padding:6px 10px;color:#fff}
.az-product-trust__eyebrow{font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:#4c94e8}
.az-product-trust__intro strong{max-width:280px;font-family:var(--az-font-bold);font-size:27px;font-weight:600;line-height:1.08;color:#fff}
.az-product-trust__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.az-product-trust__item{display:flex;align-items:center;gap:12px;min-height:82px;padding:14px;border-radius:18px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.13);color:#fff;text-decoration:none;backdrop-filter:blur(12px);transition:transform 220ms ease,background 220ms ease,border-color 220ms ease}
.az-product-trust__item:hover{transform:translateY(-2px);background:rgba(255,255,255,.12);border-color:rgba(245,175,2,.34);color:#fff}
.az-product-trust__icon{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;flex:0 0 34px;border-radius:999px;background:rgba(245,175,2,.18);border:1px solid rgba(245,175,2,.38);color:#4c94e8;font-size:17px;font-weight:900}
.az-product-trust__item span:last-child{display:flex;flex-direction:column;gap:3px;min-width:0}
.az-product-trust__item strong{color:#fff;font-size:13px;font-weight:900;line-height:1.2}
.az-product-trust__item small{color:rgba(255,255,255,.72);font-size:12px;line-height:1.35}
.az-product-trust__stars{color:#00b67a;font-size:15px;letter-spacing:.02em;line-height:1;white-space:nowrap}
.az-product-trust__item--trustpilot{gap:10px}
@media(max-width:1100px){.az-product-trust{grid-template-columns:1fr}.az-product-trust__intro strong{max-width:none}.az-product-trust__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){.az-product-trust{margin-top:24px;padding:16px;border-radius:20px;gap:14px}.az-product-trust__intro{padding:0}.az-product-trust__intro strong{font-size:24px}.az-product-trust__grid{grid-template-columns:1fr;gap:10px}.az-product-trust__item{min-height:72px;border-radius:16px}.az-product-trust__stars{font-size:14px}}

/* v0.6.6 — Product Tabs / Accordion */
.az-product-details{
  margin-top:42px;
  padding:28px;
  border:1px solid #e5e5e5;
  border-radius:28px;
  background:linear-gradient(180deg,#fff 0%,#ffffff 100%);
  box-shadow:0 18px 50px rgba(25,25,25,.06);
}
.az-product-details .woocommerce-tabs{width:100%}
.az-product-details .wc-tabs{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 28px!important;
  padding:6px!important;
  border:1px solid #e5e5e5;
  border-radius:999px;
  background:#fafafa;
  list-style:none!important;
  overflow-x:auto;
  scrollbar-width:none;
}
.az-product-details .wc-tabs::-webkit-scrollbar{display:none}
.az-product-details .wc-tabs::before,.az-product-details .wc-tabs::after{display:none!important}
.az-product-details .wc-tabs li{
  margin:0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  border-radius:999px!important;
  white-space:nowrap;
}
.az-product-details .wc-tabs li::before,.az-product-details .wc-tabs li::after{display:none!important}
.az-product-details .wc-tabs li a{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 20px!important;
  border-radius:999px;
  color:#707070!important;
  font-size:14px;
  font-weight:900;
  text-decoration:none!important;
  transition:background 220ms ease,color 220ms ease,box-shadow 220ms ease;
}
.az-product-details .wc-tabs li.active a,
.az-product-details .wc-tabs li a:hover{
  background:var(--az-button-bg);
  color:#fff!important;
  box-shadow:0 10px 24px rgba(25,25,25,.14);
}
.az-product-details .woocommerce-Tabs-panel{
  display:block;
  margin:0!important;
  padding:0!important;
  color:#707070;
  font-size:15px;
  line-height:1.85;
}
.az-product-details .woocommerce-Tabs-panel h2{
  margin:0 0 18px;
  color:#191919;
  font-family:var(--az-font-bold);
  font-size:34px;
  font-weight:600;
  line-height:1.1;
}
.az-product-details .woocommerce-Tabs-panel p{margin:0 0 16px}
.az-product-details .woocommerce-Tabs-panel p:last-child{margin-bottom:0}
.az-product-details .woocommerce-Tabs-panel table.shop_attributes{
  margin:0;
  border:1px solid #e5e5e5;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border-collapse:separate;
  border-spacing:0;
}
.az-product-details .woocommerce-Tabs-panel table.shop_attributes th,
.az-product-details .woocommerce-Tabs-panel table.shop_attributes td{
  padding:14px 16px!important;
  border:0!important;
  border-bottom:1px solid #eeeeee!important;
  background:#fff!important;
  color:#191919;
  font-size:14px;
}
.az-product-details .woocommerce-Tabs-panel table.shop_attributes tr:last-child th,
.az-product-details .woocommerce-Tabs-panel table.shop_attributes tr:last-child td{border-bottom:0!important}
.az-product-details .woocommerce-Tabs-panel table.shop_attributes th{font-weight:900;color:#707070;width:34%}
.az-product-details .az-tab-mobile-title{display:none}
.az-product-details .az-shipping-note{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.az-product-details .az-shipping-note__item{
  padding:18px;
  border:1px solid #e5e5e5;
  border-radius:18px;
  background:#fff;
}
.az-product-details .az-shipping-note__item strong{display:block;margin-bottom:5px;color:#191919;font-size:14px;font-weight:900}
.az-product-details .az-shipping-note__item small{display:block;color:#707070;font-size:13px;line-height:1.55}
@media(max-width:760px){
  .az-product-details{margin-top:30px;padding:16px;border-radius:22px}
  .az-product-details .wc-tabs{display:none!important}
  .az-product-details .woocommerce-Tabs-panel{
    display:block!important;
    margin:0 0 10px!important;
    padding:0!important;
    border:1px solid #e5e5e5;
    border-radius:18px;
    background:#fff;
    overflow:hidden;
  }
  .az-product-details .woocommerce-Tabs-panel:last-child{margin-bottom:0!important}
  .az-product-details .az-tab-mobile-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    min-height:56px;
    padding:0 16px;
    border:0;
    background:#ffffff;
    color:#191919;
    font-size:14px;
    font-weight:900;
    text-align:left;
    cursor:pointer;
  }
  .az-product-details .az-tab-mobile-title::after{
    content:'+';
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    border-radius:999px;
    background:#f5f5f5;
    color:#0064d2;
    font-size:17px;
    line-height:1;
  }
  .az-product-details .woocommerce-Tabs-panel.is-open .az-tab-mobile-title::after{content:'−'}
  .az-product-details .az-tab-mobile-content{display:none;padding:18px 16px 20px;color:#707070;font-size:14px;line-height:1.8}
  .az-product-details .woocommerce-Tabs-panel.is-open .az-tab-mobile-content{display:block}
  .az-product-details .woocommerce-Tabs-panel h2{display:none;font-size:28px}
  .az-product-details .az-shipping-note{grid-template-columns:1fr;gap:10px}
  .az-product-details .az-shipping-note__item{padding:14px;border-radius:14px}
}


/* v0.6.7 — Reviews System */
.az-product-reviews{
  margin-top:42px;
  padding:30px;
  border:1px solid #e5e5e5;
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 50px rgba(25,25,25,.06);
}
.az-product-reviews__header{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;margin-bottom:24px}
.az-product-reviews__eyebrow{display:inline-flex;margin-bottom:8px;color:#0064d2;font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.az-product-reviews h2{margin:0;color:#191919;font-family:var(--az-font-bold);font-size:38px;font-weight:600;line-height:1.05}
.az-product-reviews__score{display:grid;gap:4px;min-width:178px;padding:16px 18px;border:1px solid #e5e5e5;border-radius:22px;background:#fafafa;text-align:center}
.az-product-reviews__stars{color:#0064d2;letter-spacing:.04em;font-size:16px;line-height:1}.az-product-reviews__score strong{color:#191919;font-size:24px;font-weight:900;line-height:1.1}.az-product-reviews__score small{color:#707070;font-size:12px;font-weight:800}
.az-product-reviews__summary{display:grid;gap:9px;margin-bottom:28px;padding:18px;border:1px solid #e5e5e5;border-radius:22px;background:linear-gradient(180deg,#fff 0%,#ffffff 100%)}
.az-product-reviews__bar{display:grid;grid-template-columns:42px minmax(0,1fr) 34px;align-items:center;gap:10px;color:#707070;font-size:13px;font-weight:800}.az-product-reviews__bar em{font-style:normal;text-align:right;color:#8a8a8a}.az-product-reviews__track{height:8px;border-radius:999px;background:#eeeeee;overflow:hidden}.az-product-reviews__track span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,#0064d2,#0064d2)}
.az-product-reviews__native #reviews{margin:0}.az-product-reviews__native .woocommerce-Reviews-title{display:none}.az-product-reviews__native #comments{margin:0 0 26px}.az-product-reviews__native .commentlist{display:grid;gap:14px;margin:0!important;padding:0!important;list-style:none!important}.az-product-reviews__native .commentlist li{margin:0!important;padding:0!important}.az-product-reviews__native .comment_container{display:grid;grid-template-columns:48px minmax(0,1fr);gap:14px;padding:18px;border:1px solid #e5e5e5;border-radius:22px;background:#fafafa}.az-product-reviews__native .avatar{width:48px!important;height:48px!important;border-radius:999px;object-fit:cover}.az-product-reviews__native .comment-text{margin:0!important;padding:0!important;border:0!important}.az-product-reviews__native .meta{margin:0 0 8px!important;color:#707070;font-size:13px}.az-product-reviews__native .woocommerce-review__author{color:#191919;font-weight:900}.az-product-reviews__native .woocommerce-review__dash{display:none}.az-product-reviews__native .woocommerce-review__published-date{color:#8a8a8a}.az-product-reviews__native .description,.az-product-reviews__native .description p{margin:0;color:#707070;font-size:14px;line-height:1.75}.az-product-reviews__native .star-rating{float:none!important;margin:0 0 8px;color:#0064d2}.az-product-reviews__native .woocommerce-noreviews{margin:0;padding:18px;border:1px dashed #dedede;border-radius:18px;background:#ffffff;color:#707070;font-weight:800}.az-product-reviews__native #review_form_wrapper{margin-top:18px}.az-product-reviews__native #review_form{padding:22px;border:1px solid #e5e5e5;border-radius:24px;background:#fff}.az-product-reviews__native #reply-title{display:block;margin:0 0 14px;color:#191919;font-family:var(--az-font-bold);font-size:30px;font-weight:600}.az-product-reviews__native .comment-form{display:grid;gap:14px;margin:0}.az-product-reviews__native .comment-form label{display:block;margin-bottom:7px;color:#191919;font-size:13px;font-weight:900}.az-product-reviews__native .comment-form input:not([type="checkbox"]),.az-product-reviews__native .comment-form textarea{width:100%;border:1px solid #e5e5e5;border-radius:16px;background:#fafafa;color:#191919;font-size:14px;outline:none}.az-product-reviews__native .comment-form input:not([type="checkbox"]){min-height:48px;padding:0 14px}.az-product-reviews__native .comment-form textarea{min-height:130px;padding:14px;resize:vertical}.az-product-reviews__native .comment-form input:focus,.az-product-reviews__native .comment-form textarea:focus{border-color:rgba(0,100,210,.55);background:#fff;box-shadow:0 0 0 4px rgba(0,100,210,.1)}.az-product-reviews__native .comment-form-rating .stars a{color:#0064d2;text-decoration:none}.az-product-reviews__native .form-submit{margin:4px 0 0}.az-product-reviews__native .form-submit .submit{min-height:50px;padding:0 24px;border:0;border-radius:999px;background:var(--az-button-bg);color:#fff;font-size:14px;font-weight:900;cursor:pointer}.az-product-reviews__native .form-submit .submit:hover{background:var(--az-button-hover)}
@media(max-width:760px){.az-product-reviews{margin-top:30px;padding:18px;border-radius:22px}.az-product-reviews__header{display:grid;gap:16px}.az-product-reviews h2{font-size:32px}.az-product-reviews__score{min-width:0}.az-product-reviews__summary{padding:14px;border-radius:18px}.az-product-reviews__native .comment_container{grid-template-columns:40px minmax(0,1fr);gap:12px;padding:14px;border-radius:18px}.az-product-reviews__native .avatar{width:40px!important;height:40px!important}.az-product-reviews__native #review_form{padding:16px;border-radius:20px}.az-product-reviews__native #reply-title{font-size:26px}}

/* v0.6.8 Related products */
.az-product-related{margin-top:38px;padding:34px;background:linear-gradient(180deg,#fff 0%,#ffffff 100%);border:1px solid #e5e5e5;border-radius:28px;box-shadow:0 18px 44px rgba(25,25,25,.06)}
.az-product-related__header{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:26px;border-bottom:1px solid #e5e5e5;padding-bottom:22px}
.az-product-related__eyebrow{display:block;margin-bottom:8px;color:#0064d2;font-size:12px;font-weight:900;letter-spacing:.14em;text-transform:uppercase}
.az-product-related h2{margin:0;color:#191919;font-family:var(--az-font-bold);font-size:42px;font-weight:600;line-height:1.05}
.az-product-related__header p{max-width:420px;margin:0;color:#707070;font-size:15px;line-height:1.7;text-align:right}
.az-product-related__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
.az-product-related .az-product-card{height:100%;background:#fff}
.az-product-related .az-product-card__media{aspect-ratio:1/1}
@media(max-width:1024px){.az-product-related__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.az-product-related__header{display:grid;align-items:start}.az-product-related__header p{text-align:left;max-width:620px}}
@media(max-width:640px){.az-product-related{margin-top:28px;padding:20px;border-radius:22px}.az-product-related__header{gap:10px;margin-bottom:18px;padding-bottom:16px}.az-product-related h2{font-size:32px}.az-product-related__header p{font-size:14px}.az-product-related__grid{gap:14px}}

/* v0.6.8.2 — Scoped Single Product gallery/button hotfix
   Built from healthy v0.6.8. All rules are scoped to single product pages only
   so Shop Archive, Homepage and Footer remain untouched. */
body.single-product .az-product-main {
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  gap: 48px;
}
body.single-product .az-product-gallery {
  margin-bottom: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 8%, rgba(0,100,210, .16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  box-shadow: 0 20px 46px rgba(25,25,25, .07);
}
body.single-product .az-product-gallery .woocommerce-product-gallery .flex-viewport {
  border-radius: 24px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(229,229,229, .92),
    0 18px 42px rgba(25,25,25, .07);
}
body.single-product .az-product-gallery .woocommerce-product-gallery__image img {
  border-radius: 24px;
  background: #fff;
}
body.single-product .az-product-gallery .flex-control-thumbs img {
  border: 1px solid rgba(229,229,229, .95);
  box-shadow: 0 6px 16px rgba(25,25,25, .04);
}
body.single-product .az-product-gallery .flex-control-thumbs img.flex-active,
body.single-product .az-product-gallery .flex-control-thumbs img:hover {
  border-color: #0064d2;
  box-shadow:
    0 0 0 3px rgba(0,100,210, .14),
    0 12px 26px rgba(25,25,25, .10);
}
body.single-product .az-product-gallery .woocommerce-product-gallery__trigger {
  top: 18px !important;
  right: 18px !important;
  width: 42px !important;
  height: 42px !important;
  display: inline-grid !important;
  place-items: center !important;
  border: 1px solid rgba(229,229,229, .88) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .86) !important;
  box-shadow: 0 14px 34px rgba(25,25,25, .14) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: 0 !important;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
body.single-product .az-product-gallery .woocommerce-product-gallery__trigger:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 16px 38px rgba(25,25,25, .18) !important;
}
body.single-product .az-product-gallery .woocommerce-product-gallery__trigger::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 19px !important;
  height: 19px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #191919 !important;
  transform: none !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3Cpath d='M11 8v6'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3Cpath d='M11 8v6'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E") center / contain no-repeat;
}
body.single-product .az-product-gallery .woocommerce-product-gallery__trigger::after {
  display: none !important;
}
body.single-product.woocommerce div.product .az-product-purchase form.cart .button.single_add_to_cart_button,
body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button,
body.single-product .az-product-purchase .single_add_to_cart_button {
  background: var(--az-button-bg) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 14px 30px rgba(0,100,210, .20) !important;
}
body.single-product.woocommerce div.product .az-product-purchase form.cart .button.single_add_to_cart_button:hover,
body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
body.single-product .az-product-purchase .single_add_to_cart_button:hover {
  background: var(--az-button-hover) !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(111,66,193, .24) !important;
}
@media (max-width: 1024px) {
  body.single-product .az-product-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  body.single-product .az-product-gallery {
    border-radius: 22px;
    margin-bottom: 22px;
    box-shadow: 0 16px 36px rgba(25,25,25, .07);
  }
  body.single-product .az-product-gallery .woocommerce-product-gallery .flex-viewport,
  body.single-product .az-product-gallery .woocommerce-product-gallery__image img {
    border-radius: 18px;
  }
  body.single-product .az-product-gallery .woocommerce-product-gallery__trigger {
    top: 14px !important;
    right: 14px !important;
    width: 38px !important;
    height: 38px !important;
  }
}

/* v0.6.8.3 — Scoped single product gallery/title polish */
body.single-product .az-product-main {
  grid-template-columns: minmax(0, 40fr) minmax(420px, 60fr);
  gap: 44px;
}
body.single-product .az-product-gallery {
  padding: 16px;
}
body.single-product .az-product-gallery .woocommerce-product-gallery {
  display: block;
}
body.single-product .az-product-gallery .woocommerce-product-gallery .flex-viewport {
  width: 100%;
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(229,229,229,.9);
}
body.single-product .az-product-gallery .woocommerce-product-gallery__image a {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}
body.single-product .az-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
body.single-product .az-product-gallery .woocommerce-product-gallery .flex-control-thumbs {
  display: flex !important;
  flex-direction: row;
  gap: 12px;
  max-height: none;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 14px 0 0 !important;
  padding: 0 2px 4px !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(25,25,25,.22) transparent;
}
body.single-product .az-product-gallery .flex-control-thumbs li {
  flex: 0 0 76px;
  width: 76px !important;
}
body.single-product .az-product-gallery .flex-control-thumbs img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(229,229,229,.95);
}
body.single-product .az-product-summary .product_title,
body.single-product .az-product-summary h1 {
  font-size: clamp(34px, 3.1vw, 46px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
body.single-product .az-product-summary__inner {
  padding: 32px;
}
body.single-product .az-product-purchase .single_add_to_cart_button,
body.single-product.woocommerce div.product form.cart .button,
body.single-product .woocommerce button.button.single_add_to_cart_button {
  background: var(--az-button-bg) !important;
  color: #fff !important;
}
body.single-product .az-product-purchase .single_add_to_cart_button:hover,
body.single-product.woocommerce div.product form.cart .button:hover,
body.single-product .woocommerce button.button.single_add_to_cart_button:hover {
  background: var(--az-button-hover) !important;
}
@media (max-width: 1180px) {
  body.single-product .az-product-main {
    grid-template-columns: minmax(0, 44fr) minmax(380px, 56fr);
    gap: 34px;
  }
}
@media (max-width: 1024px) {
  body.single-product .az-product-main { grid-template-columns: 1fr; }
  body.single-product .az-product-summary .product_title,
  body.single-product .az-product-summary h1 { font-size: clamp(34px, 8vw, 46px); }
}
@media (max-width: 640px) {
  body.single-product .az-product-gallery { padding: 10px; }
  body.single-product .az-product-gallery .woocommerce-product-gallery__image img,
  body.single-product .az-product-gallery .woocommerce-product-gallery .flex-viewport { border-radius: 16px; }
  body.single-product .az-product-gallery .flex-control-thumbs li { flex-basis: 64px; width: 64px !important; }
  body.single-product .az-product-summary .product_title,
  body.single-product .az-product-summary h1 { font-size: 34px; }
  body.single-product .az-product-summary__inner { padding: 24px; }
}

/* v0.6.8.4 — Single product title scale only */
body.single-product .az-product-summary .product_title,
body.single-product .az-product-summary h1 {
  font-size: 24px !important;
  line-height: 1.5 !important;
  letter-spacing: -0.005em;
  margin-top: 0;
  margin-bottom: 10px;
}
body.single-product .az-product-summary__eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.35;
}
body.single-product .az-product-summary__rating-row { margin-bottom: 14px; }
body.single-product .az-product-summary__price-row { margin-bottom: 16px; }
body.single-product .az-product-summary__excerpt {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
body.single-product .az-product-summary__excerpt .woocommerce-product-details__short-description,
body.single-product .az-product-summary__excerpt .woocommerce-product-details__short-description p {
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  body.single-product .az-product-summary .product_title,
  body.single-product .az-product-summary h1 {
    font-size: 24px !important;
    line-height: 1.5 !important;
  }
}
@media (max-width: 640px) {
  body.single-product .az-product-summary .product_title,
  body.single-product .az-product-summary h1 {
    font-size: 24px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px;
  }
  body.single-product .az-product-summary__inner { padding: 22px; }
}

/* v0.6.8.5 — Cart page phase 1, scoped shell only */
body.woocommerce-cart .az-cart-page {
  padding: 42px 0 72px;
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 44%, #fff 100%);
}
body.woocommerce-cart .az-cart-page__container { max-width: 1220px; }
body.woocommerce-cart .az-cart-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #707070;
  font-size: 13px;
  font-weight: 700;
}
body.woocommerce-cart .az-cart-breadcrumb a { color: #585f65; text-decoration: none; }
body.woocommerce-cart .az-cart-breadcrumb a:hover { color: #0064d2; }
body.woocommerce-cart .az-cart-hero {
  margin-bottom: 26px;
  padding: 28px;
  border: 1px solid rgba(229,229,229, .95);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 70px rgba(25,25,25,.08);
  backdrop-filter: blur(16px);
}
body.woocommerce-cart .az-cart-hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
body.woocommerce-cart .az-cart-hero__copy { max-width: 660px; }
body.woocommerce-cart .az-cart-hero__eyebrow,
body.woocommerce-cart .az-cart-panel__head span,
body.woocommerce-cart .az-cart-empty__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: #0064d2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.woocommerce-cart .az-cart-hero__title {
  margin: 0;
  color: #191919;
  font-family: var(--az-font-bold);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.02em;
}
body.woocommerce-cart .az-cart-hero__text {
  max-width: 520px;
  margin: 12px 0 0;
  color: #707070;
  font-size: 15px;
  line-height: 1.75;
}
body.woocommerce-cart .az-cart-hero__meta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 112px;
  border-radius: 24px;
  background: #191919;
  color: #fff;
  box-shadow: 0 18px 44px rgba(25,25,25,.18);
}
body.woocommerce-cart .az-cart-hero__meta strong { font-size: 34px; line-height: 1; }
body.woocommerce-cart .az-cart-hero__meta span { margin-top: 6px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
body.woocommerce-cart .az-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 24px;
  align-items: start;
}
body.woocommerce-cart .az-cart-panel,
body.woocommerce-cart .az-cart-empty-shell {
  border: 1px solid rgba(229,229,229, .95);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(25,25,25,.07);
  overflow: hidden;
}
body.woocommerce-cart .az-cart-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(229,229,229, .88);
  background: linear-gradient(180deg, #fff 0%, #ffffff 100%);
}
body.woocommerce-cart .az-cart-panel__head h2 {
  margin: 0;
  color: #191919;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}
body.woocommerce-cart .az-cart-panel__head a {
  color: #585f65;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
body.woocommerce-cart .az-cart-panel__head a:hover { color: #0064d2; }
body.woocommerce-cart .az-cart-form { margin: 0; }
body.woocommerce-cart .az-cart-table.shop_table {
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}
body.woocommerce-cart .az-cart-table.shop_table th {
  padding: 15px 14px;
  border: 0;
  border-bottom: 1px solid rgba(229,229,229,.9);
  color: #707070;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.woocommerce-cart .az-cart-table.shop_table td {
  padding: 18px 14px;
  border: 0;
  border-bottom: 1px solid rgba(229,229,229,.72);
  vertical-align: middle;
}
body.woocommerce-cart .az-cart-table .product-thumbnail img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(229,229,229,.95);
}
body.woocommerce-cart .az-cart-table .product-name a {
  color: #191919;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  text-decoration: none;
}
body.woocommerce-cart .az-cart-table .product-name a:hover { color: #0064d2; }
body.woocommerce-cart .az-cart-table .variation,
body.woocommerce-cart .az-cart-table .backorder_notification { margin-top: 8px; color: #707070; font-size: 12px; }
body.woocommerce-cart .az-cart-table .product-price,
body.woocommerce-cart .az-cart-table .product-subtotal { color: #191919; font-weight: 900; }
body.woocommerce-cart .az-cart-table .product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fff1f2;
  color: #0053ad !important;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}
body.woocommerce-cart .az-cart-table .product-remove a.remove:hover { background: var(--az-red); color: #fff !important; }
body.woocommerce-cart .az-cart-table .quantity .qty {
  width: 76px;
  min-height: 42px;
  border: 1px solid rgba(229,229,229,.95);
  border-radius: 14px;
  background: #ffffff;
  color: #191919;
  font-weight: 900;
  text-align: center;
}
body.woocommerce-cart .az-cart-table td.actions {
  padding: 20px 24px;
  background: #ffffff;
}
body.woocommerce-cart .az-cart-table td.actions .coupon { display: inline-flex; gap: 10px; margin-right: 12px; }
body.woocommerce-cart .az-cart-table td.actions .input-text {
  min-height: 44px;
  border: 1px solid rgba(229,229,229,.95);
  border-radius: 14px;
  padding: 0 14px;
  background: #fff;
}
body.woocommerce-cart .az-cart-table td.actions .button,
body.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--az-button-bg) !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 44px;
  text-decoration: none;
}
body.woocommerce-cart .az-cart-table td.actions .button:hover,
body.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button:hover { background: var(--az-button-hover) !important; }
body.woocommerce-cart .az-cart-sidebar { position: sticky; top: 110px; }
body.woocommerce-cart .az-cart-panel--summary .cart-collaterals { padding: 0 24px 24px; }
body.woocommerce-cart .az-cart-panel--summary .cart_totals { float: none; width: 100%; }
body.woocommerce-cart .az-cart-panel--summary .cart_totals h2 { display: none; }
body.woocommerce-cart .az-cart-panel--summary .shop_table { border: 0; margin: 0; }
body.woocommerce-cart .az-cart-panel--summary .shop_table th,
body.woocommerce-cart .az-cart-panel--summary .shop_table td {
  border: 0;
  border-bottom: 1px solid rgba(229,229,229,.72);
  padding: 15px 0;
  color: #191919;
}
body.woocommerce-cart .az-cart-panel--summary .shop_table th { color: #707070; font-size: 13px; font-weight: 900; }
body.woocommerce-cart .az-cart-panel--summary .order-total th,
body.woocommerce-cart .az-cart-panel--summary .order-total td { font-size: 18px; }
body.woocommerce-cart .cart_totals .wc-proceed-to-checkout { padding: 18px 0 0; }
body.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button { display: flex; align-items: center; justify-content: center; width: 100%; margin: 0; }
body.woocommerce-cart .az-cart-empty-shell { padding: 58px 24px; text-align: center; }
body.woocommerce-cart .az-cart-empty { max-width: 480px; margin: 0 auto; }
body.woocommerce-cart .az-cart-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #fff5e7;
  color: #0064d2;
  box-shadow: inset 0 0 0 1px rgba(245,175,2,.45);
}
body.woocommerce-cart .az-cart-empty h2 {
  margin: 0;
  color: #191919;
  font-family: var(--az-font-bold);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
}
body.woocommerce-cart .az-cart-empty p { margin: 12px auto 22px; color: #707070; line-height: 1.7; }
body.woocommerce-cart .az-cart-empty__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--az-button-bg);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
body.woocommerce-cart .az-cart-empty__button:hover { background: var(--az-button-hover); color: #fff; }
@media (max-width: 980px) {
  body.woocommerce-cart .az-cart-layout { grid-template-columns: 1fr; }
  body.woocommerce-cart .az-cart-sidebar { position: static; }
}
@media (max-width: 720px) {
  body.woocommerce-cart .az-cart-page { padding: 24px 0 48px; }
  body.woocommerce-cart .az-cart-hero { padding: 22px; border-radius: 22px; }
  body.woocommerce-cart .az-cart-hero__content { align-items: flex-start; }
  body.woocommerce-cart .az-cart-hero__meta { min-width: 78px; min-height: 78px; border-radius: 18px; }
  body.woocommerce-cart .az-cart-hero__meta strong { font-size: 24px; }
  body.woocommerce-cart .az-cart-panel,
  body.woocommerce-cart .az-cart-empty-shell { border-radius: 22px; }
  body.woocommerce-cart .az-cart-panel__head { padding: 18px; }
  body.woocommerce-cart .az-cart-table.shop_table thead { display: none; }
  body.woocommerce-cart .az-cart-table.shop_table tr.cart_item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px 14px;
    padding: 18px;
    border-bottom: 1px solid rgba(229,229,229,.72);
  }
  body.woocommerce-cart .az-cart-table.shop_table tr.cart_item td { display: block; padding: 0; border: 0; }
  body.woocommerce-cart .az-cart-table .product-remove { grid-column: 2; grid-row: 1; justify-self: end; }
  body.woocommerce-cart .az-cart-table .product-thumbnail { grid-column: 1; grid-row: 1 / span 4; }
  body.woocommerce-cart .az-cart-table .product-thumbnail img { width: 72px; height: 72px; }
  body.woocommerce-cart .az-cart-table .product-name { grid-column: 2; padding-right: 38px !important; }
  body.woocommerce-cart .az-cart-table .product-price,
  body.woocommerce-cart .az-cart-table .product-quantity,
  body.woocommerce-cart .az-cart-table .product-subtotal { grid-column: 2; }
  body.woocommerce-cart .az-cart-table .product-price::before,
  body.woocommerce-cart .az-cart-table .product-quantity::before,
  body.woocommerce-cart .az-cart-table .product-subtotal::before {
    content: attr(data-title) ": ";
    color: #707070;
    font-size: 12px;
    font-weight: 900;
  }
  body.woocommerce-cart .az-cart-table td.actions { padding: 18px; }
  body.woocommerce-cart .az-cart-table td.actions .coupon { display: grid; grid-template-columns: 1fr; width: 100%; margin: 0 0 12px; }
  body.woocommerce-cart .az-cart-table td.actions .button { width: 100%; }
}

/* v0.6.8.6 — Cart page phase 2, scoped item-row polish only */
body.woocommerce-cart .az-cart-table.shop_table{border-spacing:0 12px;padding:12px 18px 18px;background:transparent}body.woocommerce-cart .az-cart-table.shop_table thead th{background:transparent;border-bottom:0;padding-top:4px;padding-bottom:8px}body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item{position:relative;border-radius:22px;background:#ffffff;box-shadow:inset 0 0 0 1px rgba(229,229,229,.9),0 14px 34px rgba(25,25,25,.045);transition:transform .18s ease,box-shadow .18s ease,background .18s ease}body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item:hover{transform:translateY(-1px);background:#fff;box-shadow:inset 0 0 0 1px rgba(245,175,2,.52),0 18px 42px rgba(25,25,25,.07)}body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item td{border-bottom:0;padding-top:18px;padding-bottom:18px;background:transparent}body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item td:first-child{border-top-left-radius:22px;border-bottom-left-radius:22px}body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item td:last-child{border-top-right-radius:22px;border-bottom-right-radius:22px}body.woocommerce-cart .az-cart-table .product-thumbnail{width:92px}body.woocommerce-cart .az-cart-table .product-thumbnail a{display:inline-flex;border-radius:18px;overflow:hidden}body.woocommerce-cart .az-cart-table .product-thumbnail img{width:86px;height:86px;border-radius:18px;box-shadow:inset 0 0 0 1px rgba(229,229,229,.95),0 10px 24px rgba(25,25,25,.08)}body.woocommerce-cart .az-cart-item__info{display:grid;gap:6px;min-width:0}body.woocommerce-cart .az-cart-item__label{color:#0064d2;font-size:10px;font-weight:900;letter-spacing:.12em;line-height:1.2;text-transform:uppercase}body.woocommerce-cart .az-cart-item__title a,body.woocommerce-cart .az-cart-table .product-name a{display:inline;color:#191919;font-size:16px;font-weight:900;line-height:1.45;text-decoration:none}body.woocommerce-cart .az-cart-item__meta:empty{display:none}body.woocommerce-cart .az-cart-table .variation{display:flex;flex-wrap:wrap;gap:6px 10px;margin:0}body.woocommerce-cart .az-cart-table .variation dt,body.woocommerce-cart .az-cart-table .variation dd{margin:0;color:#707070;font-size:12px;line-height:1.5}body.woocommerce-cart .az-cart-table .variation dt{font-weight:900}body.woocommerce-cart .az-cart-table .variation dd p{margin:0}body.woocommerce-cart .az-cart-table .product-price,body.woocommerce-cart .az-cart-table .product-subtotal{color:#191919;font-size:14px;font-weight:900;white-space:nowrap}body.woocommerce-cart .az-cart-table .product-subtotal{color:#585f65}body.woocommerce-cart .az-cart-table .product-remove{width:48px;text-align:center}body.woocommerce-cart .az-cart-table .product-remove a.remove.az-cart-item__remove{width:38px;height:38px;border:1px solid rgba(0,100,210,.18);background:#fff;color:#0053ad!important;font-size:0}body.woocommerce-cart .az-cart-table .product-remove a.remove.az-cart-item__remove:hover{border-color:var(--az-red);background:var(--az-red);color:#fff!important}body.woocommerce-cart .az-cart-table .product-remove a.remove.az-cart-item__remove .az-icon{display:block;pointer-events:none}@media (max-width:720px){body.woocommerce-cart .az-cart-table.shop_table{display:block;padding:0;border-spacing:0}body.woocommerce-cart .az-cart-table.shop_table tbody,body.woocommerce-cart .az-cart-table.shop_table tr,body.woocommerce-cart .az-cart-table.shop_table td{width:100%}body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item{margin:14px;border-radius:22px;border-bottom:0;box-shadow:inset 0 0 0 1px rgba(229,229,229,.9),0 14px 34px rgba(25,25,25,.05)}body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item:hover{transform:none}body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item td:first-child,body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item td:last-child{border-radius:0}body.woocommerce-cart .az-cart-table .product-thumbnail img{width:72px;height:72px;border-radius:16px}body.woocommerce-cart .az-cart-item__label{display:none}body.woocommerce-cart .az-cart-item__title a,body.woocommerce-cart .az-cart-table .product-name a{font-size:15px}body.woocommerce-cart .az-cart-table .product-remove a.remove.az-cart-item__remove{width:34px;height:34px}body.woocommerce-cart .az-cart-table .product-price,body.woocommerce-cart .az-cart-table .product-subtotal{font-size:13px}}

/* v0.6.8.9 — Cart responsive pass, scoped to cart page only */
@media (max-width: 980px) {
  body.woocommerce-cart .az-cart-page__container {
    max-width: 100%;
  }

  body.woocommerce-cart .az-cart-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  body.woocommerce-cart .az-cart-sidebar {
    position: static;
    top: auto;
  }

  body.woocommerce-cart .az-cart-panel--summary .cart-collaterals {
    padding: 0 20px 20px;
  }
}

@media (max-width: 720px) {
  body.woocommerce-cart .az-cart-page {
    padding: 18px 0 42px;
    overflow-x: hidden;
  }

  body.woocommerce-cart .az-container.az-cart-page__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.woocommerce-cart .az-cart-breadcrumb {
    margin-bottom: 12px;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  body.woocommerce-cart .az-cart-hero {
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 22px;
  }

  body.woocommerce-cart .az-cart-hero__content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 14px;
  }

  body.woocommerce-cart .az-cart-hero__title {
    font-size: clamp(32px, 11vw, 42px);
    line-height: 1.05;
  }

  body.woocommerce-cart .az-cart-hero__text {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.65;
  }

  body.woocommerce-cart .az-cart-hero__meta {
    min-width: 66px;
    min-height: 66px;
    border-radius: 18px;
  }

  body.woocommerce-cart .az-cart-hero__meta strong { font-size: 22px; }
  body.woocommerce-cart .az-cart-hero__meta span { font-size: 10px; }

  body.woocommerce-cart .az-cart-panel,
  body.woocommerce-cart .az-cart-empty-shell {
    border-radius: 22px;
  }

  body.woocommerce-cart .az-cart-panel__head {
    align-items: flex-start;
    padding: 16px;
    gap: 10px;
  }

  body.woocommerce-cart .az-cart-panel__head h2 {
    font-size: 18px;
  }

  body.woocommerce-cart .az-cart-panel__head a {
    white-space: nowrap;
    font-size: 12px;
  }

  body.woocommerce-cart .az-cart-table.shop_table,
  body.woocommerce-cart .az-cart-table.shop_table tbody {
    display: block;
    width: 100%;
  }

  body.woocommerce-cart .az-cart-table.shop_table thead {
    display: none;
  }

  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-areas:
      "thumb name"
      "thumb price"
      "thumb qty"
      "thumb subtotal";
    gap: 8px 12px;
    width: auto;
    margin: 12px;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
  }

  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item td {
    display: block;
    width: auto;
    min-width: 0;
    padding: 0 !important;
    border: 0;
    background: transparent;
    text-align: left !important;
  }

  body.woocommerce-cart .az-cart-table .product-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: auto;
  }

  body.woocommerce-cart .az-cart-table .product-thumbnail {
    grid-area: thumb;
    width: 76px;
  }

  body.woocommerce-cart .az-cart-table .product-thumbnail a,
  body.woocommerce-cart .az-cart-table .product-thumbnail img {
    width: 76px;
    height: 76px;
    border-radius: 16px;
  }

  body.woocommerce-cart .az-cart-table .product-name {
    grid-area: name;
    padding-right: 38px !important;
  }

  body.woocommerce-cart .az-cart-item__title a,
  body.woocommerce-cart .az-cart-table .product-name a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
  }

  body.woocommerce-cart .az-cart-table .variation {
    margin-top: 4px;
  }

  body.woocommerce-cart .az-cart-table .product-price { grid-area: price; }
  body.woocommerce-cart .az-cart-table .product-quantity { grid-area: qty; }
  body.woocommerce-cart .az-cart-table .product-subtotal { grid-area: subtotal; }

  body.woocommerce-cart .az-cart-table .product-price,
  body.woocommerce-cart .az-cart-table .product-quantity,
  body.woocommerce-cart .az-cart-table .product-subtotal {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }

  body.woocommerce-cart .az-cart-table .product-price::before,
  body.woocommerce-cart .az-cart-table .product-quantity::before,
  body.woocommerce-cart .az-cart-table .product-subtotal::before {
    content: attr(data-title);
    color: #707070;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  body.woocommerce-cart .az-cart-table .quantity .qty {
    width: 68px;
    min-height: 38px;
    border-radius: 12px;
  }

  body.woocommerce-cart .az-cart-table.shop_table tr:not(.az-cart-item) {
    display: block;
    width: 100%;
  }

  body.woocommerce-cart .az-cart-table.shop_table tr:not(.az-cart-item) td.actions {
    display: grid;
    gap: 12px;
    width: 100%;
    padding: 16px !important;
    background: #ffffff;
  }

  body.woocommerce-cart .az-cart-table td.actions .coupon {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin: 0;
  }

  body.woocommerce-cart .az-cart-table td.actions .input-text,
  body.woocommerce-cart .az-cart-table td.actions .button {
    width: 100%;
  }

  body.woocommerce-cart .az-cart-panel--summary .cart-collaterals {
    padding: 0 16px 16px;
  }

  body.woocommerce-cart .az-cart-panel--summary .shop_table th,
  body.woocommerce-cart .az-cart-panel--summary .shop_table td {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: left;
  }

  body.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button {
    min-height: 48px;
    line-height: 48px;
  }
}

@media (max-width: 420px) {
  body.woocommerce-cart .az-container.az-cart-page__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.woocommerce-cart .az-cart-hero__content {
    grid-template-columns: 1fr;
  }

  body.woocommerce-cart .az-cart-hero__meta {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
  }

  body.woocommerce-cart .az-cart-hero__meta span {
    margin-top: 0;
  }

  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px 10px;
    margin: 10px;
    padding: 12px;
  }

  body.woocommerce-cart .az-cart-table .product-thumbnail,
  body.woocommerce-cart .az-cart-table .product-thumbnail a,
  body.woocommerce-cart .az-cart-table .product-thumbnail img {
    width: 64px;
    height: 64px;
  }
}

/* v0.6.8.10 — Cart mobile card refinement, scoped to cart page only */
@media (max-width: 720px) {
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item td::before,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-name::before,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-thumbnail::before,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-remove::before { content: none !important; display: none !important; }
  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item { grid-template-columns: 82px minmax(0, 1fr); grid-template-areas: "thumb name" "thumb price" "thumb qty" "thumb subtotal"; align-items: start; gap: 9px 13px; margin: 12px 14px; padding: 14px 14px 15px; text-align: left; }
  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item td,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item td { display: block !important; float: none !important; clear: none !important; width: auto !important; min-width: 0; text-align: left !important; }
  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item .product-thumbnail,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-thumbnail { display: block !important; grid-area: thumb; width: 82px !important; }
  body.woocommerce-cart .az-cart-table .product-thumbnail a,
  body.woocommerce-cart .az-cart-table .product-thumbnail img { display: block !important; width: 82px !important; height: 82px !important; border-radius: 17px; }
  body.woocommerce-cart .az-cart-table .product-name { grid-area: name; padding-right: 42px !important; }
  body.woocommerce-cart .az-cart-item__info { gap: 3px; text-align: left; }
  body.woocommerce-cart .az-cart-item__title,
  body.woocommerce-cart .az-cart-item__title a,
  body.woocommerce-cart .az-cart-table .product-name a { text-align: left !important; }
  body.woocommerce-cart .az-cart-item__title a,
  body.woocommerce-cart .az-cart-table .product-name a { display: -webkit-box !important; -webkit-line-clamp: 2; -webkit-box-orient: vertical; max-width: 100%; overflow: hidden; color: #191919; font-size: 14px; line-height: 1.35; word-break: normal; overflow-wrap: anywhere; }
  body.woocommerce-cart .az-cart-table .product-price,
  body.woocommerce-cart .az-cart-table .product-quantity,
  body.woocommerce-cart .az-cart-table .product-subtotal { display: flex !important; align-items: center; justify-content: space-between; gap: 10px; width: 100% !important; color: #191919; font-size: 13px; line-height: 1.2; }
  body.woocommerce-cart .az-cart-table .product-price::before,
  body.woocommerce-cart .az-cart-table .product-quantity::before,
  body.woocommerce-cart .az-cart-table .product-subtotal::before { content: attr(data-title) !important; display: inline-block !important; flex: 0 0 auto; color: #707070; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
  body.woocommerce-cart .az-cart-table .quantity .qty { width: 64px; min-height: 36px; padding: 0 8px; border-radius: 13px; font-size: 14px; }
  body.woocommerce-cart .az-cart-table .product-remove { position: absolute; top: 12px; right: 12px; z-index: 3; display: block !important; width: auto !important; }
  body.woocommerce-cart .az-cart-table .product-remove a.remove.az-cart-item__remove { width: 34px; height: 34px; background: rgba(255,255,255,.92); box-shadow: 0 8px 18px rgba(25,25,25,.08); }
}
@media (max-width: 420px) {
  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item { grid-template-columns: 72px minmax(0, 1fr); gap: 8px 11px; margin: 10px; padding: 12px; }
  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item .product-thumbnail,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-thumbnail,
  body.woocommerce-cart .az-cart-table .product-thumbnail a,
  body.woocommerce-cart .az-cart-table .product-thumbnail img { width: 72px !important; height: 72px !important; }
  body.woocommerce-cart .az-cart-item__title a,
  body.woocommerce-cart .az-cart-table .product-name a { font-size: 13px; }
}


/* v0.6.9.0 — Cart mobile polish, scoped to Cart only */
@media (max-width: 768px) {
  body.woocommerce-cart .az-cart-page {
    overflow-x: hidden;
  }

  body.woocommerce-cart .az-cart-page__container {
    max-width: 100%;
  }

  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item td::before {
    content: none !important;
    display: none !important;
  }

  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-areas:
      "thumb name"
      "price price"
      "qty qty"
      "subtotal subtotal";
    align-items: start;
    gap: 12px;
    width: auto !important;
    margin: 14px 14px 16px !important;
    padding: 14px !important;
    border: 0 !important;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(229,229,229, .92), 0 16px 36px rgba(25,25,25, .06);
  }

  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item td,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item td {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    text-align: left !important;
  }

  body.woocommerce-cart .az-cart-table .product-thumbnail {
    grid-area: thumb !important;
    width: 92px !important;
  }

  body.woocommerce-cart .az-cart-table .product-thumbnail a,
  body.woocommerce-cart .az-cart-table .product-thumbnail img {
    display: block !important;
    width: 92px !important;
    height: 92px !important;
    border-radius: 18px;
  }

  body.woocommerce-cart .az-cart-table .product-name {
    grid-area: name !important;
    padding-right: 40px !important;
  }

  body.woocommerce-cart .az-cart-item__info {
    gap: 5px;
  }

  body.woocommerce-cart .az-cart-item__title a,
  body.woocommerce-cart .az-cart-table .product-name a {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  body.woocommerce-cart .az-cart-table .variation,
  body.woocommerce-cart .az-cart-table .backorder_notification {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.45;
  }

  body.woocommerce-cart .az-cart-table .product-price { grid-area: price !important; }
  body.woocommerce-cart .az-cart-table .product-quantity { grid-area: qty !important; }
  body.woocommerce-cart .az-cart-table .product-subtotal { grid-area: subtotal !important; }

  body.woocommerce-cart .az-cart-table .product-price,
  body.woocommerce-cart .az-cart-table .product-quantity,
  body.woocommerce-cart .az-cart-table .product-subtotal {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 42px;
    padding: 10px 12px !important;
    border-radius: 15px;
    background: rgba(255, 255, 255, .78) !important;
    box-shadow: inset 0 0 0 1px rgba(229,229,229, .78);
    color: #191919;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
  }

  body.woocommerce-cart .az-cart-table .product-price::before,
  body.woocommerce-cart .az-cart-table .product-quantity::before,
  body.woocommerce-cart .az-cart-table .product-subtotal::before {
    content: attr(data-title) !important;
    display: inline-flex !important;
    flex: 0 0 auto;
    color: #707070;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
  }

  body.woocommerce-cart .az-cart-table .quantity,
  body.woocommerce-cart .az-cart-table .quantity .qty {
    margin: 0;
  }

  body.woocommerce-cart .az-cart-table .quantity .qty {
    width: 66px;
    min-height: 34px;
    border-radius: 12px;
    background: #ffffff;
    font-size: 14px;
  }

  body.woocommerce-cart .az-cart-table .product-remove {
    position: absolute !important;
    top: 12px;
    right: 12px;
    z-index: 4;
    display: block !important;
    width: auto !important;
  }

  body.woocommerce-cart .az-cart-table .product-remove a.remove.az-cart-item__remove {
    width: 34px;
    height: 34px;
    border-color: rgba(0,100,210, .16);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 18px rgba(25,25,25, .08);
  }

  body.woocommerce-cart .az-cart-table.shop_table tr:not(.az-cart-item) td.actions {
    padding: 14px !important;
  }
}

@media (max-width: 420px) {
  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    margin: 10px 10px 14px !important;
    padding: 12px !important;
    border-radius: 20px;
  }

  body.woocommerce-cart .az-cart-table .product-thumbnail,
  body.woocommerce-cart .az-cart-table .product-thumbnail a,
  body.woocommerce-cart .az-cart-table .product-thumbnail img {
    width: 76px !important;
    height: 76px !important;
    border-radius: 16px;
  }

  body.woocommerce-cart .az-cart-table .product-name {
    padding-right: 38px !important;
  }

  body.woocommerce-cart .az-cart-item__title a,
  body.woocommerce-cart .az-cart-table .product-name a {
    font-size: 13px;
    line-height: 1.4;
  }

  body.woocommerce-cart .az-cart-table .product-price,
  body.woocommerce-cart .az-cart-table .product-quantity,
  body.woocommerce-cart .az-cart-table .product-subtotal {
    min-height: 40px;
    padding: 9px 10px !important;
    border-radius: 14px;
    font-size: 12px;
  }

  body.woocommerce-cart .az-cart-table .product-remove {
    top: 10px;
    right: 10px;
  }

  body.woocommerce-cart .az-cart-table .product-remove a.remove.az-cart-item__remove {
    width: 32px;
    height: 32px;
  }
}

/* v0.6.9.3 — Cart item mobile layout fix, scoped to Cart only */
@media (max-width: 768px) {
  body.woocommerce-cart .az-cart-table.shop_table,
  body.woocommerce-cart .az-cart-table.shop_table tbody {
    display: block !important;
    width: 100% !important;
  }

  body.woocommerce-cart .az-cart-table.shop_table thead {
    display: none !important;
  }

  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item {
    display: grid !important;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas:
      "thumb name"
      "price price"
      "qty qty"
      "subtotal subtotal";
    gap: 10px 14px;
    position: relative;
    width: auto !important;
    margin: 12px 12px 14px !important;
    padding: 14px !important;
    border: 0 !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    box-shadow: inset 0 0 0 1px rgba(229,229,229, .92), 0 14px 30px rgba(25,25,25, .055) !important;
  }

  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item td,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item td {
    float: none !important;
    clear: none !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    text-align: left !important;
  }

  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item td::before,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-thumbnail::before,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-name::before,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-remove::before {
    content: none !important;
    display: none !important;
  }

  body.woocommerce-cart .az-cart-table .product-thumbnail,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-thumbnail {
    display: block !important;
    grid-area: thumb !important;
    width: 86px !important;
  }

  body.woocommerce-cart .az-cart-table .product-thumbnail a,
  body.woocommerce-cart .az-cart-table .product-thumbnail img {
    display: block !important;
    width: 86px !important;
    height: 86px !important;
    border-radius: 18px !important;
    object-fit: cover !important;
  }

  body.woocommerce-cart .az-cart-table .product-name,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-name {
    display: block !important;
    grid-area: name !important;
    padding-right: 42px !important;
    align-self: start !important;
  }

  body.woocommerce-cart .az-cart-item__label {
    display: none !important;
  }

  body.woocommerce-cart .az-cart-item__info {
    display: block !important;
    gap: 0 !important;
    min-width: 0 !important;
  }

  body.woocommerce-cart .az-cart-item__title,
  body.woocommerce-cart .az-cart-item__title a,
  body.woocommerce-cart .az-cart-table .product-name a {
    display: -webkit-box !important;
    max-width: 100% !important;
    overflow: hidden !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    color: #191919 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.42 !important;
    text-align: left !important;
    text-decoration: none !important;
    overflow-wrap: anywhere !important;
  }

  body.woocommerce-cart .az-cart-table .variation,
  body.woocommerce-cart .az-cart-table .backorder_notification {
    margin-top: 5px !important;
    color: #707070 !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  body.woocommerce-cart .az-cart-table .product-remove,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-remove {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 4 !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
  }

  body.woocommerce-cart .az-cart-table .product-remove a.remove.az-cart-item__remove {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(0,100,210, .18) !important;
    background: rgba(255,255,255,.96) !important;
    color: #0053ad !important;
    box-shadow: 0 8px 18px rgba(25,25,25,.08) !important;
  }

  body.woocommerce-cart .az-cart-table .product-price { grid-area: price !important; }
  body.woocommerce-cart .az-cart-table .product-quantity { grid-area: qty !important; }
  body.woocommerce-cart .az-cart-table .product-subtotal { grid-area: subtotal !important; }

  body.woocommerce-cart .az-cart-table .product-price,
  body.woocommerce-cart .az-cart-table .product-quantity,
  body.woocommerce-cart .az-cart-table .product-subtotal,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-price,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-quantity,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item .product-subtotal {
    display: grid !important;
    grid-template-columns: minmax(82px, 1fr) auto !important;
    align-items: center !important;
    column-gap: 12px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #191919 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
  }

  body.woocommerce-cart .az-cart-table .product-price::before,
  body.woocommerce-cart .az-cart-table .product-quantity::before,
  body.woocommerce-cart .az-cart-table .product-subtotal::before {
    content: attr(data-title) !important;
    display: block !important;
    color: #707070 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .075em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
  }

  body.woocommerce-cart .az-cart-item__value,
  body.woocommerce-cart .az-cart-item__qty {
    justify-self: end !important;
    text-align: right !important;
  }

  body.woocommerce-cart .az-cart-table .quantity {
    display: block !important;
    margin: 0 !important;
  }

  body.woocommerce-cart .az-cart-table .quantity .qty {
    width: 58px !important;
    min-width: 58px !important;
    max-width: 58px !important;
    min-height: 34px !important;
    padding: 0 8px !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: #191919 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-align: center !important;
    box-shadow: inset 0 0 0 1px rgba(229,229,229, .9) !important;
  }
}

@media (max-width: 420px) {
  body.woocommerce-cart .az-cart-table.shop_table tr.az-cart-item,
  body.woocommerce-cart .az-cart-table.shop_table.shop_table_responsive tr.az-cart-item {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 9px 12px !important;
    margin: 10px 10px 13px !important;
    padding: 12px !important;
    border-radius: 20px !important;
  }

  body.woocommerce-cart .az-cart-table .product-thumbnail,
  body.woocommerce-cart .az-cart-table .product-thumbnail a,
  body.woocommerce-cart .az-cart-table .product-thumbnail img {
    width: 76px !important;
    height: 76px !important;
    border-radius: 16px !important;
  }

  body.woocommerce-cart .az-cart-item__title,
  body.woocommerce-cart .az-cart-item__title a,
  body.woocommerce-cart .az-cart-table .product-name a {
    font-size: 13px !important;
    line-height: 1.38 !important;
  }

  body.woocommerce-cart .az-cart-table .product-price,
  body.woocommerce-cart .az-cart-table .product-quantity,
  body.woocommerce-cart .az-cart-table .product-subtotal {
    grid-template-columns: minmax(74px, 1fr) auto !important;
    font-size: 12.5px !important;
  }
}

/* AZeeMall Cart Quantity Controls - v0.6.9.3 (scoped to cart only) */
body.woocommerce-cart .az-cart-table .az-cart-qty-control{display:inline-flex!important;align-items:center!important;justify-content:flex-end!important;gap:6px!important;width:auto!important;margin:0!important;padding:4px!important;border-radius:999px!important;background:#fff!important;box-shadow:inset 0 0 0 1px rgba(229,229,229,.92)!important}body.woocommerce-cart .az-cart-table .az-cart-qty-control__button{appearance:none!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;width:30px!important;height:30px!important;min-width:30px!important;border:0!important;border-radius:999px!important;background:#fafafa!important;color:#191919!important;font-size:17px!important;font-weight:900!important;line-height:1!important;cursor:pointer!important;transition:background 180ms ease,color 180ms ease,transform 180ms ease,opacity 180ms ease!important}body.woocommerce-cart .az-cart-table .az-cart-qty-control__button:hover:not(:disabled){background:#0064d2!important;color:#fff!important;transform:translateY(-1px)!important}body.woocommerce-cart .az-cart-table .az-cart-qty-control__button:disabled{cursor:not-allowed!important;opacity:.38!important}body.woocommerce-cart .az-cart-table .az-cart-qty-control__field,body.woocommerce-cart .az-cart-table .az-cart-qty-control__field .quantity{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:auto!important;margin:0!important;padding:0!important}body.woocommerce-cart .az-cart-table .az-cart-qty-control .quantity .qty,body.woocommerce-cart .az-cart-table .az-cart-qty-control input.qty{appearance:textfield!important;width:42px!important;min-width:42px!important;max-width:42px!important;height:30px!important;min-height:30px!important;padding:0!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;color:#191919!important;font-size:14px!important;font-weight:900!important;line-height:30px!important;text-align:center!important}body.woocommerce-cart .az-cart-table .az-cart-qty-control input.qty::-webkit-outer-spin-button,body.woocommerce-cart .az-cart-table .az-cart-qty-control input.qty::-webkit-inner-spin-button{margin:0!important;appearance:none!important;-webkit-appearance:none!important}body.woocommerce-cart .az-cart-table td.actions button[name=update_cart].az-cart-update-is-ready{background:var(--az-button-bg)!important;color:#fff!important}@media (max-width:640px){body.woocommerce-cart .az-cart-table .az-cart-qty-control{justify-self:end!important;gap:4px!important;padding:3px!important}body.woocommerce-cart .az-cart-table .az-cart-qty-control__button{width:28px!important;height:28px!important;min-width:28px!important;font-size:16px!important}body.woocommerce-cart .az-cart-table .az-cart-qty-control .quantity .qty,body.woocommerce-cart .az-cart-table .az-cart-qty-control input.qty{width:38px!important;min-width:38px!important;max-width:38px!important;height:28px!important;min-height:28px!important;font-size:13px!important;line-height:28px!important}}


/* AZeeMall Cart Coupon UX - v0.6.9.4 (append-only, scoped to Cart) */
body.woocommerce-cart .az-cart-table td.actions .az-cart-coupon {
  display: grid;
  grid-template-columns: minmax(180px, .85fr) minmax(280px, 1.15fr);
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0 0 14px;
  padding: 16px;
  border: 1px solid rgba(229,229,229, .92);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(63,70,77, .07);
}
body.woocommerce-cart .az-cart-table td.actions .az-cart-coupon__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
body.woocommerce-cart .az-cart-table td.actions .az-cart-coupon__title {
  color: #191919;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -.01em;
}
body.woocommerce-cart .az-cart-table td.actions .az-cart-coupon__hint {
  color: #707070;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.55;
}
body.woocommerce-cart .az-cart-table td.actions .az-cart-coupon__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
}
body.woocommerce-cart .az-cart-table td.actions .az-cart-coupon .az-cart-coupon__input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0,100,210, .28);
  border-radius: 999px;
  padding: 0 18px;
  background: #ffffff;
  color: #191919;
  font-size: 13px;
  font-weight: 850;
  outline: 0;
}
body.woocommerce-cart .az-cart-table td.actions .az-cart-coupon .az-cart-coupon__input:focus {
  border-color: rgba(0,100,210, .72);
  box-shadow: 0 0 0 4px rgba(0,100,210, .12);
}
body.woocommerce-cart .az-cart-table td.actions .button.az-cart-coupon__button {
  min-width: 132px;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  line-height: 48px;
  white-space: nowrap;
}
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error,
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info {
  border: 1px solid rgba(229,229,229, .9);
  border-radius: 18px;
  background: #ffffff;
  color: #191919;
  box-shadow: 0 12px 30px rgba(63,70,77, .06);
}
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message {
  border-color: rgba(25,135,84, .25);
}
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error {
  border-color: rgba(229,50,56, .24);
}
@media (max-width: 767px) {
  body.woocommerce-cart .az-cart-table td.actions .az-cart-coupon {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }
  body.woocommerce-cart .az-cart-table td.actions .az-cart-coupon__form {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  body.woocommerce-cart .az-cart-table td.actions .az-cart-coupon .az-cart-coupon__input,
  body.woocommerce-cart .az-cart-table td.actions .button.az-cart-coupon__button {
    width: 100%;
  }
}

/* AZeeMall Cart Summary / Totals Box - v0.6.9.5 (append-only, scoped to Cart) */
body.woocommerce-cart .az-cart-sidebar {
  align-self: start;
}
body.woocommerce-cart .az-cart-panel--summary {
  overflow: hidden;
  border: 1px solid rgba(229,229,229, .95);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fff 100%);
  box-shadow: 0 22px 54px rgba(63,70,77, .09);
}
body.woocommerce-cart .az-cart-panel__head--summary {
  padding: 22px 24px 16px;
  border-bottom: 1px solid rgba(229,229,229, .82);
  background: rgba(255,255,255, .72);
}
body.woocommerce-cart .az-cart-panel__head--summary span {
  display: inline-flex;
  margin-bottom: 6px;
  color: #0053ad;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.woocommerce-cart .az-cart-panel__head--summary h2 {
  margin: 0;
  color: #191919;
  font-family: var(--az-font-bold);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
}
body.woocommerce-cart .az-cart-panel--summary .cart-collaterals {
  padding: 18px 24px 24px;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals > h2 {
  display: none !important;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals table.shop_table,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table {
  width: 100%;
  margin: 0;
  border: 0 !important;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table tbody,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table tr,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table th,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table td {
  display: block;
  border: 0 !important;
  background: transparent !important;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table tr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(229,229,229, .82) !important;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table tr:first-child {
  padding-top: 0;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table tr:last-child {
  border-bottom: 0 !important;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table th,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table td {
  padding: 0 !important;
  color: #191919;
  line-height: 1.55;
  text-align: right;
  vertical-align: top;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table th {
  color: #707070;
  font-size: 13px;
  font-weight: 950;
  text-align: left;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table td,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table td strong,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table td bdi {
  color: #191919;
  font-size: 14px;
  font-weight: 950;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .woocommerce-shipping-totals td {
  text-align: left;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .woocommerce-shipping-methods {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .woocommerce-shipping-methods li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 8px;
  margin: 0;
  color: #191919;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.45;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .woocommerce-shipping-destination,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .woocommerce-shipping-calculator {
  margin: 10px 0 0;
  color: #707070;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.6;
  text-align: left;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .shipping-calculator-button {
  color: #0053ad;
  font-weight: 950;
  text-decoration: none;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .order-total {
  margin-top: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(0,100,210, .20) !important;
  border-radius: 20px;
  background: #fafafa !important;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .order-total th,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .order-total td,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .order-total td strong,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .order-total td bdi {
  color: #191919;
  font-size: 19px;
  font-weight: 1000;
  line-height: 1.2;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout {
  padding: 20px 0 0 !important;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 54px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0 22px !important;
  background: var(--az-button-bg) !important;
  color: #fff !important;
  box-shadow: 0 15px 34px rgba(0,100,210, .20) !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  line-height: 54px !important;
  letter-spacing: -.01em !important;
  text-decoration: none !important;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease !important;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background: var(--az-button-hover) !important;
  box-shadow: 0 16px 36px rgba(111,66,193, .24) !important;
  transform: translateY(-1px) !important;
}
body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout::after {
  content: "Secure checkout · Tax and shipping calculated at checkout";
  display: block;
  margin-top: 12px;
  color: #707070;
  font-size: 11.5px;
  font-weight: 750;
  line-height: 1.55;
  text-align: center;
}
@media (min-width: 992px) {
  body.woocommerce-cart .az-cart-sidebar {
    position: sticky;
    top: 110px;
  }
}
@media (max-width: 991px) {
  body.woocommerce-cart .az-cart-sidebar {
    position: static !important;
    top: auto !important;
    width: 100%;
  }
  body.woocommerce-cart .az-cart-panel--summary {
    border-radius: 24px;
  }
}
@media (max-width: 640px) {
  body.woocommerce-cart .az-cart-panel__head--summary {
    padding: 18px 18px 13px;
  }
  body.woocommerce-cart .az-cart-panel__head--summary h2 {
    font-size: 26px;
  }
  body.woocommerce-cart .az-cart-panel--summary .cart-collaterals {
    padding: 15px 18px 18px;
  }
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table tr {
    gap: 10px;
    padding: 13px 0;
  }
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .woocommerce-shipping-totals {
    grid-template-columns: 1fr;
  }
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .woocommerce-shipping-totals th,
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .woocommerce-shipping-totals td {
    text-align: left;
  }
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .order-total {
    padding: 14px 16px;
  }
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .order-total th,
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .order-total td,
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .order-total td strong,
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table .order-total td bdi {
    font-size: 17px;
  }
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout a.checkout-button,
  body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout .checkout-button {
    min-height: 52px !important;
    line-height: 52px !important;
  }
  body.woocommerce-cart .az-cart-empty.az-wishlist-empty {
    min-height: 310px;
    padding: 34px 18px;
    border-radius: 26px;
  }
  body.woocommerce-cart .az-cart-empty.az-wishlist-empty .az-cart-empty__icon {
    margin-bottom: 16px;
  }
  body.woocommerce-cart .az-cart-empty.az-wishlist-empty h2 {
    font-size: 26px;
  }
  body.woocommerce-cart .az-cart-empty.az-wishlist-empty p {
    max-width: 300px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  body.woocommerce-cart .az-cart-empty.az-wishlist-empty .az-cart-empty__button {
    width: 100%;
    max-width: 280px;
  }
}

/* AZeeMall Cart QA & Polish - v0.6.9.6 (append-only, scoped to Cart) */
body.woocommerce-cart .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-info {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

body.woocommerce-cart .az-cart-page .woocommerce-message,
body.woocommerce-cart .az-cart-page .woocommerce-info,
body.woocommerce-cart .az-cart-page .woocommerce-error {
  border: 1px solid rgba(229,229,229, .95) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 16px 42px rgba(25,25,25, .07) !important;
  color: #191919 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
}

body.woocommerce-cart .az-cart-page .woocommerce-message::before,
body.woocommerce-cart .az-cart-page .woocommerce-info::before {
  color: #0064d2 !important;
}

body.woocommerce-cart .az-cart-page .woocommerce-error::before {
  color: #b84934 !important;
}

body.woocommerce-cart .az-cart-empty-shell {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(245,175,2, .16), transparent 42%),
    #fff;
}

body.woocommerce-cart .az-cart-empty {
  width: 100%;
}

body.woocommerce-cart .az-cart-empty__icon {
  transform: translateZ(0);
}

body.woocommerce-cart .az-cart-empty__button:focus-visible,
body.woocommerce-cart .az-cart-table .az-cart-item__remove:focus-visible,
body.woocommerce-cart .az-cart-table td.actions .button:focus-visible,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout a.checkout-button:focus-visible {
  outline: 3px solid rgba(0,100,210, .28) !important;
  outline-offset: 3px !important;
}

body.woocommerce-cart .az-cart-table .az-cart-item__meta:empty {
  display: none !important;
}

body.woocommerce-cart .az-cart-table .az-cart-item__value bdi,
body.woocommerce-cart .az-cart-panel--summary .cart_totals .shop_table bdi {
  white-space: nowrap;
}

body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout a.checkout-button {
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease !important;
}

body.woocommerce-cart .az-cart-panel--summary .cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0,100,210, .20) !important;
}

@media (max-width: 768px) {
  body.woocommerce-cart .az-cart-page .woocommerce-message,
  body.woocommerce-cart .az-cart-page .woocommerce-info,
  body.woocommerce-cart .az-cart-page .woocommerce-error {
    margin: 0 0 16px !important;
    padding: 14px 16px 14px 44px !important;
    border-radius: 16px !important;
    font-size: 13px !important;
  }

  body.woocommerce-cart .az-cart-empty-shell {
    min-height: 360px;
    padding: 42px 18px !important;
  }

  body.woocommerce-cart .az-cart-empty__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
  }

  body.woocommerce-cart .az-cart-empty h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  body.woocommerce-cart .az-cart-empty p {
    max-width: 300px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  body.woocommerce-cart .az-cart-empty__button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 420px) {
  body.woocommerce-cart .az-cart-page {
    padding-top: 18px;
  }

  body.woocommerce-cart .az-cart-hero,
  body.woocommerce-cart .az-cart-panel,
  body.woocommerce-cart .az-cart-empty-shell {
    border-radius: 18px;
  }

  body.woocommerce-cart .az-cart-panel__head {
    padding: 14px;
  }

  body.woocommerce-cart .az-cart-layout {
    gap: 16px;
  }
}

/* Checkout Layout Base — v0.6.10.0
   Scoped only to WooCommerce checkout. Appended without rebuilding app.css. */
body.woocommerce-checkout .az-checkout-route,
body.woocommerce-checkout .az-checkout-page {
  background: #f7f7f7;
}

body.woocommerce-checkout .az-checkout-page {
  padding: 40px 0 72px;
}

body.woocommerce-checkout .az-checkout-page__container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

body.woocommerce-checkout .az-checkout-hero {
  margin-bottom: 24px;
}

body.woocommerce-checkout .az-checkout-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #7a7a7a;
  font-size: 13px;
  line-height: 1.6;
}

body.woocommerce-checkout .az-checkout-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

body.woocommerce-checkout .az-checkout-breadcrumb a:hover {
  color: #3f464d;
}

body.woocommerce-checkout .az-checkout-hero__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  border: 1px solid rgba(63,70,77, 0.10);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(42,47,52, 0.08);
}

body.woocommerce-checkout .az-checkout-hero__eyebrow,
body.woocommerce-checkout .az-checkout-panel__head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #0064d2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-checkout .az-checkout-hero__title {
  margin: 0;
  color: #191919;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

body.woocommerce-checkout .az-checkout-hero__text {
  max-width: 620px;
  margin: 10px 0 0;
  color: #686868;
  font-size: 15px;
  line-height: 1.7;
}

body.woocommerce-checkout .az-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
  gap: 24px;
  align-items: start;
}

body.woocommerce-checkout .az-checkout-layout--review-only {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

body.woocommerce-checkout .az-checkout-layout--review-only .az-checkout-sidebar {
  width: 100%;
}

body.woocommerce-checkout .az-checkout-panel {
  border: 1px solid rgba(63,70,77, 0.10);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(42,47,52, 0.07);
}

body.woocommerce-checkout .az-checkout-panel--details {
  padding: 26px;
}

body.woocommerce-checkout .az-checkout-panel--review {
  position: sticky;
  top: 112px;
  padding: 24px;
}

body.woocommerce-checkout .az-checkout-panel__head {
  margin-bottom: 18px;
}

body.woocommerce-checkout .az-checkout-panel__head h2,
body.woocommerce-checkout #order_review_heading {
  margin: 0;
  color: #191919;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

body.woocommerce-checkout .az-checkout-fields {
  display: grid;
  gap: 18px;
}

body.woocommerce-checkout .az-checkout-fields .col-1,
body.woocommerce-checkout .az-checkout-fields .col-2 {
  float: none;
  width: 100%;
}

body.woocommerce-checkout .az-checkout-review table.shop_table {
  margin: 0 0 18px;
  border: 0;
}

body.woocommerce-checkout .az-checkout-review table.shop_table th,
body.woocommerce-checkout .az-checkout-review table.shop_table td {
  border-color: rgba(63,70,77, 0.10);
}

@media (max-width: 900px) {
  body.woocommerce-checkout .az-checkout-page {
    padding: 28px 0 52px;
  }

  body.woocommerce-checkout .az-checkout-page__container {
    width: min(100% - 24px, 720px);
  }

  body.woocommerce-checkout .az-checkout-hero__content {
    padding: 22px;
    border-radius: 22px;
  }

  body.woocommerce-checkout .az-checkout-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.woocommerce-checkout .az-checkout-panel--details,
  body.woocommerce-checkout .az-checkout-panel--review {
    padding: 20px;
    border-radius: 22px;
  }

  body.woocommerce-checkout .az-checkout-panel--review {
    position: static;
  }
}

@media (max-width: 520px) {
  body.woocommerce-checkout .az-checkout-page__container {
    width: min(100% - 18px, 420px);
  }

  body.woocommerce-checkout .az-checkout-hero__title {
    font-size: 26px;
  }

  body.woocommerce-checkout .az-checkout-panel__head h2,
  body.woocommerce-checkout #order_review_heading {
    font-size: 20px;
  }
}

/* Checkout Fields — v0.6.10.1
   Scoped field polish only. Appended intentionally; do not rebuild app.css. */
body.woocommerce-checkout .az-checkout-page .woocommerce-billing-fields,
body.woocommerce-checkout .az-checkout-page .woocommerce-shipping-fields,
body.woocommerce-checkout .az-checkout-page .woocommerce-additional-fields {
  margin: 0;
}

body.woocommerce-checkout .az-checkout-page .woocommerce-billing-fields > h3,
body.woocommerce-checkout .az-checkout-page .woocommerce-shipping-fields > h3,
body.woocommerce-checkout .az-checkout-page .woocommerce-additional-fields > h3,
body.woocommerce-checkout .az-checkout-page #ship-to-different-address {
  margin: 22px 0 16px;
  color: #191919;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

body.woocommerce-checkout .az-checkout-page .woocommerce-billing-fields > h3:first-child,
body.woocommerce-checkout .az-checkout-page .woocommerce-shipping-fields > h3:first-child {
  margin-top: 0;
}

body.woocommerce-checkout .az-checkout-page .form-row {
  margin: 0 0 16px;
  padding: 0;
}

body.woocommerce-checkout .az-checkout-page .form-row-first,
body.woocommerce-checkout .az-checkout-page .form-row-last {
  width: calc(50% - 8px);
}

body.woocommerce-checkout .az-checkout-page .form-row-first {
  margin-right: 16px;
}

body.woocommerce-checkout .az-checkout-page .form-row-wide {
  clear: both;
}

body.woocommerce-checkout .az-checkout-page .form-row label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 8px;
  color: #3a3f44;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

body.woocommerce-checkout .az-checkout-page .form-row .required {
  color: #0053ad;
  text-decoration: none;
}

body.woocommerce-checkout .az-checkout-page .form-row .optional {
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 600;
}

body.woocommerce-checkout .az-checkout-page .input-text,
body.woocommerce-checkout .az-checkout-page input[type="text"],
body.woocommerce-checkout .az-checkout-page input[type="email"],
body.woocommerce-checkout .az-checkout-page input[type="tel"],
body.woocommerce-checkout .az-checkout-page input[type="password"],
body.woocommerce-checkout .az-checkout-page textarea,
body.woocommerce-checkout .az-checkout-page select {
  width: 100%;
  min-height: 52px;
  margin: 0;
  border: 1px solid rgba(63,70,77, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: #191919;
  font-size: 14px;
  line-height: 1.45;
  outline: none;
  box-shadow: 0 1px 0 rgba(63,70,77, 0.03);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

body.woocommerce-checkout .az-checkout-page input[type="text"],
body.woocommerce-checkout .az-checkout-page input[type="email"],
body.woocommerce-checkout .az-checkout-page input[type="tel"],
body.woocommerce-checkout .az-checkout-page input[type="password"],
body.woocommerce-checkout .az-checkout-page select {
  padding: 0 16px;
}

body.woocommerce-checkout .az-checkout-page textarea {
  min-height: 116px;
  padding: 14px 16px;
  resize: vertical;
}

body.woocommerce-checkout .az-checkout-page .input-text:focus,
body.woocommerce-checkout .az-checkout-page input[type="text"]:focus,
body.woocommerce-checkout .az-checkout-page input[type="email"]:focus,
body.woocommerce-checkout .az-checkout-page input[type="tel"]:focus,
body.woocommerce-checkout .az-checkout-page input[type="password"]:focus,
body.woocommerce-checkout .az-checkout-page textarea:focus,
body.woocommerce-checkout .az-checkout-page select:focus {
  border-color: rgba(0,72,143, 0.48);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0,100,210, 0.12);
}

body.woocommerce-checkout .az-checkout-page .form-row.woocommerce-invalid .input-text,
body.woocommerce-checkout .az-checkout-page .form-row.woocommerce-invalid select,
body.woocommerce-checkout .az-checkout-page .form-row.woocommerce-invalid textarea {
  border-color: rgba(229,50,56, 0.72);
  background: #fff1f2;
}

body.woocommerce-checkout .az-checkout-page .form-row.woocommerce-validated .input-text,
body.woocommerce-checkout .az-checkout-page .form-row.woocommerce-validated select,
body.woocommerce-checkout .az-checkout-page .form-row.woocommerce-validated textarea {
  border-color: rgba(25,135,84, 0.42);
}

body.woocommerce-checkout .az-checkout-page .woocommerce-input-wrapper {
  display: block;
}

body.woocommerce-checkout .az-checkout-page .select2-container {
  width: 100% !important;
  min-height: 52px;
}

body.woocommerce-checkout .az-checkout-page .select2-container .select2-selection--single {
  min-height: 52px;
  border: 1px solid rgba(63,70,77, 0.16);
  border-radius: 16px;
  background: #ffffff;
}

body.woocommerce-checkout .az-checkout-page .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 11px 42px 11px 16px;
  color: #191919;
  font-size: 14px;
  line-height: 30px;
}

body.woocommerce-checkout .az-checkout-page .select2-container .select2-selection--single .select2-selection__arrow {
  height: 52px;
  right: 12px;
}

body.woocommerce-checkout .az-checkout-page .select2-container--open .select2-selection--single,
body.woocommerce-checkout .az-checkout-page .select2-container--focus .select2-selection--single {
  border-color: rgba(0,72,143, 0.48);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0,100,210, 0.12);
}

body.woocommerce-checkout .az-checkout-page #ship-to-different-address label,
body.woocommerce-checkout .az-checkout-page .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #2a2f34;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

body.woocommerce-checkout .az-checkout-page #ship-to-different-address input[type="checkbox"],
body.woocommerce-checkout .az-checkout-page .woocommerce-form__label-for-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #00488f;
}

body.woocommerce-checkout .az-checkout-page .woocommerce-account-fields,
body.woocommerce-checkout .az-checkout-page .woocommerce-additional-fields {
  margin-top: 10px;
}

body.woocommerce-checkout .az-checkout-page .woocommerce-invalid-required-field label {
  color: #e53238;
}

@media (max-width: 680px) {
  body.woocommerce-checkout .az-checkout-page .form-row-first,
  body.woocommerce-checkout .az-checkout-page .form-row-last {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  body.woocommerce-checkout .az-checkout-page .form-row {
    margin-bottom: 14px;
  }

  body.woocommerce-checkout .az-checkout-page .input-text,
  body.woocommerce-checkout .az-checkout-page input[type="text"],
  body.woocommerce-checkout .az-checkout-page input[type="email"],
  body.woocommerce-checkout .az-checkout-page input[type="tel"],
  body.woocommerce-checkout .az-checkout-page input[type="password"],
  body.woocommerce-checkout .az-checkout-page select,
  body.woocommerce-checkout .az-checkout-page .select2-container,
  body.woocommerce-checkout .az-checkout-page .select2-container .select2-selection--single {
    min-height: 50px;
    border-radius: 14px;
  }
}

/* AZeeMall Checkout Order Review — v0.6.10.2
   Scoped only to WooCommerce checkout. Append-only: do not rebuild global CSS. */
body.woocommerce-checkout .az-checkout-page .az-checkout-panel--review {
  overflow: visible;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review {
  margin-top: 18px;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-review-order-table {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(63,70,77, 0.1);
  border-radius: 20px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table th,
body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table td {
  padding: 15px 18px;
  border: 0;
  border-bottom: 1px solid rgba(63,70,77, 0.09);
  color: #2a2f34;
  font-size: 14px;
  line-height: 1.55;
  vertical-align: top;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table thead th {
  background: rgba(0,72,143, 0.06);
  color: #191919;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table th:last-child,
body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table td:last-child {
  text-align: right;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tbody .product-name {
  color: #191919;
  font-weight: 800;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tbody .product-name .product-quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  margin-left: 6px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(0,72,143, 0.09);
  color: #00488f;
  font-size: 12px;
  font-weight: 900;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tbody .product-total,
body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot td {
  color: #191919;
  font-weight: 900;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot th {
  color: #666666;
  font-weight: 800;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot tr:last-child th,
body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot tr:last-child td {
  border-bottom: 0;
  background: #ffffff;
  color: #191919;
  font-size: 16px;
  font-weight: 950;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot tr.order-total th,
body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot tr.order-total td {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(0,72,143, 0.07);
  color: #191919;
  font-size: 17px;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot tr.order-total .amount {
  color: #00488f;
  font-size: 20px;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review .cart-subtotal .amount,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .shipping .amount,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .fee .amount,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .tax-rate .amount {
  font-weight: 900;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-shipping-methods {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-shipping-methods li {
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: flex-end;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-shipping-methods li:last-child {
  margin-bottom: 0;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-shipping-methods input[type="radio"] {
  margin-top: 4px;
  accent-color: #00488f;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-shipping-destination,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-shipping-calculator {
  margin: 8px 0 0;
  color: #707070;
  font-size: 12px;
  line-height: 1.5;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-shipping-calculator a {
  color: #00488f;
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 1025px) {
  body.woocommerce-checkout .az-checkout-page .az-checkout-sidebar {
    align-self: start;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-panel--review {
    position: sticky;
    top: 110px;
  }
}

@media (max-width: 680px) {
  body.woocommerce-checkout .az-checkout-page .az-checkout-review {
    margin-top: 14px;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-review-order-table {
    border-radius: 16px;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table thead {
    display: none;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 14px;
    border-bottom: 1px solid rgba(63,70,77, 0.09);
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tbody tr:last-child,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot tr:last-child {
    border-bottom: 0;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table th,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table td {
    display: block;
    padding: 0;
    border: 0;
    font-size: 13px;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table th:last-child,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table td:last-child {
    text-align: right;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot tr.order-total {
    padding: 16px;
    background: rgba(0,72,143, 0.07);
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot tr.order-total th,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot tr.order-total td {
    background: transparent;
    font-size: 15px;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review table.shop_table tfoot tr.order-total .amount {
    font-size: 18px;
  }
}

/* AZeeMall Checkout Payment Section — v0.6.10.3
   Scoped only to WooCommerce checkout. Append-only: do not rebuild global CSS. */
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(63,70,77, 0.1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(63,70,77, 0.06);
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment ul.payment_methods,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment ul.payment_methods {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment ul.payment_methods li,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment ul.payment_methods li {
  position: relative;
  margin: 0 0 12px;
  padding: 14px 14px 14px 46px;
  border: 1px solid rgba(63,70,77, 0.1);
  border-radius: 18px;
  background: #ffffff;
  color: #2a2f34;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment ul.payment_methods li:last-child,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment ul.payment_methods li:last-child {
  margin-bottom: 0;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment ul.payment_methods li:has(input[type="radio"]:checked),
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment ul.payment_methods li:has(input[type="radio"]:checked) {
  border-color: rgba(0,72,143, 0.42);
  background: #fafafa;
  box-shadow: 0 10px 24px rgba(0,72,143, 0.08);
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment ul.payment_methods input[type="radio"],
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment ul.payment_methods input[type="radio"] {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #00488f;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment ul.payment_methods label,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment ul.payment_methods label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #191919;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  cursor: pointer;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment ul.payment_methods label img,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment ul.payment_methods label img {
  max-height: 26px;
  margin: 0 0 0 auto;
  border-radius: 6px;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .payment_box,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .payment_box {
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(63,70,77, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: #707070;
  font-size: 13px;
  line-height: 1.7;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .payment_box::before,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .payment_box::before {
  display: none;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .payment_box p,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .payment_box p {
  margin: 0;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .form-row.place-order,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .form-row.place-order {
  margin: 16px 0 0;
  padding: 0;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .woocommerce-privacy-policy-text,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .woocommerce-privacy-policy-text,
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .woocommerce-terms-and-conditions-wrapper,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper {
  margin: 0 0 14px;
  color: #707070;
  font-size: 12px;
  line-height: 1.7;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment a,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment a {
  color: #00488f;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 680px) {
  body.woocommerce-checkout .az-checkout-page__container {
    width: min(100% - 10px, 520px);
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-panel--review {
    padding: 14px 10px;
    border-radius: 18px;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review {
    margin-top: 12px;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment {
    margin-top: 14px;
    padding: 8px 4px 4px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment ul.payment_methods li,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment ul.payment_methods li {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 8px;
    min-width: 0;
    padding: 12px 8px;
    border-radius: 16px;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment ul.payment_methods input[type="radio"],
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment ul.payment_methods input[type="radio"] {
    position: static;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin: 1px 0 0;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment ul.payment_methods label,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment ul.payment_methods label {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    font-size: 13px;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .payment_box,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .payment_box {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 4px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 12px;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .payment_box > *,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .payment_box > *,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .payment_box fieldset,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .payment_box fieldset,
  body.woocommerce-checkout .az-checkout-page .wc-stripe-upe-element,
  body.woocommerce-checkout .az-checkout-page #wc-stripe-upe-form,
  body.woocommerce-checkout .az-checkout-page #wc-stripe-payment-element,
  body.woocommerce-checkout .az-checkout-page #wc-stripe-card-element,
  body.woocommerce-checkout .az-checkout-page .wc-stripe-elements-field,
  body.woocommerce-checkout .az-checkout-page .StripeElement,
  body.woocommerce-checkout .az-checkout-page .wcpay-payment-element {
    width: 100%;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .payment_box fieldset,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .payment_box fieldset {
    margin: 0;
    padding: 0;
    border: 0;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .payment_box iframe,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .payment_box iframe {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  /* AZeeMall order confirmation mobile layout — v0.10.9 */
  body.woocommerce-order-received .az-thankyou-page {
    padding: 30px 0 60px;
  }

  body.woocommerce-order-received .az-thankyou-page__container {
    width: min(100% - 20px, 540px);
  }

  body.woocommerce-order-received .az-thankyou-breadcrumb {
    margin-bottom: 13px;
    padding: 0 4px;
    font-size: 12px;
  }

  body.woocommerce-order-received .az-thankyou-hero__card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 20px 17px;
    border-radius: 22px;
  }

  body.woocommerce-order-received .az-thankyou-hero__icon {
    width: 54px;
    height: 54px;
  }

  body.woocommerce-order-received .az-thankyou-hero__icon svg {
    width: 29px;
    height: 29px;
  }

  body.woocommerce-order-received .az-thankyou-hero__eyebrow {
    margin-bottom: 5px;
    font-size: 10px;
  }

  body.woocommerce-order-received .az-thankyou-hero__title {
    font-size: 27px;
  }

  body.woocommerce-order-received .az-thankyou-hero__text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.65;
  }

  body.woocommerce-order-received .az-thankyou-status {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 32px;
    padding: 6px 11px;
    font-size: 11px;
  }

  body.woocommerce-order-received .az-thankyou-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 12px;
  }

  body.woocommerce-order-received .az-thankyou-summary__item {
    padding: 14px;
    border-radius: 15px;
  }

  body.woocommerce-order-received .az-thankyou-summary__item--wide {
    grid-column: 1 / -1;
  }

  body.woocommerce-order-received .az-thankyou-summary__item span {
    font-size: 9px;
  }

  body.woocommerce-order-received .az-thankyou-summary__item strong {
    font-size: 14px;
  }

  body.woocommerce-order-received .az-thankyou-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 14px;
  }

  body.woocommerce-order-received .az-thankyou-button,
  body.woocommerce-order-received .az-thankyou-actions .button {
    width: 100%;
    min-height: 48px;
  }

  body.woocommerce-order-received .az-thankyou-content {
    gap: 14px;
    margin-top: 24px;
  }

  body.woocommerce-order-received .az-thankyou-content .woocommerce-order-details,
  body.woocommerce-order-received .az-thankyou-content .woocommerce-customer-details {
    padding: 16px 12px;
    border-radius: 20px;
  }

  body.woocommerce-order-received .az-thankyou-content .woocommerce-order-details__title,
  body.woocommerce-order-received .az-thankyou-content .woocommerce-customer-details > h2,
  body.woocommerce-order-received .az-thankyou-content .woocommerce-column__title {
    margin-bottom: 13px;
    font-size: 23px;
  }

  body.woocommerce-order-received .az-thankyou-content table.shop_table th,
  body.woocommerce-order-received .az-thankyou-content table.shop_table td,
  body.woocommerce-order-received .az-thankyou-content table.woocommerce-table th,
  body.woocommerce-order-received .az-thankyou-content table.woocommerce-table td {
    padding: 13px 11px;
    font-size: 13px;
  }

  body.woocommerce-order-received .az-thankyou-content table.shop_table th:first-child,
  body.woocommerce-order-received .az-thankyou-content table.shop_table td:first-child,
  body.woocommerce-order-received .az-thankyou-content table.woocommerce-table th:first-child,
  body.woocommerce-order-received .az-thankyou-content table.woocommerce-table td:first-child {
    width: 64%;
  }

  body.woocommerce-order-received .az-thankyou-content table.shop_table th:last-child,
  body.woocommerce-order-received .az-thankyou-content table.shop_table td:last-child,
  body.woocommerce-order-received .az-thankyou-content table.woocommerce-table th:last-child,
  body.woocommerce-order-received .az-thankyou-content table.woocommerce-table td:last-child {
    width: 36%;
  }

  body.woocommerce-order-received .az-thankyou-content table.shop_table tfoot tr,
  body.woocommerce-order-received .az-thankyou-content table.woocommerce-table tfoot tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(124px, 42%);
  }

  body.woocommerce-order-received .az-thankyou-content table.shop_table tfoot th,
  body.woocommerce-order-received .az-thankyou-content table.shop_table tfoot td,
  body.woocommerce-order-received .az-thankyou-content table.woocommerce-table tfoot th,
  body.woocommerce-order-received .az-thankyou-content table.woocommerce-table tfoot td {
    display: block;
    width: auto;
    min-width: 0;
  }

  body.woocommerce-order-received .az-thankyou-content table.shop_table tfoot td,
  body.woocommerce-order-received .az-thankyou-content table.woocommerce-table tfoot td {
    overflow-wrap: normal;
    word-break: normal;
  }

  body.woocommerce-order-received .az-thankyou-content address {
    padding: 16px;
    border-radius: 15px;
    font-size: 13px;
  }
}


/* AZeeMall Checkout Place Order CTA — v0.6.10.4
   Scoped only to WooCommerce checkout. Append-only: do not rebuild global CSS. */
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment #place_order,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment #place_order,
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment button[type="submit"],
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--az-button-bg);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0,72,143, 0.22);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment #place_order:hover,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment #place_order:hover,
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment button[type="submit"]:hover,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment button[type="submit"]:hover {
  background: var(--az-button-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0,72,143, 0.28);
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment #place_order:focus-visible,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment #place_order:focus-visible,
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment button[type="submit"]:focus-visible,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment button[type="submit"]:focus-visible {
  outline: 3px solid rgba(0,72,143, 0.25);
  outline-offset: 3px;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment #place_order:disabled,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment #place_order:disabled,
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment button[type="submit"]:disabled,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment button[type="submit"]:disabled,
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment #place_order.disabled,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment #place_order.disabled,
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment button[type="submit"].disabled,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment button[type="submit"].disabled {
  background: #c2c2c2;
  color: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.78;
  transform: none;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment.processing #place_order,
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment.processing #place_order,
body.woocommerce-checkout.processing .az-checkout-page .az-checkout-review #place_order {
  position: relative;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.72);
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment.processing #place_order::after,
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment.processing #place_order::after,
body.woocommerce-checkout.processing .az-checkout-page .az-checkout-review #place_order::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: az-checkout-submit-spin 0.75s linear infinite;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .form-row.place-order,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .form-row.place-order {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .woocommerce-terms-and-conditions-checkbox-text,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .woocommerce-terms-and-conditions-checkbox-text {
  color: #686868;
  font-size: 12px;
  line-height: 1.7;
}

body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .validate-required.woocommerce-invalid label,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .validate-required.woocommerce-invalid label,
body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .woocommerce-invalid-required-field label,
body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .woocommerce-invalid-required-field label {
  color: #e53238;
}

@keyframes az-checkout-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 680px) {
  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment #place_order,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment #place_order,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment button[type="submit"],
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment button[type="submit"] {
    min-height: 52px;
    padding: 14px 18px;
    font-size: 14px;
  }

  body.woocommerce-checkout .az-checkout-page .az-checkout-review #payment .form-row.place-order,
  body.woocommerce-checkout .az-checkout-page .az-checkout-review .woocommerce-checkout-payment .form-row.place-order {
    margin-top: 16px;
    gap: 10px;
  }
}


/* Wishlist Base — v0.6.12.0 (append-only, scoped) */
.header-actions__wishlist{position:relative}.header-actions__wishlist .wishlist-count{position:absolute;right:-5px;top:-5px;display:inline-flex;align-items:center;justify-content:center;min-width:18px;height:18px;padding:0 5px;border-radius:999px;background:#0064d2;color:#fff;font-size:11px;font-weight:900;line-height:1}.header-actions__wishlist .wishlist-count:empty{display:none}.mobile-menu .wishlist-count{display:inline-flex;align-items:center;justify-content:center;min-width:20px;height:20px;margin-inline-start:6px;padding:0 6px;border-radius:999px;background:rgba(0,100,210,.12);color:#0064d2;font-size:12px;font-weight:900}.az-product-card__wishlist.is-active{color:#0064d2;background:#fff;box-shadow:0 12px 28px rgba(0,100,210,.18)}.az-product-wishlist{text-decoration:none}.az-product-wishlist.is-active{border-color:rgba(0,100,210,.36);background:rgba(0,100,210,.08);color:#0064d2}.az-wishlist-page{padding:40px 0 72px;background:#fafafa}.az-wishlist-page__inner{width:min(1180px,calc(100% - 32px));margin:0 auto}.az-wishlist-hero{margin-bottom:24px}.az-wishlist-breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:16px;color:#7a7a7a;font-size:13px;font-weight:700}.az-wishlist-breadcrumb a{color:#666666;text-decoration:none}.az-wishlist-breadcrumb a:hover{color:#0064d2}.az-wishlist-hero__content{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;padding:24px;border:1px solid rgba(229,229,229,.9);border-radius:28px;background:#fff;box-shadow:0 18px 48px rgba(25,25,25,.06)}.az-wishlist-hero__eyebrow{margin:0 0 8px;color:#0064d2;font-size:12px;font-weight:900;letter-spacing:.14em;text-transform:uppercase}.az-wishlist-hero h1{margin:0;color:#191919;font-size:clamp(28px,4vw,42px);line-height:1.12}.az-wishlist-hero__count{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 16px;border-radius:999px;background:#fafafa;color:#666666;font-size:13px;font-weight:900;white-space:nowrap}.az-wishlist-notice{margin:0 0 18px;padding:13px 16px;border:1px solid rgba(25,135,84,.22);border-radius:16px;background:rgba(25,135,84,.09);color:#198754;font-size:14px;font-weight:800}.az-wishlist-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.az-wishlist-item{display:grid;grid-template-columns:112px minmax(0,1fr);gap:16px;padding:14px;border:1px solid rgba(229,229,229,.92);border-radius:24px;background:#fff;box-shadow:0 14px 42px rgba(25,25,25,.055)}.az-wishlist-item__image{display:block;overflow:hidden;border-radius:18px;background:#f5f5f5}.az-wishlist-item__image img{display:block;width:100%;height:112px;object-fit:cover}.az-wishlist-item__body{display:flex;min-width:0;flex-direction:column;justify-content:center}.az-wishlist-item__title{margin:0 0 8px;color:#191919;font-size:15px;font-weight:900;line-height:1.35}.az-wishlist-item__title a{color:inherit;text-decoration:none}.az-wishlist-item__title a:hover{color:#0064d2}.az-wishlist-item__price{margin-bottom:14px;color:#0064d2;font-size:14px;font-weight:900}.az-wishlist-item__price del{color:#8a8a8a;font-size:12px;font-weight:700}.az-wishlist-item__price ins{text-decoration:none}.az-wishlist-item__actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap}.az-wishlist-item__view,.az-wishlist-empty__button{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:0 16px;border-radius:999px;background:var(--az-button-bg);color:#fff;font-size:13px;font-weight:900;text-decoration:none}.az-wishlist-item__view:hover,.az-wishlist-empty__button:hover{background:var(--az-button-hover);color:#fff}.az-wishlist-item__remove{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:0 12px;border:1px solid #e5e5e5;border-radius:999px;background:#fff;color:#e53238;font-size:13px;font-weight:900;text-decoration:none}.az-wishlist-item__remove:hover{border-color:rgba(229,50,56,.28);background:rgba(229,50,56,.06);color:#e53238}.az-wishlist-empty{display:flex;min-height:360px;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:42px 24px;border:1px solid rgba(229,229,229,.92);border-radius:30px;background:#fff;box-shadow:0 18px 48px rgba(25,25,25,.06)}.az-wishlist-empty__icon{display:flex;align-items:center;justify-content:center;width:72px;height:72px;margin-bottom:18px;border-radius:24px;background:rgba(0,100,210,.1);color:#0064d2;font-size:36px}.az-wishlist-empty h2{margin:0 0 10px;color:#191919;font-size:26px;line-height:1.2}.az-wishlist-empty p{max-width:420px;margin:0 0 22px;color:#707070;font-size:15px;line-height:1.7}@media(max-width:980px){.az-wishlist-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){.az-wishlist-page{padding:26px 0 54px}.az-wishlist-page__inner{width:min(100% - 24px,1180px)}.az-wishlist-hero__content{align-items:flex-start;flex-direction:column;padding:20px;border-radius:24px}.az-wishlist-grid{grid-template-columns:1fr;gap:12px}.az-wishlist-item{grid-template-columns:92px minmax(0,1fr);gap:12px;border-radius:22px}.az-wishlist-item__image{border-radius:16px}.az-wishlist-item__image img{height:92px}.az-wishlist-item__title{display:-webkit-box;overflow:hidden;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-size:14px}.az-wishlist-item__actions{gap:8px}.az-wishlist-item__view,.az-wishlist-item__remove{min-height:38px;padding:0 13px}.az-wishlist-empty{min-height:310px;padding:34px 18px;border-radius:26px}}


/* Wishlist UI — v0.6.12.1 (append-only, scoped) */
.az-wishlist-page .az-wishlist-grid{
  align-items:stretch;
}
.az-wishlist-page .az-wishlist-item{
  position:relative;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.az-wishlist-page .az-wishlist-item:hover{
  transform:translateY(-2px);
  border-color:rgba(0,100,210,.22);
  box-shadow:0 18px 46px rgba(25,25,25,.075);
}
.az-wishlist-page .az-wishlist-item__body{
  justify-content:space-between;
  gap:12px;
}
.az-wishlist-page .az-wishlist-item__title{
  display:-webkit-box;
  overflow:hidden;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.az-wishlist-page .az-wishlist-item__meta{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.az-wishlist-page .az-wishlist-item__price{
  margin-bottom:0;
}
.az-wishlist-page .az-wishlist-item__stock,
.az-wishlist-page .az-wishlist-item__stock p{
  margin:0;
  font-size:12px;
  font-weight:800;
  line-height:1.4;
}
.az-wishlist-page .az-wishlist-item__stock.is-in-stock,
.az-wishlist-page .az-wishlist-item__stock.is-in-stock p{
  color:#198754;
}
.az-wishlist-page .az-wishlist-item__stock.is-out-of-stock,
.az-wishlist-page .az-wishlist-item__stock.is-out-of-stock p{
  color:#e53238;
}
.az-wishlist-page .az-wishlist-item__cart,
.az-wishlist-page .az-wishlist-item__view{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 16px;
  border:0;
  border-radius:999px;
  background:var(--az-button-bg);
  color:#fff;
  font-size:13px;
  font-weight:900;
  line-height:1;
  text-decoration:none;
  box-shadow:none;
}
.az-wishlist-page .az-wishlist-item__cart:hover,
.az-wishlist-page .az-wishlist-item__cart:focus,
.az-wishlist-page .az-wishlist-item__view:hover,
.az-wishlist-page .az-wishlist-item__view:focus{
  background:var(--az-button-hover);
  color:#fff;
}
.az-wishlist-page .az-wishlist-item__remove span[aria-hidden="true"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  margin-inline-end:4px;
  border-radius:999px;
  background:rgba(229,50,56,.08);
  font-size:16px;
  line-height:1;
}
.az-wishlist-page .az-wishlist-empty__button{
  min-width:190px;
}


/* Empty cart aligned with empty wishlist design — v0.17.1 */
body.woocommerce-cart .az-cart-empty-shell {
  min-height: 360px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

body.woocommerce-cart .az-cart-empty.az-wishlist-empty {
  width: min(100%, 760px);
  max-width: 760px;
  min-height: 360px;
  margin: 0 auto;
  padding: 42px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(229,229,229, .92);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(25,25,25, .06);
}

body.woocommerce-cart .az-cart-empty.az-wishlist-empty .az-cart-empty__icon {
  width: 72px;
  height: 72px;
  margin: 0 0 18px;
  border-radius: 24px;
  background: rgba(0,100,210, .10);
  color: #0064d2;
  box-shadow: none;
}

body.woocommerce-cart .az-cart-empty.az-wishlist-empty .az-cart-empty__eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
  color: #0064d2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.woocommerce-cart .az-cart-empty.az-wishlist-empty h2 {
  margin: 0 0 10px;
  color: #191919;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

body.woocommerce-cart .az-cart-empty.az-wishlist-empty p {
  max-width: 420px;
  margin: 0 0 22px;
  color: #707070;
  font-size: 15px;
  line-height: 1.7;
}

body.woocommerce-cart .az-cart-empty.az-wishlist-empty .az-cart-empty__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--az-button-bg);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

body.woocommerce-cart .az-cart-empty.az-wishlist-empty .az-cart-empty__button:hover {
  background: var(--az-button-hover);
  color: #fff;
}

@media(max-width:760px){
  .az-wishlist-page .az-wishlist-hero__content{
    box-shadow:0 12px 32px rgba(25,25,25,.055);
  }
  .az-wishlist-page .az-wishlist-item{
    grid-template-columns:86px minmax(0,1fr);
    padding:12px;
  }
  .az-wishlist-page .az-wishlist-item__image img{
    height:86px;
  }
  .az-wishlist-page .az-wishlist-item__actions{
    display:grid;
    grid-template-columns:1fr auto;
    width:100%;
  }
  .az-wishlist-page .az-wishlist-item__cart,
  .az-wishlist-page .az-wishlist-item__view{
    min-height:38px;
    padding:0 12px;
    font-size:12px;
  }
  .az-wishlist-page .az-wishlist-item__remove{
    min-height:38px;
    padding:0 10px;
    font-size:0;
  }
  .az-wishlist-page .az-wishlist-item__remove span[aria-hidden="true"]{
    margin-inline-end:0;
  }
}
@media(max-width:380px){
  .az-wishlist-page .az-wishlist-item{
    grid-template-columns:76px minmax(0,1fr);
    gap:10px;
  }
  .az-wishlist-page .az-wishlist-item__image img{
    height:76px;
  }
  .az-wishlist-page .az-wishlist-item__actions{
    grid-template-columns:1fr;
  }
  .az-wishlist-page .az-wishlist-item__remove{
    width:100%;
    font-size:12px;
  }
  .az-wishlist-page .az-wishlist-item__remove span[aria-hidden="true"]{
    margin-inline-end:4px;
  }
}


/* Wishlist Header Count — v0.6.12.2 (append-only, scoped) */
.header-actions__wishlist .az-wishlist-count-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:19px;
  height:19px;
  padding:0 5px;
  border:2px solid #fff;
  border-radius:999px;
  background:#0064d2;
  color:#fff;
  font-size:11px;
  font-weight:900;
  line-height:1;
  box-shadow:0 8px 18px rgba(0,100,210,.22);
  transform:scale(1);
  transform-origin:center;
}
.header-actions__wishlist .az-wishlist-count-badge.is-empty{
  display:none;
}
.header-actions__wishlist:has(.az-wishlist-count-badge.has-items){
  color:#0064d2;
}
.mobile-menu__footer .mobile-menu__wishlist{
  display:flex;
  align-items:center;
  gap:8px;
}
.mobile-menu__footer .mobile-menu__wishlist .az-wishlist-count-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  height:22px;
  margin-inline-start:auto;
  padding:0 7px;
  border-radius:999px;
  background:rgba(0,100,210,.12);
  color:#0064d2;
  font-size:12px;
  font-weight:900;
  line-height:1;
}
.mobile-menu__footer .mobile-menu__wishlist .az-wishlist-count-badge.is-empty{
  background:#f5f5f5;
  color:#8a8a8a;
}
@media(max-width:760px){
  .header-actions__wishlist .az-wishlist-count-badge{
    top:-5px;
    right:-5px;
    min-width:18px;
    height:18px;
    font-size:10px;
  }
}

/* Wishlist AJAX & Toast — v0.6.12.3 */
.az-product-card__wishlist.is-loading,
.az-product-wishlist.is-loading,
.az-wishlist-item__remove.is-loading{
  pointer-events:none;
  opacity:.68;
  cursor:progress;
}
.az-product-card__wishlist.is-loading::after,
.az-product-wishlist.is-loading::after,
.az-wishlist-item__remove.is-loading::after{
  content:"";
  width:14px;
  height:14px;
  border:2px solid currentColor;
  border-top-color:transparent;
  border-radius:999px;
  animation:az-wishlist-spin .72s linear infinite;
}
.az-product-card__wishlist.is-loading svg,
.az-product-wishlist.is-loading > span,
.az-wishlist-item__remove.is-loading > span{
  opacity:.35;
}
.az-wishlist-toast{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  max-width:min(360px,calc(100vw - 32px));
  padding:13px 16px;
  border:1px solid rgba(229,229,229,.92);
  border-radius:18px;
  background:#191919;
  color:#fff;
  box-shadow:0 18px 50px rgba(25,25,25,.22);
  font-size:14px;
  font-weight:800;
  line-height:1.45;
  opacity:0;
  transform:translateY(12px);
  transition:opacity 180ms ease,transform 180ms ease;
  pointer-events:none;
}
.az-wishlist-toast.is-visible{
  opacity:1;
  transform:translateY(0);
}
.az-wishlist-toast.is-success{background:#191919;color:#fff;}
.az-wishlist-toast.is-error{background:#e53238;color:#fff;}
@keyframes az-wishlist-spin{to{transform:rotate(360deg)}}
@media(max-width:640px){
  .az-wishlist-toast{
    right:12px;
    bottom:12px;
    left:12px;
    max-width:none;
    text-align:center;
  }
}


/* My Account Base — v0.6.13.0 (append-only, scoped) */
.az-account-route {
  background: #f8fafc;
}

.az-account-page {
  padding: 32px 0 64px;
}

.az-account-page__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.az-account-hero {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.az-account-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.az-account-breadcrumb a {
  color: #475569;
  text-decoration: none;
}

.az-account-breadcrumb a:hover {
  color: #0f172a;
}

.az-account-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.az-account-hero__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.az-account-hero__text {
  max-width: 680px;
  margin: 10px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.az-account-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.az-account-sidebar__card,
.az-account-content__card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.az-account-sidebar__card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  padding: 10px;
}

.az-account-content__card {
  min-height: 360px;
  padding: 28px;
}

.az-account-page .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.az-account-page .woocommerce-MyAccount-navigation-link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 18px;
  color: #475569;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.az-account-page .woocommerce-MyAccount-navigation-link a:hover,
.az-account-page .woocommerce-MyAccount-navigation-link.is-active a {
  background: #0f172a;
  color: #fff;
  transform: translateY(-1px);
}

.az-account-page .woocommerce-MyAccount-content {
  float: none;
  width: auto;
}

.az-account-page .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
}

.az-account-page .woocommerce-MyAccount-content a {
  color: #0f172a;
  font-weight: 700;
}

.az-account-page .woocommerce-notices-wrapper,
.az-account-page .woocommerce-message,
.az-account-page .woocommerce-info,
.az-account-page .woocommerce-error {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .az-account-page {
    padding: 20px 0 44px;
  }

  .az-account-hero {
    padding: 20px;
    border-radius: 24px;
  }

  .az-account-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .az-account-sidebar__card {
    position: static;
  }

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

  .az-account-content__card {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .az-account-page__container {
    padding: 0 12px;
  }

  .az-account-hero {
    padding: 18px;
  }

  .az-account-page .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }

  .az-account-page .woocommerce-MyAccount-navigation-link a {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .az-account-content__card {
    padding: 18px;
  }
}

/* My Account Navigation & Dashboard — v0.6.13.1 */
.az-account-page .az-account-nav__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.az-account-page .az-account-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: #475569;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.az-account-page .az-account-nav__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.az-account-page .az-account-nav__icon {
  flex: 0 0 auto;
  color: currentColor;
}

.az-account-page .az-account-nav__chevron {
  flex: 0 0 auto;
  opacity: 0.42;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.az-account-page .az-account-nav__link:hover {
  border-color: rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  color: #0f172a;
  transform: translateY(-1px);
}

.az-account-page .az-account-nav__link:hover .az-account-nav__chevron {
  opacity: 0.7;
  transform: translateX(2px);
}

.az-account-page .woocommerce-MyAccount-navigation-link.is-active .az-account-nav__link,
.az-account-page .woocommerce-MyAccount-navigation-link.is-active a {
  border-color: rgba(15, 23, 42, 0.12);
  background: #0f172a;
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.az-account-page .woocommerce-MyAccount-navigation-link.is-active .az-account-nav__chevron {
  opacity: 0.9;
}

.az-account-dashboard {
  display: grid;
  gap: 22px;
}

.az-account-dashboard__welcome {
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 56%, #f8fafc 100%);
}

.az-account-dashboard__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: #c2410c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.az-account-dashboard__title {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.az-account-dashboard__text {
  max-width: 680px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.az-account-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.az-account-dashboard-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.az-account-dashboard-card:hover {
  border-color: rgba(234, 88, 12, 0.26);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.az-account-dashboard-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #fafafa;
  color: #ea580c;
}

.az-account-dashboard-card__content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.az-account-dashboard-card__content strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.az-account-dashboard-card__content small {
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.az-account-dashboard__footer {
  padding: 18px 20px;
  border-radius: 20px;
  background: #f8fafc;
  color: #64748b;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.az-account-dashboard__footer p {
  margin: 0;
}

.az-account-dashboard__footer a {
  color: #0f172a;
  font-weight: 900;
}

@media (max-width: 900px) {
  .az-account-dashboard__grid {
    grid-template-columns: 1fr;
  }

  .az-account-dashboard-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .az-account-dashboard__welcome {
    padding: 20px;
    border-radius: 20px;
  }

  .az-account-dashboard__title {
    font-size: 24px;
  }

  .az-account-dashboard-card {
    padding: 16px;
    border-radius: 18px;
  }

  .az-account-dashboard-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
}

/* My Account Orders — v0.6.13.2 (append-only, scoped) */
.az-account-page .az-account-orders {
  display: grid;
  gap: 18px;
}

.az-account-page .az-account-orders__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.az-account-page .az-account-orders__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0053ad;
}

.az-account-page .az-account-orders__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 850;
  color: #1f2937;
}

.az-account-page .az-account-orders__count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0,83,173, 0.08);
  color: #0053ad;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.az-account-page .az-account-orders__table-wrap {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: #fff;
}

.az-account-page .az-account-orders-table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

.az-account-page .az-account-orders-table__header {
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: #fafafa;
  color: #6b7280;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}

.az-account-page .az-account-orders-table__row {
  transition: background 0.2s ease;
}

.az-account-page .az-account-orders-table__row:hover {
  background: rgba(0,83,173, 0.035);
}

.az-account-page .az-account-orders-table__cell {
  padding: 16px;
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
}

.az-account-page .az-account-orders-table tbody tr:last-child .az-account-orders-table__cell {
  border-bottom: 0;
}

.az-account-page .az-account-order-number {
  color: #1f2937;
  font-weight: 850;
  text-decoration: none;
}

.az-account-page .az-account-order-number:hover {
  color: #0053ad;
}

.az-account-page .az-account-order-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: #374151;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.az-account-page .az-account-order-status--completed {
  background: rgba(25,135,84, 0.1);
  color: #198754;
}

.az-account-page .az-account-order-status--processing,
.az-account-page .az-account-order-status--on-hold {
  background: rgba(217, 119, 6, 0.12);
  color: #b45309;
}

.az-account-page .az-account-order-status--cancelled,
.az-account-page .az-account-order-status--failed,
.az-account-page .az-account-order-status--refunded {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
}

.az-account-page .az-account-order-total {
  color: #111827;
  font-weight: 750;
}

.az-account-page .az-account-order-total .amount {
  color: #0053ad;
  font-weight: 900;
}

.az-account-page .az-account-order-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.az-account-page .az-account-order-action,
.az-account-page .az-account-orders-pagination__button,
.az-account-page .az-account-orders-empty__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(0,83,173, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #0053ad;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.az-account-page .az-account-order-action:hover,
.az-account-page .az-account-orders-pagination__button:hover,
.az-account-page .az-account-orders-empty__button:hover {
  transform: translateY(-1px);
  background: var(--az-button-hover);
  color: #fff;
  box-shadow: 0 10px 24px rgba(111,66,193, 0.18);
}

.az-account-page .az-account-order-action--view {
  background: var(--az-button-bg);
  color: #fff;
}

.az-account-page .az-account-orders-pagination {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.az-account-page .az-account-orders-empty {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: #fafafa;
  color: #374151;
}

.az-account-page .az-account-orders-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(0,83,173, 0.1);
  color: #0053ad;
}

.az-account-page .az-account-orders-empty__content strong {
  display: block;
  margin-bottom: 6px;
  color: #1f2937;
  font-size: 18px;
  font-weight: 850;
}

.az-account-page .az-account-orders-empty__content p {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .az-account-page .az-account-orders__header {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .az-account-page .az-account-orders__count {
    width: fit-content;
  }

  .az-account-page .az-account-orders__table-wrap {
    border: 0;
    background: transparent;
  }

  .az-account-page .az-account-orders-table,
  .az-account-page .az-account-orders-table tbody,
  .az-account-page .az-account-orders-table tr,
  .az-account-page .az-account-orders-table td {
    display: block;
    width: 100%;
  }

  .az-account-page .az-account-orders-table thead {
    display: none;
  }

  .az-account-page .az-account-orders-table__row {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
    padding: 16px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
  }

  .az-account-page .az-account-orders-table__cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    border: 0;
    font-size: 14px;
    text-align: right;
  }

  .az-account-page .az-account-orders-table__cell::before {
    content: attr(data-title);
    color: #6b7280;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: left;
  }

  .az-account-page .woocommerce-orders-table__cell-order-actions::before {
    display: none;
  }

  .az-account-page .az-account-order-actions {
    width: 100%;
    justify-content: stretch;
  }

  .az-account-page .az-account-order-action {
    flex: 1;
  }

  .az-account-page .az-account-orders-empty {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

/* AZeeMall My Account Addresses — v0.6.13.3 (append-only, scoped) */
.az-account-page .az-account-addresses {
  display: grid;
  gap: 18px;
}

.az-account-page .az-account-addresses__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.az-account-page .az-account-addresses__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: #0053ad;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.az-account-page .az-account-addresses__title {
  margin: 0;
  color: #1f2937;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.2;
}

.az-account-page .az-account-addresses__intro,
.az-account-page .az-account-addresses__notice {
  max-width: 680px;
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.az-account-page .az-account-addresses__notice {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(0,83,173, 0.12);
  border-radius: 16px;
  background: rgba(0,83,173, 0.06);
  color: #555d63;
}

.az-account-page .az-account-addresses__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.az-account-page .az-account-address-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
}

.az-account-page .az-account-address-card__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.az-account-page .az-account-address-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(0,83,173, 0.1);
  color: #0053ad;
}

.az-account-page .az-account-address-card__title {
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.az-account-page .az-account-address-card__hint {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

.az-account-page .az-account-address-card__body {
  flex: 1;
  padding: 16px;
  border-radius: 18px;
  background: #fafafa;
  color: #374151;
  font-size: 14px;
  line-height: 1.8;
}

.az-account-page .az-account-address-card__body address {
  margin: 0;
  font-style: normal;
}

.az-account-page .az-account-address-card__empty {
  display: grid;
  gap: 4px;
}

.az-account-page .az-account-address-card__empty strong {
  color: #1f2937;
  font-size: 15px;
  font-weight: 850;
}

.az-account-page .az-account-address-card__empty span {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

.az-account-page .az-account-address-card__edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 16px;
  border: 1px solid rgba(0,83,173, 0.2);
  border-radius: 999px;
  background: var(--az-button-bg);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.az-account-page .az-account-address-card__edit:hover {
  transform: translateY(-1px);
  background: var(--az-button-hover);
  color: #fff;
  box-shadow: 0 14px 28px rgba(111,66,193, 0.20);
}

.az-account-page .woocommerce-address-fields {
  display: grid;
  gap: 18px;
}

.az-account-page .woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.az-account-page .woocommerce-address-fields .form-row {
  width: 100%;
  margin: 0;
  padding: 0;
}

.az-account-page .woocommerce-address-fields .form-row-wide {
  grid-column: 1 / -1;
}

.az-account-page .woocommerce-address-fields label {
  display: block;
  margin-bottom: 7px;
  color: #374151;
  font-size: 13px;
  font-weight: 850;
}

.az-account-page .woocommerce-address-fields input.input-text,
.az-account-page .woocommerce-address-fields textarea,
.az-account-page .woocommerce-address-fields select,
.az-account-page .woocommerce-address-fields .select2-container .select2-selection--single {
  min-height: 48px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px;
  background: #fff;
  color: #1f2937;
  font-size: 14px;
  box-shadow: none;
}

.az-account-page .woocommerce-address-fields input.input-text,
.az-account-page .woocommerce-address-fields textarea,
.az-account-page .woocommerce-address-fields select {
  width: 100%;
  padding: 0 14px;
}

.az-account-page .woocommerce-address-fields textarea {
  min-height: 110px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.az-account-page .woocommerce-address-fields input.input-text:focus,
.az-account-page .woocommerce-address-fields textarea:focus,
.az-account-page .woocommerce-address-fields select:focus {
  border-color: rgba(0,83,173, 0.55);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0,83,173, 0.1);
}

.az-account-page .woocommerce-address-fields button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--az-button-bg);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.az-account-page .woocommerce-address-fields button.button:hover {
  transform: translateY(-1px);
  background: var(--az-button-hover);
  color: #fff;
  box-shadow: 0 14px 28px rgba(111,66,193, 0.20);
}

@media (max-width: 900px) {
  .az-account-page .az-account-addresses__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .az-account-page .az-account-addresses__header {
    flex-direction: column;
    align-items: stretch;
  }

  .az-account-page .az-account-address-card {
    padding: 16px;
    border-radius: 20px;
  }

  .az-account-page .az-account-address-card__top {
    grid-template-columns: 1fr;
  }

  .az-account-page .az-account-address-card__edit {
    width: 100%;
  }

  .az-account-page .woocommerce-address-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}


/* My Account Details — v0.6.13.4 */
.az-account-page .az-account-details {
  display: grid;
  gap: 22px;
}

.az-account-page .az-account-details__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 4px;
}

.az-account-page .az-account-details__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #0053ad;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.az-account-page .az-account-details__title {
  margin: 0;
  color: #1f2937;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

.az-account-page .az-account-details__intro {
  max-width: 620px;
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.8;
}

.az-account-page .az-account-details-form {
  display: grid;
  gap: 18px;
}

.az-account-page .az-account-details-form__section {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(0,83,173, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,250,250,0.62));
}

.az-account-page .az-account-details-form__section-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.az-account-page .az-account-details-form__section-head h3,
.az-account-page .az-account-details-form__section-head strong {
  display: block;
  margin: 0;
  color: #1f2937;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.az-account-page .az-account-details-form__section-head p,
.az-account-page .az-account-details-form__section-head small {
  display: block;
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.az-account-page .az-account-details-form__icon {
  display: inline-flex;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(0,83,173, 0.1);
  color: #0053ad;
}

.az-account-page .az-account-details-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.az-account-page .az-account-details-form__field {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
}

.az-account-page .az-account-details-form__field--wide,
.az-account-page .az-account-details-form .form-row-wide {
  grid-column: 1 / -1;
}

.az-account-page .az-account-details-form label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 8px;
  color: #374151;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.az-account-page .az-account-details-form .required {
  color: #b45309;
  text-decoration: none;
}

.az-account-page .az-account-details-form input.input-text,
.az-account-page .az-account-details-form input[type="text"],
.az-account-page .az-account-details-form input[type="email"],
.az-account-page .az-account-details-form input[type="password"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  background: #fff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.az-account-page .az-account-details-form input.input-text:focus,
.az-account-page .az-account-details-form input[type="text"]:focus,
.az-account-page .az-account-details-form input[type="email"]:focus,
.az-account-page .az-account-details-form input[type="password"]:focus {
  border-color: rgba(0,83,173, 0.55);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,83,173, 0.1);
}

.az-account-page .az-account-details-form__hint {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.az-account-page .az-account-details-form__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.az-account-page .az-account-details-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--az-button-bg);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 30px rgba(0,100,210, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.az-account-page .az-account-details-form__submit:hover,
.az-account-page .az-account-details-form__submit:focus {
  transform: translateY(-1px);
  background: var(--az-button-hover);
  color: #fff;
  box-shadow: 0 20px 34px rgba(111,66,193, 0.22);
}

.az-account-page .az-account-details-form__submit:disabled,
.az-account-page .az-account-details-form__submit.disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 0.62;
  box-shadow: none;
}

.az-account-page .woocommerce-notices-wrapper .woocommerce-message,
.az-account-page .woocommerce-notices-wrapper .woocommerce-error,
.az-account-page .woocommerce-notices-wrapper .woocommerce-info {
  border-radius: 18px;
}

@media (max-width: 768px) {
  .az-account-page .az-account-details-form__grid {
    grid-template-columns: 1fr;
  }

  .az-account-page .az-account-details-form__section {
    padding: 16px;
    border-radius: 20px;
  }

  .az-account-page .az-account-details-form__actions {
    justify-content: stretch;
  }

  .az-account-page .az-account-details-form__submit {
    width: 100%;
  }
}


/* My Account Mobile Polish — v0.6.13.5 (append-only, scoped) */
.az-account-page .az-account-content__card {
  overflow: hidden;
}

.az-account-page .az-account-nav__item.woocommerce-MyAccount-navigation-link--downloads {
  display: none !important;
}

@media (max-width: 1024px) {
  .az-account-page .az-account-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
  }

  .az-account-page .az-account-hero {
    padding: 28px;
  }

  .az-account-page .az-account-content__card,
  .az-account-page .az-account-sidebar__card {
    border-radius: 24px;
  }
}

@media (max-width: 860px) {
  .az-account-page {
    padding-top: 20px;
  }

  .az-account-page .az-account-page__container {
    width: min(100% - 28px, 1180px);
  }

  .az-account-page .az-account-hero {
    padding: 22px;
    border-radius: 24px;
    margin-bottom: 18px;
  }

  .az-account-page .az-account-hero__title {
    font-size: 26px;
    line-height: 1.25;
  }

  .az-account-page .az-account-hero__text {
    font-size: 14px;
    line-height: 1.75;
  }

  .az-account-page .az-account-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .az-account-page .az-account-sidebar {
    position: static;
    order: -1;
  }

  .az-account-page .az-account-sidebar__card {
    padding: 10px;
    border-radius: 22px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .az-account-page .az-account-nav__list {
    display: flex;
    gap: 8px;
    min-width: max-content;
  }

  .az-account-page .az-account-nav__item {
    flex: 0 0 auto;
  }

  .az-account-page .az-account-nav__link {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .az-account-page .az-account-nav__label {
    gap: 8px;
    font-size: 13px;
  }

  .az-account-page .az-account-nav__icon {
    width: 16px;
    height: 16px;
  }

  .az-account-page .az-account-nav__chevron {
    display: none;
  }

  .az-account-page .az-account-content__card {
    padding: 18px;
    border-radius: 24px;
  }

  .az-account-page .az-account-dashboard__grid,
  .az-account-page .az-account-addresses__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .az-account-page .az-account-dashboard-card,
  .az-account-page .az-account-address-card {
    border-radius: 20px;
    padding: 16px;
  }

  .az-account-page .az-account-orders__header,
  .az-account-page .az-account-addresses__header,
  .az-account-page .az-account-details__header {
    gap: 10px;
    margin-bottom: 16px;
  }

  .az-account-page .az-account-orders__title,
  .az-account-page .az-account-addresses__title,
  .az-account-page .az-account-details__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .az-account-page .az-account-orders-table,
  .az-account-page .az-account-orders-table thead,
  .az-account-page .az-account-orders-table tbody,
  .az-account-page .az-account-orders-table tr,
  .az-account-page .az-account-orders-table th,
  .az-account-page .az-account-orders-table td {
    display: block;
    width: 100%;
  }

  .az-account-page .az-account-orders-table thead {
    display: none;
  }

  .az-account-page .az-account-orders-table {
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  .az-account-page .az-account-orders-table__row {
    padding: 14px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
  }

  .az-account-page .az-account-orders-table__cell {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0 !important;
    border: 0 !important;
    text-align: right;
    font-size: 13px;
    line-height: 1.55;
  }

  .az-account-page .az-account-orders-table__cell::before {
    content: attr(data-title);
    flex: 0 0 auto;
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
    text-align: left;
  }

  .az-account-page .az-account-orders-table__cell-order-actions {
    display: block !important;
  }

  .az-account-page .az-account-orders-table__cell-order-actions::before {
    display: block;
    margin-bottom: 8px;
    text-align: left;
  }

  .az-account-page .az-account-order-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .az-account-page .az-account-order-action,
  .az-account-page .az-account-orders-pagination__button,
  .az-account-page .az-account-address-card__edit,
  .az-account-page .az-account-details-form__submit {
    width: 100%;
    min-height: 46px;
  }

  .az-account-page .az-account-details-form__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .az-account-page .az-account-details-form__section {
    padding: 15px;
    border-radius: 20px;
  }

  .az-account-page .az-account-details-form input,
  .az-account-page .az-account-details-form select,
  .az-account-page .az-account-details-form textarea {
    min-height: 48px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .az-account-page .az-account-page__container {
    width: min(100% - 22px, 1180px);
  }

  .az-account-page .az-account-hero {
    padding: 18px;
    border-radius: 20px;
  }

  .az-account-page .az-account-breadcrumb {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .az-account-page .az-account-hero__title {
    font-size: 24px;
  }

  .az-account-page .az-account-content__card {
    padding: 14px;
    border-radius: 20px;
  }

  .az-account-page .az-account-sidebar__card {
    margin-inline: -2px;
    border-radius: 18px;
  }

  .az-account-page .az-account-nav__link {
    min-height: 42px;
    padding: 9px 11px;
  }

  .az-account-page .az-account-nav__label span:last-child {
    font-size: 12px;
  }

  .az-account-page .az-account-dashboard-card__title,
  .az-account-page .az-account-address-card__title {
    font-size: 15px;
  }

  .az-account-page .az-account-orders-empty,
  .az-account-page .az-account-address-card__empty {
    padding: 14px;
    border-radius: 18px;
  }
}

/* Auth Pages — v0.6.14.0 (append-only, scoped) */
.az-auth-route .az-auth-page {
  background: #f7f7f7;
  padding: 54px 0 72px;
}

.az-auth-route .az-auth-page__container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.az-auth-route .az-auth-hero {
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid #e5e5e5;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #eeeeee 100%);
}

.az-auth-route .az-auth-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: #707070;
  font-size: 13px;
  font-weight: 700;
}

.az-auth-route .az-auth-breadcrumb a {
  color: #5a6269;
  text-decoration: none;
}

.az-auth-route .az-auth-hero__eyebrow,
.az-auth-route .az-auth-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: #0064d2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.az-auth-route .az-auth-hero__title {
  margin: 0;
  color: #191919;
  font-family: var(--az-font-bold);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.05;
}

.az-auth-route .az-auth-hero__text {
  max-width: 620px;
  margin: 12px 0 0;
  color: #707070;
  font-size: 16px;
  line-height: 1.75;
}

.az-auth-route .az-auth-shell {
  display: block;
}

.az-auth-route .az-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.az-auth-route--login .az-auth-card--register,
.az-auth-route--register .az-auth-card--login {
  opacity: .78;
}

.az-auth-route .az-auth-card {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(25,25,25, .08);
}

.az-auth-route .az-auth-card.is-active {
  border-color: rgba(0,100,210, .35);
  box-shadow: 0 26px 64px rgba(0,100,210, .12);
}

.az-auth-route .az-auth-card__header {
  padding: 26px 26px 18px;
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
}

.az-auth-route .az-auth-card__title {
  margin: 0;
  color: #191919;
  font-family: var(--az-font-bold);
  font-size: 34px;
  line-height: 1.12;
}

.az-auth-route .az-auth-card__text {
  margin: 10px 0 0;
  color: #707070;
  font-size: 14px;
  line-height: 1.65;
}

.az-auth-route .az-auth-form {
  display: grid;
  gap: 15px;
  padding: 24px 26px 26px;
}

.az-auth-route .az-auth-form .form-row {
  margin: 0;
  padding: 0;
}

.az-auth-route .az-auth-form label {
  display: block;
  margin: 0 0 8px;
  color: #191919;
  font-size: 13px;
  font-weight: 900;
}

.az-auth-route .az-auth-form input.input-text,
.az-auth-route .az-auth-form input[type="text"],
.az-auth-route .az-auth-form input[type="email"],
.az-auth-route .az-auth-form input[type="password"] {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fafafa;
  color: #191919;
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.az-auth-route .az-auth-form input:focus {
  border-color: rgba(0,100,210, .6);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,100,210, .1);
}

.az-auth-route .az-auth-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px !important;
}

.az-auth-route .az-auth-remember {
  display: inline-flex !important;
  gap: 8px;
  align-items: center;
  margin: 0 !important;
  color: #707070 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.az-auth-route .az-auth-remember input {
  width: 16px;
  height: 16px;
  accent-color: #0064d2;
}

.az-auth-route .az-auth-submit,
.az-auth-route .woocommerce-button.az-auth-submit,
.az-auth-route .woocommerce-Button.az-auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--az-button-bg);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.az-auth-route .az-auth-submit:hover,
.az-auth-route .az-auth-submit:focus {
  background: var(--az-button-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,100,210, .22);
}

.az-auth-route .az-auth-lost-password,
.az-auth-route .az-auth-switch,
.az-auth-route .az-auth-generated-password-note {
  margin: 0;
  color: #707070;
  font-size: 14px;
  line-height: 1.6;
}

.az-auth-route .az-auth-lost-password a,
.az-auth-route .az-auth-switch a {
  color: #0064d2;
  font-weight: 900;
  text-decoration: none;
}

.az-auth-route .woocommerce-privacy-policy-text {
  color: #707070;
  font-size: 13px;
  line-height: 1.65;
}

.az-auth-route .woocommerce-privacy-policy-text a {
  color: #0064d2;
  font-weight: 800;
  text-decoration: none;
}

.az-auth-route .woocommerce-notices-wrapper,
.az-auth-route .woocommerce-message,
.az-auth-route .woocommerce-info,
.az-auth-route .woocommerce-error {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .az-auth-route .az-auth-grid {
    grid-template-columns: 1fr;
  }

  .az-auth-route--login .az-auth-card--register,
  .az-auth-route--register .az-auth-card--login {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .az-auth-route .az-auth-page {
    padding: 28px 0 46px;
  }

  .az-auth-route .az-auth-page__container {
    width: min(100% - 24px, 1120px);
  }

  .az-auth-route .az-auth-hero {
    padding: 22px;
    border-radius: 22px;
  }

  .az-auth-route .az-auth-card {
    border-radius: 22px;
  }

  .az-auth-route .az-auth-card__header,
  .az-auth-route .az-auth-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .az-auth-route .az-auth-card__title {
    font-size: 30px;
  }

  .az-auth-route .az-auth-form__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .az-auth-route .az-auth-submit,
  .az-auth-route .woocommerce-button.az-auth-submit,
  .az-auth-route .woocommerce-Button.az-auth-submit {
    width: 100%;
  }
}


/* Auth Login UI + Customer Redirect UX — v0.6.14.1 (append-only, scoped) */
.az-auth-route .woocommerce-notices-wrapper,
.az-auth-route .woocommerce-error,
.az-auth-route .woocommerce-message,
.az-auth-route .woocommerce-info {
  margin: 0 0 18px;
  border-radius: 18px;
}

.az-auth-route .az-auth-shell .woocommerce {
  width: 100%;
}

.az-auth-route .az-auth-grid {
  align-items: stretch;
}

.az-auth-route .az-auth-card {
  position: relative;
  overflow: hidden;
}

.az-auth-route .az-auth-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #111827, #7c3aed, #f59e0b);
  opacity: 0;
  transition: opacity .2s ease;
}

.az-auth-route .az-auth-card.is-active::before {
  opacity: 1;
}

.az-auth-route .az-auth-form .required {
  color: #dc2626;
  font-weight: 800;
}

.az-auth-route .az-auth-form input.input-text,
.az-auth-route .az-auth-form input[type="text"],
.az-auth-route .az-auth-form input[type="email"],
.az-auth-route .az-auth-form input[type="password"] {
  min-height: 52px;
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.az-auth-route .az-auth-form input.input-text:hover,
.az-auth-route .az-auth-form input[type="text"]:hover,
.az-auth-route .az-auth-form input[type="email"]:hover,
.az-auth-route .az-auth-form input[type="password"]:hover {
  border-color: rgba(17, 24, 39, .22);
}

.az-auth-route .az-auth-form input.input-text:focus,
.az-auth-route .az-auth-form input[type="text"]:focus,
.az-auth-route .az-auth-form input[type="email"]:focus,
.az-auth-route .az-auth-form input[type="password"]:focus {
  border-color: rgba(124, 58, 237, .55);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .10);
}

.az-auth-route .az-auth-form__actions {
  gap: 14px;
}

.az-auth-route .az-auth-remember {
  padding: 10px 0;
}

.az-auth-route .az-auth-submit,
.az-auth-route .woocommerce-button.az-auth-submit,
.az-auth-route .woocommerce-Button.az-auth-submit {
  min-height: 52px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(17, 24, 39, .14);
}

.az-auth-route .az-auth-submit:active,
.az-auth-route .woocommerce-button.az-auth-submit:active,
.az-auth-route .woocommerce-Button.az-auth-submit:active {
  transform: translateY(1px);
}

.az-auth-route .az-auth-lost-password,
.az-auth-route .az-auth-switch {
  border-top: 1px solid rgba(17, 24, 39, .08);
  padding-top: 16px;
}

.az-auth-route .az-auth-card--login.is-active .az-auth-card__title,
.az-auth-route .az-auth-card--register.is-active .az-auth-card__title {
  color: #111827;
}

.az-auth-route .az-auth-card:not(.is-active) {
  background: rgba(255, 255, 255, .72);
}

.az-auth-route .az-auth-card:not(.is-active) .az-auth-form {
  opacity: .96;
}

@media (min-width: 901px) {
  .az-auth-route--login .az-auth-grid,
  .az-auth-route--register .az-auth-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 600px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .az-auth-route .az-auth-hero__title {
    font-size: 36px;
    line-height: 1.15;
  }

  .az-auth-route .az-auth-hero__text {
    font-size: 15px;
  }

  .az-auth-route .az-auth-form input.input-text,
  .az-auth-route .az-auth-form input[type="text"],
  .az-auth-route .az-auth-form input[type="email"],
  .az-auth-route .az-auth-form input[type="password"] {
    min-height: 50px;
  }
}


/* Auth Register UI — v0.6.14.2 (append-only, scoped) */
.az-auth-route--login .az-auth-card--register,
.az-auth-route--register .az-auth-card--login {
  display: none !important;
}

.az-auth-route--register .az-auth-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 620px;
  margin-inline: auto;
}

.az-auth-route--register .az-auth-card--register {
  border-color: rgba(0,100,210, .18);
  box-shadow: 0 24px 70px rgba(25,25,25, .10);
}

.az-auth-route--register .az-auth-card--register::before {
  opacity: 1;
  background: linear-gradient(90deg, #0064d2, #8ab9ef, #191919);
}

.az-auth-route .az-auth-benefits {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.az-auth-route .az-auth-benefits li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #52585e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.az-auth-route .az-auth-benefits li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(0,100,210, .14);
  box-shadow: inset 0 0 0 1px rgba(0,100,210, .22);
}

.az-auth-route .az-auth-benefits li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 6px;
  height: 9px;
  border-right: 2px solid #0064d2;
  border-bottom: 2px solid #0064d2;
  transform: rotate(45deg);
}

.az-auth-route .az-auth-form--register {
  gap: 18px;
}

.az-auth-route .az-auth-form--register .form-row {
  margin-bottom: 0;
}

.az-auth-route .az-auth-form--register label {
  color: #191919;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.az-auth-route .az-auth-form--register input.input-text,
.az-auth-route .az-auth-form--register input[type="text"],
.az-auth-route .az-auth-form--register input[type="email"],
.az-auth-route .az-auth-form--register input[type="password"] {
  min-height: 54px;
  border-radius: 18px;
  background: #fff;
}

.az-auth-route .az-auth-form--register .az-auth-generated-password-note {
  padding: 14px 16px;
  border: 1px solid rgba(0,100,210, .18);
  border-radius: 18px;
  background: rgba(0,100,210, .08);
  color: #5b6268;
  font-size: 13px;
  font-weight: 800;
}

.az-auth-route .az-auth-form--register .woocommerce-privacy-policy-text {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 24, 39, .035);
}

.az-auth-route .az-auth-form--register .az-auth-form__actions {
  display: block;
}

.az-auth-route .az-auth-form--register .az-auth-submit,
.az-auth-route .woocommerce-Button.woocommerce-form-register__submit.az-auth-submit {
  width: 100%;
  min-height: 54px;
  background: var(--az-button-bg);
  box-shadow: 0 16px 34px rgba(0,100,210, .24);
}

.az-auth-route .az-auth-form--register .az-auth-submit:hover,
.az-auth-route .woocommerce-Button.woocommerce-form-register__submit.az-auth-submit:hover,
.az-auth-route .az-auth-form--register .az-auth-submit:focus,
.az-auth-route .woocommerce-Button.woocommerce-form-register__submit.az-auth-submit:focus {
  background: var(--az-button-hover);
  box-shadow: 0 16px 34px rgba(111,66,193, .22);
}

.az-auth-route .az-auth-switch--login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

@media (max-width: 640px) {
  .az-auth-route--register .az-auth-grid {
    max-width: none;
  }

  .az-auth-route .az-auth-benefits {
    margin-top: 14px;
  }

  .az-auth-route .az-auth-benefits li {
    font-size: 12.5px;
  }

  .az-auth-route .az-auth-form--register input.input-text,
  .az-auth-route .az-auth-form--register input[type="text"],
  .az-auth-route .az-auth-form--register input[type="email"],
  .az-auth-route .az-auth-form--register input[type="password"] {
    min-height: 52px;
  }

  .az-auth-route .az-auth-switch--login {
    flex-wrap: wrap;
  }
}

/* Auth Lost Password & Final Polish — v0.6.14.6 (append-only, scoped) */
.az-auth-route--lost-password .az-auth-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 600px;
  margin-inline: auto;
}

.az-auth-route--lost-password .az-auth-card--lost-password {
  border-color: rgba(0,100,210, .18);
  box-shadow: 0 24px 70px rgba(25,25,25, .10);
}

.az-auth-route--lost-password .az-auth-card--lost-password::before {
  opacity: 1;
  background: linear-gradient(90deg, #0064d2, #8ab9ef, #191919);
}

.az-auth-route--lost-password .az-auth-card--lost-password form,
.az-auth-route--lost-password .az-auth-card--lost-password .woocommerce-ResetPassword {
  display: grid;
  gap: 18px;
  margin: 0;
}

.az-auth-route--lost-password .az-auth-card--lost-password p {
  margin: 0;
}

.az-auth-route--lost-password .az-auth-card--lost-password label,
.az-auth-route .woocommerce-ResetPassword label,
.az-auth-route .lost_reset_password label {
  display: block;
  margin-bottom: 8px;
  color: #191919;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.az-auth-route--lost-password .az-auth-card--lost-password input.input-text,
.az-auth-route--lost-password .az-auth-card--lost-password input[type="text"],
.az-auth-route--lost-password .az-auth-card--lost-password input[type="email"],
.az-auth-route--lost-password .az-auth-card--lost-password input[type="password"],
.az-auth-route .woocommerce-ResetPassword input.input-text,
.az-auth-route .lost_reset_password input.input-text {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(25,25,25, .12);
  border-radius: 18px;
  background: #fff;
  color: #191919;
  font-size: 15px;
  font-weight: 750;
  outline: none;
  padding: 0 16px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.az-auth-route--lost-password .az-auth-card--lost-password input:focus,
.az-auth-route .woocommerce-ResetPassword input:focus,
.az-auth-route .lost_reset_password input:focus {
  border-color: rgba(0,100,210, .55);
  box-shadow: 0 0 0 4px rgba(0,100,210, .12);
}

.az-auth-route--lost-password .az-auth-card--lost-password .woocommerce-Button,
.az-auth-route .woocommerce-ResetPassword .woocommerce-Button,
.az-auth-route .lost_reset_password .woocommerce-Button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: #0064d2;
  color: #fff;
  box-shadow: 0 16px 34px rgba(0,100,210, .24);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.az-auth-route--lost-password .az-auth-card--lost-password .woocommerce-Button:hover,
.az-auth-route .woocommerce-ResetPassword .woocommerce-Button:hover,
.az-auth-route .lost_reset_password .woocommerce-Button:hover,
.az-auth-route--lost-password .az-auth-card--lost-password .woocommerce-Button:focus,
.az-auth-route .woocommerce-ResetPassword .woocommerce-Button:focus,
.az-auth-route .lost_reset_password .woocommerce-Button:focus {
  background: var(--az-button-hover);
  box-shadow: 0 16px 34px rgba(111,66,193, .22);
}

.az-auth-route--lost-password .az-auth-card--lost-password .woocommerce-Button:active,
.az-auth-route .woocommerce-ResetPassword .woocommerce-Button:active,
.az-auth-route .lost_reset_password .woocommerce-Button:active {
  transform: translateY(1px);
}

.az-auth-route .woocommerce-notices-wrapper,
.az-auth-route .woocommerce-message,
.az-auth-route .woocommerce-error,
.az-auth-route .woocommerce-info {
  max-width: 760px;
  margin: 0 auto 18px;
}

.az-auth-route .woocommerce-error,
.az-auth-route .woocommerce-message,
.az-auth-route .woocommerce-info {
  border: 1px solid rgba(0,100,210, .16);
  border-radius: 20px;
  background: #fff;
  color: #191919;
  box-shadow: 0 16px 36px rgba(25,25,25, .07);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  padding: 16px 18px;
}
.az-auth-route .woocommerce-error {
  border-color: rgba(185, 28, 28, .18);
  background: rgba(254, 242, 242, .92);
  color: #7f1d1d;
}

.az-auth-route .woocommerce-message {
  border-color: rgba(25,135,84, .18);
  background: rgba(240, 253, 244, .92);
  color: #146c43;
}

.az-auth-route .az-auth-switch--login {
  margin-top: 18px;
}

.az-auth-route .az-auth-switch a,
.az-auth-route .az-auth-lost-password a {
  color: #0064d2;
  font-weight: 900;
  text-decoration: none;
}

.az-auth-route .az-auth-switch a:hover,
.az-auth-route .az-auth-lost-password a:hover {
  color: #191919;
}

@media (max-width: 640px) {
  .az-auth-route--lost-password .az-auth-grid {
    max-width: none;
  }

  .az-auth-route .woocommerce-error,
  .az-auth-route .woocommerce-message,
  .az-auth-route .woocommerce-info {
    border-radius: 18px;
    font-size: 13px;
    padding: 14px 15px;
  }

  .az-auth-route--lost-password .az-auth-card--lost-password input.input-text,
  .az-auth-route--lost-password .az-auth-card--lost-password input[type="text"],
  .az-auth-route--lost-password .az-auth-card--lost-password input[type="email"],
  .az-auth-route--lost-password .az-auth-card--lost-password input[type="password"],
  .az-auth-route .woocommerce-ResetPassword input.input-text,
  .az-auth-route .lost_reset_password input.input-text,
  .az-auth-route--lost-password .az-auth-card--lost-password .woocommerce-Button,
  .az-auth-route .woocommerce-ResetPassword .woocommerce-Button,
  .az-auth-route .lost_reset_password .woocommerce-Button {
    min-height: 52px;
  }
}

/* v0.6.14.7 — Cart remove + auto update fix, scoped to Cart only */
body.woocommerce-cart .az-cart-table .product-remove,
body.woocommerce-cart .az-cart-table .az-cart-item__remove {
  pointer-events: auto !important;
}

body.woocommerce-cart .az-cart-table .az-cart-item__remove {
  position: relative !important;
  z-index: 10 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  touch-action: manipulation !important;
}

body.woocommerce-cart .az-cart-table .az-cart-item__remove[aria-disabled="true"] {
  pointer-events: none !important;
  opacity: .55 !important;
}

body.woocommerce-cart .az-cart-table tr.az-cart-item.az-cart-item-is-removing {
  opacity: .56 !important;
  transform: scale(.995) !important;
  transition: opacity 180ms ease, transform 180ms ease !important;
}

body.woocommerce-cart form.woocommerce-cart-form.az-cart-is-updating .az-cart-table {
  cursor: progress;
}

body.woocommerce-cart button[name="update_cart"].az-cart-update-is-loading {
  opacity: .72 !important;
  cursor: wait !important;
}

/* Generic WordPress content templates — v0.7.0 */
.az-content-page{padding:clamp(48px,7vw,88px) 0}.az-content-page--woocommerce{padding-top:32px}.az-content-page__inner{max-width:980px}.az-content-page--woocommerce .az-content-page__inner{max-width:var(--az-container)}.az-entry{min-width:0}.az-entry__header{margin-bottom:32px}.az-entry__header--archive{padding-bottom:24px;border-bottom:1px solid var(--az-border)}.az-entry__title{margin:0;font-family:var(--az-font-bold);font-size:clamp(40px,6vw,68px);font-weight:500;line-height:1.05;color:var(--az-text)}.az-entry__meta{margin:0 0 10px;color:var(--az-terracotta);font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}.az-entry__description,.az-entry__content,.az-post-card__excerpt{color:var(--az-muted);font-size:16px;line-height:1.8}.az-entry__content>*:first-child{margin-top:0}.az-entry__content>*:last-child{margin-bottom:0}.az-entry__content a{color:var(--az-terracotta);text-decoration:underline;text-underline-offset:3px}.az-entry__content img{border-radius:var(--az-radius-lg)}.az-entry__image{margin:0 0 32px}.az-entry__image img{width:100%;border-radius:var(--az-radius-lg)}.az-post-list{display:grid;gap:18px}.az-post-card{padding:28px;border:1px solid var(--az-border);border-radius:var(--az-radius-lg);background:var(--az-surface)}.az-post-card__title{margin:0 0 12px;font-family:var(--az-font-bold);font-size:clamp(28px,4vw,38px);font-weight:500;line-height:1.15}.az-post-card__title a:hover{color:var(--az-terracotta)}.az-not-found{max-width:680px;padding:clamp(32px,6vw,64px);border:1px solid var(--az-border);border-radius:var(--az-radius-xl);background:var(--az-surface);text-align:center;margin-inline:auto}.az-not-found p:not(.az-entry__meta){margin:18px auto 28px;max-width:520px;color:var(--az-muted);line-height:1.7}.az-comments{margin-top:48px;padding-top:32px;border-top:1px solid var(--az-border)}.az-comments__title{font-family:var(--az-font-bold);font-size:32px;font-weight:500}.comment-list{padding-inline-start:24px}@media(max-width:767px){.az-container{width:min(100% - 32px,var(--az-container))}.az-post-card{padding:22px}}


/* Split shop navigation — v0.13.9
 * Desktop: Sort + Categories stacked in one left sidebar / Products.
 * Mobile + tablet: two discoverable controls that open independent bottom sheets.
 */
.az-shop-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -10px 0 26px;
}
.az-shop-controls__count .woocommerce-result-count {
  margin: 0;
  color: var(--az-muted);
  font-size: 13px;
}
.az-shop-controls__mobile { display: none; }
.az-shop-layout {
  display: grid;
  grid-template-columns: clamp(260px, 21vw, 300px) minmax(0, 1fr);
  gap: clamp(24px, 2.2vw, 34px);
  align-items: start;
}
.az-shop-side-panel {
  position: sticky;
  top: 108px;
  align-self: start;
  max-height: calc(100vh - 132px);
  max-height: calc(100dvh - 132px);
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(112,112,112,.28) transparent;
  padding: 20px;
  border: 1px solid rgba(229,229,229,.9);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 32px rgba(25,25,25,.045);
  backdrop-filter: blur(8px);
}
.az-shop-side-panel::-webkit-scrollbar { width: 7px; }
.az-shop-side-panel::-webkit-scrollbar-track { background: transparent; }
.az-shop-side-panel::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(112,112,112,.3);
  background-clip: padding-box;
}
.az-shop-side-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(229,229,229,.82);
}
.az-shop-side-panel__head p {
  margin: 0 0 4px;
  color: var(--az-terracotta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.az-shop-side-panel__head h2 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-heading-font);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.08;
}
.az-shop-side-panel__close { display: none; }
.az-shop-option-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.az-shop-option-list a,
.az-shop-option-list__empty {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--az-muted);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.az-shop-option-list--categories a { justify-content: space-between; }
.az-shop-option-list a:hover {
  border-color: rgba(0,100,210,.18);
  background: rgba(255,255,255,.72);
  color: var(--az-text);
}
.az-shop-option-list a.is-active {
  border-color: rgba(0,100,210,.22);
  background: var(--az-cream);
  color: var(--az-terracotta);
  font-weight: 700;
}
.az-shop-option-list small {
  flex: 0 0 auto;
  color: rgba(112,112,112,.68);
  font-size: 11px;
  font-weight: 700;
}
.az-shop-option-list a.is-active small { color: var(--az-terracotta); }
.az-shop-option-list__marker {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border: 1.5px solid rgba(112,112,112,.44);
  border-radius: 999px;
  box-shadow: inset 0 0 0 3px #fff;
  background: #fff;
}
.az-shop-option-list--sort a.is-active .az-shop-option-list__marker {
  border-color: var(--az-terracotta);
  background: var(--az-terracotta);
}

.az-shop-sort-panel .az-shop-side-panel__head h2 {
  white-space: nowrap;
}
.az-shop-sort-panel .az-shop-option-list a {
  width: 100%;
}
.az-shop-panel-backdrop { display: none; pointer-events: none; }

/* v0.14.1 — shared desktop sidebar: Sort first, Categories second. */
.az-shop-sidebar {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 16px;
  max-height: calc(100vh - 132px);
  max-height: calc(100dvh - 132px);
  overflow-y: auto;
  overscroll-behavior-y: contain;
  padding-right: 4px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(112,112,112,.28) transparent;
}
.az-shop-sidebar::-webkit-scrollbar { width: 7px; }
.az-shop-sidebar::-webkit-scrollbar-track { background: transparent; }
.az-shop-sidebar::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(112,112,112,.3);
  background-clip: padding-box;
}
.az-shop-side-panel {
  position: static;
  width: 100%;
  max-height: none;
  overflow: visible;
  scrollbar-gutter: auto;
}
.az-shop-sort-panel { order: 1; }
.az-shop-category-panel { order: 2; }
.az-shop-products {
  grid-column: 2;
  min-width: 0;
}

/* v0.13.9 — persistent mobile controls + global back-to-top */
.az-back-to-top {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, calc(16px + env(safe-area-inset-bottom)));
  z-index: 989;
  display: inline-grid;
  place-items: center;
  width: clamp(46px, 4vw, 52px);
  height: clamp(46px, 4vw, 52px);
  padding: 0;
  border: 1px solid rgba(229,229,229,.92);
  border-radius: 999px;
  background: rgba(25,25,25,.94);
  box-shadow: 0 14px 34px rgba(25,25,25,.2);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.92);
  visibility: hidden;
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 200ms, background-color 180ms ease;
}
.az-back-to-top:hover,
.az-back-to-top:focus-visible {
  background: var(--az-terracotta);
  outline: none;
}
.az-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition-delay: 0s;
}
body:has(.az-product-sticky-cart.is-visible) .az-back-to-top {
  bottom: calc(102px + env(safe-area-inset-bottom));
}

@media (max-width: 991px) {
  html, body, .az-shop-page { overflow-x: clip; }
  .az-shop-sidebar {
    display: block;
    position: static;
    inset: auto;
    z-index: auto;
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    border-radius: 0;
    transform: none;
    transition: none;
    scrollbar-gutter: auto;
  }
  .az-shop-controls {
    display: block;
    margin: -6px 0 8px;
  }
  .az-shop-controls__count { text-align: center; }
  .az-shop-controls__mobile {
    position: sticky;
    top: var(--az-shop-mobile-sticky-top, 64px);
    z-index: 1210;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin: 0 0 22px;
    padding: 8px 0;
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 24px rgba(25,25,25,.055);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .az-shop-mobile-control {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 3px;
    width: 100%;
    cursor: pointer;
    touch-action: manipulation;
    min-width: 0;
    min-height: 58px;
    padding: 10px 13px;
    border: 1px solid rgba(229,229,229,.96);
    border-radius: 15px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 8px 22px rgba(25,25,25,.04);
    color: var(--az-text);
    text-align: left;
  }
  .az-shop-mobile-control__label {
    color: var(--az-terracotta);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
  }
  .az-shop-mobile-control__value {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: var(--az-text);
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Keep sticky Shop controls below global modal layers while the mobile
   * navigation/search is open. Otherwise the toolbar can paint over the menu. */
  body.az-lock-scroll .az-shop-controls__mobile {
    z-index: 1190;
    pointer-events: none;
  }
  .az-shop-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .az-shop-products { grid-column: 1; grid-row: 1; }
  .az-shop-side-panel {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1410;
    width: 100%;
    max-width: none;
    max-height: min(76dvh, 680px);
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    padding: 20px 18px calc(22px + env(safe-area-inset-bottom));
    border-width: 1px 0 0;
    border-radius: 26px 26px 0 0;
    background: #fff;
    box-shadow: 0 -18px 55px rgba(25,25,25,.16);
    transform: translateY(105%);
    transition: transform 280ms cubic-bezier(.2,.7,.2,1);
    visibility: hidden;
    pointer-events: none;
  }
  .az-shop-side-panel.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .az-shop-side-panel__head {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: -2px 0 12px;
    padding: 2px 0 14px;
    background: #fff;
  }
  .az-shop-side-panel__head h2 { font-size: 26px; }
  .az-shop-sort-panel .az-shop-side-panel__head h2 { white-space: normal; }
  .az-shop-side-panel__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--az-border);
    border-radius: 999px;
    background: var(--az-cream);
    color: var(--az-text);
  }
  .az-shop-option-list { gap: 5px; }
  .az-shop-option-list a,
  .az-shop-option-list__empty {
    min-height: 48px;
    padding: 10px 11px;
    font-size: 14px;
  }
  .az-shop-panel-backdrop {
    display: block;
    position: fixed;
    touch-action: none;
    inset: 0;
    z-index: 1400;
    background: rgba(25,25,25,.42);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 260ms ease, visibility 0s linear 260ms;
  }
  .az-shop-panel-backdrop[hidden] { display: none !important; pointer-events: none !important; }
  .az-shop-panel-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }
}

/* Guest authentication visual scope — v0.10.6 */
body.az-auth-route {
  background:
    radial-gradient(circle at 10% 8%, rgba(0,100,210, .10), transparent 32rem),
    linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

body.az-auth-route .az-content-page,
body.az-auth-route .az-auth-page {
  min-height: calc(100vh - 170px);
  padding: clamp(34px, 6vw, 72px) 0 clamp(54px, 8vw, 96px);
  background: transparent;
}

body.az-auth-route .az-content-page__inner,
body.az-auth-route .az-auth-page__container {
  width: min(100% - 32px, 1120px);
  max-width: 1120px;
  margin-inline: auto;
}

body.az-auth-route .az-entry__content {
  color: #52585e;
  font-size: 15px;
  line-height: 1.65;
}

body.az-auth-route .az-entry__content a {
  text-decoration: none;
  text-underline-offset: 0;
}

.az-auth-inline-shell {
  width: min(100%, 680px);
  margin-inline: auto;
}

.az-auth-inline-shell .az-auth-grid {
  width: 100%;
}

.az-auth-route .az-auth-card {
  border: 1px solid rgba(63,70,77, .12);
  border-radius: 30px;
  background: rgba(255, 255, 255, .94);
  box-shadow:
    0 32px 90px rgba(25,25,25, .12),
    0 2px 0 rgba(255, 255, 255, .8) inset;
  backdrop-filter: blur(12px);
}

.az-auth-route .az-auth-card::before {
  height: 5px;
  background: linear-gradient(90deg, #191919 0%, #0064d2 52%, #8ab9ef 100%);
  opacity: 1;
}

.az-auth-route .az-auth-card__header {
  position: relative;
  padding: clamp(26px, 5vw, 42px) clamp(22px, 5vw, 42px) 24px;
  border-bottom: 1px solid rgba(63,70,77, .09);
  background:
    radial-gradient(circle at 92% 10%, rgba(0,100,210, .14), transparent 12rem),
    linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
}

.az-auth-route .az-auth-card__header::after {
  content: "";
  position: absolute;
  top: 28px;
  right: clamp(22px, 5vw, 42px);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0,100,210, .22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0,100,210, .18), rgba(255, 255, 255, .88));
  box-shadow: 0 12px 28px rgba(0,100,210, .14);
}

.az-auth-route .az-auth-card--login .az-auth-card__header::before,
.az-auth-route .az-auth-card--register .az-auth-card__header::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 41px;
  right: calc(clamp(22px, 5vw, 42px) + 14px);
  width: 18px;
  height: 18px;
  border: 2px solid #0053ad;
  border-radius: 50%;
}

.az-auth-route .az-auth-card--login .az-auth-card__header::before {
  border-radius: 50% 50% 42% 42%;
  box-shadow: 0 15px 0 -5px #0053ad;
}

.az-auth-route .az-auth-card--register .az-auth-card__header::before {
  box-shadow:
    -8px 10px 0 -5px #0053ad,
    8px 10px 0 -5px #0053ad;
}

.az-auth-route .az-auth-card__eyebrow {
  margin-bottom: 12px;
  color: #0053ad;
  font-size: 11px;
  letter-spacing: .16em;
}

.az-auth-route .az-auth-card__title {
  max-width: calc(100% - 68px);
  color: #191919;
  font-size: clamp(38px, 7vw, 54px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .98;
}

.az-auth-route .az-auth-card__text {
  max-width: 500px;
  margin-top: 16px;
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.az-auth-route .az-auth-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.az-auth-route .az-auth-benefits li {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(0,100,210, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .64);
  color: #52585e;
  font-size: 12px;
  line-height: 1.45;
}

.az-auth-route .az-auth-form {
  gap: 18px;
  padding: 28px clamp(22px, 5vw, 42px) clamp(30px, 5vw, 42px);
}

.az-auth-route .az-auth-form label {
  margin-bottom: 9px;
  color: #24292e;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.01em;
}

.az-auth-route .az-auth-form input.input-text,
.az-auth-route .az-auth-form input[type="text"],
.az-auth-route .az-auth-form input[type="email"],
.az-auth-route .az-auth-form input[type="password"] {
  min-height: 58px;
  padding: 0 17px;
  border: 1px solid rgba(63,70,77, .18);
  border-radius: 17px;
  background: #fff;
  color: #191919;
  box-shadow: 0 1px 0 rgba(25,25,25, .03) inset;
  font-size: 16px;
}

.az-auth-route .az-auth-form input.input-text:hover,
.az-auth-route .az-auth-form input[type="text"]:hover,
.az-auth-route .az-auth-form input[type="email"]:hover,
.az-auth-route .az-auth-form input[type="password"]:hover {
  border-color: rgba(0,100,210, .42);
}

.az-auth-route .az-auth-form input.input-text:focus,
.az-auth-route .az-auth-form input[type="text"]:focus,
.az-auth-route .az-auth-form input[type="email"]:focus,
.az-auth-route .az-auth-form input[type="password"]:focus {
  border-color: #0064d2;
  box-shadow: 0 0 0 4px rgba(0,100,210, .13);
}

.az-auth-route .az-auth-form__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.az-auth-route .az-auth-submit,
.az-auth-route .woocommerce-button.az-auth-submit,
.az-auth-route .woocommerce-Button.az-auth-submit {
  order: -1;
  width: 100%;
  min-height: 58px;
  border-radius: 17px;
  background: var(--az-button-bg);
  box-shadow: 0 16px 34px rgba(0,100,210, .20);
  font-size: 15px;
  letter-spacing: .01em;
}

.az-auth-route .az-auth-submit:hover,
.az-auth-route .az-auth-submit:focus,
.az-auth-route .woocommerce-button.az-auth-submit:hover,
.az-auth-route .woocommerce-button.az-auth-submit:focus,
.az-auth-route .woocommerce-Button.az-auth-submit:hover,
.az-auth-route .woocommerce-Button.az-auth-submit:focus {
  background: var(--az-button-hover);
  box-shadow: 0 18px 38px rgba(111,66,193, .26);
}

.az-auth-route .az-auth-remember {
  justify-content: flex-start;
  width: fit-content;
  padding: 0;
  color: #666666;
}

.az-auth-route .az-auth-remember input {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.az-auth-route .az-auth-lost-password,
.az-auth-route .az-auth-switch {
  padding-top: 17px;
  border-top: 1px solid rgba(63,70,77, .09);
  color: #666666;
  font-size: 14px;
}

.az-auth-route .az-auth-lost-password a,
.az-auth-route .az-auth-switch a,
.az-auth-route .woocommerce-privacy-policy-text a {
  color: #0053ad;
  font-weight: 900;
  text-decoration: none;
}

.az-auth-route .az-auth-lost-password a:hover,
.az-auth-route .az-auth-switch a:hover,
.az-auth-route .woocommerce-privacy-policy-text a:hover {
  color: #191919;
}

.az-auth-route .az-auth-generated-password-note,
.az-auth-route .woocommerce-privacy-policy-text {
  margin: 0;
  padding: 15px 16px;
  border: 1px solid rgba(0,100,210, .12);
  border-radius: 16px;
  background: #ffffff;
  color: #666666;
  font-size: 13px;
  line-height: 1.65;
}

.az-auth-route .show-password-input {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.az-auth-route .woocommerce-notices-wrapper,
.az-auth-route .woocommerce-error,
.az-auth-route .woocommerce-message,
.az-auth-route .woocommerce-info {
  width: min(100%, 680px);
}

@media (max-width: 720px) {
  body.az-auth-route .az-content-page,
  body.az-auth-route .az-auth-page {
    padding-top: 24px;
  }

  body.az-auth-route .az-content-page__inner,
  body.az-auth-route .az-auth-page__container {
    width: min(100% - 24px, 1120px);
  }

  .az-auth-route .az-auth-card {
    border-radius: 24px;
    box-shadow: 0 22px 58px rgba(25,25,25, .11);
  }

  .az-auth-route .az-auth-card__header {
    padding: 26px 22px 22px;
  }

  .az-auth-route .az-auth-card__header::after {
    top: 22px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .az-auth-route .az-auth-card--login .az-auth-card__header::before,
  .az-auth-route .az-auth-card--register .az-auth-card__header::before {
    top: 33px;
    right: 32px;
    width: 16px;
    height: 16px;
  }

  .az-auth-route .az-auth-card__title {
    max-width: calc(100% - 58px);
    font-size: 38px;
  }

  .az-auth-route .az-auth-card__text {
    font-size: 14px;
  }

  .az-auth-route .az-auth-benefits {
    grid-template-columns: 1fr;
  }

  .az-auth-route .az-auth-benefits li {
    min-height: 0;
    padding: 11px 13px;
  }

  .az-auth-route .az-auth-form {
    padding: 24px 20px 26px;
  }

  .az-auth-route .az-auth-form input.input-text,
  .az-auth-route .az-auth-form input[type="text"],
  .az-auth-route .az-auth-form input[type="email"],
  .az-auth-route .az-auth-form input[type="password"],
  .az-auth-route .az-auth-submit,
  .az-auth-route .woocommerce-button.az-auth-submit,
  .az-auth-route .woocommerce-Button.az-auth-submit {
    min-height: 54px;
  }
}
/* AZeeMall order confirmation / Thank You page — v0.10.9 */
body.woocommerce-order-received .az-thankyou-page {
  padding: 56px 0 88px;
  background:
    radial-gradient(circle at 8% 4%, rgba(76,148,232, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f7f7 0%, #f5f5f5 100%);
  color: #3f464d;
}

body.woocommerce-order-received .az-thankyou-page__container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

body.woocommerce-order-received .az-thankyou-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #7f7f7f;
  font-size: 13px;
  font-weight: 700;
}

body.woocommerce-order-received .az-thankyou-breadcrumb a {
  color: #00488f;
  text-decoration: none;
}

body.woocommerce-order-received .az-thankyou-breadcrumb a:hover {
  color: #0064d2;
}

body.woocommerce-order-received .az-thankyou-hero__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
  border: 1px solid rgba(0,72,143, 0.14);
  border-radius: 28px;
  background: rgba(255,255,255, 0.94);
  box-shadow: 0 22px 58px rgba(63,70,77, 0.09);
}

body.woocommerce-order-received .az-thankyou-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e9f4e8;
  color: #198754;
  box-shadow: inset 0 0 0 1px rgba(25,135,84, 0.12);
}

body.woocommerce-order-received .az-thankyou-hero__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.woocommerce-order-received .az-thankyou-hero__copy {
  min-width: 0;
}

body.woocommerce-order-received .az-thankyou-hero__eyebrow {
  display: block;
  margin: 0 0 7px;
  color: #0064d2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.woocommerce-order-received .az-thankyou-hero__title {
  margin: 0;
  color: #3f464d;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

body.woocommerce-order-received .az-thankyou-hero__text {
  max-width: 720px;
  margin: 10px 0 0;
  color: #747474;
  font-size: 16px;
  line-height: 1.75;
}

body.woocommerce-order-received .az-thankyou-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid rgba(25,135,84, 0.16);
  border-radius: 999px;
  background: #f1f8f0;
  color: #198754;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

body.woocommerce-order-received .az-thankyou-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

body.woocommerce-order-received .az-thankyou-summary__item {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(0,72,143, 0.12);
  border-radius: 18px;
  background: rgba(255,255,255, 0.88);
}

body.woocommerce-order-received .az-thankyou-summary__item--wide {
  grid-column: span 2;
}

body.woocommerce-order-received .az-thankyou-summary__item span {
  display: block;
  margin: 0 0 7px;
  color: #858585;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-order-received .az-thankyou-summary__item strong {
  display: block;
  min-width: 0;
  color: #3f464d;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

body.woocommerce-order-received .az-thankyou-summary__item .woocommerce-Price-amount {
  color: inherit;
  font-weight: inherit;
}

body.woocommerce-order-received .az-thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
}

body.woocommerce-order-received .az-thankyou-button,
body.woocommerce-order-received .az-thankyou-actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0;
  padding: 13px 22px;
  border: 1px solid rgba(0,72,143, 0.2);
  border-radius: 999px;
  background: rgba(255,255,255, 0.9);
  color: #555d63;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

body.woocommerce-order-received .az-thankyou-button:hover,
body.woocommerce-order-received .az-thankyou-actions .button:hover {
  border-color: rgba(0,72,143, 0.38);
  background: #ffffff;
  color: #3f464d;
  transform: translateY(-1px);
}

body.woocommerce-order-received .az-thankyou-button--primary,
body.woocommerce-order-received .az-thankyou-actions .button.alt {
  border-color: var(--az-button-bg);
  background: var(--az-button-bg);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0,72,143, 0.18);
}

body.woocommerce-order-received .az-thankyou-button--primary:hover,
body.woocommerce-order-received .az-thankyou-actions .button.alt:hover {
  border-color: var(--az-button-hover);
  background: var(--az-button-hover);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(0,72,143, 0.24);
}

body.woocommerce-order-received .az-thankyou-button:focus-visible,
body.woocommerce-order-received .az-thankyou-actions .button:focus-visible {
  outline: 3px solid rgba(0,100,210, 0.28);
  outline-offset: 3px;
}

body.woocommerce-order-received .az-thankyou-content {
  display: grid;
  gap: 22px;
  margin: 34px 0 0;
}

body.woocommerce-order-received .az-thankyou-content > p,
body.woocommerce-order-received .az-thankyou-content > .woocommerce-notice,
body.woocommerce-order-received .az-thankyou-content > .woocommerce-message,
body.woocommerce-order-received .az-thankyou-content > .woocommerce-info {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(0,72,143, 0.12);
  border-radius: 16px;
  background: rgba(255,255,255, 0.9);
  color: #686868;
  line-height: 1.7;
}

body.woocommerce-order-received .az-thankyou-content .woocommerce-order-details,
body.woocommerce-order-received .az-thankyou-content .woocommerce-customer-details {
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(0,72,143, 0.13);
  border-radius: 24px;
  background: rgba(255,255,255, 0.94);
  box-shadow: 0 18px 44px rgba(63,70,77, 0.07);
}

body.woocommerce-order-received .az-thankyou-content .woocommerce-order-details__title,
body.woocommerce-order-received .az-thankyou-content .woocommerce-customer-details > h2,
body.woocommerce-order-received .az-thankyou-content .woocommerce-column__title {
  margin: 0 0 18px;
  color: #3f464d;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

body.woocommerce-order-received .az-thankyou-content table.shop_table,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(0,72,143, 0.13);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 18px;
  background: #ffffff;
  table-layout: fixed;
  overflow: hidden;
}

body.woocommerce-order-received .az-thankyou-content table.shop_table th,
body.woocommerce-order-received .az-thankyou-content table.shop_table td,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table th,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table td {
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid rgba(0,72,143, 0.1);
  color: #666666;
  font-size: 14px;
  line-height: 1.55;
  vertical-align: middle;
}

body.woocommerce-order-received .az-thankyou-content table.shop_table thead th,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table thead th {
  background: #f5f5f5;
  color: #3f464d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.woocommerce-order-received .az-thankyou-content table.shop_table th:first-child,
body.woocommerce-order-received .az-thankyou-content table.shop_table td:first-child,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table th:first-child,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table td:first-child {
  width: 68%;
  text-align: left;
}

body.woocommerce-order-received .az-thankyou-content table.shop_table th:last-child,
body.woocommerce-order-received .az-thankyou-content table.shop_table td:last-child,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table th:last-child,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table td:last-child {
  width: 32%;
  text-align: right;
}

body.woocommerce-order-received .az-thankyou-content table.shop_table tr:last-child th,
body.woocommerce-order-received .az-thankyou-content table.shop_table tr:last-child td,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table tr:last-child th,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table tr:last-child td {
  border-bottom: 0;
}

body.woocommerce-order-received .az-thankyou-content table.shop_table a,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table a {
  color: #0053ad;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

body.woocommerce-order-received .az-thankyou-content table.shop_table tfoot th,
body.woocommerce-order-received .az-thankyou-content table.shop_table tfoot td,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table tfoot th,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table tfoot td {
  background: #ffffff;
  color: #3f464d;
  font-weight: 800;
}

body.woocommerce-order-received .az-thankyou-content table.shop_table tfoot tr:last-child th,
body.woocommerce-order-received .az-thankyou-content table.shop_table tfoot tr:last-child td,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table tfoot tr:last-child th,
body.woocommerce-order-received .az-thankyou-content table.woocommerce-table tfoot tr:last-child td {
  color: #00488f;
  font-size: 16px;
  font-weight: 900;
}

body.woocommerce-order-received .az-thankyou-content .woocommerce-table__product-name .wc-item-meta,
body.woocommerce-order-received .az-thankyou-content .woocommerce-table__product-name dl.variation {
  margin: 7px 0 0;
  color: #7f7f7f;
  font-size: 12px;
}

body.woocommerce-order-received .az-thankyou-content .woocommerce-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 0;
}

body.woocommerce-order-received .az-thankyou-content .woocommerce-column {
  float: none;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.woocommerce-order-received .az-thankyou-content .woocommerce-column__title {
  margin-bottom: 12px;
  font-size: 20px;
}

body.woocommerce-order-received .az-thankyou-content address {
  min-height: 100%;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(0,72,143, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: #666666;
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}

body.woocommerce-order-received .az-thankyou-content address p {
  margin: 12px 0 0;
}

body.woocommerce-order-received .az-thankyou-content address a {
  color: #00488f;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

body.woocommerce-order-received .az-thankyou-alert {
  display: grid;
  gap: 4px;
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(229,50,56, 0.2);
  border-radius: 16px;
  background: #fff1f2;
  color: #e53238;
  line-height: 1.6;
}

body.woocommerce-order-received .az-thankyou-page--failed .az-thankyou-hero__icon {
  background: #fff1f2;
  color: #e53238;
  box-shadow: inset 0 0 0 1px rgba(229,50,56, 0.13);
}

body.woocommerce-order-received .az-thankyou-page--failed .az-thankyou-status {
  border-color: rgba(229,50,56, 0.18);
  background: #fff1f2;
  color: #e53238;
}
/* Unified product-card polish — v0.10.17
 *
 * One visual component for homepage loops, Shop/category/collection archives
 * and related products. The standalone Wishlist page intentionally retains
 * its existing item design.
 */

.az-product-grid,
.az-product-related__grid {
  align-items: stretch;
}

.az-product-grid > .az-product-card,
.az-product-related__grid > .az-product-card,
.az-shop-products .products > .az-product-card,
.woocommerce .az-shop-products ul.products > li.az-product-card {
  height: 100%;
}

.az-product-card,
.az-shop-products .az-product-card--archive,
.az-product-related__grid .az-product-card {
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(229,229,229, .88);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(25,25,25, .055);
  transform: translateZ(0);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.az-product-card::after,
.az-shop-products .az-product-card--archive::after {
  display: none;
}

.az-product-card:hover,
.az-shop-products .az-product-card--archive:hover,
.az-product-related__grid .az-product-card:hover {
  border-color: rgba(0,100,210, .42);
  box-shadow: 0 22px 52px rgba(25,25,25, .115);
  transform: translateY(-5px);
}

.az-product-card__media-wrap,
.az-shop-products .az-product-card--archive .az-product-card__media-wrap {
  position: relative;
  overflow: hidden;
  margin: 10px 10px 0;
  border: 1px solid rgba(229,229,229, .72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .98), rgba(250,250,250, .92) 54%, #f5f5f5 100%);
}

.az-product-card__media,
.az-product-related .az-product-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.az-product-card__media img,
.az-shop-products .az-product-card--archive .az-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  transform: scale(1);
  transition: transform 480ms cubic-bezier(.2, .72, .2, 1), filter 480ms ease;
}

.az-product-card:hover .az-product-card__media img,
.az-shop-products .az-product-card--archive:hover .az-product-card__media img {
  filter: saturate(1.025) contrast(1.015);
  transform: scale(1.035);
}

.az-product-card__badge,
.az-shop-products .az-product-card--archive .az-product-card__badge {
  top: 12px;
  left: 12px;
  min-width: 48px;
  height: 28px;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  background: rgba(0,100,210, .94);
  color: #fff;
  box-shadow: 0 8px 20px rgba(63,70,77, .16);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}

.az-product-card__wishlist {
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(229,229,229, .78);
  background: rgba(255, 255, 255, .94);
  color: #51575d;
  box-shadow: 0 8px 22px rgba(25,25,25, .09);
}

.az-product-card__wishlist:hover,
.az-product-card__wishlist.is-active {
  border-color: rgba(0,100,210, .30);
  background: #fff;
  color: var(--az-terracotta);
}

.az-product-card__body,
.az-shop-products .az-product-card--archive .az-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px 17px 17px;
}

.az-product-card__category,
.az-shop-products .az-product-card--archive .az-product-card__category {
  display: block;
  overflow: hidden;
  margin: 0;
  color: var(--az-terracotta);
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.35;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.az-product-card__category:hover {
  color: var(--az-walnut);
}

.az-product-card__title,
.az-shop-products .az-product-card--archive .az-product-card__title {
  min-height: 45px;
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-normal);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -.012em;
  line-height: 1.48;
}

.az-product-card__title a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.az-product-card__rating,
.az-shop-products .az-product-card--archive .az-product-card__rating {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 19px;
  margin-top: 1px;
  color: #0064d2;
  font-size: 11.5px;
  line-height: 1;
}

.az-product-card__rating .star-rating {
  float: none;
  width: 5.4em;
  margin: 0;
  color: #0064d2;
  font-size: 11.5px;
}

.az-product-card__rating > span:not(.star-rating),
.az-product-card__rating--empty span:last-child {
  overflow: hidden;
  color: #7f7f7f;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.az-product-card__rating-star {
  color: #0064d2;
  font-size: 14px;
  line-height: 1;
}

.az-product-card__footer,
.az-shop-products .az-product-card--archive .az-product-card__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid rgba(229,229,229, .76);
}

.az-product-card__price,
.az-shop-products .az-product-card--archive .az-product-card__price {
  display: flex;
  min-height: 25px;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 7px;
  color: #191919;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -.018em;
  line-height: 1.25;
}

.az-product-card__price del {
  order: 2;
  margin: 0;
  color: #919191;
  font-size: 12px;
  font-weight: 600;
  opacity: .9;
}

.az-product-card__price ins {
  order: 1;
  color: var(--az-terracotta);
  text-decoration: none;
}

.az-product-card__add,
.az-shop-products .az-product-card--archive .az-product-card__add {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  height: auto;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--az-button-bg);
  border-radius: 13px;
  background: var(--az-button-bg);
  color: #fff;
  box-shadow: none;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

.az-product-card__add::after {
  content: "→";
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: transform 200ms ease;
}

.az-product-card__add:hover,
.az-shop-products .az-product-card--archive .az-product-card__add:hover {
  border-color: var(--az-button-hover);
  background: var(--az-button-hover);
  color: #fff;
  box-shadow: 0 10px 22px rgba(111,66,193, .22);
  transform: translateY(-1px);
}

.az-product-card__add:hover::after {
  transform: translateX(3px);
}

.az-product-card__add.loading::after,
.az-product-card__add.added::after {
  display: inline-block;
  content: "✓";
}

/* A three-column archive gives product names and actions enough breathing room. */
.az-shop-products .products,
.woocommerce .az-shop-products ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 20px;
}

.az-product-related__grid {
  gap: 22px;
}

/* Component-level responsiveness without adding viewport-specific coupling. */
.az-product-grid,
.az-shop-products,
.az-product-related__grid {
  container-type: inline-size;
}

@container (max-width: 700px) {
  .az-product-card,
  .az-shop-products .az-product-card--archive,
  .az-product-related__grid .az-product-card {
    border-radius: 18px;
    box-shadow: 0 7px 24px rgba(25,25,25, .055);
  }

  .az-product-card:hover,
  .az-shop-products .az-product-card--archive:hover,
  .az-product-related__grid .az-product-card:hover {
    transform: none;
  }

  .az-product-card__media-wrap,
  .az-shop-products .az-product-card--archive .az-product-card__media-wrap {
    margin: 7px 7px 0;
    border-radius: 14px;
  }

  .az-product-card__badge,
  .az-shop-products .az-product-card--archive .az-product-card__badge {
    top: 8px;
    left: 8px;
    min-width: 42px;
    height: 24px;
    padding-inline: 8px;
    font-size: 8.5px;
  }

  .az-product-card__wishlist {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }

  .az-product-card__body,
  .az-shop-products .az-product-card--archive .az-product-card__body {
    gap: 6px;
    padding: 11px 11px 12px;
  }

  .az-product-card__category,
  .az-shop-products .az-product-card--archive .az-product-card__category {
    font-size: 8px;
    letter-spacing: .1em;
  }

  .az-product-card__title,
  .az-shop-products .az-product-card--archive .az-product-card__title {
    min-height: 40px;
    font-size: 12.5px;
    line-height: 1.55;
  }

  .az-product-card__rating,
  .az-shop-products .az-product-card--archive .az-product-card__rating {
    gap: 5px;
    min-height: 17px;
    font-size: 10px;
  }

  .az-product-card__rating .star-rating {
    font-size: 10px;
  }

  .az-product-card__rating > span:not(.star-rating),
  .az-product-card__rating--empty span:last-child {
    font-size: 9.5px;
  }

  .az-product-card__footer,
  .az-shop-products .az-product-card--archive .az-product-card__footer {
    gap: 9px;
    padding-top: 10px;
  }

  .az-product-card__price,
  .az-shop-products .az-product-card--archive .az-product-card__price {
    min-height: 22px;
    font-size: 14px;
  }

  .az-product-card__price del {
    font-size: 10px;
  }

  .az-product-card__add,
  .az-shop-products .az-product-card--archive .az-product-card__add {
    min-height: 38px;
    padding: 9px 8px;
    border-radius: 11px;
    font-size: 11px;
  }

  .az-product-card__add::after {
    display: none;
  }

  .az-shop-products .products,
  .woocommerce .az-shop-products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }
}

@container (max-width: 370px) {
  .az-product-card__title,
  .az-shop-products .az-product-card--archive .az-product-card__title {
    font-size: 11.75px;
  }

  .az-product-card__add,
  .az-shop-products .az-product-card--archive .az-product-card__add {
    font-size: 10.5px;
  }
}

/* Homepage Collections grid density — v0.11.9 */
.home-categories--home .home-categories__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
.home-categories--home .category-card__content,
.home-categories--home .category-card--featured .category-card__content {
  padding: clamp(15px, 1.45vw, 20px);
}
.home-categories--home .category-card__content h3,
.home-categories--home .category-card--featured .category-card__content h3 {
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.1;
}
.home-categories--home .category-card__link {
  gap: 6px;
  margin-top: 10px;
  font-size: clamp(10.5px, .8vw, 12px);
}

/* Categories and Collections responsive polish — v0.11.9 */
.az-collection-directory-page,
.az-product-category-directory-page {
  min-height: 62vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 8%, rgba(0,100,210, .08), transparent 24%),
    linear-gradient(180deg, #fafafa 0%, var(--az-cream) 100%);
}
.home-categories--directory,
.home-product-categories--directory {
  min-height: 62vh;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(72px, 8vw, 112px);
  background: transparent;
}
.home-product-categories--directory::before {
  display: none;
}
.home-categories--directory .home-categories__heading,
.home-product-categories--directory .home-product-categories__heading {
  max-width: none;
  margin: 0 0 clamp(32px, 4vw, 48px);
  padding: clamp(24px, 3.3vw, 42px);
  border: 1px solid rgba(229,229,229, .96);
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 34px rgba(25,25,25, .055);
  text-align: left;
}
.home-categories--directory .home-categories__heading .section-heading__row,
.home-product-categories--directory .home-product-categories__heading .section-heading__row {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  justify-items: stretch;
  align-items: end;
  gap: 28px;
}
.home-categories--directory .section-heading h1,
.home-product-categories--directory .home-product-categories__heading h1 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-normal);
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.home-categories--directory .section-heading p,
.home-product-categories--directory .section-heading p {
  max-width: 560px;
}
.home-categories--directory .category-card,
.home-product-categories--directory .home-product-category {
  outline-offset: 4px;
}
.home-product-categories--directory .home-product-categories__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
body.page-template-page-categories .site-footer,
body.page-template-page-collections .site-footer {
  margin-top: 0;
}
.az-directory-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(229,229,229, .96);
  border-radius: 24px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 12px 34px rgba(25,25,25, .055);
  text-align: center;
}
.az-directory-empty h2 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-bold);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.15;
}
.az-directory-empty p {
  max-width: 540px;
  margin: 0 0 8px;
  color: var(--az-muted);
  font-family: var(--az-font-light);
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .section-heading__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-categories {
    padding: 76px 0;
  }
  .home-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .home-categories--home .home-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-categories--home .category-card__content,
  .home-categories--home .category-card--featured .category-card__content {
    padding: 18px;
  }
  .home-categories--home .category-card__content h3,
  .home-categories--home .category-card--featured .category-card__content h3 {
    font-size: clamp(18px, 2.7vw, 23px);
  }
  .home-product-categories {
    padding: 76px 0 82px;
  }
  .home-product-categories__grid,
  .home-product-categories--directory .home-product-categories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 24px;
  }
  .home-product-category {
    min-height: 250px;
  }
  .home-product-category__media {
    width: min(100%, 174px);
  }
  .home-categories--directory .home-categories__heading .section-heading__row,
  .home-product-categories--directory .home-product-categories__heading .section-heading__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .home-categories {
    padding: 62px 0;
  }
  .home-categories .az-container,
  .home-product-categories .az-container {
    width: min(100% - 32px, var(--az-container));
    padding-left: 0;
    padding-right: 0;
  }
  .home-categories__heading,
  .home-product-categories__heading {
    margin-bottom: 28px;
  }
  .home-product-categories__heading {
    text-align: left;
  }
  .home-product-categories__heading .section-heading__row {
    justify-items: start;
    gap: 10px;
  }
  .section-heading__eyebrow {
    margin-bottom: 9px;
  }
  .section-heading h2 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.02;
  }
  .home-categories--home .home-categories__heading.section-heading h2 {
    font-size: 28px;
    line-height: 1.14;
    letter-spacing: -.025em;
  }
  .section-heading p {
    font-size: 15px;
    line-height: 1.65;
  }
  .home-categories__grid,
  .home-product-categories__grid,
  .home-product-categories--directory .home-product-categories__grid {
    grid-template-columns: 1fr;
  }
  .home-categories__grid {
    gap: 16px;
  }
  .home-categories--home .home-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .category-card,
  .category-card--featured,
  .category-card--compact {
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }
  .category-card__content,
  .category-card--featured .category-card__content {
    padding: 20px;
  }
  .category-card__content h3,
  .category-card--featured .category-card__content h3 {
    font-size: clamp(25px, 8vw, 31px);
  }
  .category-card__link {
    margin-top: 11px;
    font-size: 12px;
  }
  .home-categories--home .category-card,
  .home-categories--home .category-card--featured,
  .home-categories--home .category-card--compact {
    border-radius: 14px;
  }
  .home-categories--home .category-card__content,
  .home-categories--home .category-card--featured .category-card__content {
    padding: clamp(10px, 3.2vw, 13px);
  }
  .home-categories--home .category-card__content h3,
  .home-categories--home .category-card--featured .category-card__content h3 {
    font-size: clamp(13px, 4vw, 16px);
    line-height: 1.12;
    letter-spacing: -.018em;
  }
  .home-categories--home .category-card__link {
    gap: 4px;
    margin-top: 6px;
    font-size: clamp(9px, 2.7vw, 10.5px);
    line-height: 1.2;
  }
  .home-product-categories {
    padding: 60px 0 64px;
  }
  .home-product-categories::before {
    display: none;
  }
  .home-product-categories__grid {
    gap: 12px;
  }
  .home-product-category {
    --az-category-mobile-media: clamp(82px, 24vw, 94px);
    display: grid;
    grid-template-columns: var(--az-category-mobile-media) minmax(0, 1fr) 36px;
    align-items: center;
    gap: clamp(11px, 3.5vw, 14px);
    min-height: 106px;
    padding: 9px 12px 9px 9px;
    border: 1px solid rgba(229,229,229,.95);
    border-radius: 20px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 8px 22px rgba(25,25,25,.05);
    text-align: left;
  }
  .home-product-category__media {
    width: var(--az-category-mobile-media);
    padding: 5px;
    box-shadow: 0 8px 20px rgba(25,25,25,.075);
  }
  .home-product-category__media::after {
    inset: 5px;
  }
  .home-product-category__content {
    justify-items: start;
    gap: 4px;
    margin-top: 0;
    padding: 0;
  }
  .home-product-category h3 {
    min-height: 0;
    font-size: clamp(16px, 4.7vw, 17px);
    line-height: 1.28;
    text-align: left;
  }
  .home-product-category__label {
    font-size: 11px;
  }
  .home-product-category__arrow {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--az-cream);
    color: var(--az-terracotta);
    font-size: 19px;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease;
  }
  .home-product-category:hover {
    transform: translateY(-2px);
  }
  .home-product-category:hover .home-product-category__media {
    transform: none;
  }
  .home-product-category:hover .home-product-category__arrow {
    transform: translateX(3px);
    background: var(--az-terracotta);
    color: #fff;
  }
  .home-product-category:focus-visible {
    outline: 3px solid rgba(0,100,210,.24);
    outline-offset: 3px;
  }
  .home-product-category:focus-visible .home-product-category__media {
    outline: none;
  }
  .home-categories--directory,
  .home-product-categories--directory {
    padding-top: 28px;
    padding-bottom: 64px;
  }
  .home-categories--directory .home-categories__heading,
  .home-product-categories--directory .home-product-categories__heading {
    margin-bottom: 26px;
    padding: 22px 20px;
    border-radius: 20px;
  }
  .home-categories--directory .section-heading h1,
  .home-product-categories--directory .home-product-categories__heading h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.02;
  }
}
/* Product-card badge and rating refinement — v0.10.17
 *
 * Keeps the unified v0.10.14 card intact while pinning the WooCommerce sale
 * badge opposite the wishlist action and replacing the legacy star-font row
 * with a crisp, fractional five-star display.
 */

/* WooCommerce's generic .onsale rules can otherwise pull the badge back to
 * the upper-right corner. Pin it to the opposite side of the wishlist and
 * align both controls on the same visual row. */
.woocommerce .az-product-card .az-product-card__badge,
.woocommerce .az-shop-products .az-product-card--archive .az-product-card__badge,
.az-product-card .az-product-card__badge {
  inset: 12px auto auto 12px;
  display: inline-flex;
  width: auto;
  min-width: 54px;
  min-height: 38px;
  height: 38px;
  margin: 0;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: none;
}

.az-product-card__wishlist {
  inset: 12px 12px auto auto;
}

/* Clean, font-independent rating treatment with fractional fill. */
.az-product-card__rating,
.az-shop-products .az-product-card--archive .az-product-card__rating {
  gap: 8px;
  min-width: 0;
  min-height: 22px;
  color: inherit;
}

.az-product-card__rating > .az-product-card__stars {
  --az-rating-percent: 0%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 6.15em;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  white-space: nowrap;
}

.az-product-card__rating .az-product-card__stars-base,
.az-product-card__rating .az-product-card__stars-fill {
  display: block;
}

.az-product-card__rating .az-product-card__stars-base {
  color: #dedede;
}

.az-product-card__rating .az-product-card__stars-fill {
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--az-rating-percent);
  overflow: hidden;
  color: #0064d2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .72);
}

.az-product-card__rating > .az-product-card__rating-count,
.az-product-card__rating--empty > .az-product-card__rating-count {
  overflow: hidden;
  min-width: 0;
  color: #747474;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.az-product-card__rating:not(.az-product-card__rating--empty) .az-product-card__rating-count::before {
  content: "·";
  margin-inline-end: 6px;
  color: #c2c2c2;
}

.az-product-card__rating--empty > .az-product-card__stars {
  opacity: .78;
}

@container (max-width: 700px) {
  .woocommerce .az-product-card .az-product-card__badge,
  .woocommerce .az-shop-products .az-product-card--archive .az-product-card__badge,
  .az-product-card .az-product-card__badge {
    inset: 8px auto auto 8px;
    min-width: 48px;
    min-height: 34px;
    height: 34px;
    padding-inline: 10px;
    font-size: 8.5px;
  }

  .az-product-card__wishlist {
    inset: 8px 8px auto auto;
  }

  .az-product-card__rating,
  .az-shop-products .az-product-card--archive .az-product-card__rating {
    gap: 5px;
    min-height: 18px;
  }

  .az-product-card__rating > .az-product-card__stars {
    width: 5.95em;
    font-size: 9.5px;
    letter-spacing: .1em;
  }

  .az-product-card__rating > .az-product-card__rating-count,
  .az-product-card__rating--empty > .az-product-card__rating-count {
    font-size: 9px;
  }

  .az-product-card__rating:not(.az-product-card__rating--empty) .az-product-card__rating-count::before {
    margin-inline-end: 4px;
  }
}
/* Single product mobile polish and AJAX-notice presentation — v0.10.17 */

body.single-product .az-product-container {
  container-name: az-single-product;
  container-type: inline-size;
  padding-left: clamp(14px, 3vw, 24px);
  padding-right: clamp(14px, 3vw, 24px);
}

body.single-product .woocommerce-notices-wrapper > .woocommerce-message,
body.single-product .az-product-container > .woocommerce-message {
  display: none;
}

body.single-product .woocommerce-notices-wrapper:empty {
  display: none;
}

body.single-product .az-product-main > .summary,
body.single-product .az-product-summary {
  float: none;
  width: auto;
  margin: 0;
}

body.single-product .az-product-gallery span.onsale {
  top: 14px;
  right: auto;
  left: 14px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 999px;
  background: rgba(0,100,210, .96);
  color: #fff;
  box-shadow: 0 10px 24px rgba(63,70,77, .18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

body.single-product .az-product-gallery span.onsale::before,
body.single-product .az-product-gallery span.onsale::after {
  display: none;
}

body.single-product .az-product-details .az-tab-mobile-content,
body.single-product .az-product-details .az-tab-mobile-content * {
  max-width: 100%;
  box-sizing: border-box;
}

body.single-product .az-product-details .az-tab-mobile-content img,
body.single-product .az-product-details .woocommerce-Tabs-panel img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

body.single-product .az-product-details .az-tab-mobile-content,
body.single-product .az-product-details .woocommerce-Tabs-panel,
body.single-product .az-product-reviews,
body.single-product .az-product-related {
  overflow-wrap: anywhere;
}

body.single-product .az-product-reviews__native .comment_container {
  position: relative;
  align-items: start;
}

body.single-product .az-product-reviews__native .avatar {
  position: static;
  float: none;
  margin: 0;
}

body.single-product .az-product-reviews__native .comment-text {
  min-width: 0;
}

body.single-product .az-product-reviews__native .comment-text .star-rating {
  position: static;
  float: none;
  clear: both;
  margin: 0 0 8px;
}

body.single-product .az-product-reviews__native .meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 8px;
  line-height: 1.45;
}

body.single-product .az-product-reviews__native .woocommerce-review__published-date {
  white-space: nowrap;
}

body.single-product .az-product-sticky-cart {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
}

body.single-product .az-product-sticky-cart.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.single-product .az-product-purchase__error {
  grid-column: 1 / -1;
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid rgba(229,50,56, .24);
  border-radius: 14px;
  background: rgba(229,50,56, .08);
  color: #e53238;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

@container az-single-product (max-width: 760px) {
  body.single-product .az-product-page {
    padding-top: 18px;
    padding-bottom: 92px;
  }

  body.single-product .az-product-breadcrumb {
    gap: 6px 8px;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.55;
  }

  body.single-product .az-product-breadcrumb span[aria-current="page"] {
    flex-basis: 100%;
    color: #191919;
    font-weight: 700;
  }

  body.single-product .az-product-main {
    gap: 18px;
  }

  body.single-product .az-product-gallery {
    margin-bottom: 0;
    padding: 9px;
    border-radius: 20px;
  }

  body.single-product .az-product-gallery span.onsale {
    top: 10px;
    left: 10px;
    min-width: 52px;
    min-height: 29px;
    padding-inline: 10px;
    font-size: 9px;
  }

  body.single-product .az-product-gallery .woocommerce-product-gallery__trigger {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  body.single-product .az-product-gallery .flex-control-thumbs {
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 2px;
  }

  body.single-product .az-product-gallery .flex-control-thumbs li {
    flex-basis: 58px;
    width: 58px;
  }

  body.single-product .az-product-summary__inner {
    padding: 20px;
    border-radius: 20px;
  }

  body.single-product .az-product-summary .product_title,
  body.single-product .az-product-summary h1 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.38;
  }

  body.single-product .az-product-summary__rating-row,
  body.single-product .az-product-summary__price-row {
    margin-bottom: 12px;
  }

  body.single-product .az-product-summary__excerpt {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  body.single-product .az-product-summary__status-grid {
    gap: 8px;
  }

  body.single-product .az-product-purchase {
    padding-top: 18px;
  }

  body.single-product .az-product-trust {
    margin-top: 18px;
    padding: 14px;
  }

  body.single-product .az-product-details {
    margin-top: 22px;
    padding: 10px;
    border-radius: 20px;
  }

  body.single-product .az-product-details .woocommerce-Tabs-panel {
    margin-bottom: 8px;
    border-radius: 15px;
  }

  body.single-product .az-product-details .az-tab-mobile-title {
    min-height: 52px;
    padding-inline: 14px;
  }

  body.single-product .az-product-details .az-tab-mobile-content {
    padding: 16px 14px 18px;
    font-size: 14px;
    line-height: 1.72;
  }

  body.single-product .az-product-details .az-tab-mobile-content p {
    margin-bottom: 14px;
  }

  body.single-product .az-product-details .az-tab-mobile-content h1,
  body.single-product .az-product-details .az-tab-mobile-content h2,
  body.single-product .az-product-details .az-tab-mobile-content h3,
  body.single-product .az-product-details .az-tab-mobile-content h4 {
    margin-top: 22px;
    margin-bottom: 10px;
    color: #191919;
    font-size: 18px;
    line-height: 1.35;
  }

  body.single-product .az-product-details .az-tab-mobile-content > :first-child {
    margin-top: 0;
  }

  body.single-product .az-product-reviews {
    margin-top: 22px;
    padding: 14px;
    border-radius: 20px;
  }

  body.single-product .az-product-reviews__header {
    gap: 12px;
    margin-bottom: 16px;
  }

  body.single-product .az-product-reviews h2 {
    font-size: 30px;
  }

  body.single-product .az-product-reviews__score {
    padding: 14px;
    border-radius: 17px;
  }

  body.single-product .az-product-reviews__summary {
    gap: 8px;
    margin-bottom: 18px;
    padding: 13px;
    border-radius: 16px;
  }

  body.single-product .az-product-reviews__bar {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 8px;
  }

  body.single-product .az-product-reviews__native #comments {
    margin-bottom: 18px;
  }

  body.single-product .az-product-reviews__native .commentlist {
    gap: 10px;
  }

  body.single-product .az-product-reviews__native .comment_container {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
    border-radius: 16px;
  }

  body.single-product .az-product-reviews__native .avatar {
    width: 36px;
    height: 36px;
  }

  body.single-product .az-product-reviews__native #review_form {
    padding: 14px;
    border-radius: 17px;
  }

  body.single-product .az-product-reviews__native #reply-title {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.05;
  }

  body.single-product .az-product-related {
    margin-top: 22px;
    padding: 14px;
    border-radius: 20px;
  }

  body.single-product .az-product-related__header {
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  body.single-product .az-product-related h2 {
    font-size: 34px;
  }

  body.single-product .az-product-related__header p {
    font-size: 13px;
    line-height: 1.6;
  }

  body.single-product .az-product-related__grid {
    gap: 10px;
  }

  body.single-product .az-product-sticky-cart {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    gap: 10px;
    padding: 8px 9px;
    border-radius: 18px;
  }

  body.single-product .az-product-sticky-cart__price {
    gap: 5px;
    min-width: 0;
    font-size: 15px;
    white-space: nowrap;
  }

  body.single-product .az-product-sticky-cart__price del {
    font-size: 11px;
  }

  body.single-product .az-product-sticky-cart__button {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 13px;
  }
}
/* WordPress Font Library integration — v0.10.18
 *
 * The three WOFF2 faces are managed by WordPress and remain outside the
 * theme package. These aliases support both a shared family name (Manrope)
 * and the separate names shown by some Font Library installations.
 */
html {
  font-synthesis: none;
}

body,
button,
input,
select,
textarea,
.woocommerce,
.woocommerce-page {
  font-family: var(--az-font-normal);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
.btn,
button,
input[type="button"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.az-product-card__title,
.az-product-summary__title,
.az-product-related h2,
.az-product-reviews h2,
.az-product-reviews__native #reply-title {
  font-family: var(--az-font-bold);
  font-weight: 700;
}

:where(
  .home-hero__text,
  .section-heading > p,
  .category-card__content > p,
  .promo-banner__text,
  .az-entry__description,
  .az-entry__content,
  .az-post-card__excerpt,
  .woocommerce-product-details__short-description,
  .az-product-summary__short-description,
  .az-product-description,
  .az-product-reviews__native .description,
  .az-product-card__review-count,
  .az-product-card__empty-rating,
  .woocommerce-breadcrumb,
  .site-footer p,
  .footer-contact-list,
  .az-auth-copy
) {
  font-family: var(--az-font-light);
  font-weight: 300;
}

/* Prevent old theme and plugin typography from reintroducing the former
 * display serif on WooCommerce screens and shared storefront components. */
:where(
  .home-hero__title,
  .section-heading h2,
  .category-card__content h3,
  .promo-banner h2,
  .az-entry__title,
  .az-post-card__title,
  .az-comments__title,
  .az-shop-hero h1,
  .az-product-summary h1,
  .az-product-related h2,
  .az-product-reviews h2,
  .az-thankyou-page h1,
  .az-thankyou-page h2,
  .az-auth-page h1,
  .az-account-page h1,
  .az-account-page h2
) {
  font-family: var(--az-font-bold);
  font-weight: 700;
  font-style: normal;
}
/* About Us page — v0.12.7
 * Full editorial redesign. Content remains driven by AZeeMall Core 1.6.0.
 */
.az-about-page {
  --az-about-dark: #191919;
  --az-about-dark-soft: #343a40;
  --az-about-line: rgba(102,102,102, .13);
  min-height: 60vh;
  overflow-x: clip;
  background: #fafafa;
  color: var(--az-text);
}

.az-about-page__hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(88px, 10vw, 138px) 0 clamp(78px, 8vw, 112px);
  border-bottom: 1px solid rgba(102,102,102, .08);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .94), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.az-about-page__hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: auto 50% 0;
  width: min(76vw, 980px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(0,100,210, .34), transparent);
}

.az-about-page__hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.az-about-page__hero-orb--one {
  width: clamp(240px, 32vw, 480px);
  height: clamp(240px, 32vw, 480px);
  top: -32%;
  left: -8%;
  background: rgba(0,100,210, .07);
  filter: blur(2px);
}

.az-about-page__hero-orb--two {
  width: clamp(220px, 29vw, 430px);
  height: clamp(220px, 29vw, 430px);
  right: -8%;
  bottom: -45%;
  border: 1px solid rgba(112,112,112, .09);
  background: rgba(255, 255, 255, .35);
}

.az-about-page__hero-inner,
.az-about-page__heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.az-about-page__heading {
  width: min(100%, 900px);
  margin-inline: auto;
}

.az-about-page__eyebrow,
.az-about-section-kicker {
  margin: 0;
  color: var(--az-terracotta);
  font-family: var(--az-font-bold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.az-about-page__eyebrow {
  margin-bottom: 18px;
}

.az-about-page__eyebrow::before,
.az-about-page__eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 11px 3px;
  background: currentColor;
  opacity: .45;
}

.az-about-page__title {
  max-width: 850px;
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-normal);
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.az-about-page__intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--az-muted);
  font-family: var(--az-font-light);
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  text-wrap: balance;
}

.az-about-page__intro,
.az-about-copy,
.az-about-value-card p,
.az-about-cta-card__content > p:last-child {
  overflow-wrap: break-word;
}

.az-about-page__hero-values {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
}

.az-about-page__hero-values span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--az-walnut);
  font-size: 12px;
  font-weight: 600;
}

.az-about-page__hero-values i {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--az-terracotta);
  box-shadow: 0 0 0 5px rgba(0,100,210, .09);
}

.az-about-page__section {
  padding: clamp(68px, 8vw, 112px) 0;
}

.az-about-story-section,
.az-about-growth-section {
  background: #fafafa;
}

.az-about-story,
.az-about-growth {
  display: grid;
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.az-about-story--has-media,
.az-about-growth--has-media {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.az-about-story--has-media .az-about-story__content {
  order: 2;
}

.az-about-story__content,
.az-about-growth__content {
  min-width: 0;
  max-width: 630px;
}

.az-about-story__content > .az-about-section-kicker,
.az-about-growth__content > .az-about-section-kicker,
.az-about-section-heading > .az-about-section-kicker {
  margin-bottom: 14px;
}

.az-about-story h2,
.az-about-growth h2,
.az-about-responsibility h2,
.az-about-section-heading h2,
.az-about-cta-card h2 {
  margin: 0;
  font-family: var(--az-font-normal);
  font-size: clamp(32px, 3.7vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.az-about-story h2,
.az-about-growth h2,
.az-about-section-heading h2 {
  color: var(--az-text);
}

.az-about-copy,
.az-about-section-heading > p,
.az-about-cta-card__content > p:last-child {
  color: var(--az-muted);
  font-family: var(--az-font-light);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.az-about-copy {
  margin-top: 22px;
}

.az-about-copy p {
  margin: 0 0 1em;
}

.az-about-copy p:last-child {
  margin-bottom: 0;
}

.az-about-story__media,
.az-about-growth__media {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 460px;
}

.az-about-story__media {
  order: 1;
}

.az-about-story__media::after,
.az-about-growth__media::after {
  content: '';
  position: absolute;
  z-index: -2;
  width: 54%;
  height: 48%;
  border-radius: 38px;
  background: rgba(0,100,210, .11);
}

.az-about-story__media::after {
  left: -22px;
  bottom: -22px;
}

.az-about-growth__media::after {
  right: -22px;
  top: -22px;
}

.az-about-media-frame {
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 24px;
  pointer-events: none;
}

.az-about-story__media img,
.az-about-growth__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(25,25,25, .13);
}

.az-about-story__visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(102,102,102, .1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, .82), transparent 30%),
    linear-gradient(145deg, #e5e5e5 0%, #f5f5f5 55%, #dcdcdc 100%);
  box-shadow: 0 24px 64px rgba(25,25,25, .08);
}

.az-about-story__visual::before,
.az-about-story__visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(52,58,64, .1);
}

.az-about-story__visual::before {
  width: 260px;
  height: 260px;
  top: -62px;
  right: -44px;
}

.az-about-story__visual::after {
  width: 150px;
  height: 150px;
  top: 42px;
  right: 44px;
}

.az-about-story__visual-mark {
  position: absolute;
  top: 38px;
  left: 38px;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, .7);
  color: var(--az-terracotta);
  backdrop-filter: blur(8px);
}

.az-about-story__visual-line {
  position: absolute;
  left: clamp(28px, 4vw, 46px);
  bottom: 96px;
  width: 48px;
  height: 2px;
  background: var(--az-terracotta);
}

.az-about-story__visual p {
  position: relative;
  max-width: 380px;
  margin: 0;
  color: var(--az-about-dark);
  font-family: var(--az-font-normal);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.az-about-values {
  border-block: 1px solid rgba(102,102,102, .08);
  background:
    radial-gradient(circle at 10% 8%, rgba(0,100,210, .055), transparent 28%),
    #f5f5f5;
}

.az-about-section-heading {
  width: min(100%, 720px);
  margin: 0 auto clamp(34px, 5vw, 54px);
  text-align: center;
}

.az-about-section-heading > p:last-child {
  max-width: 620px;
  margin: 16px auto 0;
}

.az-about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.az-about-value-card {
  position: relative;
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(102,102,102, .1);
  border-radius: 26px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 36px rgba(25,25,25, .055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.az-about-value-card::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  right: -72px;
  bottom: -72px;
  border-radius: 50%;
  background: rgba(0,100,210, .065);
}

.az-about-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,100,210, .28);
  box-shadow: 0 22px 46px rgba(25,25,25, .08);
}

.az-about-value-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: auto;
  padding-bottom: 54px;
}

.az-about-value-card__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(0,100,210, .1);
  color: var(--az-terracotta);
}

.az-about-value-card__number {
  color: rgba(52,58,64, .42);
  font-family: var(--az-font-bold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.az-about-value-card h3,
.az-about-growth__feedback h3 {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-normal);
  font-size: clamp(21px, 2vw, 25px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.az-about-value-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--az-muted);
  font-family: var(--az-font-light);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.az-about-responsibility {
  padding-block: clamp(66px, 7vw, 96px);
  background: #fafafa;
}

.az-about-responsibility__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 390px;
  display: grid;
  grid-template-columns: auto minmax(0, 720px) auto;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(42px, 7vw, 82px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 12%, rgba(0,100,210, .18), transparent 30%),
    radial-gradient(circle at 91% 92%, rgba(255, 255, 255, .08), transparent 28%),
    var(--az-about-dark);
  color: #fff;
  box-shadow: 0 30px 70px rgba(25,25,25, .13);
}

.az-about-responsibility__panel::before,
.az-about-responsibility__panel::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .09);
}

.az-about-responsibility__panel::before {
  width: 330px;
  height: 330px;
  left: -160px;
  top: -142px;
}

.az-about-responsibility__panel::after {
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -100px;
}

.az-about-responsibility__badge {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  color: #dbeafd;
  backdrop-filter: blur(10px);
}

.az-about-responsibility__inner {
  max-width: 720px;
}

.az-about-section-kicker--light {
  margin-bottom: 16px;
  color: #dbeafd;
}

.az-about-responsibility h2 {
  color: #fff;
}

.az-about-responsibility .az-about-copy {
  margin-top: 22px;
  color: rgba(255, 255, 255, .72);
}

.az-about-growth--has-media {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.az-about-growth__content {
  margin-left: auto;
}

.az-about-growth__feedback {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  margin-top: 32px;
  padding: 26px 26px 26px 22px;
  border: 1px solid rgba(102,102,102, .1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(25,25,25, .05);
}

.az-about-growth__feedback-mark {
  color: var(--az-terracotta);
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: .8;
  opacity: .58;
}

.az-about-growth__feedback h3 {
  font-size: 20px;
}

.az-about-growth__feedback .az-about-copy {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
}

.az-about-page__cta {
  padding: clamp(30px, 4vw, 54px) 0 clamp(78px, 9vw, 120px);
  background: #fafafa;
}

.az-about-cta-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(38px, 6vw, 68px);
  border-radius: 32px;
  background:
    linear-gradient(110deg, rgba(0,100,210, .13), transparent 42%),
    var(--az-about-dark-soft);
  color: #fff;
  box-shadow: 0 28px 68px rgba(25,25,25, .13);
}

.az-about-cta-card__orb {
  position: absolute;
  z-index: -1;
  width: 310px;
  height: 310px;
  right: -110px;
  top: -150px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}

.az-about-cta-card__orb::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  inset: 58px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.az-about-cta-card__content {
  min-width: 0;
  max-width: 720px;
}

.az-about-page__eyebrow--light {
  color: #dbeafd;
}

.az-about-cta-card h2 {
  color: #fff;
  max-width: 620px;
}

.az-about-cta-card__content > p:last-child {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
}

.az-about-cta-card__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--az-button-bg);
  color: #fff;
  font-family: var(--az-font-bold);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.az-about-cta-card__button:hover,
.az-about-cta-card__button:focus-visible {
  transform: translateY(-2px);
  background: var(--az-button-hover);
  color: #fff;
}

.az-about-cta-card__button .az-icon {
  transition: transform 180ms ease;
}

.az-about-cta-card__button:hover .az-icon,
.az-about-cta-card__button:focus-visible .az-icon {
  transform: translateX(3px);
}

/* About Us phase 4 — Growth / Customer Feedback polish — v0.12.7 */
.az-about-growth-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 14%, rgba(0,100,210, .07), transparent 26%),
    linear-gradient(180deg, #fafafa 0%, #f7f7f7 100%);
}

.az-about-growth-section::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  left: -210px;
  bottom: -180px;
  border: 1px solid rgba(102,102,102, .075);
  border-radius: 50%;
  pointer-events: none;
}

.az-about-growth {
  position: relative;
  align-items: stretch;
}

.az-about-growth--has-media {
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
}

.az-about-growth__visual {
  position: relative;
  min-width: 0;
  display: grid;
}

.az-about-growth__media {
  min-height: 520px;
  height: 100%;
}

.az-about-growth__media--fallback {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(102,102,102, .1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 26% 22%, rgba(255, 255, 255, .72), transparent 30%),
    linear-gradient(145deg, #e3e3e3 0%, #f5f5f5 48%, #d0d0d0 100%);
  box-shadow: 0 28px 70px rgba(25,25,25, .11);
}

.az-about-growth__media--fallback::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 24px;
}

.az-about-growth__fallback-orb {
  position: absolute;
  border: 1px solid rgba(52,58,64, .1);
  border-radius: 50%;
}

.az-about-growth__fallback-orb--one {
  width: 310px;
  height: 310px;
  top: -96px;
  right: -70px;
}

.az-about-growth__fallback-orb--two {
  width: 170px;
  height: 170px;
  right: 48px;
  bottom: -72px;
}

.az-about-growth__fallback-mark {
  position: relative;
  z-index: 1;
  color: rgba(52,58,64, .78);
  font-family: var(--az-font-normal);
  font-size: clamp(72px, 9vw, 124px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: 1;
}

.az-about-growth__media-accent {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 34px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 18px;
  background: rgba(255,255,255, .92);
  color: var(--az-terracotta);
  box-shadow: 0 14px 34px rgba(25,25,25, .12);
  backdrop-filter: blur(12px);
}

.az-about-growth__content {
  width: 100%;
  max-width: 650px;
  align-self: center;
  padding-block: 18px;
}

.az-about-growth__copy {
  max-width: 610px;
}

.az-about-growth__feedback {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  margin-top: 38px;
  padding: 30px 32px 32px;
  border: 1px solid rgba(102,102,102, .11);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0,100,210, .055), transparent 45%),
    rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(25,25,25, .065);
}

.az-about-growth__feedback::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 170px;
  height: 170px;
  right: -98px;
  bottom: -108px;
  border: 1px solid rgba(0,100,210, .13);
  border-radius: 50%;
}

.az-about-growth__feedback-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.az-about-growth__feedback-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: 11px;
  background: rgba(0,100,210, .1);
  color: var(--az-terracotta);
}

.az-about-growth__feedback-kicker {
  margin: 0;
  color: var(--az-walnut);
  font-family: var(--az-font-bold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.az-about-growth__feedback-mark {
  position: absolute;
  top: 23px;
  right: 28px;
  color: rgba(0,100,210, .16);
  font-family: Georgia, serif;
  font-size: 82px;
  line-height: .75;
  opacity: 1;
  pointer-events: none;
}

.az-about-growth__feedback-body {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.az-about-growth__feedback h3 {
  max-width: 470px;
  padding-right: 34px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
}

.az-about-growth__feedback .az-about-copy {
  max-width: 520px;
  margin-top: 12px;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.78;
}
/* Homepage Trustpilot / official TrustBox — v0.11.9 */
.home-trustpilot {
  padding: 88px 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(0,100,210, .07), transparent 32%),
    linear-gradient(180deg, #fafafa 0%, var(--az-surface) 100%);
}
.home-trustpilot__inner {
  position: relative;
}
.home-trustpilot__widget-shell {
  position: relative;
  margin-top: 34px;
  padding: 30px 30px 20px;
  border: 1px solid rgba(229,229,229, .92);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 54px rgba(25,25,25, .09);
  overflow: hidden;
}
.home-trustpilot__widget-shell::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #00b67a 0%, #00b67a 62%, rgba(0, 182, 122, .14) 100%);
}
.home-trustpilot__widget {
  width: 100%;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-trustpilot__widget .trustpilot-widget {
  width: 100%;
  max-width: 100%;
}
.home-trustpilot__widget iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
}
.home-trustpilot__widget-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(229,229,229, .82);
  font-size: 14px;
}
.home-trustpilot__verified-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--az-muted);
  font-weight: 500;
}
.home-trustpilot__verified-label > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00b67a;
  box-shadow: 0 0 0 4px rgba(0, 182, 122, .11);
}
.home-trustpilot__widget-footer a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--az-walnut);
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}
.home-trustpilot__widget-footer a:hover,
.home-trustpilot__widget-footer a:focus-visible {
  color: var(--az-terracotta);
  gap: 12px;
}

/* Review carousel snapshot fallback until a TrustBox embed is configured. */
.home-trustpilot__snapshot-shell {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(229,229,229, .92);
  border-radius: 30px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 60px rgba(25,25,25, .09);
  overflow: hidden;
}
.home-trustpilot__summary-bar,
.home-trustpilot__carousel-head,
.home-trustpilot__snapshot-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.home-trustpilot__summary-bar {
  padding: 4px 2px 24px;
  border-bottom: 1px solid rgba(229,229,229, .86);
}
.home-trustpilot__summary-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.home-trustpilot__brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #00b67a;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}
.home-trustpilot__summary-brand > div,
.home-trustpilot__summary-rating {
  display: flex;
  flex-direction: column;
}
.home-trustpilot__summary-brand strong {
  color: var(--az-text);
  font-size: 20px;
  line-height: 1.2;
}
.home-trustpilot__summary-brand span:not(.home-trustpilot__brand-mark),
.home-trustpilot__summary-rating small {
  margin-top: 3px;
  color: var(--az-muted);
  font-size: 13px;
}
.home-trustpilot__summary-rating {
  align-items: flex-end;
  gap: 2px;
}
.home-trustpilot__summary-rating strong {
  color: var(--az-text);
  font-size: 27px;
  line-height: 1;
}
.home-trustpilot__summary-stars {
  color: #00b67a;
  font-size: 15px;
  letter-spacing: .08em;
}
.home-trustpilot__carousel-head {
  padding: 24px 2px 16px;
}
.home-trustpilot__carousel-head > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.home-trustpilot__carousel-head span {
  color: var(--az-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.home-trustpilot__carousel-head strong {
  color: var(--az-walnut);
  font-size: 13px;
  letter-spacing: .08em;
}
.home-trustpilot__controls {
  display: flex;
  gap: 9px;
}
.home-trustpilot__controls button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--az-border);
  border-radius: 999px;
  background: #fff;
  color: var(--az-walnut);
  font: inherit;
  font-size: 18px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.home-trustpilot__controls button:hover,
.home-trustpilot__controls button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0,100,210, .44);
  background: var(--az-cream);
  color: var(--az-terracotta);
}
.home-trustpilot__controls button:disabled {
  opacity: .34;
  cursor: default;
  transform: none;
}
.home-trustpilot__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  padding: 2px 2px 12px;
  outline: none;
}
.home-trustpilot__track::-webkit-scrollbar { display: none; }
.home-trustpilot__review-card {
  min-width: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 24px;
  border: 1px solid rgba(229,229,229, .9);
  border-radius: 22px;
  background: linear-gradient(155deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 10px 26px rgba(25,25,25, .055);
}
.home-trustpilot__review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.home-trustpilot__rating {
  display: inline-flex;
  gap: 3px;
  color: #e5e5e5;
  font-size: 17px;
}
.home-trustpilot__rating .is-filled { color: #00b67a; }
.home-trustpilot__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(0, 182, 122, .09);
  color: #198754;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}
.home-trustpilot__verified::before {
  content: '✓';
  font-size: 10px;
}
.home-trustpilot__review-card h3 {
  margin: 24px 0 10px;
  color: var(--az-text);
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.25;
}
.home-trustpilot__review-card > p {
  margin: 0;
  color: var(--az-muted);
  font-size: 15px;
  line-height: 1.68;
}
.home-trustpilot__review-card footer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding-top: 24px;
}
.home-trustpilot__avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--az-cream);
  color: var(--az-walnut);
  font-size: 12px;
  font-weight: 700;
}
.home-trustpilot__review-card footer > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.home-trustpilot__review-card footer strong {
  overflow: hidden;
  color: var(--az-text);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-trustpilot__review-card footer small {
  color: var(--az-muted);
  font-size: 11px;
}
.home-trustpilot__snapshot-footer {
  margin-top: 14px;
  padding: 18px 2px 2px;
  border-top: 1px solid rgba(229,229,229, .86);
}
.home-trustpilot__snapshot-footer p {
  margin: 0;
  color: var(--az-muted);
  font-size: 12px;
}
.home-trustpilot__snapshot-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--az-walnut);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}
.home-trustpilot__snapshot-footer a:hover,
.home-trustpilot__snapshot-footer a:focus-visible {
  color: var(--az-terracotta);
  gap: 11px;
}
@media (max-width: 1024px) {
  .home-trustpilot { padding: 72px 0; }
  .home-trustpilot__widget-shell { padding: 26px 24px 18px; }
  .home-trustpilot__snapshot-shell { padding: 24px; }
  .home-trustpilot__track { grid-auto-columns: calc((100% - 18px) / 2); }

  /* About Us responsive layer — v0.12.7 */
  .az-about-page__hero { padding-top: 88px; }
  .az-about-page__section { padding-block: 72px; }
  .az-about-story--has-media,
  .az-about-growth--has-media { grid-template-columns: 1fr; gap: 42px; }
  .az-about-story--has-media .az-about-story__content,
  .az-about-story__media { order: initial; }
  .az-about-story__content,
  .az-about-growth__content { max-width: 680px; margin-inline: auto; }
  .az-about-story__media,
  .az-about-growth__media,
  .az-about-story__visual { width: min(100%, 680px); min-height: 420px; margin-inline: auto; }
  .az-about-values__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .az-about-value-card:last-child:nth-child(odd) { grid-column: 1 / -1; min-height: 260px; }
  .az-about-responsibility__panel { min-height: 0; grid-template-columns: 1fr; gap: 24px; padding: 46px; }
  .az-about-responsibility__badge { width: 62px; height: 62px; }
  .az-about-growth__visual { width: min(100%, 680px); margin-inline: auto; }
  .az-about-growth__content { padding-block: 0; }
  .az-about-growth__media-accent { right: 22px; bottom: -18px; }
  .az-about-cta-card { min-height: 230px; align-items: flex-start; flex-direction: column; }
}
@media (max-width: 767px) {
  .home-trustpilot { padding: 58px 0; }
  .home-trustpilot__widget-shell {
    margin-top: 26px;
    padding: 20px 14px 16px;
    border-radius: 20px;
  }
  .home-trustpilot__widget { min-height: 130px; }
  .home-trustpilot__widget-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
  }
  .home-trustpilot__snapshot-shell {
    margin-top: 26px;
    padding: 18px 14px;
    border-radius: 22px;
  }
  .home-trustpilot__summary-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 18px;
  }
  .home-trustpilot__summary-rating {
    align-items: flex-start;
  }
  .home-trustpilot__carousel-head {
    padding: 18px 0 13px;
  }
  .home-trustpilot__controls button {
    width: 38px;
    height: 38px;
  }
  .home-trustpilot__track {
    grid-auto-columns: 88%;
    gap: 12px;
    margin-right: -14px;
    padding-right: 14px;
  }
  .home-trustpilot__review-card {
    min-height: 270px;
    padding: 20px;
    border-radius: 18px;
  }
  .home-trustpilot__snapshot-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
  }

  /* About Us mobile layer — v0.12.7 */
  .az-about-page__hero { padding: 72px 0 66px; }
  .az-about-page__eyebrow { margin-bottom: 15px; }
  .az-about-page__eyebrow::before,
  .az-about-page__eyebrow::after { width: 20px; margin-inline: 8px; }
  .az-about-page__title { font-size: clamp(38px, 12vw, 52px); line-height: 1.02; }
  .az-about-page__intro { margin-top: 20px; font-size: 15px; line-height: 1.72; }
  .az-about-page__hero-values { align-items: center; flex-direction: column; gap: 11px; margin-top: 28px; padding-left: 0; }
  .az-about-page__hero-values span { justify-content: center; text-align: center; }
  .az-about-page__section { padding-block: 58px; }
  .az-about-story,
  .az-about-growth { gap: 32px; }
  .az-about-story h2,
  .az-about-growth h2,
  .az-about-responsibility h2,
  .az-about-section-heading h2,
  .az-about-cta-card h2 { font-size: clamp(29px, 9vw, 38px); }
  .az-about-copy,
  .az-about-section-heading > p,
  .az-about-cta-card__content > p:last-child { font-size: 14px; line-height: 1.75; }
  .az-about-story__media,
  .az-about-growth__media,
  .az-about-story__visual { min-height: 330px; }
  .az-about-story__media img,
  .az-about-growth__media img,
  .az-about-story__visual { border-radius: 22px; }
  .az-about-media-frame { inset: 12px; border-radius: 16px; }
  .az-about-story__media::after,
  .az-about-growth__media::after { display: none; }
  .az-about-story__visual { padding: 26px; }
  .az-about-story__visual-mark { top: 26px; left: 26px; width: 56px; height: 56px; border-radius: 17px; }
  .az-about-story__visual-line { left: 26px; bottom: 82px; }
  .az-about-story__visual p { font-size: 27px; }
  .az-about-section-heading { margin-bottom: 30px; }
  .az-about-values__grid { grid-template-columns: 1fr; gap: 14px; }
  .az-about-value-card,
  .az-about-value-card:last-child:nth-child(odd) { grid-column: auto; min-height: 250px; padding: 24px; border-radius: 22px; }
  .az-about-value-card__topline { padding-bottom: 34px; }
  .az-about-responsibility { padding-block: 52px; }
  .az-about-responsibility__panel { padding: 30px 24px 34px; border-radius: 24px; }
  .az-about-responsibility__badge { width: 54px; height: 54px; border-radius: 17px; }
  .az-about-growth__media--fallback,
  .az-about-growth__media--fallback::before { border-radius: 22px; }
  .az-about-growth__media--fallback::before { inset: 12px; border-radius: 16px; }
  .az-about-growth__fallback-mark { font-size: clamp(68px, 23vw, 94px); }
  .az-about-growth__media-accent { right: 18px; bottom: -16px; width: 50px; height: 50px; border-radius: 15px; }
  .az-about-growth__copy { margin-top: 18px; }
  .az-about-growth__feedback { margin-top: 28px; padding: 22px 20px 24px; border-radius: 20px; }
  .az-about-growth__feedback-topline { margin-bottom: 18px; }
  .az-about-growth__feedback-icon { width: 32px; height: 32px; flex-basis: 32px; border-radius: 10px; }
  .az-about-growth__feedback-mark { top: 22px; right: 18px; font-size: 62px; }
  .az-about-growth__feedback h3 { padding-right: 28px; font-size: 20px; }
  .az-about-growth__feedback .az-about-copy { font-size: 13.5px; line-height: 1.75; }
  .az-about-page__cta { padding: 16px 0 70px; }
  .az-about-cta-card { min-height: 0; gap: 28px; padding: 34px 24px; border-radius: 24px; }
  .az-about-cta-card__button { width: 100%; }
}


/* Trustpilot heading centering + overflow containment — v0.11.9 */
.home-trustpilot {
  overflow-x: clip;
}
.home-trustpilot .home-trustpilot__heading {
  width: 100%;
  max-width: 920px;
  display: grid;
  justify-items: center;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.home-trustpilot .home-trustpilot__heading .section-heading__eyebrow,
.home-trustpilot .home-trustpilot__heading .section-heading__row,
.home-trustpilot .home-trustpilot__heading .section-heading__row > * {
  width: 100%;
  min-width: 0;
}
.home-trustpilot .home-trustpilot__heading .section-heading__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  gap: 12px;
}
.home-trustpilot .home-trustpilot__heading h2,
.home-trustpilot .home-trustpilot__heading .section-heading__row > p {
  justify-self: center;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.home-trustpilot .home-trustpilot__heading h2 {
  max-width: 820px;
}
.home-trustpilot .home-trustpilot__heading .section-heading__row > p {
  max-width: 680px;
}
.home-trustpilot__snapshot-shell,
.home-trustpilot__widget-shell {
  max-width: 100%;
  min-width: 0;
}
/* Homepage section heading alignment + scale polish — v0.11.9
 *
 * Keep public directory headers unchanged. Homepage content sections use a
 * single centered vertical rhythm: eyebrow -> title -> supporting copy -> CTA.
 * The shared display headings are reduced by ~30% from the previous scale.
 */
:is(
  .home-categories--home .home-categories__heading,
  .home-product-categories--home .home-product-categories__heading,
  .home-products .home-products__heading,
  .home-promo .home-promo__heading,
  .home-trustpilot .home-trustpilot__heading
) {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

:is(
  .home-categories--home .home-categories__heading,
  .home-product-categories--home .home-product-categories__heading,
  .home-products .home-products__heading,
  .home-trustpilot .home-trustpilot__heading
) .section-heading__row,
.home-products .home-products__heading .section-heading__row--with-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.home-products .home-products__heading .section-heading__row--with-link > div:first-child {
  display: grid;
  justify-items: center;
  gap: 0;
  text-align: center;
}

.home-products .home-products__heading .section-heading__aside {
  justify-items: center;
  gap: 14px;
  text-align: center;
}

:is(
  .home-categories--home .home-categories__heading,
  .home-product-categories--home .home-product-categories__heading,
  .home-products .home-products__heading,
  .home-promo .home-promo__heading,
  .home-trustpilot .home-trustpilot__heading
) .section-heading__eyebrow {
  margin-bottom: 10px;
}

:is(
  .home-categories--home .home-categories__heading,
  .home-product-categories--home .home-product-categories__heading,
  .home-products .home-products__heading,
  .home-promo .home-promo__heading,
  .home-trustpilot .home-trustpilot__heading
) h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(27px, calc(22px + 1.6vw), 45px);
  line-height: 1.04;
  letter-spacing: -.028em;
  text-align: center;
}

:is(
  .home-categories--home .home-categories__heading,
  .home-product-categories--home .home-product-categories__heading,
  .home-products .home-products__heading,
  .home-promo .home-promo__heading,
  .home-trustpilot .home-trustpilot__heading
) p:not(.section-heading__eyebrow) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

/* Promo already uses a flat eyebrow/title/text structure. Center the same
 * vertical rhythm and keep its heading width aligned with other sections. */
.home-promo .home-promo__heading {
  display: grid;
  justify-items: center;
  gap: 0;
}
.home-promo .home-promo__heading h2 + p {
  margin-top: 14px;
}

/* CTA uses a bespoke two-column layout rather than section-heading, but its
 * display title belongs to the same homepage type scale. */
.home-cta h2 {
  font-size: clamp(30px, calc(24px + 1.5vw), 45px);
  line-height: 1.04;
}
/* Contact page — v0.12.3
 * Final responsive, accessibility and delivery-state polish for Contact Us.
 */
.az-contact-page {
  min-height: 60vh;
  background:
    radial-gradient(circle at 88% 12%, rgba(0,100,210, .08), transparent 30%),
    var(--az-cream);
}

.az-contact-page__hero {
  padding: clamp(72px, 8vw, 108px) 0 34px;
}

.az-contact-page__hero-inner,
.az-contact-page__heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.az-contact-page__heading {
  width: min(100%, 820px);
  margin-inline: auto;
}

.az-contact-page__eyebrow,
.az-contact-panel__eyebrow,
.az-contact-form-card__eyebrow {
  margin: 0 0 12px;
  color: var(--az-terracotta);
  font-family: var(--az-font-bold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.az-contact-page__title {
  margin: 0;
  color: var(--az-text);
  font-family: var(--az-font-normal);
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.az-contact-page__intro {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--az-muted);
  font-family: var(--az-font-light);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  text-wrap: balance;
}

.az-contact-page__content {
  padding: 22px 0 clamp(76px, 8vw, 112px);
}

.az-contact-page__content-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.4vw, 34px);
  align-items: stretch;
}

.az-contact-panel,
.az-contact-form-card {
  min-width: 0;
  border-radius: clamp(24px, 2.2vw, 30px);
  overflow: hidden;
}

.az-contact-panel {
  flex: 1 1 340px;
}

.az-contact-form-card {
  flex: 1.55 1 520px;
}

.az-contact-panel {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background:
    radial-gradient(circle at 88% 10%, rgba(0,100,210, .22), transparent 32%),
    linear-gradient(145deg, #24292e 0%, #191919 100%);
  color: var(--az-cream);
  box-shadow: 0 22px 54px rgba(25,25,25, .14);
}

.az-contact-panel::after {
  content: '';
  position: absolute;
  right: -72px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, .025), 0 0 0 68px rgba(255, 255, 255, .02);
  pointer-events: none;
}

.az-contact-panel__head,
.az-contact-page__details {
  position: relative;
  z-index: 1;
}

.az-contact-panel__eyebrow {
  color: #8ab9ef;
}

.az-contact-panel__head h2,
.az-contact-form-card__head h2 {
  margin: 0;
  font-family: var(--az-font-normal);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.az-contact-panel__head h2 {
  max-width: 380px;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
}

.az-contact-panel__head > p:last-child {
  max-width: 430px;
  margin: 16px 0 0;
  color: rgba(255,255,255, .72);
  font-family: var(--az-font-light);
  font-size: 14px;
  line-height: 1.75;
}

.az-contact-page__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 0 22px;
  margin-top: 34px;
}

.az-contact-detail {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.az-contact-detail:first-child {
  border-top: 0;
  padding-top: 0;
}

.az-contact-detail__icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: #9bc5f2;
}

.az-contact-detail__label {
  margin: 1px 0 6px;
  color: rgba(255,255,255, .58);
  font-family: var(--az-font-bold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.az-contact-detail__value {
  margin: 0;
  color: #fff;
  font-family: var(--az-font-normal);
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.az-contact-detail__value a {
  color: inherit;
  transition: color 180ms ease;
}

.az-contact-detail__value a:hover,
.az-contact-detail__value a:focus-visible {
  color: #9bc5f2;
}

.az-contact-form-card {
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(229,229,229, .95);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 54px rgba(25,25,25, .08);
}

.az-contact-form-card__head {
  max-width: 650px;
}

.az-contact-form-card__head h2 {
  color: var(--az-text);
  font-size: clamp(30px, 3.3vw, 42px);
}

.az-contact-form-card__head > p:last-child {
  max-width: 610px;
  margin: 13px 0 0;
  color: var(--az-muted);
  font-family: var(--az-font-light);
  font-size: 14px;
  line-height: 1.7;
}

.az-contact-form {
  margin-top: 30px;
}

.az-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}

.az-contact-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.az-contact-field--wide {
  grid-column: 1 / -1;
}

.az-contact-field label {
  color: var(--az-text);
  font-family: var(--az-font-bold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .015em;
}

.az-contact-field label span {
  color: var(--az-terracotta);
}

.az-contact-field input,
.az-contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--az-border);
  border-radius: 16px;
  background: #fafafa;
  color: var(--az-text);
  font-family: var(--az-font-normal);
  font-size: 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.az-contact-field input {
  height: 54px;
  padding: 0 17px;
}

.az-contact-field textarea {
  min-height: 178px;
  padding: 15px 17px;
  line-height: 1.65;
  resize: vertical;
}

.az-contact-field input::placeholder,
.az-contact-field textarea::placeholder {
  color: rgba(112,112,112, .62);
}

.az-contact-field input:focus,
.az-contact-field textarea:focus {
  border-color: rgba(0,100,210, .7);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,100,210, .1);
}

.az-contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-top: 22px;
}

.az-contact-form__footer > p {
  flex: 1 1 180px;
  margin: 0;
  color: var(--az-muted);
  font-family: var(--az-font-light);
  font-size: 12px;
  line-height: 1.5;
}

.az-contact-form__submit {
  flex: 1 1 174px;
  max-width: 220px;
  min-width: 174px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--az-button-bg);
  color: #fff;
  font-family: var(--az-font-bold);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.az-contact-form__submit:hover,
.az-contact-form__submit:focus-visible {
  background: var(--az-button-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(111,66,193, .22);
}

/* Contact form delivery states — v0.12.3 */
.az-contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.az-contact-field.is-invalid input,
.az-contact-field.is-invalid textarea,
.az-contact-field [aria-invalid="true"] {
  border-color: #e53238;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(229,50,56, .1);
}

.az-contact-form__status {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(112,112,112, .16);
  border-radius: 14px;
  background: #f7f7f7;
  color: var(--az-text);
  font-size: 13px;
  line-height: 1.55;
}

.az-contact-form__status.is-success {
  border-color: rgba(25,135,84, .24);
  background: #f3f8f4;
  color: #198754;
}

.az-contact-form__status.is-error {
  border-color: rgba(229,50,56, .22);
  background: #fff1f2;
  color: #e53238;
}

.az-contact-form__submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
  box-shadow: none;
}

.az-contact-form__submit.is-loading svg {
  animation: az-contact-spin 900ms linear infinite;
}

@keyframes az-contact-spin {
  to { transform: rotate(360deg); }
}

.az-contact-toast {
  position: fixed;
  right: 12px;
  bottom: 14px;
  z-index: 99999;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 12px;
  width: min(420px, calc(100vw - 24px));
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(229,229,229, .35);
  border-radius: 18px;
  background: rgba(25,25,25, .97);
  color: #fff;
  box-shadow: 0 22px 52px rgba(0, 0, 0, .24);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.az-contact-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.az-contact-toast__icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #198754;
  color: #fff;
  font-weight: 900;
}

.az-contact-toast.is-error .az-contact-toast__icon {
  background: #e53238;
}

.az-contact-toast__content {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.az-contact-toast__title {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.az-contact-toast__text {
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  line-height: 1.45;
}

.az-contact-toast__close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
/* Homepage product rails — v0.14.0
 *
 * One-row product rails with touch swipe, mouse drag, hidden native scrollbar,
 * and explicit previous/next controls for discoverability.
 */
.home-products .az-product-rail-shell {
  position: relative;
}

.home-products .az-product-rail {
  display: flex;
  grid-template-columns: none;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(12px, 2vw, 24px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-products .az-product-rail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.home-products .az-product-rail:focus-visible {
  outline: 2px solid rgba(0,100,210, .6);
  outline-offset: 5px;
  border-radius: 10px;
}

.home-products .az-product-rail > .az-product-card {
  flex: 0 0 clamp(238px, 23vw, 280px);
  width: auto;
  min-width: 0;
  height: auto;
  scroll-snap-align: start;
}

.home-products .az-product-rail__arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: clamp(38px, 4vw, 46px);
  height: clamp(38px, 4vw, 46px);
  padding: 0;
  border: 1px solid rgba(112,112,112, .2);
  border-radius: 999px;
  background: rgba(255,255,255, .94);
  color: var(--az-ink, #191919);
  box-shadow: 0 10px 28px rgba(52,58,64, .16);
  transform: translateY(-50%);
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-products .az-product-rail__arrow--prev { left: clamp(4px, 1vw, 12px); }
.home-products .az-product-rail__arrow--next { right: clamp(4px, 1vw, 12px); }

.home-products .az-product-rail__arrow:hover:not(:disabled),
.home-products .az-product-rail__arrow:focus-visible:not(:disabled) {
  background: #fff;
  box-shadow: 0 12px 32px rgba(52,58,64, .22);
}

.home-products .az-product-rail__arrow:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.04);
}

.home-products .az-product-rail__arrow:focus-visible {
  outline: 2px solid rgba(0,100,210, .68);
  outline-offset: 3px;
}

.home-products .az-product-rail__arrow:disabled {
  opacity: .28;
  cursor: default;
  box-shadow: none;
}

.home-products .az-product-rail-shell.is-static .az-product-rail__arrow {
  display: none;
}

/* Pointer interaction: desktop users can grab and drag the rail; touch keeps native swipe. */
.home-products .az-product-rail.az-product-rail--drag-ready {
  cursor: grab;
}

.home-products .az-product-rail.az-product-rail--drag-ready.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.home-products .az-product-rail.az-product-rail--drag-ready.is-dragging * {
  user-select: none;
}
/* v0.15.0 — Curated Collection archive experience.
 * Collection archives keep the shared Shop controls, but gain an editorial
 * hero and a dedicated full-width single-column product-list presentation.
 */

.az-shop-page--collection {
  container-type: inline-size;
  container-name: azeemall-collection;
}

.az-collection-hero {
  margin: 0 0 28px;
}

.az-collection-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #7f7f7f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.az-collection-hero__breadcrumb a {
  color: #686868;
  text-decoration: none;
  transition: color 180ms ease;
}

.az-collection-hero__breadcrumb a:hover {
  color: var(--az-terracotta);
}

.az-collection-hero__panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  min-height: 365px;
  overflow: hidden;
  border: 1px solid rgba(229,229,229, .84);
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.9), transparent 38%),
    linear-gradient(135deg, #f7f7f7 0%, #eeeeee 58%, #e3e3e3 100%);
  box-shadow: 0 24px 60px rgba(25,25,25, .08);
}

.az-collection-hero__panel::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
  left: -78px;
  bottom: -120px;
  border: 1px solid rgba(0,100,210, .16);
  border-radius: 50%;
}

.az-collection-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding: clamp(34px, 4.4vw, 66px);
}

.az-collection-hero__eyebrow,
.az-collection-results-heading p {
  margin: 0;
  color: var(--az-terracotta);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.az-collection-hero h1 {
  max-width: 680px;
  margin: 12px 0 14px;
  color: var(--az-text);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

.az-collection-hero__description {
  max-width: 620px;
  color: #616161;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.75;
}

.az-collection-hero__description p {
  margin: 0;
}

.az-collection-hero__meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(138,138,138, .17);
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  color: #686868;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.az-collection-hero__media {
  position: relative;
  min-width: 0;
  min-height: 365px;
  margin: 0;
  overflow: hidden;
  background: #e3e3e3;
}

.az-collection-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,245,245,.36), transparent 32%);
  pointer-events: none;
}

.az-collection-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 365px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.az-shop-page--collection .az-shop-controls {
  display: none;
}

.az-collection-results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 4px 0 20px;
  padding: 0 2px;
}

.az-collection-results-heading h2 {
  margin: 5px 0 0;
  color: var(--az-text);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.az-collection-results-heading > span {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(229,229,229,.85);
  border-radius: 999px;
  background: #ffffff;
  color: #747474;
  font-size: 11px;
  font-weight: 750;
}

/* Collection products are intentionally a list, never the Shop card grid. */
.woocommerce .az-shop-page--collection .az-shop-products ul.products,
.az-shop-page--collection .az-shop-products .products {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 18px;
}

.woocommerce .az-shop-page--collection .az-shop-products ul.products li.product.az-product-card--collection,
.az-shop-page--collection .az-product-card--collection {
  display: grid;
  grid-template-columns: minmax(220px, 31%) minmax(0, 1fr);
  width: 100%;
  min-height: 254px;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(229,229,229, .9);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(25,25,25, .055);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.az-shop-page--collection .az-product-card--collection::after {
  display: none;
}

.az-shop-page--collection .az-product-card--collection:hover {
  transform: translateY(-2px);
  border-color: rgba(0,100,210,.26);
  box-shadow: 0 18px 42px rgba(25,25,25, .09);
}

.az-shop-page--collection .az-product-card--collection .az-product-card__media-wrap {
  align-self: stretch;
  min-height: 232px;
  height: calc(100% - 20px);
  margin: 10px 0 10px 10px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #f5f5f5, #fafafa);
}

.az-shop-page--collection .az-product-card--collection .az-product-card__media {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
}

.az-shop-page--collection .az-product-card--collection .az-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(.2,.7,.2,1), filter 520ms ease;
}

.az-shop-page--collection .az-product-card--collection:hover .az-product-card__media img {
  transform: scale(1.045);
  filter: saturate(1.035) contrast(1.015);
}

.az-shop-page--collection .az-product-card--collection .az-product-card__body {
  display: grid;
  align-content: center;
  gap: 9px;
  min-width: 0;
  padding: clamp(22px, 2.6vw, 34px);
}

.az-shop-page--collection .az-product-card--collection .az-product-card__category {
  width: fit-content;
  color: #0064d2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.az-shop-page--collection .az-product-card--collection .az-product-card__title {
  min-height: 0;
  margin: 0;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.22;
  letter-spacing: -.022em;
}

.az-shop-page--collection .az-product-card--collection .az-product-card__title a {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.az-product-card__excerpt {
  max-width: 660px;
  margin: 1px 0 0;
  color: #707070;
  font-size: 13px;
  line-height: 1.65;
}

.az-shop-page--collection .az-product-card--collection .az-product-card__rating {
  margin-top: 1px;
}

.az-shop-page--collection .az-product-card--collection .az-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 7px;
  padding-top: 16px;
  border-top: 1px solid rgba(229,229,229, .78);
}

.az-shop-page--collection .az-product-card--collection .az-product-card__price {
  font-size: 20px;
}

.az-shop-page--collection .az-product-card--collection .az-product-card__add {
  min-width: 148px;
}

.az-shop-page--collection .az-shop-empty {
  border: 1px solid rgba(229,229,229,.88);
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
}

@container azeemall-collection (max-width: 1024px) {
  .az-collection-hero__panel {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
    min-height: 330px;
  }
  .az-collection-hero__media,
  .az-collection-hero__media img {
    min-height: 330px;
  }
  .az-shop-page--collection .az-shop-controls__mobile {
    margin-bottom: 18px;
  }
  .az-shop-page--collection .az-collection-results-heading {
    margin-top: 0;
  }
}

@container azeemall-collection (max-width: 767px) {
  .az-collection-hero {
    margin-bottom: 20px;
  }
  .az-collection-hero__breadcrumb {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .az-collection-hero__panel {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    border-radius: 24px;
  }
  .az-collection-hero__media {
    order: -1;
    min-height: 210px;
    height: clamp(210px, 58vw, 280px);
  }
  .az-collection-hero__media img {
    min-height: 0;
    height: 100%;
  }
  .az-collection-hero__media::after {
    background: linear-gradient(0deg, rgba(245,245,245,.28), transparent 34%);
  }
  .az-collection-hero__copy {
    padding: 24px 20px 26px;
  }
  .az-collection-hero h1 {
    margin: 9px 0 10px;
    font-size: clamp(32px, 10vw, 43px);
  }
  .az-collection-hero__description {
    font-size: 13.5px;
    line-height: 1.62;
  }
  .az-collection-hero__meta {
    margin-top: 16px;
    font-size: 10px;
  }
  .az-collection-results-heading {
    align-items: center;
    margin-bottom: 14px;
  }
  .az-collection-results-heading h2 {
    font-size: 20px;
  }
  .az-collection-results-heading > span {
    display: none;
  }

  .woocommerce .az-shop-page--collection .az-shop-products ul.products li.product.az-product-card--collection,
  .az-shop-page--collection .az-product-card--collection {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 21px;
  }
  .az-shop-page--collection .az-product-card--collection .az-product-card__media-wrap {
    width: auto;
    min-height: 0;
    height: auto;
    margin: 8px 8px 0;
    border-radius: 17px;
  }
  .az-shop-page--collection .az-product-card--collection .az-product-card__media {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .az-shop-page--collection .az-product-card--collection .az-product-card__body {
    gap: 7px;
    padding: 16px;
  }
  .az-shop-page--collection .az-product-card--collection .az-product-card__title {
    font-size: 19px;
  }
  .az-product-card__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 12.5px;
  }
  .az-shop-page--collection .az-product-card--collection .az-product-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 11px;
    padding-top: 13px;
  }
  .az-shop-page--collection .az-product-card--collection .az-product-card__add {
    width: 100%;
    min-width: 0;
  }
}

/* v0.15.4 — Final mobile Collection card alignment.
 * Desktop/tablet retain the richer v0.15.0 presentation. Mobile uses a
 * balanced two-column list card with a square thumbnail and a single action
 * row where wishlist + cart are identical controls on one optical baseline.
 */
.az-shop-page--collection .az-product-card--collection .az-product-card__add-icon-wrap {
  display: none;
}

.az-shop-page--collection .az-product-card--collection .az-product-card__add-label {
  display: inline;
}

.az-shop-page--collection .az-product-card--collection .az-product-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.az-shop-page--collection .az-product-card--collection .az-product-card__wishlist--footer {
  display: none;
}

@container azeemall-collection (max-width: 767px) {
  .woocommerce .az-shop-page--collection .az-shop-products ul.products li.product.az-product-card--collection,
  .az-shop-page--collection .az-product-card--collection {
    --az-collection-mobile-media: clamp(102px, 30vw, 118px);
    --az-collection-mobile-action: 42px;
    display: grid;
    grid-template-columns: var(--az-collection-mobile-media) minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    min-height: calc(var(--az-collection-mobile-media) + 22px);
    padding: 10px;
    border-radius: 20px;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__media-wrap {
    align-self: center;
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 15px;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__media {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__body {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-self: stretch;
    align-items: center;
    gap: 7px;
    min-width: 0;
    min-height: var(--az-collection-mobile-media);
    padding: 2px 2px 2px 0;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__category {
    align-self: end;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__title {
    align-self: center;
    min-height: 0;
    margin: 0;
    font-size: clamp(14px, 4.1vw, 17px);
    line-height: 1.23;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__title a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__excerpt,
  .az-shop-page--collection .az-product-card--collection .az-product-card__rating {
    display: none;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: var(--az-collection-mobile-action);
    margin: 0;
    padding: 8px 0 0;
    border-top: 1px solid rgba(229,229,229, .78);
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__price {
    align-self: center;
    min-width: 0;
    margin: 0;
    font-size: clamp(16px, 4.7vw, 19px);
    line-height: 1;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
    gap: 8px;
    height: var(--az-collection-mobile-action);
    margin: 0;
    padding: 0;
  }

  /* The media wishlist is replaced by the footer action on Collection mobile. */
  .az-shop-page--collection .az-product-card--collection .az-product-card__media-wrap > .az-product-card__wishlist {
    display: none;
  }

  /* Both actions deliberately share the exact same box model. The shared box model neutralizes legacy archive-card sizing and keeps both
   * controls optically aligned at this breakpoint. */
  .az-shop-page--collection .az-product-card--collection .az-product-card__wishlist--footer,
  .az-shop-page--collection .az-product-card--collection .az-product-card__add {
    position: static;
    inset: auto;
    flex: 0 0 var(--az-collection-mobile-action);
    width: var(--az-collection-mobile-action);
    min-width: var(--az-collection-mobile-action);
    max-width: var(--az-collection-mobile-action);
    height: var(--az-collection-mobile-action);
    min-height: var(--az-collection-mobile-action);
    max-height: var(--az-collection-mobile-action);
    margin: 0;
    padding: 0;
    border-radius: 999px;
    line-height: 1;
    transform: none;
    box-sizing: border-box;
    vertical-align: middle;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__wishlist--footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229,229,229, .96);
    background: #fff;
    color: #51575d;
    box-shadow: 0 7px 18px rgba(25,25,25, .055);
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__add {
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }

  /* Remove the legacy text-arrow/check pseudo element; it was contributing a
   * second flex item and visually pushing the cart glyph off-center. */
  .az-shop-page--collection .az-product-card--collection .az-product-card__add::after {
    display: none;
    content: none;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__add-icon-wrap {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__wishlist--footer .az-icon,
  .az-shop-page--collection .az-product-card--collection .az-product-card__add .az-icon {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__add-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__badge,
  .az-shop-page--collection .az-product-card--collection .onsale.az-product-card__badge {
    min-width: 0;
    padding: 5px 7px;
    font-size: 8px;
  }
}


/* v0.15.8 — Collection mobile cart/button optical alignment.
 * The real storefront renders the cart action lower than the wishlist despite
 * equal box sizes. Move the whole cart control (not just its SVG) up by 6px.
 */
@container azeemall-collection (max-width: 767px) {
  .az-shop-page--collection .az-product-card--collection .az-product-card__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__wishlist--footer {
    position: relative;
    top: 0;
    transform: none;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__add {
    position: relative;
    top: -6px;
    transform: none;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__add:hover,
  .az-shop-page--collection .az-product-card--collection .az-product-card__add:focus,
  .az-shop-page--collection .az-product-card--collection .az-product-card__add:active {
    top: -6px;
    transform: none;
  }

  .az-shop-page--collection .az-product-card--collection .az-product-card__add .az-icon {
    transform: none;
  }
}
/* AZeeMall brand color system — v0.16.1
 *
 * Final storefront color pass. Typography stays on the existing Manrope stack.
 * The UI is intentionally neutral-first: white surfaces, near-black type,
 * blue interaction, red commerce emphasis, yellow ratings and green status.
 */

body {
  background: var(--az-bg-page);
}

.top-notice {
  background: var(--az-blue);
  color: var(--az-white);
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current-menu-ancestor > a,
.icon-button:hover {
  background: var(--az-bg-muted);
}

.icon-button {
  color: var(--az-black);
}

.cart-count,
.header-actions__wishlist .wishlist-count,
.header-actions__wishlist .az-wishlist-count-badge {
  background: var(--az-red);
  color: var(--az-white);
  box-shadow: 0 8px 18px rgba(229, 50, 56, .20);
}

.header-actions__wishlist:has(.az-wishlist-count-badge.has-items),
.az-product-card__wishlist.is-active,
.az-product-wishlist.is-active {
  color: var(--az-red);
}

.mobile-menu__footer .mobile-menu__wishlist .az-wishlist-count-badge {
  background: rgba(229, 50, 56, .10);
  color: var(--az-red);
}

.home-hero__media::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .38) 42%, rgba(0, 0, 0, .12) 78%, rgba(0, 0, 0, .04) 100%);
}

.home-hero__eyebrow {
  color: rgba(255, 255, 255, .82);
}

.home-categories,
.home-products,
.home-promo,
.home-products--popular,
.home-cta,
.home-product-categories {
  background-color: var(--az-white);
}

.category-card {
  border-color: var(--az-border);
  background: var(--az-bg-muted);
  box-shadow: 0 10px 28px rgba(25, 25, 25, .06);
}

.category-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 92px;
  height: 4px;
  border-radius: 0 999px 0 0;
  background: var(--az-blue);
  pointer-events: none;
}

.home-categories__grid .category-card:nth-child(4n + 2)::before {
  background: var(--az-red);
}

.home-categories__grid .category-card:nth-child(4n + 3)::before {
  background: var(--az-yellow);
}

.home-categories__grid .category-card:nth-child(4n + 4)::before {
  background: var(--az-green);
}

.category-card__media::after,
.home-promo-card__media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 20%, rgba(0, 0, 0, .20) 58%, rgba(0, 0, 0, .72) 100%);
}

.az-product-card,
.az-shop-products .az-product-card--archive {
  background: var(--az-white);
  border-color: var(--az-border);
  box-shadow: 0 2px 18px rgba(25, 25, 25, .04);
}

.az-product-card__media-wrap,
.az-shop-products .az-product-card--archive .az-product-card__media-wrap,
.home-product-category__media {
  background: var(--az-bg-muted);
}

.woocommerce .az-product-card .az-product-card__badge,
.woocommerce .az-shop-products .az-product-card--archive .az-product-card__badge,
.az-product-card .az-product-card__badge,
body.single-product .az-product-gallery span.onsale {
  background: var(--az-red);
  color: var(--az-white);
}

.az-product-card__rating .az-product-card__stars-fill,
.az-product-card__rating .star-rating,
.az-product-card__rating-star,
.az-product-summary .star-rating,
.az-product-reviews__stars,
.az-product-reviews__native .star-rating,
.az-product-reviews__native .comment-form-rating .stars a {
  color: var(--az-yellow);
}

.az-product-reviews__track span {
  background: linear-gradient(90deg, var(--az-yellow), #ffd45a);
}

.az-product-card__price ins,
.az-shop-products .az-product-card--archive .az-product-card__price ins,
.az-product-summary .price ins,
.az-product-summary__price-row .price ins,
.az-product-purchase .woocommerce-variation-price .price ins,
.az-product-sticky-cart__price ins {
  color: var(--az-red);
}

.az-product-summary__status-dot,
.az-product-purchase .woocommerce-variation-availability .stock,
.az-wishlist-page .az-wishlist-item__stock.is-in-stock,
.az-wishlist-page .az-wishlist-item__stock.is-in-stock p {
  color: var(--az-green);
}

.az-product-summary__status-dot {
  background: var(--az-green);
  box-shadow: 0 0 0 4px rgba(25, 135, 84, .14);
}

.az-product-purchase .woocommerce-variation-availability .stock {
  background: rgba(25, 135, 84, .10);
}

.home-promo-card:not(:has(.home-promo-card__media)) {
  background: var(--az-blue);
  color: var(--az-white);
  border-color: transparent;
}

.home-promo__grid .home-promo-card:nth-child(even):not(:has(.home-promo-card__media)) {
  background: var(--az-red);
}

.home-promo-card:not(:has(.home-promo-card__media))::before {
  background: rgba(255, 255, 255, .12);
}

.home-promo-card:not(:has(.home-promo-card__media)) .home-promo-card__kicker,
.home-promo-card:not(:has(.home-promo-card__media)) .home-promo-card__text {
  color: rgba(255, 255, 255, .86);
}

.home-promo-card:not(:has(.home-promo-card__media)) .home-promo-card__button {
  border-color: var(--az-button-bg);
  background: var(--az-button-bg);
  color: var(--az-white);
}

.home-promo-card:not(:has(.home-promo-card__media)) .home-promo-card__button:hover {
  border-color: var(--az-button-hover);
  background: var(--az-button-hover);
  color: var(--az-white);
}

/* CTA palette is defined in baseline-01 v0.17.4. Keep late brand overrides neutral. */
.home-cta__inner {
  border-color: transparent;
  background-color: #ffffff;
}

.home-cta__eyebrow {
  color: #d69b00;
}

.home-cta__button--primary {
  background: #f5c21b;
  color: #191919;
  box-shadow: 0 14px 28px rgba(245,175,2,.20);
}

.home-cta__button--primary:hover {
  background: #e7aa00;
  color: #191919;
  box-shadow: 0 16px 32px rgba(245,175,2,.26);
}

.site-footer {
  background: var(--az-bg-muted);
  border-top-color: var(--az-border);
  color: var(--az-text-primary);
}

.footer-newsletter {
  background: var(--az-white);
  border-color: var(--az-border);
  box-shadow: 0 18px 46px rgba(25, 25, 25, .08);
}

.footer-newsletter h2,
.footer-accordion__trigger {
  color: var(--az-text-primary);
}

.footer-newsletter p:not(.footer-newsletter__eyebrow),
.site-footer__brand p,
.footer-links a,
.footer-contact-list a,
.footer-contact-list li,
.footer-contact-list p,
.site-footer__bottom {
  color: var(--az-text-secondary);
}

.footer-newsletter__eyebrow,
.footer-links a:hover,
.footer-contact-list a:hover,
.footer-contact-list span,
.site-footer__social a:hover,
.site-footer__trustpilot:hover {
  color: var(--az-blue);
}

.footer-newsletter__form {
  border-color: var(--az-border);
  background: var(--az-bg-muted);
}

.footer-newsletter__form input {
  color: var(--az-text-primary);
}

.footer-newsletter__form input::placeholder {
  color: var(--az-text-secondary);
}

.footer-newsletter__form button {
  background: var(--az-button-bg);
  color: var(--az-white);
}

.footer-newsletter__form button:hover {
  background: var(--az-button-hover);
  color: var(--az-white);
}

.site-footer__social a,
.site-footer__trust-item,
.site-footer__badges span,
.site-footer__trustpilot {
  background: var(--az-white);
  border-color: var(--az-border);
  color: var(--az-text-secondary);
}

.site-footer__trust {
  border-top-color: var(--az-border);
  border-bottom-color: var(--az-border);
}

.az-back-to-top {
  background: var(--az-green);
  color: var(--az-white);
}

.az-back-to-top:hover,
.az-back-to-top:focus-visible {
  background: var(--az-button-hover);
  color: var(--az-white);
}

/* Homepage hero typography refinement — v0.16.5
 * New AZeeMall hero artwork uses white / high-key backgrounds, so the hero
 * copy and slider chrome use the dark storefront typography instead of the
 * legacy white-on-dark treatment.
 */
.home-hero,
.home-hero__viewport,
.home-hero__media {
  background: var(--az-white);
}

.home-hero__media::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .88) 34%, rgba(255, 255, 255, .48) 58%, rgba(255, 255, 255, .08) 78%, rgba(255, 255, 255, 0) 100%);
}

.home-hero__content {
  color: var(--az-text-primary);
}

.home-hero__content {
  width: min(100% - 64px, 780px);
  max-width: 780px;
  margin-inline: 0;
  margin-left: clamp(32px, 6vw, 112px);
  align-self: center;
  justify-self: start;
  padding: 72px 0 100px;
  text-align: left;
}

.home-hero__title {
  max-width: 720px;
  font-size: clamp(38px, 4.9vw, 68px);
  line-height: 1.08;
}

.home-hero__text {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.75;
}

.home-hero__actions {
  justify-content: flex-start;
}

.home-hero__eyebrow {
  color: var(--az-blue);
}

.home-hero__title {
  color: var(--az-text-primary);
}

.home-hero__text {
  color: var(--az-text-secondary);
}

.home-hero__actions .btn-outline--light {
  border-color: var(--az-gray-700);
  background: rgba(255, 255, 255, .86);
  color: var(--az-text-primary);
  backdrop-filter: blur(8px);
}

.home-hero__actions .btn-outline--light:hover {
  border-color: var(--az-button-hover);
  background: var(--az-button-hover);
  color: var(--az-white);
}

.home-hero__controls {
  border: 1px solid var(--az-border);
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 10px 28px rgba(25, 25, 25, .10);
}

.home-hero__arrow {
  border-color: var(--az-border);
  background: var(--az-white);
  color: var(--az-text-primary);
}

.home-hero__arrow:hover {
  border-color: var(--az-button-hover);
  background: var(--az-button-hover);
  color: var(--az-white);
}

.home-hero__dot {
  background: var(--az-gray-200);
}

.home-hero__dot.is-active {
  background: var(--az-blue);
}

/* Homepage collection cards — frosted light content panel v0.16.8 */
.home-categories--home .category-card__media::after {
  background: none;
}

.home-categories--home .category-card__content,
.home-categories--home .category-card--featured .category-card__content {
  width: calc(100% - 20px);
  margin: 0 10px 10px;
  background: rgba(255, 255, 255, .50);
  color: var(--az-text-primary);
  border: 1px solid rgba(255, 255, 255, .90);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(25, 25, 25, .08);
  -webkit-backdrop-filter: blur(8px) saturate(1.04);
  backdrop-filter: blur(8px) saturate(1.04);
}

.home-categories--home .category-card__content h3,
.home-categories--home .category-card--featured .category-card__content h3 {
  color: var(--az-text-primary);
}

.home-categories--home .category-card__link {
  color: var(--az-text-secondary);
}

.home-categories--home .category-card:hover .category-card__link {
  color: var(--az-blue);
}

.home-categories--home .home-categories__heading .section-heading__eyebrow {
  width: 100%;
  max-width: none;
  margin: 0 auto 10px;
  text-align: center;
}


/* Homepage lower sections — full-width white canvas v0.16.7
 * Remove the remaining pale-blue decorative washes and the narrow centered
 * shells so lower homepage content sits directly on the white page canvas.
 */
.home-products--new,
.home-products--popular,
.home-product-categories--home,
.home-trustpilot {
  background: var(--az-white);
}

.home-products--new::before,
.home-products--popular::before,
.home-product-categories--home::before {
  display: none;
}

.home-products--new > .az-container,
.home-products--popular > .az-container,
.home-product-categories--home > .az-container,
.home-trustpilot > .az-container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(18px, 4vw, 64px);
}

.home-products--popular .home-products__panel {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-products--popular .home-products__panel::before {
  display: none;
}

.home-trustpilot__snapshot-shell,
.home-trustpilot__widget-shell {
  padding-inline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-trustpilot__widget-shell::before {
  display: none;
}

/* Homepage collections mobile refinement — v0.16.9 */
.home-categories--home .category-card__content,
.home-categories--home .category-card--featured .category-card__content {
  background: rgba(255, 255, 255, .20);
  -webkit-backdrop-filter: blur(4px) saturate(1.02);
  backdrop-filter: blur(4px) saturate(1.02);
}



/* Homepage collection cards — image above, white content below v0.17.0
 * Collection copy is no longer overlaid on imagery. The image remains clean
 * and the text sits in a connected white footer beneath it.
 */
.home-categories--home .category-card,
.home-categories--home .category-card--featured,
.home-categories--home .category-card--compact {
  display: block;
  aspect-ratio: auto;
  overflow: hidden;
  background: var(--az-white);
}

.home-categories--home .category-card__media {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--az-white);
}

.home-categories--home .category-card__media::after {
  display: none;
}

.home-categories--home .category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-categories--home .category-card__content,
.home-categories--home .category-card--featured .category-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(12px, 1.3vw, 18px);
  border: 0;
  border-radius: 0;
  background: var(--az-white);
  box-shadow: none;
  color: var(--az-text-primary);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.home-categories--home .category-card__content h3,
.home-categories--home .category-card--featured .category-card__content h3 {
  display: block;
  overflow: hidden;
  margin: 0;
  color: var(--az-text-primary);
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.25;
  letter-spacing: -.015em;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  -webkit-line-clamp: unset;
}

.home-categories--home .category-card__link {
  margin-top: 7px;
  color: var(--az-text-secondary);
  font-size: clamp(9px, .8vw, 11px);
}


/* Homepage promo cards — light readability treatment v0.17.2 */
.home-promo {
  background: var(--az-white);
}

.home-promo-card {
  color: var(--az-text-primary);
  background: var(--az-white);
}

.home-promo-card__media {
  background: var(--az-white);
}

.home-promo-card__media::after {
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.90) 34%, rgba(255,255,255,.64) 52%, rgba(255,255,255,.14) 74%, rgba(255,255,255,0) 100%);
}

.home-promo-card__content {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
}

.home-promo-card__kicker {
  color: var(--az-blue);
}

.home-promo-card h3 {
  color: var(--az-text-primary);
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.04;
}

.home-promo-card__text {
  color: var(--az-text-secondary);
}

.home-promo-card__button {
  border-color: var(--az-border);
  background: var(--az-white);
  color: var(--az-text-primary);
  backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(25,25,25,.08);
}

.home-promo-card__button:hover {
  border-color: var(--az-blue);
  background: var(--az-white);
  color: var(--az-blue);
  box-shadow: 0 10px 28px rgba(0,100,210,.12);
}


/* Footer trust cards hard-stop multicolor border — v0.17.7 */
.site-footer__trust-item {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #1e73e8 0 25%, #18a957 25% 50%, #f4c542 50% 75%, #e53935 75% 100%) border-box;
  color: #4f4f4f;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
}
.site-footer__trust-item svg {
  color: #6b7280;
  stroke: currentColor;
}
.site-footer__trust-item span { color: #5a5a5a; }
@media (max-width: 767px) {
  .site-footer__trust-item {
    min-height: 78px;
    border-radius: 18px;
  }
}

/* v0.17.9 — subtle neutral/nude surface separation */
.home-products--new,
.home-product-categories--home,
.home-products--popular,
.home-trustpilot {
  background: #fafaf8;
}

.az-product-card,
.az-shop-products .az-product-card--archive,
.woocommerce ul.products li.product.az-product-card {
  background: #fcfcfa;
  border-color: #ecece7;
}



/* v0.18.0 — commerce color roles + white canvas + subtle elevation */
:root {
  --az-cart-red: #E53238;
  --az-cart-red-hover: #A51F32;
  --az-wishlist-green: #198754;
  --az-wishlist-green-hover: #146C43;
}

/* Keep the primary site canvas pure white. */
html,
body,
.site,
.site-main,
.home-products--new,
.home-product-categories--home,
.home-products--popular,
.home-trustpilot,
.az-shop-page,
.az-product-page {
  background: #fff;
}

/* Product cards and carousel shells stay white, separated only by a soft shadow. */
.az-product-card,
.az-shop-products .az-product-card--archive,
.woocommerce ul.products li.product.az-product-card {
  background: #fff;
  border-color: #ececec;
  box-shadow: 0 10px 28px rgba(25,25,25,.065);
}

.home-products .az-product-rail-shell,
.home-trustpilot__snapshot-shell,
.home-promo-card,
.home-categories--home .category-card {
  background-color: #fff;
  box-shadow: 0 9px 26px rgba(25,25,25,.055);
}

/* All add-to-cart actions use the logo red; hover deepens toward burgundy. */
.az-product-card__add,
.az-shop-products .az-product-card--archive .az-product-card__add {
  border-color: var(--az-cart-red) !important;
  background: var(--az-cart-red) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(229,50,56,.18);
}

.az-product-card__add:hover,
.az-product-card__add:focus-visible,
.az-shop-products .az-product-card--archive .az-product-card__add:hover,
.az-shop-products .az-product-card--archive .az-product-card__add:focus-visible {
  border-color: var(--az-cart-red-hover) !important;
  background: var(--az-cart-red-hover) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(165,31,50,.22);
}

body.single-product.woocommerce div.product .az-product-purchase form.cart .button.single_add_to_cart_button,
body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button,
body.single-product .az-product-purchase .single_add_to_cart_button {
  background: var(--az-cart-red) !important;
  box-shadow: 0 14px 30px rgba(229,50,56,.20) !important;
}

body.single-product.woocommerce div.product .az-product-purchase form.cart .button.single_add_to_cart_button:hover,
body.single-product.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
body.single-product .az-product-purchase .single_add_to_cart_button:hover {
  background: var(--az-cart-red-hover) !important;
  box-shadow: 0 16px 34px rgba(165,31,50,.24) !important;
}

.az-product-sticky-cart__button {
  background: var(--az-cart-red);
}
.az-product-sticky-cart__button:hover {
  background: var(--az-cart-red-hover);
}

/* Wishlist action stays green; only its icon/heart role changes, not header badges. */
.az-product-card__wishlist,
.az-product-card__wishlist:hover,
.az-product-card__wishlist.is-active {
  border-color: rgba(25,135,84,.26);
  background: #fff;
  color: var(--az-wishlist-green);
}
.az-product-card__wishlist:hover,
.az-product-card__wishlist.is-active {
  color: var(--az-wishlist-green-hover);
  box-shadow: 0 10px 24px rgba(25,135,84,.14);
}
.az-product-wishlist > span[aria-hidden="true"] {
  color: var(--az-wishlist-green);
}
.az-product-wishlist:hover > span[aria-hidden="true"],
.az-product-wishlist.is-active > span[aria-hidden="true"] {
  color: var(--az-wishlist-green-hover);
}

/* Sale / new / product-status badges use the logo blue. */
.woocommerce .az-product-card .az-product-card__badge,
.woocommerce .az-shop-products .az-product-card--archive .az-product-card__badge,
.az-product-card .az-product-card__badge,
body.single-product .az-product-gallery span.onsale {
  background: var(--az-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,100,210,.18);
}
