html, body {
    min-height:100%;
    margin:0;
    background:#080808;
}

body {
    color:#fff;
    font-family:'Barlow',sans-serif;
}

.catalog-page{
    background: 
        linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.5) 35%, rgba(8,8,8,0.95) 50%, rgba(8,8,8,1) 100%),
        url("../fundo_catalago/fundo.png");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding:140px 8%;
    min-height:100vh;
}

.catalog-header{
    margin-bottom:70px;
}

.eyebrow{
    color:#C8A96E;
    letter-spacing:5px;
    font-size:.8rem;
}

.catalog-header h1{
    font-family:'Bebas Neue',sans-serif;
    font-size:7rem;
    line-height:.9;
    color:#fff;
}

.catalog-header h1 span{
    display:block;
    color:#C8A96E;
}

.back-link{
    display:inline-block;
    margin-top:24px;
    color:#C8A96E;
    border:1px solid rgba(200,169,110,.5);
    padding:12px 22px;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    transition: background .25s, color .25s, transform .25s;
}

.back-link:hover{
    background:#C8A96E;
    color:#111;
    transform:translateY(-2px);
}

.catalog-filters{
    display:flex;
    gap:15px;
    margin-bottom:50px;
}

.catalog-filters button{
    background:none;
    border:1px solid rgba(200,169,110,.3);
    color:#C8A96E;
    padding:12px 24px;
    cursor:pointer;
    text-transform:uppercase;
    letter-spacing:2px;
}

.catalog-filters .active{
    background:#C8A96E;
    color:#111;
}

.back-link{
    display:inline-block;
    margin-top:24px;
    color:#C8A96E;
    border:1px solid rgba(200,169,110,.5);
    padding:12px 22px;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    transition: background .25s, color .25s, transform .25s;
}

.back-link:hover{
    background:#C8A96E;
    color:#111;
    transform:translateY(-2px);
}

.catalog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;
}

.product-card{
    background:#111;
    border:1px solid rgba(255,255,255,.05);
    position:relative;
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:#C8A96E;
}

.badge{
    position:absolute;
    top:20px;
    left:20px;
    z-index:2;

    color:#C8A96E;
    border:1px solid #C8A96E;
    padding:2px 8px;

    font-size:.3rem;
    letter-spacing:2px;
}

.product-image{
    height:500px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-content{
    padding:30px;
}

.product-category{
    color:#C8A96E;
    font-size:.7rem;
    letter-spacing:3px;
}

.product-content h3{
    color:#fff;
    font-size:2rem;
    margin:15px 0;
}

.product-content p{
    color:#888;
    line-height:1.7;
}

.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:25px;
}

.price{
    color:#C8A96E;
    font-size:2rem;
    font-weight:700;
}

.btn-product{
    color:#C8A96E;
    text-decoration:none;
    letter-spacing:2px;
}

@media (max-width: 1024px) {
    .catalog-page {
        padding:120px 6%;
    }
    .catalog-grid {
        gap: 28px;
    }
    .product-image {
        height:420px;
    }
}

@media (max-width: 768px) {
    .catalog-page {
        padding:100px 5%;
    }
    .catalog-header h1 {
        font-size: clamp(2.4rem, 8vw, 4.5rem);
    }
    .catalog-filters {
        flex-wrap: wrap;
        gap: 12px;
    }
    .catalog-filters button {
        flex: 1 1 45%;
        min-width: 140px;
    }
    /* show two cards per row on tablet/large mobile */
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-image {
        height: 340px;
    }
    .product-content {
        padding: 24px;
    }
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .price {
        font-size: 1.8rem;
    }
    .btn-product {
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    .product-image{
        height:180px;
    }

    .product-content{
        padding:12px;
    }

    .product-category{
        font-size:.55rem;
        letter-spacing:1px;
    }

    .product-content h3{
        font-size:1rem;
        line-height:1.2;
        margin:8px 0;
    }

    .product-content p{
        display:none;
    }

    .price{
        font-size:1.3rem;
    }

    .btn-product{
        font-size:.65rem;
        letter-spacing:1px;
    }

    .product-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }
    .catalog-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }
}