body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1d;
    color: #f0f0f0;
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    background-color: #2c2c34;
    border-bottom: 1px solid #444;
    height: 90px;
}

.logo img {
    height: 85px;
    width: auto;
    display: block;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: #00a8f3;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding: 10px 20px;
    border: 1px solid #00a8f3;
    border-radius: 5px;
    transition: 0.3s;
}

.dropbtn:hover {
    background-color: #00a8f3;
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #2c2c34;
    min-width: 200px;
    box-shadow: -5px 8px 16px rgba(0,0,0,0.5);
    border: 1px solid #444;
    z-index: 1000;
    border-radius: 5px 0 5px 5px;
}

.dropdown-content a {
    color: #a9a9a9;
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    transition: 0.2s;
}

.dropdown-content a:hover {
    background-color: #3e3e4a;
    color: #00a8f3;
    padding-left: 30px;
}

.dropdown-content a.active {
    color: #00a8f3;
    border-left: 3px solid #00a8f3;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.main-container {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.filters-sidebar {
    width: 250px;
    background-color: #2c2c34;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

.filter-group { margin-bottom: 15px; }
.filter-group h4 { color: #a9a9a9; margin-bottom: 10px; }
.price-values { display: flex; justify-content: space-between; font-size: 12px; color: #a9a9a9; }

.apply-filters-btn {
    width: 100%;
    padding: 10px;
    background-color: #00a8f3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    flex: 1;
}

.product-card {
    background-color: #2c2c34;
    border-radius: 8px;
    border: 1px solid #444;
    overflow: hidden;
    transition: transform 0.2s;
}

.product-card:hover { transform: translateY(-5px); }

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background-color: white;
}

.product-info { padding: 15px; }
.product-price { font-size: 1.2em; font-weight: bold; color: #00a8f3; margin: 10px 0; }
.product-location { font-size: 0.9em; color: #a9a9a9; }
.explore-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-section {
    display: flex;
    gap: 15px;
    background-color: #2c2c34;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #444;
}

.search-bar {
    flex: 1;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #1a1a1d;
    color: white;
    font-size: 1rem;
}

.sort-select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #1a1a1d;
    color: white;
    cursor: pointer;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #a9a9a9;
    cursor: pointer;
    font-size: 0.9rem;
}

.filter-group label:hover {
    color: #00a8f3;
}

.price-slider {
    width: 100%;
    accent-color: #00a8f3;
    margin-top: 10px;
}