/* ============================================================
   LUDOSHOP — main.css
   À importer dans toutes les pages :
   <link rel="stylesheet" href="style/main.css">
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@400;500&display=swap');

/* ===========================
   RESET & VARIABLES
=========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark:           #0D0D0D;
    --bg-warm:           #141414;
    --bg-card:           #1A1A1A;
    --bg-section-alt:    #111111;
    --accent-purple:     #FF6600;
    --accent-purple-lt:  #FF8533;
    --accent-gold:       #FF6600;
    --accent-red:        #FF4400;
    --accent-green:      #22A05B;
    --text-dark:         #F0F0F0;
    --text-mid:          #CCCCCC;
    --text-light:        #888888;
    --border:            #2A2A2A;
    --radius:            12px;
    --radius-sm:         8px;
    --shadow:            0 4px 24px rgba(255,102,0,.10);
    --shadow-hover:      0 8px 36px rgba(255,102,0,.25);
    --font-display:      'Playfair Display', Georgia, serif;
    --font-body:         'Inter', system-ui, sans-serif;
    --transition:        .22s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-warm);
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
img { display: block; max-width: 100%; }

/* ===========================
   UTILITAIRES
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section          { padding: 48px 0; }
.section-alt      { background: var(--bg-section-alt); }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-purple);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.link-all {
    font-size: 12px;
    color: var(--accent-purple);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity var(--transition);
}
.link-all:hover { opacity: .7; }

.divider {
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold), var(--accent-red));
    opacity: .25;
    border-radius: 2px;
    margin: 0;
}

/* ===========================
   BOUTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: opacity var(--transition), background var(--transition);
    cursor: pointer;
}
.btn:hover { opacity: .88; }

.btn-gold       { background: var(--accent-gold);    color: var(--bg-dark); }
.btn-purple     { background: var(--accent-purple);  color: #fff; }
.btn-red        { background: var(--accent-red);     color: #fff; }

.btn-ghost {
    background: transparent;
    color: #999999;
    border: 1px solid #333333;
}
.btn-ghost:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    opacity: 1;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
    background: var(--accent-purple);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    transition: background var(--transition);
    cursor: pointer;
}
.btn-sm:hover { background: var(--accent-purple-lt); }

.btn-nav {
    background: var(--accent-purple);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: background var(--transition);
    cursor: pointer;
}
.btn-nav:hover { background: var(--accent-purple-lt); }

/* ===========================
   NAVBAR
=========================== */
.navbar {
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 200;
    height: 58px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .4px;
}

.logo-die {
    width: 30px;
    height: 30px;
    background: var(--accent-purple);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform var(--transition);
}
.logo:hover .logo-die { transform: rotate(20deg); }

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #999999;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent-gold); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-input {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 6px 16px;
    color: #fff;
    font-size: 13px;
    outline: none;
    width: 170px;
    font-family: var(--font-body);
    transition: border-color var(--transition), background var(--transition);
}
.search-input::placeholder { color: rgba(255,255,255,.3); }
.search-input:focus {
    border-color: var(--accent-gold);
    background: rgba(255,255,255,.12);
}

.icon-btn {
    background: none;
    border: none;
    color: #999999;
    font-size: 18px;
    position: relative;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
    cursor: pointer;
}
.icon-btn:hover { color: var(--accent-gold); }

.cart-badge {
    position: absolute;
    top: -2px; right: -4px;
    background: var(--accent-red);
    color: #fff;
    font-size: 9px;
    width: 15px; height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* ===========================
   HERO
=========================== */
.hero {
    background: var(--bg-dark);
    padding: 64px 0 52px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: 5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,102,0,.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '🎲';
    position: absolute;
    bottom: -20px; left: 2%;
    font-size: 160px;
    opacity: .04;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 520px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero-title em {
    color: var(--accent-gold);
    font-style: normal;
}

.hero-subtitle {
    color: #666666;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-cards {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-game-card {
    width: 130px;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform .25s;
    display: block;
}
.hero-game-card:hover { transform: translateY(-5px); }
.hero-game-card:nth-child(2) { transform: translateY(20px); }
.hero-game-card:nth-child(2):hover { transform: translateY(15px); }

.hero-card-thumb {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

.hero-card-info { padding: 10px 12px; }

.hero-card-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.4;
    margin-bottom: 4px;
}

.hero-card-price {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-purple);
    font-family: var(--font-display);
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
    background: #EEE4CC;
    border-bottom: 1px solid var(--border);
}

.stats-bar .container {
    display: flex;
    justify-content: center;
}

.stat-item {
    padding: 16px 40px;
    text-align: center;
    border-right: 1px solid var(--border);
    flex: 1;
}
.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-purple);
}

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 3px;
}

/* ===========================
   BANDEAU HUMOUR
=========================== */
.fun-banner {
    background: var(--accent-purple);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.fun-banner-track {
    display: inline-block;
    animation: scroll-banner 30s linear infinite;
}

.fun-banner-track span {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    margin: 0 32px;
}

.fun-banner-track span::before {
    content: '🎲';
    margin-right: 8px;
}

@keyframes scroll-banner {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   EASTER EGG — dé secoué
=========================== */
.shake-die {
    display: inline-block;
    cursor: pointer;
    transition: transform .1s;
}
.shake-die.shaking {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shake {
    10%, 90% { transform: rotate(-5deg) scale(1.2); }
    20%, 80% { transform: rotate(5deg)  scale(1.3); }
    30%, 50%, 70% { transform: rotate(-5deg) scale(1.2); }
    40%, 60% { transform: rotate(5deg)  scale(1.1); }
}

/* ===========================
   CATEGORIES
=========================== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.cat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 14px 18px;
    text-align: center;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition),
                transform var(--transition), box-shadow var(--transition);
    display: block;
}
.cat-card:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.cat-card:hover .cat-name,
.cat-card:hover .cat-nb { color: #fff; }

.cat-icon { font-size: 30px; margin-bottom: 10px; }
.cat-name { font-size: 13px; font-weight: 500; color: var(--text-dark); transition: color var(--transition); }
.cat-nb   { font-size: 11px; color: var(--text-light); margin-top: 3px; transition: color var(--transition); }

/* ===========================
   PRODUCT GRID
=========================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .25s, transform .25s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.product-thumb {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    flex-shrink: 0;
    transition: font-size .2s;
}
.product-card:hover .product-thumb { font-size: 64px; }

/* Tooltip humour au hover */
.product-thumb::after {
    content: attr(data-fun);
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(28,23,16,.82);
    color: #fff;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s, transform .2s;
    pointer-events: none;
    font-family: var(--font-body);
}
.product-card:hover .product-thumb::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.badge-new,
.badge-hot,
.badge-promo {
    position: absolute;
    top: 10px; left: 10px;
    font-size: 10px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 10px;
    letter-spacing: .4px;
}
.badge-new   { background: var(--accent-purple); color: #fff; }
.badge-hot   { background: var(--accent-red);    color: #fff; }
.badge-promo { background: var(--accent-green);  color: #fff; }

.product-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-cat {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 10px;
    flex: 1;
}

.product-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}
.stars   { color: var(--accent-gold); font-size: 12px; letter-spacing: 1px; }
.avis-nb { font-size: 11px; color: var(--text-light); }

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-purple);
}

/* ===========================
   ALERTE STOCK — humour
=========================== */
.stock-warning {
    font-size: 11px;
    color: var(--accent-red);
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===========================
   FIDÉLITÉ BANNER
=========================== */
.fidelity-banner {
    background: var(--bg-dark);
    border-radius: var(--radius);
    padding: 30px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
}

.fidelity-banner::after {
    content: '⭐';
    position: absolute;
    right: 28px; top: 50%;
    transform: translateY(-50%);
    font-size: 96px;
    opacity: .06;
    pointer-events: none;
}

.fidelity-icon {
    width: 56px; height: 56px;
    background: var(--accent-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.fidelity-text { flex: 1; }

.fidelity-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--bg-warm);
    margin-bottom: 6px;
}

.fidelity-desc {
    font-size: 13px;
    color: #A89878;
    line-height: 1.6;
}

.btn-fidelity {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-body);
    transition: opacity var(--transition);
    cursor: pointer;
}
.btn-fidelity:hover { opacity: .88; }

/* ===========================
   FORUM PREVIEW
=========================== */
.forum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.forum-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .25s, transform .25s;
    display: block;
}
.forum-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.forum-card-head {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.forum-card-body { padding: 16px; }

.forum-tag {
    display: inline-block;
    background: #EDE0F5;
    color: var(--accent-purple);
    font-size: 10px;
    font-weight: 500;
    padding: 2px 9px;
    border-radius: 9px;
    margin-bottom: 9px;
    letter-spacing: .5px;
}

.forum-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.forum-meta {
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ===========================
   MODAL EASTER EGG
=========================== */
.egg-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28,23,16,.75);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.egg-overlay.open { display: flex; }

.egg-box {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px 40px;
    max-width: 420px;
    text-align: center;
    position: relative;
    animation: pop-in .25s ease;
}

@keyframes pop-in {
    from { transform: scale(.85); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.egg-box .egg-emoji { font-size: 56px; margin-bottom: 16px; }

.egg-box h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 10px;
}

.egg-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.egg-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: var(--bg-dark);
    padding: 32px 0;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 12px;
    color: #6E6252;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: #6E6252;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent-gold); }

/* ===========================
   RESPONSIVE (basique)
=========================== */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid     { grid-template-columns: repeat(3, 1fr); }
    .hero .container { flex-direction: column; gap: 40px; }
    .hero-cards   { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links    { display: none; }
    .forum-grid   { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .cat-grid     { grid-template-columns: repeat(2, 1fr); }
    .stats-bar .container { flex-wrap: wrap; }
    .stat-item    { border-right: none; border-bottom: 1px solid var(--border); min-width: 50%; }
    .fidelity-banner { flex-direction: column; text-align: center; }
    .footer .container { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===========================
   PAGE FORUM
=========================== */

.forum-search {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.forum-search input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    color: var(--text-dark);
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}

.forum-search input:focus {
    border-color: var(--accent-purple);
}

.forum-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.forum-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.forum-sidebar h3 {
    font-size: 18px;
    margin-bottom: 18px;
    font-family: var(--font-display);
}

.forum-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.forum-sidebar li {
    color: var(--text-mid);
    transition: .2s;
    cursor: pointer;
}

.forum-sidebar li:hover {
    color: var(--accent-purple);
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.topic-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: .25s;
    cursor: pointer;
}

.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.topic-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.topic-tag {
    background: rgba(99,102,241,.15);
    color: var(--accent-purple);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.topic-date {
    color: var(--text-light);
    font-size: 12px;
}

.topic-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.topic-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.topic-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topic-author {
    color: var(--text-mid);
    font-size: 13px;
}

.topic-stats {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--text-light);
}

.member-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    margin-top: 20px;
}

.member-card h4 {
    margin-bottom: 15px;
    font-family: var(--font-display);
}

.member {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.member:last-child {
    border-bottom: none;
}

.member-name {
    color: var(--text-dark);
}

.member-score {
    color: var(--accent-gold);
}

@media (max-width: 900px) {

    .forum-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .topic-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .topic-top {
        flex-direction: column;
        gap: 10px;
    }

}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* GLOBAL */
body {
    background: #0f0f0f;
    color: #fff;
}

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

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: #111;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 10px;
    color: gold;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a:hover {
    color: gold;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 6px 10px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.icon-btn {
    background: #222;
    border: none;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.icon-btn:hover {
    background: gold;
    color: black;
}

.cart-badge {
    background: red;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 5px;
}

/* SECTION AUTH */
.section {
    padding: 60px 0;
}

.auth-box {
    background: #161616;
    padding: 30px;
    border-radius: 10px;
    max-width: 450px;
    margin: auto;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.auth-title {
    text-align: center;
    margin-bottom: 20px;
    color: gold;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #ccc;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #222;
    color: white;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.btn-gold {
    background: gold;
    color: black;
}

.btn-gold:hover {
    background: #d4af37;
}

/* LINKS AUTH */
.auth-link {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.auth-link a {
    color: gold;
}

/* FOOTER */
.footer {
    margin-top: 60px;
    padding: 20px 0;
    background: #111;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a:hover {
    color: gold;
}