/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f5f5;
    line-height: 1.5;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50;
    padding: 15px 30px;
    flex-wrap: wrap;
}

.logo h2 {
    color: #fff;
    font-size: 22px;
}

/* NAVBAR */
.navbar {
    display: flex;
    gap: 15px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #f39c12;
}

/* ICONS */
.icons {
    display: flex;
    gap: 15px;
}

.icons a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.icons a:hover {
    color: #f39c12;
}

/* ===== FOOTER ===== */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-box {
    flex: 1 1 200px;
}

.footer-box h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-box a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #f39c12;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    font-size: 14px;
}

/* ===== PRODUCTS ===== */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* INFO */
.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.price {
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 10px;
}

/* BUTTONS */
.product-btns {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.view-btn, .cart-btn {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.view-btn {
    background: #2c3e50;
    color: #fff;
}

.cart-btn {
    background: #f39c12;
    color: #fff;
}

.view-btn:hover {
    background: #34495e;
}

.cart-btn:hover {
    background: #e67e22;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .navbar {
        flex-direction: column;
        margin: 10px 0;
    }

    .icons {
        margin-top: 10px;
    }

    .product-btns {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}