/* ===============================
   GLOBAL
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#ffffff;
    color:#111;
    line-height:1.6;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

section{
    padding:100px 8%;
}

/* ===============================
   NAVBAR (Premium Clean)
================================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#ffffff;
    border-bottom:1px solid #f0f0f0;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:24px;
    font-weight:700;
    letter-spacing:1px;
    color:#b00020;
}

.logo span{
    color:#000;
    font-weight:500;
}

.navbar nav a{
    margin-left:30px;
    font-weight:500;
    color:#333;
    position:relative;
    transition:0.3s;
}

.navbar nav a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:#b00020;
    left:0;
    bottom:-6px;
    transition:0.3s;
}

.navbar nav a:hover::after,
.navbar nav a.active::after{
    width:100%;
}

/* ================= SECTION ================= */

.products-section{
    padding:80px 8%;
}

.container{
    max-width:1300px;
    margin:auto;
}

/* ================= TITLE ================= */

.products-title{
    text-align:center;
    margin-bottom:60px;
}

.products-title h2{
    font-size:36px;
    color:#b00020;
    margin-bottom:10px;
}

.products-title p{
    color:#555;
    max-width:700px;
    margin:auto;
}

/* ================= GRID ================= */

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
}

/* ================= PRODUCT CARD ================= */

.product-card{
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* PRODUCT IMAGE */

.product-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

/* CONTENT */

.product-content{
    padding:25px;
}

.product-content h3{
    font-size:20px;
    margin-bottom:6px;
    color:#222;
}

.product-content span{
    font-size:13px;
    color:#c40000;
    font-weight:600;
}

.product-content p{
    font-size:14px;
    color:#666;
    margin:12px 0 18px;
    line-height:1.5;
}

/* BUTTON */

.product-content a{
    display:inline-block;
    padding:10px 18px;
    background:#b00020;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:14px;
    transition:0.3s;
}

.product-content a:hover{
    background:#900000;
}

/* ================= FOOTER ================= */

footer{
    text-align:center;
    padding:25px;
    margin-top:60px;
    background:#b00020;
    color:#fff;
    font-size:14px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

    .navbar{
        flex-direction:column;
    }

    nav{
        margin-top:10px;
    }

    nav a{
        margin:0 10px;
    }

    .products-title h2{
        font-size:28px;
    }

}