*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body{
    background:#f5f7fa;
    color:#222;
}

.container{
    width:94%;
    max-width:1300px;
    margin:auto;
}

/* ===== TITLE ===== */
.section-title{
    font-size:24px;
    font-weight:700;
    margin:30px 0 20px;
}

/* ===== GRID ===== */
.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

@media(max-width:992px){
    .product-grid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:600px){
    .product-grid{grid-template-columns:repeat(2,1fr);}
}

/* ===== CARD ===== */
.product-card{
    background:#fff;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

/* IMAGE */
.product-img{
    height:230px;
    background:#fafafa;
}
.product-img img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* INFO */
.product-info{
    padding:14px;
    flex:1;
}

.product-info h3{
    font-size:15px;
    font-weight:700;
    margin-bottom:6px;
}

/* PRICE */
.price{
    font-size:17px;
    font-weight:700;
    color:#b12704;
    margin-bottom:8px;
}

/* DESCRIPTION */
.product-desc{
    list-style:none;
    font-size:13px;
    color:#444;
    line-height:1.45;
    margin-bottom:12px;
}
.product-desc li::before{
    content:"• ";
    color:#999;
}

/* BUTTON BAR */
.product-btns{
    display:flex;
    gap:10px;
}

.btn-call{
    flex:1;
    background:#fff;
    border:2px solid #198754;
    color:#198754;
    text-align:center;
    padding:10px 0;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}

.btn-price{
    flex:1;
    background:#d32f2f;
    color:#fff;
    text-align:center;
    padding:10px 0;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}

.footer{
    background:#111;
    color:#ccc;
    margin-top:40px;
    padding:30px 0 15px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

@media(max-width:768px){
    .footer-grid{grid-template-columns:repeat(2,1fr);}
}

.footer h4{
    color:#fff;
    font-size:15px;
    margin-bottom:10px;
}

.footer a,
.footer p{
    font-size:14px;
    color:#bbb;
    line-height:1.6;
    text-decoration:none;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid #333;
    margin-top:20px;
    padding-top:10px;
    font-size:13px;
    color:#888;
}
