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

.shop-hero{
    display:flex;
    flex-direction:column;
    gap:32px;
    max-width:1650px;
    width:100%;
    margin:0 auto;
}

.shop-header{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.shop-badge{
    width:max-content;
    padding:8px 18px;
    border-radius:999px;
    background:rgba(155,122,47,.08);
    border:1px solid rgba(155,122,47,.15);
    color:#9b7a2f;
    font-size:.9rem;
    font-weight:600;
}

.shop-header h1{

    font-family: "Cormorant Garamond", serif;

    font-size: 64px;

    font-weight: 500;

    line-height: 1.15;

    color: #2f2f2f;

    margin-bottom: 20px;

    letter-spacing: .5px;

}
.shop-header p{

    max-width: 760px;

    font-size: 22px;

    line-height: 1.8;

    color: #6d6d6d;

    font-weight: 400;

    margin-top: 24px;

}
.shop-categories{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.category{
    padding:12px 24px;
    border:none;
    border-radius:14px;
    background:#f4f4f4;
    color:#555;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.category:hover{
    background:#ececec;
}

.category.active{
    background:#9b7a2f;
    color:#fff;
}

/* ==========================================
   PRODUCTS
========================================== */

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:30px;
    width:100%;
    margin:0 auto;
}

.product-card{
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border-radius:24px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(255,255,255,.7);
    backdrop-filter:blur(16px);
    transition:.35s;
    animation:fadeUp .6s ease forwards;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.product-image{
    position:relative;
    height:320px;
    overflow:hidden;
    background:#f5f5f5;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.product-card:hover .product-image img{
    transform:scale(1.05);
}

.product-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.22),
        rgba(0,0,0,.03),
        transparent
    );
}

.product-status{
    position:absolute;
    top:18px;
    right:18px;
    padding:8px 16px;
    border-radius:999px;
    background:#2ebf59;
    color:#fff;
    font-size:.8rem;
    font-weight:700;
}

.coming-soon{
    background:#f59e0b;
}

.product-content{
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:28px;
    flex:1;
}

.product-category{
    font-size:.8rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#9b7a2f;
}

.product-content h2{
    margin:0;
    font-size:1.35rem;
    font-weight:700;
    color:#2f2f2f;
}

.product-rating{
    display:flex;
    align-items:center;
    gap:10px;
    color:#f5b400;
}

.product-rating span{
    color:#777;
    font-size:.9rem;
}

.product-content p{
    margin:0;
    line-height:1.8;
    color:#6d6d6d;
    flex:1;
}

.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-top:12px;
}

.product-price{
    font-size:1.65rem;
    font-weight:700;
    color:#2f2f2f;
}

.product-buttons{
    display:flex;
    gap:12px;
}

.product-buttons a,
.product-buttons button{
    padding:12px 22px;
    border:none;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.secondary-button{
    background:#f4f4f4;
    color:#444;
}

.secondary-button:hover{
    background:#ececec;
}

.primary-button{
    background:#9b7a2f;
    color:#fff;
}

.primary-button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(155,122,47,.25);
}

.primary-button:disabled{
    opacity:.6;
    cursor:not-allowed;
}

.product-buttons a:focus,
.product-buttons button:focus,
.category:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(155,122,47,.2);
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.product-card.hidden{
    display:none;
}