/**
 * AmourLuxe — luxury commerce surface (Phase 1).
 * Reference: dark / gold editorial + soft palette accents.
 */

:root {
  --al-obsidian: #050505;
  --al-champagne: #d6b56d;
  --al-ivory: #f7f1e8;
  --al-rose-silk: #d9a7a0;
  --al-emerald-noir: #0e2a24;
  --al-pearl: #b9b4aa;
  --al-luxury-brown: #4a2f24;

  --al-bg: var(--al-obsidian);
  --al-surface: #0a0a0a;
  --al-surface-2: #111111;
  --al-gold: var(--al-champagne);
  --al-gold-soft: #e8d4a8;
  --al-text: var(--al-ivory);
  --al-muted: var(--al-pearl);
  --al-line: rgba(247, 241, 232, 0.1);
  --al-glass: rgba(5, 5, 5, 0.55);
  /* Soft rainbow luxury accents (named colors → sRGB) */
  --al-rainbow-aero: #7cb9e8;
  --al-rainbow-orchid: #dda0dd;
  --al-rainbow-honeydew: #f0fff0;
  --al-rainbow-coral: #f08080;
  --al-rainbow-silk: #ffebcd;
  --al-rainbow-mesh: linear-gradient(
    120deg,
    rgba(124, 185, 232, 0.35),
    rgba(221, 160, 221, 0.28),
    rgba(240, 255, 240, 0.22),
    rgba(240, 128, 128, 0.26),
    rgba(255, 235, 205, 0.3)
  );
  --al-radius: 14px;
  --al-font-display: "Cormorant Garamond", Georgia, serif;
  --al-font-body: "Inter", system-ui, sans-serif;
  --al-font-nav: "Montserrat", system-ui, sans-serif;
  --al-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --al-hero-transition-ms: 900ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.al-body {
  margin: 0;
  font-family: var(--al-font-body);
  background: radial-gradient(1200px 640px at 18% -8%, rgba(214, 181, 109, 0.14), transparent 58%),
    radial-gradient(900px 520px at 92% 6%, rgba(14, 42, 36, 0.45), transparent 55%),
    radial-gradient(700px 480px at 50% 120%, rgba(74, 47, 36, 0.35), transparent 50%),
    var(--al-bg);
  color: var(--al-text);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--al-gold-soft);
}

.al-skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.al-skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--al-gold);
  color: #111;
  z-index: 100000;
}

.al-container {
  width: min(1320px, 100% - 40px);
  margin-inline: auto;
}

.al-topbar {
  background: var(--al-obsidian);
  color: var(--al-muted);
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--al-line);
}

.al-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  flex-wrap: wrap;
}

.al-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--al-line);
  border-radius: 999px;
  margin-left: 8px;
}

.al-header {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.72));
  border-bottom: 1px solid var(--al-line);
}

.al-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.al-logo__title {
  font-family: var(--al-font-display);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.al-logo__tag {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--al-muted);
}

.al-search {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--al-line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.al-search__input {
  flex: 1;
  border: 0;
  padding: 12px 18px;
  background: transparent;
  color: var(--al-text);
  font: inherit;
}

.al-search__input::placeholder {
  color: var(--al-muted);
}

.al-search__btn {
  border: 0;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--al-gold), #a88316);
  color: #111;
  cursor: pointer;
}

.al-header__tools {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.875rem;
}

.al-icon-link {
  position: relative;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.al-icon-link:hover {
  border-color: var(--al-line);
  background: rgba(255, 255, 255, 0.03);
}

.al-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--al-gold);
  color: #111;
  font-size: 0.65rem;
  padding: 2px 5px;
  border-radius: 999px;
}

.al-nav {
  border-top: 1px solid var(--al-line);
}

.al-nav__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0 14px;
}

.al-nav__toggle {
  display: none;
  background: transparent;
  color: var(--al-text);
  border: 1px solid var(--al-line);
  padding: 8px 12px;
  border-radius: 10px;
}

@media (max-width: 960px) {
  .al-nav__toggle {
    display: inline-flex;
  }
  .al-nav__menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .al-nav.is-open .al-nav__menu {
    display: flex;
  }
}

.al-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.al-nav__menu a {
  color: var(--al-muted);
}

.al-nav__menu a:hover {
  color: var(--al-gold-soft);
}

.al-nav__hot {
  margin-left: auto;
  color: var(--al-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.al-hero {
  position: relative;
}

.al-hero--cinematic .al-hero__media {
  min-height: clamp(520px, 88vh, 920px);
  background-image: linear-gradient(105deg, rgba(5, 5, 5, 0.92) 0%, rgba(10, 10, 10, 0.55) 38%, rgba(10, 10, 10, 0.25) 100%),
    var(--al-hero-image, linear-gradient(135deg, #1b1b1b, #2a2418));
  background-size: cover;
  background-position: center 28%;
  position: relative;
  overflow: hidden;
}

.al-hero__media {
  min-height: clamp(420px, 70vh, 760px);
  background-image: linear-gradient(120deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.35)),
    var(--al-hero-image, linear-gradient(135deg, #1b1b1b, #2a2418));
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.al-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.al-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.al-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 520px at 72% 18%, rgba(201, 162, 39, 0.22), transparent 62%),
    radial-gradient(ellipse 700px 480px at 12% 88%, rgba(212, 238, 242, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.al-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 400px at 70% 20%, rgba(201, 162, 39, 0.25), transparent 60%);
  pointer-events: none;
}

.al-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 12vw, 140px) 0 clamp(40px, 8vw, 100px);
  max-width: min(720px, 100%);
}

.al-eyebrow {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--al-gold);
  margin: 0 0 12px;
}

.al-eyebrow--hero {
  font-size: 0.7rem;
  opacity: 0.95;
}

.al-heading {
  font-family: var(--al-font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 16px;
}

.al-heading--hero {
  font-size: clamp(2.5rem, 6.2vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.al-heading--cinematic .al-heading__line {
  display: block;
  margin-top: 0.12em;
  font-size: 0.42em;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--al-muted);
  font-weight: 500;
}

.al-hero__lede {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: rgba(250, 248, 245, 0.82);
}

.al-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.al-btn--shine {
  position: relative;
  overflow: hidden;
}

.al-btn--shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.al-btn--shine:hover::after {
  transform: translateX(120%);
}

.al-heading--h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.al-heading--h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.al-heading--h3 {
  font-size: 1.6rem;
}

.al-heading--h4 {
  font-size: 1.25rem;
}

.al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--al-line);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.al-btn--gold {
  background: linear-gradient(135deg, var(--al-champagne), var(--al-luxury-brown));
  color: var(--al-obsidian);
  border-color: transparent;
  box-shadow: 0 14px 48px rgba(214, 181, 109, 0.28);
}

.al-btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 56px rgba(214, 181, 109, 0.36);
}

.al-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--al-text);
}

.al-hero__trust {
  position: absolute;
  right: clamp(16px, 4vw, 64px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.al-hero__trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--al-muted);
}

@media (max-width: 960px) {
  .al-hero__trust {
    position: static;
    transform: none;
    padding: 0 20px 32px;
  }
  .al-hero__trust ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.al-section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.al-section--muted {
  background: linear-gradient(90deg, rgba(232, 245, 236, 0.06), rgba(212, 238, 242, 0.05), rgba(228, 212, 232, 0.05));
  border-block: 1px solid var(--al-line);
}

.al-section__head {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.al-section__kicker {
  margin: 0 0 8px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--al-gold);
  font-weight: 600;
}

.al-section__head--tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.al-tabs button {
  background: transparent;
  color: var(--al-muted);
  border: 0;
  padding: 8px 4px;
  margin-right: 12px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  border-bottom: 2px solid transparent;
}

.al-tabs button.is-active,
.al-tabs button:hover {
  color: var(--al-gold);
  border-color: var(--al-gold);
}

.al-cat-rail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
}

.al-cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border-radius: var(--al-radius);
  border: 1px solid var(--al-line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.al-cat-pill:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-3px);
  box-shadow: var(--al-shadow);
}

.al-cat-pill__ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: radial-gradient(circle at 30% 20%, var(--al-silk), #1a1a1a);
}

.al-cat-pill__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.al-cat-pill__meta {
  font-size: 0.72rem;
  color: var(--al-muted);
}

.al-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.al-collection-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--al-line);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}

.al-collection-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--al-shadow);
  transform: translateY(-3px);
}

.al-collection-card__media {
  display: block;
  flex: 1;
  min-height: 200px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45)), var(--al-tile-image, linear-gradient(145deg, rgba(201, 162, 39, 0.15), rgba(212, 238, 242, 0.08)));
  background-size: cover;
  background-position: center;
  position: relative;
}

.al-collection-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.al-collection-card:hover .al-collection-card__shine {
  opacity: 1;
}

.al-collection-card__body {
  padding: 18px;
}

.al-marquee {
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--al-muted);
}

.al-product-grid ul.products,
.al-product-grid ul.al-product-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.al-empty-products {
  text-align: center;
  padding: clamp(32px, 6vw, 64px) 20px;
  border: 1px dashed var(--al-line);
  border-radius: var(--al-radius);
  background: rgba(255, 255, 255, 0.02);
}

.al-empty-products .al-btn {
  margin-top: 16px;
}

.al-lookbook {
  background: linear-gradient(120deg, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.98));
  border-block: 1px solid var(--al-line);
}

.al-lookbook__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

@media (max-width: 900px) {
  .al-lookbook__inner {
    grid-template-columns: 1fr;
  }
}

.al-lookbook__strip {
  min-height: 280px;
  border-radius: 18px;
  border: 1px solid var(--al-line);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55)), var(--al-lookbook-image, linear-gradient(90deg, rgba(201, 162, 39, 0.12), rgba(255, 255, 255, 0.04), rgba(201, 162, 39, 0.12)));
  background-size: cover;
  background-position: center;
}

.al-footer {
  margin-top: 64px;
  border-top: 1px solid var(--al-line);
  background: #050505;
}

.al-footer__trust {
  border-bottom: 1px solid var(--al-line);
  padding: 18px 0;
}

.al-footer__trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--al-muted);
}

.al-footer__newsletter {
  padding: 48px 0;
  border-bottom: 1px solid var(--al-line);
}

.al-footer__newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.al-newsletter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.al-newsletter input {
  min-width: 240px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--al-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--al-text);
}

.al-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  padding: 48px 0;
}

.al-footer__col-title {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.al-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--al-muted);
  font-size: 0.9rem;
}

.al-footer__bottom {
  border-top: 1px solid var(--al-line);
  padding: 18px 0 32px;
  font-size: 0.85rem;
  color: var(--al-muted);
}

.al-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.al-muted {
  color: var(--al-muted);
}

/* WooCommerce cards — editorial product tile */
.al-product-card {
  border-radius: 18px;
  border: 1px solid var(--al-line);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.al-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  border-color: rgba(201, 162, 39, 0.4);
}

.al-product-card__shell {
  position: relative;
  height: 100%;
}

.al-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.al-product-card__media {
  position: relative;
  background: #0d0d0d;
}

.al-product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.al-product-card__img,
.al-product-card__media img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.al-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: var(--al-gold);
  color: #111;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.al-product-card__badge--new {
  background: #faf8f5;
}

.al-product-card__badge--private-offer {
  background: linear-gradient(120deg, #1a1814 0%, #2c2418 55%, #1a1814 100%);
  color: #f3e6c8;
  border: 1px solid rgba(201, 169, 98, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.al-product-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.al-product-card__fav:hover {
  background: rgba(201, 162, 39, 0.35);
  transform: scale(1.05);
}

.al-product-card__body {
  padding: 16px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.al-product-card__brand {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--al-muted);
}

.al-product-card__title {
  font-family: var(--al-font-display);
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
}

.al-product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--al-line);
  font-size: 0.95rem;
  color: var(--al-gold-soft);
}

.al-shop__layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0 64px;
}

@media (max-width: 960px) {
  .al-shop__layout {
    grid-template-columns: 1fr;
  }
}

.al-shop__sidebar {
  border: 1px solid var(--al-line);
  border-radius: var(--al-radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.al-shop-archive__hero {
  padding: clamp(40px, 8vw, 80px) 0 24px;
  border-bottom: 1px solid var(--al-line);
}

.al-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--al-muted);
}

.al-shop-archive__toolbar {
  padding: 18px 0;
}

.al-shop-archive__grid {
  padding-bottom: 64px;
}

/* Coming soon */
body.al-coming {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(800px 500px at 50% 0%, rgba(201, 162, 39, 0.18), transparent 60%), var(--al-bg);
}

.al-coming__main {
  padding: 40px 20px;
}

.al-coming__glass {
  max-width: 720px;
  padding: clamp(32px, 6vw, 56px);
  border-radius: 24px;
  border: 1px solid var(--al-line);
  background: var(--al-glass);
  box-shadow: var(--al-shadow);
  backdrop-filter: blur(18px);
}

.al-coming__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.al-coming__form input {
  flex: 1 1 220px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--al-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--al-text);
}

.al-coming__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce .price,
.al-product-card .price {
  color: var(--al-gold-soft);
}

.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
  color: var(--al-gold);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Opt-in scroll polish: `.al-reveal` only animates when JS sets `html.al-motion-ok` */
html.al-motion-ok .al-reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.al-motion-ok .al-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Luxury loaders / skeletons (shop AJAX or manual placeholders) */
.al-skeleton {
  display: block;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.04) 100%);
  background-size: 200% 100%;
  animation: al-shimmer 1.4s ease-in-out infinite;
}

.al-skeleton--media {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
}

.al-skeleton--line {
  height: 12px;
  margin-top: 12px;
}

.al-skeleton--short {
  width: 55%;
}

.al-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 20px;
}

@keyframes al-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 600px) {
  .al-container {
    width: min(1320px, 100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.al-motion-ok .al-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .al-btn,
  .al-cat-pill,
  .al-product-card,
  .al-collection-card {
    transition: none !important;
  }

  .al-btn--shine::after {
    display: none;
  }

  .al-skeleton {
    animation: none;
    background: rgba(255, 255, 255, 0.06);
  }

  .al-hero-slide__img,
  .al-hero-slide__video {
    transform: none !important;
  }

  .al-hero-slide__layout > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .al-hero-slide {
    transition: none !important;
  }

  .al-hero-slide__media .al-hero-slide__video {
    display: none !important;
  }

  .al-hero-slide__media .al-hero-slide__mobile-fallback {
    display: block !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- Ultra HD hero slider --- */
.al-hero-slider {
  position: relative;
  isolation: isolate;
  outline: none;
}

.al-hero-slider__viewport {
  position: relative;
  min-height: clamp(520px, 88vh, 960px);
  overflow: hidden;
  background: var(--al-obsidian);
}

.al-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--al-hero-transition-ms, 900ms) cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.al-hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.al-hero-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.al-hero-slide__img,
.al-hero-slide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 12s cubic-bezier(0.22, 1, 0.36, 1);
}

.al-hero-slide.is-active .al-hero-slide__img,
.al-hero-slide.is-active .al-hero-slide__video {
  transform: scale(1);
}

.al-hero-slide__mobile-fallback {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 12s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 768px) {
  .al-hero-slide__media .al-hero-slide__video {
    display: none;
  }

  .al-hero-slide__media .al-hero-slide__mobile-fallback {
    display: block;
  }

  .al-hero-slide.is-active .al-hero-slide__mobile-fallback {
    transform: scale(1);
  }
}

.al-hero-slide__glass {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(195deg, rgba(5, 5, 5, 0.25) 0%, rgba(5, 5, 5, 0.45) 42%, rgba(5, 5, 5, 0.82) 100%),
    radial-gradient(900px 520px at 78% 12%, rgba(214, 181, 109, 0.12), transparent 62%);
  backdrop-filter: blur(4px);
}

.al-hero-slide__content {
  position: relative;
  z-index: 3;
  padding: clamp(56px, 12vw, 140px) 0 clamp(40px, 8vw, 100px);
  max-width: min(720px, 100%);
}

.al-hero-slide__layout {
  width: 100%;
}

.al-hero-slide__title {
  margin: 0 0 12px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.65);
}

.al-hero-slide__subtitle {
  margin: 0 0 28px;
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.55vw, 1.12rem);
  line-height: 1.65;
  color: rgba(247, 241, 232, 0.88);
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.55);
}

.al-hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.al-hero-slide__layout > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.al-hero-slide.is-active .al-hero-slide__layout > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.al-hero-slide.is-active .al-hero-slide__subtitle {
  transition-delay: 0.16s;
}

.al-hero-slide.is-active .al-hero-slide__actions {
  transition-delay: 0.26s;
}

.al-hero-slider__chrome {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: clamp(100px, 14vh, 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  pointer-events: none;
}

.al-hero-slider__chrome > * {
  pointer-events: auto;
}

.al-hero-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--al-line);
  background: rgba(5, 5, 5, 0.45);
  color: var(--al-ivory);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.al-hero-slider__arrow:hover {
  border-color: rgba(214, 181, 109, 0.45);
  background: rgba(214, 181, 109, 0.12);
  transform: translateY(-1px);
}

.al-hero-slider__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.al-hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(247, 241, 232, 0.35);
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.al-hero-slider__dot.is-active {
  background: var(--al-champagne);
  border-color: var(--al-champagne);
  transform: scale(1.15);
}

.al-hero-slider__trust {
  position: absolute;
  z-index: 4;
  right: clamp(16px, 4vw, 64px);
  top: 50%;
  transform: translateY(-50%);
}

.al-hero-slider__trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--al-pearl);
}

.al-hero-slider--single .al-hero-slider__chrome {
  display: none;
}

@media (max-width: 960px) {
  .al-hero-slider__trust {
    position: static;
    transform: none;
    padding: 0 20px 24px;
  }

  .al-hero-slider__trust ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .al-hero-slider__chrome {
    bottom: clamp(88px, 18vh, 140px);
  }
}

/* Demo / pre-launch banner */
.al-demo-notice {
  background: linear-gradient(90deg, rgba(124, 185, 232, 0.2), rgba(221, 160, 221, 0.18), rgba(255, 235, 205, 0.22));
  border-bottom: 1px solid var(--al-line);
  color: var(--al-text);
  font-size: 0.8125rem;
}

.al-demo-notice__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.al-demo-notice__icon {
  color: var(--al-gold);
  line-height: 1.4;
}

.al-demo-notice__text {
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

/* Sticky site head + header shell */
.al-sticky-head {
  position: sticky;
  top: 0;
  z-index: 80;
}

.al-header__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 220px) minmax(0, 1fr) auto;
  gap: 16px 20px;
  align-items: center;
  padding: 14px 0 12px;
}

.al-menu-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--al-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--al-text);
  cursor: pointer;
}

.al-menu-trigger__bars,
.al-menu-trigger__bars::before,
.al-menu-trigger__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--al-ivory);
  border-radius: 2px;
  position: relative;
}

.al-menu-trigger__bars::before,
.al-menu-trigger__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.al-menu-trigger__bars::before {
  top: -6px;
}

.al-menu-trigger__bars::after {
  top: 6px;
}

.al-header__tools--mobile {
  display: none;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.al-icon-link--icononly {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.al-search--desktop {
  min-width: 0;
}

.al-search-mobile {
  border-bottom: 1px solid var(--al-line);
  background: rgba(0, 0, 0, 0.35);
}

.al-search-mobile[hidden] {
  display: none !important;
}

.al-search--mobile {
  margin: 10px 0 14px;
}

/* Luxury slide-out drawer */
.al-drawer[hidden] {
  display: none !important;
}

.al-drawer:not([hidden]) {
  display: block;
}

.al-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.65);
  z-index: 120;
  backdrop-filter: blur(4px);
}

.al-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  z-index: 130;
  background: linear-gradient(165deg, rgba(17, 17, 17, 0.98), rgba(8, 8, 8, 0.98));
  border-left: 1px solid var(--al-line);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
}

.al-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--al-line);
}

.al-drawer__title {
  margin: 0;
  font-family: var(--al-font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.al-drawer__close {
  border: 0;
  background: transparent;
  color: var(--al-text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.al-drawer__body {
  padding: 12px 20px 28px;
  overflow-y: auto;
  flex: 1;
}

.al-drawer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.al-drawer__menu a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  color: var(--al-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.al-drawer__menu a:hover,
.al-drawer__menu .current-menu-item > a {
  color: var(--al-gold-soft);
  background: rgba(255, 255, 255, 0.04);
}

.al-drawer__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

body.al-drawer-open {
  overflow: hidden;
}

/* Premium product grid — 4 / 2 / 1 */
.al-product-grid ul.products,
.al-shop-archive__grid ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 1024px) {
  .al-product-grid ul.products,
  .al-shop-archive__grid ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .al-product-grid ul.products,
  .al-shop-archive__grid ul.products {
    grid-template-columns: 1fr;
  }
}

.al-product-card__cat {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--al-rainbow-aero);
}

.al-product-card__badge--oos {
  background: linear-gradient(120deg, var(--al-rainbow-coral), var(--al-rainbow-orchid));
  color: #111;
}

.al-product-card__price-muted {
  font-size: 0.85rem;
  color: var(--al-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.al-product-card__cta {
  display: block;
  margin: 0 14px 14px;
  text-align: center;
  border-radius: 999px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.al-product-card--oos .al-product-card__media {
  opacity: 0.92;
}

.al-section--rainbow-edge {
  border-block: 1px solid var(--al-line);
  background-image: var(--al-rainbow-mesh);
}

.al-trust-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--al-muted);
}

.al-brand-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.al-brand-rail__item {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 120px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--al-line);
  overflow: hidden;
  background: radial-gradient(circle at 30% 0%, rgba(124, 185, 232, 0.25), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(221, 160, 221, 0.22), transparent 50%), var(--al-surface-2);
}

.al-brand-rail__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--al-brand-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.al-brand-rail__name {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.al-warehouse-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 20px;
  border: 1px solid var(--al-line);
  background: linear-gradient(135deg, rgba(240, 255, 240, 0.06), rgba(124, 185, 232, 0.05));
}

.al-warehouse-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--al-muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .al-warehouse-card {
    grid-template-columns: 1fr;
  }
}

/* Archive hero tints */
.al-shop-hero--shop {
  background: linear-gradient(180deg, rgba(124, 185, 232, 0.08), transparent);
}

.al-shop-hero--men {
  background: linear-gradient(180deg, rgba(221, 160, 221, 0.1), transparent);
}

.al-shop-hero--women {
  background: linear-gradient(180deg, rgba(240, 128, 128, 0.08), transparent);
}

.al-shop-hero--kids {
  background: linear-gradient(180deg, rgba(240, 255, 240, 0.1), transparent);
}

.al-shop-hero--accessories {
  background: linear-gradient(180deg, rgba(255, 235, 205, 0.1), transparent);
}

.al-shop-hero--brands,
.al-shop-hero--collections {
  background: linear-gradient(180deg, rgba(124, 185, 232, 0.06), rgba(221, 160, 221, 0.06));
}

/* Single product layout */
.al-single-product .al-single-product-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 900px) {
  .al-single-product .al-single-product-summary {
    grid-template-columns: 1fr;
  }
}

.al-single-product .woocommerce-product-gallery {
  border-radius: 18px;
  border: 1px solid var(--al-line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

/* Cart / checkout readability */
.al-woo-cart-page .woocommerce,
.al-woo-checkout-page .woocommerce {
  font-size: 0.95rem;
}

.al-woo-cart-page table.shop_table,
.al-woo-checkout-page .woocommerce-checkout-review-order-table {
  border-collapse: collapse;
  width: 100%;
}

.al-woo-cart-page table.shop_table th,
.al-woo-cart-page table.shop_table td,
.al-woo-checkout-page .woocommerce-checkout-review-order-table th,
.al-woo-checkout-page .woocommerce-checkout-review-order-table td {
  border-bottom: 1px solid var(--al-line);
  padding: 12px 8px;
}

.al-woo-checkout-page #payment {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid var(--al-line);
  padding: 16px;
}

/* Mobile + tablet header layout (luxury drawer ≤1199px — see nav-luxury.css) */
@media (max-width: 1199px) {
  .al-menu-trigger {
    display: inline-flex;
  }

  .al-header__shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "menu brand tools";
  }

  .al-header__brand {
    grid-area: brand;
    justify-self: center;
  }

  .al-menu-trigger {
    grid-area: menu;
    justify-self: start;
  }

  .al-header__tools--mobile {
    grid-area: tools;
    display: flex;
  }

  .al-search--desktop {
    display: none;
  }

  .al-header__tools--desktop {
    display: none;
  }

  .al-nav--desktop {
    display: none;
  }
}

/* Homepage rhythm */
.al-main > .al-section {
  padding: clamp(56px, 9vw, 104px) 0;
}

.al-single-product__inner {
  padding: clamp(24px, 4vw, 40px) 0 clamp(48px, 6vw, 80px);
}

body.al-woo-cart .al-main,
body.al-woo-checkout .al-main,
body.al-woo-account .al-main {
  padding-bottom: clamp(48px, 8vw, 96px);
}
