@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;
}






/* Product section */

/* সাইজ বক্সের এক্টিভ স্টাইল */
.size-box {
    border: 1px solid #d1d5db;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-box:hover {
    border-color: black;
}

/* এক্টিভ ক্লাস */
.size-box.active {
    background: black !important;
    color: white !important;
    border-color: black !important;
}



/* Pagination Buttons */
.pag-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    transition: 0.3s;
}
.pag-btn:hover {
    border-color: black;
}
.pag-btn.active {
    background: black;
    color: white;
    border-color: black;
}

/* Mobile Filter Animation */
#filterContent.show {
    display: block !important;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Radio Button Styling */
.filter-radio-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #4b5563; /* Gray-600 */
    user-select: none;
    transition: 0.3s;
}

/* মাউস নিলে টেক্সট কালো হবে */
.filter-radio-container:hover {
    color: #000;
}

/* ডিফল্ট রেডিও হাইড করা */
.filter-radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* কাস্টম চেক মার্ক (খালি বৃত্ত) */
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 2px solid #d1d5db; /* Gray-300 */
    border-radius: 50%;
}

/* হোভার করলে বর্ডার কালার চেঞ্জ */
.filter-radio-container:hover input ~ .checkmark {
    border-color: #000;
}

/* যখন রেডিও সিলেক্ট হবে তখন বর্ডার কালো হবে */
.filter-radio-container input:checked ~ .checkmark {
    background-color: #fff;
    border-color: #000;
}

/* ভেতরের কালো ডট (সিলেক্ট করার পর যেটা দেখা যায়) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.filter-radio-container input:checked ~ .checkmark:after {
    display: block;
}

.filter-radio-container .checkmark:after {
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: black;
}

/* সিলেক্টেড টেক্সট বোল্ড করা */
.filter-radio-container input:checked ~ span + span, 
.filter-radio-container input:checked {
    color: #000;
    font-weight: 900;
}














/* Toast Notification Animations */
@keyframes toast-slide-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-animate {
    animation: toast-slide-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

#toast-container {
    pointer-events: none; /* যাতে পেজের অন্য ক্লিকে বাধা না দেয় */
}

#toast-container > div {
    pointer-events: auto; /* নোটিফিকেশনের ভেতরের বাটন যাতে কাজ করে */
}





@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;
}