@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* All Brand Dropdown Styling */
.brand-lists ul li {
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.brand-lists ul li:hover {
    padding-left: 8px;
    color: #555;
}

/* Custom Bold Styling */
.logo-font {
    letter-spacing: 0px;
}

/* Smooth Transitions */
#overlay {
    transition: opacity 0.4s ease;
}

.accordion-content {
    transition: max-height 0.3s ease-out;
}

#mobileSearchContainer {
    transition: all 0.3s ease-in-out;
}









@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.shake-error {
    animation: shake 0.3s ease-in-out;
    border-color: #ef4444 !important;
}
