/* --- Global Styles --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: #f8f9fa; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Header Section --- */
header { background: #fff; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 24px; font-weight: 700; color: #e67e22; text-transform: uppercase; }
nav ul { display: flex; gap: 25px; }
nav ul li a:hover { color: #e67e22; }

/* --- Mobile Menu --- */
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }

/* --- Product Grid --- */
.container { width: 90%; margin: 40px auto; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 28px; position: relative; }
.section-title::after { content: ''; width: 60px; height: 3px; background: #e67e22; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
.product-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.product-card:hover { transform: translateY(-5px); }
.product-img { width: 100%; height: 320px; object-fit: cover; }
.product-info { padding: 20px; text-align: center; }
.product-info h3 { font-size: 18px; margin-bottom: 10px; font-weight: 600; }
.product-price { font-size: 20px; color: #e67e22; font-weight: 700; }

/* --- Footer --- */
footer { background: #2c3e50; color: #fff; padding: 50px 5% 20px; text-align: center; margin-top: 60px; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { color: #bdc3c7; }
.footer-links a:hover { color: #fff; }
.copyright { border-top: 1px solid #34495e; padding-top: 20px; font-size: 14px; color: #bdc3c7; }

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    nav ul { display: none; flex-direction: column; position: absolute; top: 65px; left: 0; width: 100%; background: #fff; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    nav ul.active { display: flex; }
    .menu-toggle { display: block; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 15px; }
    .product-img { height: 220px; }
}