:root {
    --brand-green: #006847;
    --brand-background-grey: #f4f4f4;
    --brand-red: #CE1126;
    --brand-blue: #0066cc;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: black;
    margin-bottom: 0.5rem;
}

#vehicle-filter-form {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

/* Select styling */
#vehicle-filter-form select {
    appearance: none;
    padding: 12px 14px;
    min-width: 170px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    font-size: 14px;
    color: #111827;
    transition: all .2s ease;
    cursor: pointer;
}

/* Hover */
#vehicle-filter-form select:hover {
    border-color: #9ca3af;
    background: #ffffff;
}

/* Focus */
#vehicle-filter-form select:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* Disabled */
#vehicle-filter-form select:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.vehicle-active-filters {
    margin-top: 20px;
    padding: 12px 14px;
    background: #dcfce7;
    border-left: 4px solid #16a34a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.1);
}

.vehicle-active-filters-text {
    font-weight: 600;
    color: #15803d;
    font-size: 13px;
}

.vehicle-active-filters::before {
    content: "✓";
    font-size: 18px;
    color: #16a34a;
    font-weight: bold;
}

.reset-vehicle-filters {
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #dc2626;
    background: transparent;
    color: #dc2626;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.reset-vehicle-filters:hover {
    background: #fecaca;
    color: #991b1b;
}

.reset-vehicle-filters:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.reset-vehicle-filters::before {
    content: "↻";
    font-size: 14px;
}
/* Button */
#vehicle-submit {
    padding: 12px 22px;
    border-radius: 6px;
    border: none;
    background: linear-gradient(135deg,#111827,#374151);
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .3px;
    transition: all .25s ease;
    cursor: pointer;
}

/* Button focus */
#vehicle-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15), 0 8px 16px rgba(17,24,39,0.2);
    transform: translateY(-2px);
}

/* Button hover */
#vehicle-submit:hover:not(:disabled) {
    background: linear-gradient(135deg,#1f2937,#111827);
    transform: translateY(-1px);
}

/* Disabled button */
#vehicle-submit:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

.added_to_cart.wc_forward {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--brand-blue), #0052a3);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    text-align: center;
}

.added_to_cart.wc_forward:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
    background: linear-gradient(135deg, var(--brand-blue), #003d7a);
}

.added_to_cart.wc_forward:active {
    transform: translateY(0);
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width:768px){

    #vehicle-filter-form{
        flex-direction: column;
        align-items: stretch;
    }

    #vehicle-filter-form select {
        width:100%;
    }

    #vehicle-submit{
        width:100%;
    }

}