/* ===============================
   RÊVEUSE PARIS - SHOP PAGE
================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#faf8f5;
    color:#111;
}

/* HEADER */

.shop-header{
    position:sticky;
    top:0;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(20px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    border-bottom:1px solid rgba(0,0,0,.05);
    z-index:100;
}

.logo img{
    height:65px;
}

.shop-header nav{
    display:flex;
    gap:35px;
}

.shop-header nav a{
    text-decoration:none;
    color:#111;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:2px;
    position:relative;
    transition:.3s;
}

.shop-header nav a:hover,
.shop-header nav a.active{
    color:#C8A96A;
}

/* HERO */

.shop-hero{
    text-align:center;
    padding:120px 20px 70px;
}

.shop-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:70px;
    margin-bottom:15px;
}

.shop-hero p{
    color:#666;
    max-width:650px;
    margin:auto;
    line-height:30px;
}

/* PRODUCTS */

.products{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    padding-bottom:100px;
}

/* CARD */

.card{
    background:#fff;
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#C8A96A;
    color:white;
    padding:7px 14px;
    font-size:11px;
    border-radius:30px;
    letter-spacing:1px;
}

.card img{
    width:220px;
    height:220px;
    object-fit:contain;
    transition:.5s;
}

.card:hover img{
    transform:scale(1.08) rotate(-2deg);
}

.card h2{
    font-family:'Cormorant Garamond',serif;
    font-size:40px;
    margin-top:20px;
}

.subtitle{
    color:#777;
    margin:12px 0 22px;
    min-height:40px;
}

.price{
    margin-bottom:25px;
}

.new{
    color:#111;
    font-size:24px;
    font-weight:600;
}

.old{
    color:#999;
    text-decoration:line-through;
    margin-left:10px;
}

.buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.buttons a,
.buttons button{
    padding:14px;
    border:none;
    border-radius:40px;
    cursor:pointer;
    text-decoration:none;
    transition:.3s;
    font-size:15px;
}

.buttons a{
    background:#111;
    color:#fff;
}

.buttons a:hover{
    background:#C8A96A;
}

.buttons button{
    background:#fff;
    border:1px solid #C8A96A;
    color:#C8A96A;
}

.buttons button:hover{
    background:#C8A96A;
    color:#fff;
}

/* MOBILE */

@media(max-width:768px){

.shop-header{
    flex-direction:column;
    gap:20px;
}

.shop-header nav{
    flex-wrap:wrap;
    justify-content:center;
}

.shop-hero h1{
    font-size:50px;
}

.card img{
    width:180px;
    height:180px;
}

}
/* Mobile Devices */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .container {
        width: 90%;
        margin: auto;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 16px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}