.offers-header{

    padding:140px 20px 60px;

    text-align:center;

}

.offers-header h1{

    font-size:42px;

    margin-bottom:15px;

}

.offers-badge{
    display:inline-block;
    margin-bottom:16px;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,178,71,0.14);
    border:1px solid rgba(255,178,71,0.45);
    color:#ffcf6e;
    font-size:14px;
    font-weight:600;
    letter-spacing:0.5px;
}

.offers-grid{

    max-width:1300px;

    margin:auto;

    padding:40px 20px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.offer-card{

    position:relative;

    background:rgb(0, 0, 0);

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    border:1px solid #151515;

    transition:.3s;

}

.offer-card:hover{

    border-color:#00bfff;

    transform:translateY(-6px);

}

.offer-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.discount{

    position:absolute;

    top:15px;

    left:15px;

    background:red;

    color:white;

    padding:10px 15px;

    border-radius:10px;

    font-weight:bold;

}

.offer-card h3{

    padding:20px;

}

.old-price{

    text-decoration:line-through;

    color:#999;

    padding:0 20px;

}

.new-price{

    color:#00c853;

    font-size:24px;

    font-weight:bold;

    padding:10px 20px 20px;

}

.offer-card .add-to-cart{

    width:calc(100% - 40px);

    margin:0 20px 24px;

    min-height:52px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#00bfff,#008fca);

    color:white;

    font-size:16px;

    font-weight:700;

    letter-spacing:.2px;

    cursor:pointer;

    box-shadow:0 12px 24px rgba(0,191,255,.22);

    transition:.25s;

}

.offer-card .add-to-cart::before{

    content:"\f07a";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    margin-right:10px;

}

.offer-card .add-to-cart:hover{

    background:linear-gradient(135deg,#13c9ff,#007fb5);

    transform:translateY(-2px);

    box-shadow:0 16px 30px rgba(0,191,255,.32);

}

/* =========================
   RESPONSIVE MOVIL
========================= */

@media (max-width: 768px){

    .products-page-header,
    .offers-header{

        padding:120px 20px 40px;

    }

    .products-page-header h1,
    .offers-header h1{

        font-size:32px;

    }

    .categories-filter{

        gap:10px;

        padding:15px;

    }

    .categories-filter button{

        font-size:14px;

        padding:10px 18px;

    }

    .products-list,
    .offers-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .product-card img,
    .offer-card img{

        height:220px;

    }

}

@media (max-width: 480px){

    .products-page-header h1,
    .offers-header h1{

        font-size:28px;

    }

    .products-page-header p,
    .offers-header p{

        font-size:14px;

    }

    .product-card h3,
    .offer-card h3{

        font-size:18px;

    }

}

.logo{

    text-decoration:none;

    color:#00bfff;

    font-weight:700;

}
