* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Arial', sans-serif; background: #f9f9f9; color: #333; line-height: 1.6; }

/* Header */
header { background: #131921; padding: 15px 5%; position: sticky; top: 0; z-index: 1000; }
.search-container { max-width: 900px; margin: 0 auto; display: flex; position: relative; }
#searchBox { flex: 1; padding: 12px; border: none; border-radius: 4px 0 0 4px; font-size: 16px; outline: none; }
#searchBtn { padding: 12px 25px; background: #febd69; border: none; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: bold; }

/* Suggestions Box */
.suggestions { 
    position: absolute; top: 50px; left: 0; right: 80px; 
    background: white; border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    display: none; max-height: 350px; overflow-y: auto; 
}
.suggestion-item { padding: 12px; border-bottom: 1px solid #eee; cursor: pointer; display: flex; justify-content: space-between; }
.suggestion-item:hover { background: #f3f3f3; }
.suggestion-item small { color: #777; font-weight: bold; }

/* Grid */
.container { max-width: 1200px; margin: 20px auto; padding: 20px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.product-card { background: white; border: 1px solid #ddd; border-radius: 8px; padding: 15px; text-align: center; }
.product-card img { max-width: 100%; height: 200px; object-fit: contain; }
.product-card h3 { font-size: 16px; margin: 10px 0; height: 40px; overflow: hidden; }
.price { color: #B12704; font-size: 18px; font-weight: bold; }

/* Footer */
.main-footer { background: #232f3e; color: white; padding: 30px 5%; margin-top: 50px; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-bottom { border-top: 1px solid #3a4553; margin-top: 20px; padding-top: 20px; text-align: center; font-size: 13px; }
.footer-section ul { list-style: none; }
.footer-section a { color: #ccc; text-decoration: none; }