* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: #f0f2f5; color: #1a2a3a; }

.navbar {
    background: #1a2a3a;
    padding: 1.5rem 0 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.logo { text-align: center; color: white; font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; }
.logo span { color: #00d1b2; }

.nav-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0 15px 0;
    scrollbar-width: none;
}
.nav-container::-webkit-scrollbar { display: none; }

.nav-links { display: inline-flex; gap: 10px; padding: 0 20px; list-style: none; }

.nav-links li a {
    padding: 8px 18px;
    background: #2c3e50;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.nav-links li a.active, .nav-links li a:hover {
    background: #00d1b2;
    color: #1a2a3a;
}

.container { padding: 20px 5%; }
#searchBar {
    width: 100%;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    margin-bottom: 30px;
    font-size: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 { font-size: 1rem; margin-bottom: 10px; height: 3rem; overflow: hidden; }
.price { color: #1a2a3a; font-weight: 700; font-size: 1.3rem; }

.btn-consult {
    background: #1a2a3a;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
}
.btn-consult:hover { background: #00d1b2; color: #1a2a3a; }