.tablet-brand{
    color: var(--color-primary-brand);
    font-weight: 900;
}

.tablet-brand a{
    text-decoration: none;
}

@media(min-width: 1025px) {
    .tablet-aside-menu-wrapper {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 250px;
    }

    .tablet-aside-menu {
        display: none;
    }

    .aside-burger-button-tablet {
        display: none;
    }

    .tablet-catalogue {
        display: none;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: none;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 1024px) {
    .custom-dropdown {
        display: none;
    }

    .tablet-aside-menu-wrapper {
        align-items: center;
        flex-direction: column;
        width: 200px;

    }

    .aside-burger-button-tablet {
        display: flex;
        align-items: center;
        gap: 8px;
        background-color: var(--color-primary);
        border: none;
        border-radius: 100px;
        padding: 8px 16px;
        cursor: pointer;
        transition: background-color 0.2s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .aside-burger-button-tablet:active {
        background-color: #0041c4;
    }

    .burger-icon {
        width: 36px;
        height: 36px;
        color: white;
        flex-shrink: 0;
    }

    .aside-button-label {
        color: white;
        font-size: 24px;
        font-weight: 600;
        white-space: nowrap;
    }

    .tablet-aside-menu {
        position: absolute;
        top: 0;
        left: -50vh;
        background-color: white;
        border: 1px solid #ccc;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        width: 35vw;
        height: 100%;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .tablet-aside-menu.active {
        position: absolute;
        left: 0;
        transform: translateX(0);
    }

    .overlayTablet {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .tablet-catalogue {
        display: none;
        opacity: 0;
        position: absolute;
        top: 5vh;
        left: 11vw;
        background-color: white;
        z-index: 1000;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        transform: translateY(-10px);
        max-height: 92vh;
        overflow-y: auto;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    .tablet-catalogue.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .tablet-catalogue a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        text-decoration: none;
        font-size: 30px;
        color: black;
        font-weight: 450;
    }

    .tablet-catalogue a svg {
        width: 30px;
        height: 30px;
        color: black;
    }
}

@media (max-width: 820px) {
    .tablet-catalogue {
        left: 4vw;
    }

    .tablet-aside-menu-wrapper{
        width: 170px;
    }

    .tablet-aside-menu {
        left: -40vh;
        width: 40vw;
    }
}

@media (max-width: 768px) {
    .tablet-catalogue {
        left: 2vw;
    }

    .overlayTablet {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 150vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }


    .tablet-aside-menu {
        left: -40vh;
        width: 40vw;
        height: 130%;
    }

    .tablet-aside-menu-wrapper {
        width: 80px;
    }

    .aside-burger-button-tablet {
        width: 60px;
        height: 40px;
        padding: 8px 12px;
    }

    .aside-burger-button-tablet span {
        display: none;
    }

}

@media (max-width: 480px){
    .tablet-aside-menu-wrapper{
        display: none;
    }
}
