/* Monitor Selector Tool Custom Styles */
.selector-container {
    max-width: 1300px;
    margin: 1rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: 'Open Sans', sans-serif;
}

.selector-header {
    text-align: left;
    margin-bottom: 2rem;
}

.selector-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.selector-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 100%;
    margin: 0;
}

/* Filters Section */
.filters-wrap {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.filter-group label {
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-align: center;
}

.filter-btn:hover {
    border-color: #ea7235;
    color: #ea7235;
    background: #fff5f0;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #ea7235;
    border-color: #ea7235;
    color: #fff;
    box-shadow: 0 4px 6px rgba(234, 114, 53, 0.2);
}

.filter-btn:focus {
    outline: none;
}

/* Results Section */
#results-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.monitor-card {
    display: grid;
    grid-template-columns: 1.5fr 3fr 2fr;
    gap: 2rem;
    background: #fff;
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 10px;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.monitor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.monitor-info h3 {
    margin: 0 0 0.5rem 0;
    font-family: Rajdhani, sans-serif;
    color: #ea7235;
    font-size: 1.5rem;
}

.monitor-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.spec-item {
    font-size: 0.9rem;
    color: #555;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
}

.monitor-brand span {
    display: block;
    font-weight: 800;
    opacity: 1;
    color: #000;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.monitor-brand div {
    font-size: 2rem;
    font-weight: 700;
    color: #ea7235;
}

.monitor-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Premium Buttons */
.btn-premium {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.btn-review {
    background: #2c3e50;
    color: #fff;
    border: 2px solid #2c3e50;
}

.btn-review:hover {
    background: #44596e;
    border-color: #44596e;
}

.btn-price {
    background: #f1c40f;
    color: #111;
    border: 2px solid #f1c40f;
}

.btn-price:hover {
    background: #ffb700;
    border-color: #ffb700;
}

/* Loading & Empty States */
.loading-indicator {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: #999;
}

.no-results {
    text-align: center;
    padding: 4rem;
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 10px;
}

/* Responsive Tweak */
@media (max-width: 900px) {
    .monitor-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .monitor-specs {
        justify-content: center;
    }

    .monitor-actions {
        flex-direction: row;
        justify-content: center;
    }
}