/* =========================
SHOP DESIGN – FIGHTBOYS
Nur für /shop/
========================= */

body{
    background:#050505;
    color:#ffffff;
}

/* =========================
SHOP HEADER
========================= */

.shop-hero{
    text-align:center;
    padding:40px 20px 20px 20px;
}

.shop-hero h1{
    font-size:48px;
    color:#d4af37;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:3px;
}

.shop-hero p{
    font-size:22px;
    color:#cccccc;
    max-width:900px;
    margin:auto;
    line-height:1.6;
}

/* =========================
SHOP NAVIGATION
========================= */

.shop-nav{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:40px auto;
}

.shop-nav a{
    background:#111111;
    border:1px solid #d4af37;
    color:#ffffff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:10px;
    font-weight:bold;
    transition:0.3s;
}

.shop-nav a:hover{
    background:#d4af37;
    color:#000000;
}

/* =========================
PRODUKT KACHELN
========================= */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1400px;
    margin:50px auto;
    padding:0 20px;
}

.product-card{
    background:#101010;
    border:1px solid #333333;
    border-radius:16px;
    overflow:hidden;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-6px);
    border-color:#d4af37;
    box-shadow:0 0 20px rgba(212,175,55,0.3);
}

.product-card img{
    width:100%;
    height:auto;
    display:block;
}

.product-content{
    padding:20px;
}

.product-content h2{
    color:#d4af37;
    margin-bottom:15px;
    font-size:28px;
}

.product-content p{
    color:#cccccc;
    line-height:1.6;
    margin-bottom:20px;
}

/* =========================
BUTTONS
========================= */

.shop-button{
    display:inline-block;
    background:#d4af37;
    color:#000000;
    text-decoration:none;
    padding:14px 22px;
    border-radius:8px;
    font-weight:bold;
    transition:0.3s;
}

.shop-button:hover{
    background:#ffffff;
}

/* =========================
PREIS
========================= */

.price{
    font-size:28px;
    color:#ffffff;
    font-weight:bold;
    margin-bottom:15px;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .shop-hero h1{
        font-size:36px;
    }

    .shop-hero p{
        font-size:18px;
    }

    .product-content h2{
        font-size:24px;
    }

}