body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('uploads/img/bannerr.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
}

.hero span {
    color: #ffcc00;
}

.btn-primary {
    background: #ffcc00;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* METRICS */
.metrics {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background: #111;
    color: white;
}

/* PRODUCTS */
.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
}

/* PROMO */
.promo {
    background: #ffcc00;
    text-align: center;
    padding: 50px;
}

/* WHY */
.why {
    background: #f5f5f5;
    padding: 50px 0;
}

.why-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}