/* ========================= */
/* BOUTIQUE - PRÊT FEU GO */
/* ========================= */

.shop-page{
    background:#080808;
    color:#F5EFE4;
}


.shop-intro{
    padding:85px 30px 40px;
    background:
        radial-gradient(circle at 50% 0%, rgba(214,168,79,0.08), transparent 36%),
        #080808;
}

.shop-intro-card{
    max-width:980px;
    margin:0 auto;
    padding:52px 58px;
    text-align:center;
    border:1px solid rgba(214,168,79,0.22);
    background:
        radial-gradient(circle at top left, rgba(214,168,79,0.10), transparent 36%),
        linear-gradient(180deg, rgba(214,168,79,0.055), rgba(255,255,255,0.018));
    box-shadow:0 35px 90px rgba(0,0,0,0.50);
}

.shop-intro-card h2{
    color:#D6A84F;
    font-size:42px;
    margin-bottom:20px;
}

.shop-intro-card p{
    color:#D8D0C5;
    font-size:20px;
    line-height:1.7;
    max-width:760px;
    margin:0 auto;
}

.shop-categories{
    max-width:1120px;
    margin:0 auto;
    padding:55px 30px 95px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:32px;
}

.shop-card{
    min-height:340px;
    padding:44px 34px;
    border:1px solid rgba(214,168,79,0.24);
    background:
        radial-gradient(circle at top left, rgba(214,168,79,0.09), transparent 36%),
        linear-gradient(180deg, rgba(214,168,79,0.045), rgba(255,255,255,0.014));
    box-shadow:0 35px 80px rgba(0,0,0,0.45);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.shop-icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 26px;
    color:#D6A84F;
    font-size:42px;
    line-height:1;
    text-shadow:0 0 22px rgba(214,168,79,0.20);
}

.shop-card h3{
    color:#D6A84F;
    font-size:29px;
    margin-bottom:20px;
}

.shop-card p{
    color:#D8D0C5;
    font-size:18px;
    line-height:1.6;
    margin-bottom:34px;
}

.shop-card span{
    margin-top:auto;
    color:#D6A84F;
    font-size:16px;
    font-weight:bold;
    letter-spacing:1px;
}

.shop-follow{
    padding:85px 30px 105px;
    text-align:center;
    background:linear-gradient(180deg, #0B0B0B, #080808);
    border-top:1px solid rgba(214,168,79,0.14);
}

.shop-follow-content{
    max-width:820px;
    margin:0 auto;
}

.shop-follow h2{
    color:#D6A84F;
    font-size:38px;
    margin-bottom:18px;
}

.shop-follow p{
    color:#D8D0C5;
    font-size:20px;
    line-height:1.65;
    margin-bottom:36px;
}

@media (max-width:900px){

    .shop-categories{
        grid-template-columns:1fr;
        max-width:560px;
        padding:45px 24px 80px;
    }

    .shop-card{
        min-height:auto;
    }
}

@media (max-width:768px){

    .shop-intro{
        padding:65px 24px 30px;
    }

    .shop-intro-card{
        padding:36px 24px;
    }

    .shop-intro-card h2{
        font-size:32px;
    }

    .shop-intro-card p,
    .shop-follow p{
        font-size:18px;
    }

    .shop-follow{
        padding:70px 24px 85px;
    }

    .shop-follow h2{
        font-size:30px;
    }
}

@media (max-width:480px){

    .shop-categories{
        padding-left:18px;
        padding-right:18px;
    }

    .shop-card{
        padding:34px 24px;
    }

    .shop-card h3{
        font-size:26px;
    }

    .shop-card p{
        font-size:17px;
    }
}
