/* ============================================================
   AZMAR — INVEST. GROUP
   Premium gold / black · Landing page & shop
   ============================================================ */

:root {
    --bg: #0a0a0b;
    --bg-1: #0e0e10;
    --bg-card: #141416;
    --bg-elev: #1c1c1f;
    --bg-elev-2: #232327;

    --gold: #c9a227;
    --gold-light: #e8d5a3;
    --gold-bright: #f5e6b5;
    --gold-dark: #8b6914;
    --gold-gradient: linear-gradient(180deg, #f5e6b5 0%, #c9a227 100%);
    --gold-sheen: linear-gradient(135deg, #f5e6b5 0%, #d4a829 50%, #8b6914 100%);

    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.58);
    --text-dim: rgba(255, 255, 255, 0.38);

    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --line-gold: rgba(201, 162, 39, 0.28);
    --line-gold-strong: rgba(201, 162, 39, 0.55);

    --radius: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;

    --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.22);
    --shadow-deep: 0 24px 60px rgba(0, 0, 0, 0.5);

    --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
    --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

    --nav-h: 64px;
    --container: 1200px;
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 12px);
    direction: ltr;
}

html[lang="he"] {
    direction: rtl;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    min-height: 100dvh;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ============================================================
   ICÔNES SVG communes
   ============================================================ */
.az-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    color: currentColor;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.az-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 3vw, 2rem);
    background: rgba(10, 10, 11, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.az-navbar.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(10, 10, 11, 0.88);
}

.az-navbar__brand-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.az-navbar__logo {
    width: 36px;
    height: 36px;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.45));
}

.az-navbar__brand {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gold-light);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.az-navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.az-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: all 0.2s ease;
}

.az-lang-switch:hover {
    border-color: var(--line-gold-strong);
    color: var(--gold-light);
}

.az-lang-drop {
    position: relative;
    display: inline-block;
    text-align: start;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.az-lang-drop__summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    cursor: pointer;
    letter-spacing: 0.04em;
}

.az-lang-drop__summary::-webkit-details-marker { display: none; }

.az-lang-drop[open] .az-lang-drop__summary {
    border-color: var(--line-gold-strong);
    color: var(--gold-light);
}

.az-lang-drop__globe {
    flex-shrink: 0;
    color: var(--gold-light);
}

.az-lang-drop__code { font-weight: 700; letter-spacing: 0.1em; }

.az-lang-drop__name { max-width: 7rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.az-lang-drop__list {
    list-style: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    margin: 0.35rem 0 0;
    padding: 0.35rem 0;
    min-width: 10rem;
    max-height: min(70vh, 24rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-deep);
}

html[lang="he"] .az-lang-drop__list {
    right: auto;
    left: 0;
}

.az-lang-drop__opt {
    display: block;
    padding: 0.5rem 0.85rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.78rem;
    transition: background 0.15s, color 0.15s;
}

.az-lang-drop__opt:hover {
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-light);
}

.az-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold-light);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.az-menu-btn:hover {
    border-color: var(--line-gold-strong);
    color: var(--gold-bright);
    background: rgba(201, 162, 39, 0.06);
}

/* ============================================================
   DRAWER
   ============================================================ */
.az-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    background: linear-gradient(180deg, #121214 0%, #0a0a0b 100%);
    border-left: 1px solid var(--line);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
}

html[lang="he"] .az-drawer {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid var(--line);
    transform: translateX(-100%);
}

.az-drawer.is-open { transform: translateX(0); }

.az-drawer__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.az-drawer__backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

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

.az-drawer__brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-light);
}

.az-drawer__logo {
    width: 32px;
    height: 32px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.az-drawer__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text-muted);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.az-drawer__close:hover {
    color: var(--gold-light);
    border-color: var(--line-gold-strong);
}

.az-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.az-drawer__link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.18s ease;
}

.az-drawer__link:hover {
    background: rgba(201, 162, 39, 0.06);
    border-color: var(--line-gold);
}

.az-drawer__ic {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
}

.az-drawer__chev {
    margin-left: auto;
    color: var(--text-dim);
}

html[lang="he"] .az-drawer__chev {
    margin-left: 0;
    margin-right: auto;
    transform: scaleX(-1);
}

.az-drawer__foot {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    margin-top: 1rem;
}

.az-drawer__legal {
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ============================================================
   HERO
   ============================================================ */
.az-hero {
    position: relative;
    min-height: 100dvh;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.az-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 35%, rgba(201, 162, 39, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 85%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 90%, rgba(139, 105, 20, 0.1) 0%, transparent 45%);
    z-index: -1;
}

.az-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    z-index: -1;
}

.az-hero__inner {
    max-width: 760px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.az-hero__logo-wrap {
    margin-bottom: 1.75rem;
    animation: fadeUp 0.8s ease both;
}

.az-hero__logo {
    width: clamp(120px, 22vw, 170px);
    height: clamp(120px, 22vw, 170px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 40px rgba(201, 162, 39, 0.55));
    animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.az-hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding: 0.55rem 1.2rem;
    border: 1px solid var(--line-gold);
    border-radius: 100px;
    background: rgba(201, 162, 39, 0.06);
    animation: fadeUp 0.9s ease both;
}

.az-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4.8vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    background: linear-gradient(180deg, #fff 0%, #d4b968 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1s ease both;
}

.az-hero__desc {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 620px;
    margin-bottom: 2rem;
    animation: fadeUp 1.1s ease both;
}

.az-hero__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.25rem;
    animation: fadeUp 1.2s ease both;
}

.az-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, rgba(201, 162, 39, 0.02) 100%);
    border: 1px solid var(--line-gold);
    padding: 0.55rem 1rem;
    border-radius: 100px;
}

.az-tag .az-icon { color: var(--gold); }

/* CTA */
.az-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-width: 280px;
    padding: 1.15rem 1.75rem;
    border: none;
    border-radius: 14px;
    background: var(--gold-gradient);
    color: #1a1500;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    animation: fadeUp 1.3s ease both;
    overflow: hidden;
}

.az-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.az-cta:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.az-cta:hover:not(:disabled)::before { left: 120%; }

.az-cta:disabled { opacity: 0.75; cursor: wait; }

.az-cta .cta-arrow {
    display: inline-flex;
    transition: transform 0.25s ease;
}

.az-cta:hover:not(:disabled) .cta-arrow { transform: translateX(3px); }

html[lang="he"] .az-cta:hover:not(:disabled) .cta-arrow { transform: translateX(-3px) scaleX(-1); }
html[lang="he"] .az-cta .cta-arrow { transform: scaleX(-1); }

.cta-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(26, 21, 0, 0.3);
    border-top-color: #1a1500;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

.az-cta.is-loading .cta-spinner { display: block; }
.az-cta.is-loading .cta-arrow { display: none; }
.az-cta.is-loading .cta-text { opacity: 0.85; }

/* CTA secondaire (ghost) */
.az-cta--ghost {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--line-gold-strong);
    box-shadow: none;
}

.az-cta--ghost:hover:not(:disabled) {
    background: rgba(201, 162, 39, 0.08);
    border-color: var(--gold);
    color: var(--gold-bright);
    box-shadow: 0 8px 28px rgba(201, 162, 39, 0.15);
}

.az-cta--ghost .cta-spinner {
    border-color: rgba(201, 162, 39, 0.3);
    border-top-color: var(--gold);
}

.az-hero__scroll {
    margin-top: 2.5rem;
    color: var(--text-dim);
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    animation: bounce 2s ease-in-out infinite;
    transition: color 0.2s, border-color 0.2s;
}

.az-hero__scroll:hover {
    color: var(--gold);
    border-color: var(--line-gold-strong);
}

/* ============================================================
   SECTIONS (commun)
   ============================================================ */
.az-section {
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
}

.az-section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2rem, 5vw, 3.5rem);
}

.az-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid var(--line-gold);
    border-radius: 100px;
    background: rgba(201, 162, 39, 0.05);
    margin-bottom: 1.25rem;
}

.az-section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #fff 0%, #c9a227 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.az-section__subtitle {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.6vw, 1rem);
    line-height: 1.65;
}

/* ============================================================
   AVANTAGES
   ============================================================ */
.az-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.az-benefit {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: all 0.25s ease;
    overflow: hidden;
}

.az-benefit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-gold-strong), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.az-benefit:hover {
    border-color: var(--line-gold);
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.04) 0%, rgba(201, 162, 39, 0.01) 100%);
}

.az-benefit:hover::before { opacity: 1; }

.az-benefit__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.18) 0%, rgba(201, 162, 39, 0.06) 100%);
    border: 1px solid var(--line-gold);
    display: grid;
    place-items: center;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.az-benefit__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.az-benefit__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.az-benefit__pay {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--line);
}

.az-pay-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.az-pay-chip .az-icon { color: var(--gold); }

/* ============================================================
   PRODUITS
   ============================================================ */
.az-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.az-product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: all 0.25s ease;
    overflow: hidden;
}

.az-product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, var(--line-gold-strong), transparent 40%, transparent 60%, var(--line-gold-strong));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.az-product-card:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.az-product-card:hover::after { opacity: 1; }

.az-product-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.az-product-card__ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid var(--line-gold);
    display: grid;
    place-items: center;
    color: var(--gold);
}

.az-product-card__purity {
    font-family: ui-monospace, monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--line-gold);
    border-radius: 8px;
    background: rgba(201, 162, 39, 0.06);
}

.az-product-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.az-product-card > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.az-product-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.az-product-card__list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.az-product-card__list .az-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.az-products__cta {
    text-align: center;
}

/* ============================================================
   STATS / CONFIANCE
   ============================================================ */
.az-trust {
    text-align: center;
}

.az-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.05) 0%, transparent 100%);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    position: relative;
}

.az-stats::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line-gold-strong), transparent);
    transform: translateX(-50%);
}

.az-stat__value {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    font-weight: 500;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.az-stat__value span {
    font-size: 0.55em;
    margin-left: 0.1em;
}

.az-stat__label {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.az-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.az-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.az-badge:hover {
    border-color: var(--line-gold);
    color: var(--gold-light);
    background: rgba(201, 162, 39, 0.05);
}

.az-badge .az-icon { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.az-footer {
    margin-top: 3rem;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 162, 39, 0.02) 100%);
    border-top: 1px solid var(--line);
}

.az-footer__top {
    max-width: var(--container);
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.az-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.az-footer__logo {
    width: 48px;
    height: 48px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.4));
}

.az-footer__name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

html[lang="he"] .az-footer__name { text-align: right; }

.az-footer__site {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.3em;
    text-align: left;
}

html[lang="he"] .az-footer__site { text-align: right; }

.az-footer__desc {
    max-width: 620px;
    margin: 0 auto 1.75rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.az-footer__pay {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.az-footer__pay-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--line-gold);
    width: 100%;
    max-width: 320px;
    text-align: center;
}

/* Grille logos SVG sur « cartes » claires (lisibles sur fond noir) */
.az-pay-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 480px) {
    .az-pay-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 420px;
        gap: 0.75rem;
    }
}

.az-pay-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: linear-gradient(165deg, rgba(245, 230, 181, 0.35) 0%, rgba(201, 162, 39, 0.42) 38%, rgba(139, 105, 20, 0.55) 100%);
    border: 1px solid rgba(201, 162, 39, 0.65);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.az-pay-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 162, 39, 0.75);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 10px 28px rgba(201, 162, 39, 0.18);
}

.az-pay-tile__img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 30px;
    object-fit: contain;
}

.az-pay-tile__img--gp {
    max-height: 32px;
}

.az-pay-tile__img--visa {
    max-height: 22px;
}

.az-pay-tile__img--mc {
    max-height: 34px;
}

.az-footer__cols {
    max-width: var(--container);
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.az-footer__col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.az-footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.az-footer__col a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.az-footer__col a:hover { color: var(--gold-light); }

.az-footer__col--contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.az-footer__ic {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(201, 162, 39, 0.08);
    color: var(--gold);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.az-footer__bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.az-footer__copy {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.az-footer__chips {
    display: flex;
    gap: 0.5rem;
}

.az-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: var(--text-muted);
}

.az-chip .az-icon { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
}

/* ============================================================
   GATE OVERLAY
   ============================================================ */
.gate-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    place-items: center;
}

.gate-overlay.is-visible { display: grid; }

.gate-card {
    text-align: center;
    padding: 2rem;
}

.gate-card .spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.gate-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ============================================================
   SHOP / PRODUCT / MERCI / REFUND (rebrand Azmar)
   ============================================================ */

.page-shop,
.page-product,
.page-merci,
.page-refund {
    padding-top: var(--nav-h);
}

.page-shop { padding: calc(var(--nav-h) + 1rem) 1rem 2rem; }

.shop-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0 1.5rem;
    gap: 0.75rem;
}

.shop-header__logo {
    width: 36px;
    height: 36px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.shop-header__brand {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shop-section { margin-bottom: 2rem; }

.shop-section__title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s ease;
}

.product-card:hover {
    border-color: var(--line-gold);
    transform: translateY(-2px);
}

.product-card__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid var(--line-gold);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(201, 162, 39, 0.08);
}

html[lang="he"] .product-card__badge {
    right: auto;
    left: 0.75rem;
}

.product-card__image {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.product-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(201, 162, 39, 0.2));
}

.product-card__weight {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.product-card__type {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.product-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.product-card__fees {
    font-size: 0.65rem;
    color: var(--text-dim);
}

/* Product detail */
.page-product {
    min-height: 100dvh;
    padding-bottom: 320px;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--line);
}

.product-header__back,
.product-header__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-header__back:hover,
.product-header__close:hover {
    border-color: var(--line-gold);
    color: var(--gold-light);
}

html[lang="he"] .product-header__back svg,
html[lang="he"] .az-icon[data-rtl-flip] { transform: scaleX(-1); }

.product-header__center {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.product-header__logo {
    width: 32px;
    height: 32px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.product-header__brand {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-content { padding: 1.5rem; }

.product-hero { text-align: center; margin-bottom: 1.5rem; }

.product-hero__brand {
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 0.25em;
    margin-bottom: 0.5rem;
}

.product-hero__title {
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: 0.02em;
}

.product-hero__image {
    width: min(220px, 60vw);
    height: min(220px, 60vw);
    margin: 0 auto 1.5rem;
    display: grid;
    place-items: center;
}

.product-hero__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(201, 162, 39, 0.3));
}

.product-info-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.product-info-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-info-card__type {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-info-card__purity {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.product-info-card__weight {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
}

.product-price-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-price-row__label { color: var(--text-muted); }

.product-price-row__value { font-weight: 600; }

.product-price-row__value--gold {
    font-family: var(--font);
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
}

.trust-badge__icon {
    color: var(--gold);
    display: inline-flex;
}

.product-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
    border-top: 1px solid var(--line-gold);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 1.5rem;
    z-index: 100;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
}

.product-sheet__label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-align: center;
    margin-bottom: 0.5rem;
}

.product-sheet__price {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.25rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.product-sheet__fees {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.25rem;
}

.product-sheet__form {
    display: block;
    width: 100%;
    margin: 0;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.product-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1.15rem 0.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.product-action-btn--gold {
    background: var(--gold-gradient);
    color: #1a1500;
    box-shadow: var(--shadow-gold);
}

.product-action-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.product-action-btn--dark {
    background: var(--bg-elev);
    color: var(--text);
    border: 1px solid var(--line);
}

.product-action-btn--dark:hover {
    border-color: var(--line-gold);
    color: var(--gold-light);
}

.product-action-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-action-btn__text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-transform: uppercase;
}

.product-sheet__hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Merci / Success */
.page-merci {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.success-card {
    text-align: center;
    max-width: 400px;
}

.success-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #1a1500;
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.35);
}

.success-card__title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.success-card__text {
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.order-ref {
    background: var(--bg-card);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-ref__label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.order-ref__code {
    font-family: ui-monospace, monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
}

/* Refund page */
.page-refund { min-height: 100dvh; }

.refund-header {
    padding: 1.5rem;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.refund-header__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.refund-header__back:hover { color: var(--gold-light); }

.refund-header__title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.refund-header__desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.refund-form {
    padding: 0 1.5rem 2rem;
    max-width: 640px;
    margin: 0 auto;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.form-label__icon {
    color: var(--gold);
    display: inline-flex;
}

.order-code-input {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
}

.order-code-input:focus-within { border-color: var(--gold); }

.order-code-input__prefix {
    padding: 1rem 0.85rem;
    background: var(--bg-elev);
    color: var(--gold);
    font-family: ui-monospace, monospace;
    font-weight: 700;
    font-size: 0.95rem;
    border-right: 1px solid var(--line);
}

html[lang="he"] .order-code-input__prefix {
    border-right: none;
    border-left: 1px solid var(--line);
}

.order-code-input input {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: ui-monospace, monospace;
    font-size: 0.95rem;
    outline: none;
    min-width: 0;
    text-transform: uppercase;
}

.order-code-input__hint {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }

.form-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.radio-cards {
    display: grid;
    gap: 0.6rem;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-card:hover { border-color: var(--line-gold); }

.radio-card input {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.radio-card__text {
    font-size: 0.9rem;
    color: var(--text);
}

.radio-card:has(input:checked) {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.char-count {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

html[lang="he"] .char-count { text-align: left; }

.policy-section {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.policy-section__title {
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.policy-item:last-child { margin-bottom: 0; }

.policy-item__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid var(--line-gold);
    border-radius: 10px;
    color: var(--gold);
    flex-shrink: 0;
}

.policy-item__content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.policy-item__content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 1.15rem;
    border: none;
    border-radius: var(--radius);
    background: var(--gold-gradient);
    color: #1a1500;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-gold);
    transition: all 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.5);
}

/* 404 — style navigateur (sans branding site) */
.page-404--browser {
    position: relative;
    margin: 0;
    min-height: 100dvh;
    padding: 0;
    background: #f1f1f1;
    color: #202124;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.browser-404__chrome {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
}

.browser-404__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.browser-404__dot:nth-child(1) { background: #ff5f57; }
.browser-404__dot:nth-child(2) { background: #febc2e; }
.browser-404__dot:nth-child(3) { background: #28c840; }

.browser-404__frame {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.25rem 3rem;
    max-width: 40rem;
    margin: 0 auto;
}

.browser-404__code {
    font-size: clamp(3rem, 14vw, 5rem);
    font-weight: 400;
    color: #d0d0d0;
    line-height: 1;
    margin: 0 0 1rem;
}

.browser-404__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #202124;
    margin: 0 0 0.75rem;
}

.browser-404__desc {
    color: #5f6368;
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.browser-404__box {
    text-align: start;
    background: #e8e8e8;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    width: 100%;
    max-width: 22rem;
    margin-bottom: 1rem;
}

.browser-404__try-title {
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #202124;
}

.browser-404__list {
    margin: 0;
    padding-left: 1.1rem;
    color: #5f6368;
    line-height: 1.6;
}

.browser-404__errline {
    font: inherit;
    color: #1a73e8;
}

.browser-404__dns {
    font-size: 0.75rem;
    color: #9aa0a6;
    margin: 0;
}

/* ============================================================
   LANDING (accueil) + fond animé
   ============================================================ */
.page-landing.az-landing {
    min-height: 100dvh;
    position: relative;
    background: var(--bg);
}

.az-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.az-bg__aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.az-bg__aurora--1 {
    width: min(90vw, 520px);
    height: min(90vw, 520px);
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(201, 162, 39, 0.45) 0%, transparent 70%);
}

.az-bg__aurora--2 {
    width: 380px;
    height: 380px;
    bottom: -8%;
    right: -5%;
    background: radial-gradient(circle, rgba(139, 105, 20, 0.35) 0%, transparent 65%);
}

.az-bg__aurora--3 {
    width: 280px;
    height: 280px;
    top: 40%;
    left: -10%;
    background: radial-gradient(circle, rgba(245, 230, 181, 0.12) 0%, transparent 70%);
}

.az-bg__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, black 20%, transparent 100%);
    opacity: 0.4;
}

.az-bg__orbs {
    position: absolute;
    inset: 0;
}

.az-bg__orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    animation: azOrbFloat 14s ease-in-out infinite;
}

.az-bg__orb--1 { width: 6px; height: 6px; top: 22%; left: 18%; animation-delay: 0s; }
.az-bg__orb--2 { width: 4px; height: 4px; top: 38%; right: 22%; animation-delay: 2s; }
.az-bg__orb--3 { width: 5px; height: 5px; bottom: 35%; left: 28%; animation-delay: 4s; }
.az-bg__orb--4 { width: 3px; height: 3px; top: 55%; right: 35%; animation-delay: 1s; }
.az-bg__orb--5 { width: 4px; height: 4px; bottom: 22%; right: 15%; animation-delay: 3s; }
.az-bg__orb--6 { width: 5px; height: 5px; top: 18%; right: 40%; animation-delay: 5s; }

@keyframes azOrbFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.35; }
    50% { transform: translate(10px, -14px); opacity: 0.85; }
}

.az-landing__lang {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 20;
}

html[lang="he"] .az-landing__lang {
    right: auto;
    left: 1rem;
}

.az-landing__main {
    position: relative;
    z-index: 1;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 2rem 1.25rem 3rem;
}

.az-landing__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 560px;
}

.az-landing__logo {
    filter: drop-shadow(0 0 40px rgba(201, 162, 39, 0.5));
}

.az-landing__logo-img {
    width: clamp(188px, 42vw, 280px);
    height: clamp(188px, 42vw, 280px);
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.az-landing__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.az-landing__cta {
    min-width: min(320px, 90vw);
}

/* ============================================================
   Page présentation (decouvrir.php)
   ============================================================ */
.page-present {
    padding-top: var(--nav-h);
}

.page-present .present-main {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(1.25rem, 4vh, 2rem) 1.25rem 2rem;
}

.present-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.65rem;
    padding-bottom: clamp(2rem, 5vw, 3rem);
}

.present-hero__logo {
    filter: drop-shadow(0 0 36px rgba(201, 162, 39, 0.45));
}

.present-hero__logo-img {
    width: clamp(152px, 34vw, 220px);
    height: clamp(152px, 34vw, 220px);
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.present-hero__brand-line {
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.35);
    opacity: 0.95;
}

.present-hero__divider {
    width: min(200px, 50vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.45), transparent);
    margin: 0.15rem 0 0.25rem;
}

.present-hero__present {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: var(--gold-light);
    max-width: 32rem;
    margin: 0 auto;
    padding: 0 0.5rem;
    opacity: 0.88;
}

.present-hero__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.present-hero__cta {
    min-width: min(300px, 90vw);
}

a.az-cta.present-hero__cta {
    color: #1a1500;
    text-decoration: none;
}

.present-invest {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: clamp(1.75rem, 4vw, 2.5rem) 1rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.present-invest__eyebrow {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0 0 0.6rem;
}

.present-invest__title {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3.8vw, 1.7rem);
    font-weight: 700;
    margin: 0 0 0.65rem;
    line-height: 1.25;
}

.present-invest__desc {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.6;
    margin: 0 0 1.35rem;
}

.present-invest__cta {
    min-width: min(300px, 90vw);
}

.present-main--solo {
    min-height: calc(100dvh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem 2rem;
}

.present-hero--solo {
    padding-bottom: 0;
    gap: 1.5rem;
}

.present-invest--solo {
    border: none;
    padding: 0;
    margin: 0;
    max-width: none;
}

.present-company {
    padding: clamp(2.25rem, 5vw, 3.25rem) 0;
}

.present-company__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.present-company__title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3.2vw, 1.55rem);
    font-weight: 700;
    margin: 0 0 0.9rem;
    line-height: 1.3;
}

.present-company__text {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
    margin: 0;
}

.present-products {
    padding: 0 0 1.5rem;
}

.present-products__title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-align: center;
    margin: 0 0 1.1rem;
}

.present-products__strip {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0.35rem 0.15rem 0.85rem;
    margin: 0 -0.15rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 162, 39, 0.35) transparent;
}

.present-product-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: min(142px, 40vw);
    padding: 0.9rem 0.75rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 10, 14, 0.92) 100%);
    border: 1px solid var(--line);
    text-align: center;
}

.present-product-card__img {
    height: 80px;
    display: grid;
    place-items: center;
    margin-bottom: 0.55rem;
}

.present-product-card__img img {
    max-width: 100%;
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.present-product-card__w {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.present-product-card__t {
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.present-product-card__p {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 600;
}

.present-products__hint {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
    max-width: 460px;
    margin: 0.35rem auto 0;
    line-height: 1.5;
}

html[dir="rtl"] .present-products__strip {
    direction: rtl;
}

/* ============================================================
   Shop — intro hero + logo marché
   ============================================================ */
.shop-intro {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    padding: 0.5rem 0.5rem 0;
    text-align: center;
}

.shop-intro__hero-image {
    width: min(280px, 72vw);
    height: min(280px, 72vw);
    margin: 0.15rem auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 45%, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.04) 55%, transparent 75%);
}

.shop-intro__hero-logo {
    width: min(248px, 60vw);
    height: min(248px, 60vw);
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    filter: drop-shadow(0 0 26px rgba(201, 162, 39, 0.55));
}

.shop-intro__eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--line-gold);
    border-radius: 100px;
    background: rgba(201, 162, 39, 0.05);
    margin-bottom: 0.75rem;
}

.shop-intro__title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 4.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.shop-intro__title-white {
    background: linear-gradient(180deg, #fff 0%, #c9a227 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shop-intro__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

/* Shop : titres en Inter (aligné fiche produit) */
.page-shop .shop-intro__title {
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.page-shop .az-section__title {
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.page-shop .az-stat__value {
    font-family: var(--font);
    font-weight: 700;
}

/* ============================================================
   Page paiement (paiement.php)
   ============================================================ */
.page-pay {
    min-height: 100dvh;
    padding: calc(var(--nav-h) + 1rem) 1rem 2rem;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.12) 0%, transparent 55%),
        var(--bg);
}

.pay-page-wrap {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
}

.pay-page__close {
    position: absolute;
    top: -0.25rem;
    right: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid var(--line);
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.pay-page__close:hover {
    border-color: var(--line-gold-strong);
    color: var(--gold-bright);
}

html[lang="he"] .pay-page__close {
    right: auto;
    left: 0;
}

.pay-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem 1.75rem;
    box-shadow: var(--shadow-deep);
}

.pay-card__head {
    text-align: center;
    margin-bottom: 1.25rem;
}

.pay-card__brand {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 0 0 0.35rem;
}

.pay-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    line-height: 1.25;
}

.pay-card__sub {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.pay-card__sub--refund {
    color: var(--gold-bright);
    font-weight: 500;
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.35);
}

.pay-summary {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.pay-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    font-size: 0.88rem;
}

.pay-summary__row dt {
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.68rem;
}

.pay-summary__row dd {
    text-align: right;
    color: var(--text);
    font-weight: 500;
}

.pay-summary__row--amount dd {
    color: var(--gold-light);
    font-weight: 700;
}

.pay-security {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.pay-methods__title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0 0 0.75rem;
    text-align: center;
}

.pay-methods__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.35rem;
}

.pay-methods__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 380px) {
    .pay-methods__grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pay-methods__grid--3 .pay-methods__tile--dual {
        grid-column: 1 / -1;
    }
}

.pay-methods__tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.5rem;
    border-radius: 10px;
    background: linear-gradient(165deg, rgba(245, 230, 181, 0.3) 0%, rgba(201, 162, 39, 0.4) 45%, rgba(139, 105, 20, 0.5) 100%);
    border: 1px solid rgba(201, 162, 39, 0.55);
}

.pay-methods__img {
    max-width: 100%;
    height: auto;
    max-height: 22px;
    object-fit: contain;
}

.pay-methods__img--white {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Remboursement : logos noirs, même taille, sur fond blanc */
.pay-methods--refund .pay-methods__tile {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.pay-methods--refund .pay-methods__img--refund-black {
    filter: brightness(0);
    opacity: 1;
    max-height: 26px;
    max-width: 88px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Remboursement : Apple Pay plus grand que les autres logos */
.pay-methods--refund .pay-methods__img--apple-refund {
    max-height: 34px;
    max-width: 108px;
}

.pay-methods__img--gp { max-height: 26px; }
.pay-methods__img--visa { max-height: 16px; }
.pay-methods__img--mc { max-height: 28px; }

.pay-methods__tile--dual {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pay-form__submit {
    width: 100%;
    min-width: 0;
}

a.az-cta.pay-merci__cta {
    display: inline-flex;
    margin-top: 0.5rem;
    color: #1a1500;
    text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 520px) {
    .az-stats { padding: 1.5rem 1rem; }
    .az-footer__bottom { justify-content: center; text-align: center; }
    .az-cta { min-width: 0; width: 100%; max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    html { scroll-behavior: auto; }
}
