    .selection-section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        margin: 0 50px;
    }

    .button {
        display: flex;
        gap: 15px;
    }

    .btn1 {
        padding: 10px 25px;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        border: none;
        border-radius: 20px;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    }

    .part-btn {
        background-color: white;
        color: #cd0000;
        border: 1px solid #cd0000;
    }

    .part-btn:hover {
        background-color: #cd0000;
        color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .part-btn.active {
        background-color: #cd0000;
        color: white;
        border: 1px solid #cd0000;
    }

    .paint-btn {
        background-color: white;
        color: #cd0000;
        border: 1px solid #cd0000;
    }

    .paint-btn:hover {
        background-color: #cd0000;
        color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .paint-btn.active {
        background-color: #cd0000;
        color: white;
        border: 1px solid #cd0000;
    }

    .user-dropdown {
        position: relative;
        /* margin-right: 14px; */
    }

    .user-dropdown .custom-dropdown-menu {
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        border-radius: 8px;
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
        min-width: 180px;
        padding: 10px 0;
        max-width: 90vw;
        position: absolute;
        left: -100px;
        z-index: 999;
        width: auto;
        overflow: hidden;
        background-color: #fff;
    }

    .user-dropdown:hover .custom-dropdown-menu,
    .user-dropdown .custom-dropdown-menu.show {
        display: block;
        opacity: 1;
        transform: translateX(0);
        padding-left: 6px;
        padding-right: 6px;
    }

    .user-dropdown .custom-dropdown-item {
        padding: 14px 20px;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        transition: background-color 0.3s ease, color 0.3s ease;
        border-radius: 4px;
        color: #333;
        text-decoration: none;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
    }

    .user-dropdown .custom-dropdown-item:hover {
        background-color: #f8f9fa;
        color: #cd0000;
    }

    .user-dropdown form {
        margin: 0;
        padding: 0;
        display: flex;
    }

    .switch-toggle {
        --width: 160px;
        --height: 40px;
        --offset: 2px;
        --radius: 50px;
        position: relative;
        width: var(--width);
        height: var(--height);
        padding: var(--offset);
        background: rgba(227, 229, 232, 0.5);
        border-radius: var(--radius);
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
        font-style: normal;

        input[type="checkbox"] {
            cursor: pointer;
            position: absolute;
            inset: 0;
            appearance: none;
            z-index: 2;

            &:checked {
                +label.switch-toggle-label {
                    &:before {
                        translate: 100% 0;
                    }

                    span {
                        &:nth-child(1) {
                            color: gray;
                        }

                        &:nth-child(2) {
                            color: #ffff;
                        }
                    }
                }
            }

            &+label.switch-toggle-label {
                /* position: absolute; */
                inset: var(--offset, 0);
                padding: 10px 0;
                display: block;
                user-select: none;
                pointer-events: none;
                display: grid;
                gap: 2px;
                grid-auto-flow: column;
                grid-auto-columns: 1fr;
                place-items: center;

                &:before {
                    content: "";
                    position: absolute;
                    width: 50%;
                    inset: 0;
                    background: #cd0000;
                    border-radius: calc(var(--radius) - var(--offset));
                    box-shadow: 0px 10px 20px 0px rgba(16, 39, 68, 0.1);
                    translate: 0 0;
                    transition: translate 250ms cubic-bezier(0.93, 0.26, 0.07, 0.69);
                }

                span {
                    position: relative;
                    transition: 200ms linear;

                    &:nth-child(1) {
                        color: #ffff;
                    }

                    &:nth-child(2) {
                        color: gray;
                    }
                }
            }
        }
    }

    label.switch-toggle-label {
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 600;
        padding-top: 12px !important;
    }

    @media screen and (max-width: 991px) {
        .selection-section {
            margin: 0 21px;
        }

        /* Hide navigation links & toggle switch */
        .main-nav, .switch-toggle {
            display: none !important;
        }
    
        /* Ensure header is properly aligned */
        .header-middle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
        }
    
        /* Align mobile menu, logo, and icons properly */
        .header-left {
            display: flex;
            align-items: center;
            /* gap: 15px; */
        }
    
        .header-left .logo img {
            max-width: 90px; /* Adjust logo size */
        }
    
        .header-right {
            display: flex;
            align-items: center;
            /* gap: 15px; */
        }
    
        /* Hide user dropdown for mobile and show only the user icon */
        /* .user-dropdown {
            display: none !important;
        } */
    
        .auth-links-container .symbol {
            display: block; /* Ensure user icon remains */
        }
    
        /* Ensure cart icon is visible */
        .cart-dropdown {
            display: block;
        }

        .user-dropdown .custom-dropdown-menu {
            left: -120px;
        }
    }
    