@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Rajdhani:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg:           #0d0d0d;
    --card:         #141414;
    --card-hover:   #1c1c1c;
    --accent:       #f5a623;
    --accent-dark:  #c47e0a;
    --accent2:      #ffe066;
    --silver:       #9ba8b5;
    --border:       rgba(255,255,255,0.07);
    --text:         #ffffff;
    --text-muted:   rgba(255,255,255,0.55);
    --text-dim:     rgba(255,255,255,0.25);
    --green:        #4caf7d;
    --danger:       #e05c5c;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(245,166,35,0.25); border-radius: 3px; }

/* ══════════════════════════════════════
   HERO — logo plein largeur comme RuneMC
══════════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(86,129,207,0.24), transparent 30%),
                linear-gradient(180deg, #13263f 0%, #0c1116 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 22%),
                radial-gradient(circle at 80% 25%, rgba(88,101,242,0.18), transparent 20%),
                linear-gradient(180deg, rgba(20,35,53,0.95) 0%, rgba(10,13,18,0.98) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(245,166,35,0.12), transparent 22%);
    pointer-events: none;
    z-index: 2;
}

/* Dégradé par-dessus pour fondre vers le bas */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13,13,13,0)   0%,
        rgba(13,13,13,0.15) 40%,
        rgba(13,13,13,0.65) 70%,
        rgba(13,13,13,1)   100%
    );
    z-index: 3;
}

/* Le logo centré PAR-DESSUS la bannière */
.hero-logo-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    padding-bottom: 40px;
    pointer-events: none;
}
.hero-logo-center img {
    max-height: 160px;
    max-width: 65%;
    object-fit: contain;
    filter: drop-shadow(0 0 28px rgba(245,166,35,0.45))
            drop-shadow(0 6px 20px rgba(0,0,0,0.9));
}

/* IP serveur — gauche */
.hero-left {
    position: absolute;
    left: 5%;
    top: 18%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}
.hero-left:hover { transform: translateY(-2px); border-color: rgba(245,166,35,0.4); }
.hero-play-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
    flex-shrink: 0;
}
.hero-play-btn:hover { background: rgba(245,166,35,0.25); border-color: var(--accent); }
.hero-play-btn svg { color: #fff; margin-left: 2px; }
.hero-ip-text { text-align: left; }
.hero-ip-text .ip { font-family: 'Rajdhani',sans-serif; font-weight: 900; font-size: 15px; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-ip-text .sub { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.hero-copied { display: none; font-family: 'Rajdhani',sans-serif; font-weight: 900; font-size: 15px; color: var(--green); text-transform: uppercase; letter-spacing: 0.06em; }

/* Discord — droite */
.hero-right {
    position: absolute;
    right: 5%;
    top: 18%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}
.hero-right:hover { transform: translateY(-2px); border-color: rgba(88,101,242,0.35); }
.hero-right-text { text-align: right; }
.hero-right-text .lbl { font-family: 'Rajdhani',sans-serif; text-decoration: none; font-weight: 900; font-size: 15px; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-right-text .sub { font-size: 10px; font-weight: 600; text-decoration: none; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.hero-discord-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
    flex-shrink: 0;
}
.hero-discord-btn:hover { background: rgba(88,101,242,0.4); border-color: #5865f2; }
.hero-discord-btn svg { color: #fff; }

/* Vagues en bas du hero */
.hero-waves {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    pointer-events: none;
    z-index: 5;
}
.hero-waves svg { display: block; width: 100%; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
}
.nav {
    max-width: 1100px;
    margin: 0 auto;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 100px;
    background: rgba(255,255,255,0.07);
    border: none;
    color: rgba(255,255,255,0.75);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s;
    white-space: nowrap;
}
.nav-pill svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-pill:hover { background: rgba(255,255,255,0.13); color: #fff; }
.nav-pill.active { background: #fff; color: #000; font-weight: 900; }
.nav-pill.active svg { color: #000; }

.nav-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 48px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
    transition: transform 0.18s, background 0.18s, border-color 0.18s;
}
.nav-cart-btn:hover {
    transform: translateY(-1px);
    background: rgba(245,166,35,0.14);
    border-color: rgba(245,166,35,0.35);
}
.nav-cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 0 6px;
}

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 6px; }

/* ══════════════════════════════════════
   MAIN
══════════════════════════════════════ */
.main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 24px 100px;
}

/* ── CATEGORY GRID ── */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 44px;
}
@media(max-width:600px){ .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
    position: relative;
    border-radius: 14px;
    min-height: 108px;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    background: var(--card);
    text-decoration: none;
    border-left: 4px solid var(--accent);
    transition: background 0.2s, transform 0.2s;
}
.cat-card:hover { background: var(--card-hover); transform: translateY(-2px); }
.cat-card-content { flex: 1; padding: 22px 24px; z-index: 1; }
.cat-card-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
    text-transform: uppercase;
}
.cat-card-cta {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.cat-card-cta::after { content: '→'; font-size: 13px; }
.cat-card-icon {
    height: 100%;
    max-height: 120px;
    width: auto;
    object-fit: contain;
    margin-right: 12px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* ── SECTION HEADER ── */
.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.section-header h2 {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.03em;
}
.section-header::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(245,166,35,0.3), transparent);
    border-radius: 2px;
}

/* ── PACKAGE GRID ── */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media(max-width:900px){ .pkg-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .pkg-grid { grid-template-columns: 1fr; } }

/* ── PACKAGE CARD ── */
.pkg-card {
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: transform 0.2s, background 0.2s;
}
.pkg-card:hover { background: var(--card-hover); transform: translateY(-3px); }

.pkg-card-img {
    position: relative;
    aspect-ratio: 4/3;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow: hidden;
}
.pkg-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pkg-card-badges {
    position: absolute;
    top: 10px; left: 10px;
    display: flex; gap: 6px; z-index: 2;
}
.pkg-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-ticket { background: var(--accent); color: #000; }
.badge-hot    { background: var(--danger); color: #fff; }

.pkg-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.pkg-card-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.pkg-card-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
}
.pkg-price-val {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--accent);
}
.pkg-price-unit {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}
.pkg-card-footer { margin-top: auto; }

.pkg-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: filter 0.18s, transform 0.15s;
}
.pkg-btn:hover { filter: brightness(1.12); transform: scale(1.01); }

.pkg-btn-ticket {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}
.pkg-btn-ticket:hover { background: rgba(245,166,35,0.1); }

/* ══════════════════════════════════════
   MODAL BACKDROP
══════════════════════════════════════ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s;
}
.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

/* ══════════════════════════════════════
   MODAL
══════════════════════════════════════ */
.modal {
    background: #141414;
    border: 1px solid rgba(245,166,35,0.22);
    border-radius: 18px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04);
    transform: scale(0.92) translateY(24px);
    transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px 0;
}
.modal-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--accent);
    text-transform: uppercase;
    line-height: 1.6;
}
.modal-close {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.modal-icon {
    text-align: center;
    padding: 22px 22px 6px;
}
.modal-icon-circle {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: rgba(245,166,35,0.1);
    border: 2px solid rgba(245,166,35,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
}
.modal-icon-circle svg { color: var(--accent); }

.modal-body { padding: 14px 22px 24px; }

.modal-pkg-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.7;
}
.modal-pkg-desc {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-info-box {
    background: rgba(245,166,35,0.07);
    border: 1px solid rgba(245,166,35,0.18);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
}
.modal-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 0;
}
.modal-info-label { color: var(--text-muted); }
.modal-info-val   { color: var(--accent); font-weight: 700; }

.modal-steps { margin-bottom: 22px; }
.modal-steps-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
}
.modal-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}
.modal-step:last-child { margin-bottom: 0; }
.modal-step-num {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    font-weight: 900;
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.modal-step-text { font-size: 14px; font-weight: 500; color: var(--text-muted); line-height: 1.5; }
.modal-step-text strong { color: #fff; }

.modal-actions { display: flex; gap: 10px; }
.modal-btn-primary {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: var(--accent);
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    transition: filter 0.18s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.modal-btn-primary:hover { filter: brightness(1.1); }
.modal-btn-secondary {
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.18s;
}
.modal-btn-secondary:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* ══════════════════════════════════════
   LOGIN MODAL
══════════════════════════════════════ */
.login-modal {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    width: 100%;
    max-width: 370px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 28px 70px rgba(0,0,0,0.8);
    transform: scale(0.92) translateY(24px);
    transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-backdrop.open .login-modal { transform: scale(1) translateY(0); }
.login-avatar {
    width: 70px; height: 70px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.login-title { font-family: 'Press Start 2P', monospace; font-size: 10px; color: #fff; margin-bottom: 8px; line-height:1.6; }
.login-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; font-weight: 500; }
.sp-input {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    width: 100%;
    font-size: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
}
.sp-input:focus { border-color: var(--accent); }
.sp-input::placeholder { color: var(--text-dim); }
.login-btn {
    width: 100%;
    margin-top: 12px;
    padding: 13px;
    border-radius: 10px;
    border: none;
    background: var(--accent);
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    transition: filter 0.18s;
}
.login-btn:hover { filter: brightness(1.1); }

/* ══════════════════════════════════════
   CART DRAWER
══════════════════════════════════════ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 290;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
    position: fixed;
    right: 0; top: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    background: #141414;
    z-index: 300;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(0,0,0,0.6);
    transform: translateX(100%);
    transition: transform 0.28s ease;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--border);
}
.cart-title { font-family: 'Press Start 2P', monospace; font-size: 10px; color: #fff; }
.cart-close {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: none; cursor: pointer;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.cart-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.cart-body { flex: 1; overflow-y: auto; padding: 20px 22px; }
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 100%;
    color: var(--text-dim);
}
.cart-empty p { font-weight: 600; font-size: 15px; }

.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(245,166,35,0.12);
}
.cart-item-info { flex: 1; }
.cart-item-name {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
}
.cart-item-price {
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
}
.cart-item-remove {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(224,92,92,0.15);
    border: 1px solid rgba(224,92,92,0.3);
    color: #e05c5c;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
}
.cart-item-remove:hover {
    background: rgba(224,92,92,0.25);
    border-color: #e05c5c;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid var(--border);
    padding: 28px 24px;
    text-align: center;
}
.footer-copy { font-size: 12px; color: var(--text-dim); }
.footer-discord {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(245,166,35,0.55);
    text-decoration: none;
}
.footer-discord:hover { color: var(--accent); }

/* ══════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════ */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(20,20,20,0.97);
    border-top: 1px solid var(--border);
    padding: 10px 0 env(safe-area-inset-bottom);
    z-index: 100;
}
.mobile-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.mobile-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    transition: color 0.18s;
    text-decoration: none;
}
.mobile-nav-btn:hover, .mobile-nav-btn.active { color: var(--accent); }

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast-container { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none; }
.toast {
    background: var(--accent);
    color: #000;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(245,166,35,0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.28s;
}
.toast.show { opacity: 1; transform: translateY(0); }

.cart-drawer-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    transition: color 0.18s;
    text-decoration: none;
}
.cart-drawer-title:hover { color: var(--accent); }

@media(max-width:768px){
    .mobile-nav { display: block; }
    body { padding-bottom: 70px; }
    .nav-wrap { display: none; }
    .hero-left, .hero-right { display: none; }
}