@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;
}


/* --- Global Fix for Bootstrap Blue Links & Icons --- */
a, a:hover, a:focus, a:visited {
    color: inherit !important;
    text-decoration: none !important;
}

/* লোগো সব সময় কালো থাকবে */
.logo-font {
    color: #000 !important;
}

/* আইকনগুলোর কালার টেক্সটের মতো হবে */
i {
    color: inherit;
}

/* বাটনগুলোর আন্ডারলাইন বন্ধ করা */
button:focus {
    outline: none !important;
    box-shadow: none !important;
}