/* URUS Theme - Header Offcanvas Styles */

/* Import Overpass font */
@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@300&display=swap');

/* IMPORTANT: Override Bootstrap offcanvas positioning pour centrer le menu */
.offcanvas.urus-mobile-menu,
#mobileMenu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    /* Use svh (small viewport height) which excludes mobile browser UI */
    height: 100svh !important;
    /* Fallback for browsers that don't support svh */
    height: 100vh !important;
    height: calc(var(--vh, 1vh) * 100) !important;
    transform: none !important;
    border: none !important;
    border-radius: 0 !important;
    /* Le centrage se fait avec flexbox dans la classe principale */
}

/* Ciblage spécifique de l'élément mobileMenu */
#mobileMenu.offcanvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    /* Use small viewport height for mobile browsers */
    height: 100svh !important;
    /* Fallback for browsers that don't support svh */
    height: 100vh !important;
    height: calc(var(--vh, 1vh) * 100) !important;
    transform: none !important;
    margin: 0 !important;
    /* padding: 0 !important; */
    border: none !important;
    border-radius: 0 !important;
    /* Overlay semi-transparent + flou d'arrière-plan */
    background: rgba(0, 0, 0, 0.35) !important;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    /* Ensure proper centering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Handle safe areas */
    padding: env(safe-area-inset-top, 17px) env(safe-area-inset-right, 17px) env(safe-area-inset-bottom, 17px) env(safe-area-inset-left, 17px) !important;
}

/* Search Offcanvas */
.search__offcanvas {
    min-height: auto !important;
    border-bottom: 1px solid #dee2e6;
}

.search__offcanvas .offcanvas-header {
    padding: 1rem;
    background-color: #f8f9fa;
}

.search__container {
    flex-grow: 1;
}

.search__container .search-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.search__container .search-input {
    flex-grow: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem 1rem;
}

.search__container .search-submit {
    white-space: nowrap;
    padding: 0.5rem 1rem;
}

/* Mobile Menu Offcanvas - Design centré personnalisé URUS */
.urus-mobile-menu,
#mobileMenu {
    /* Override Bootstrap offcanvas positioning */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    border: none !important;
    background: rgba(0, 0, 0, 0.35) !important;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    /* Overlay semi-transparent */
    font-family: 'Overpass', sans-serif;
    font-weight: 300;

    /* Centrage avec flexbox */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;

    /* Override Bootstrap transform */
    transform: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

/* États d'affichage */
.urus-mobile-menu:not(.show),
#mobileMenu:not(.show) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.urus-mobile-menu.show,
#mobileMenu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.urus-mobile-menu .offcanvas-body,
#mobileMenu .offcanvas-body {
    position: relative;
    background: transparent;
    height: auto;
    width: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100vw;
    max-height: 100vh;
}

/* Desktop: remove flex centering in offcanvas-body */
@media (min-width: 992px) {

    .urus-mobile-menu .offcanvas-body,
    #mobileMenu .offcanvas-body {
        display: block !important;
        align-items: unset !important;
        justify-content: unset !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* Custom menu container - Centré et responsive avec animation */
.urus-custom-menu {
    position: relative;
    width: min(356px, calc(100vw - 34px));
    /* 356px max, sinon 100vw - 34px pour marges latérales de 17px */
    height: min(811px, calc(100vh - 34px));
    /* 811px max, sinon 100vh - 34px pour marges haut/bas de 17px */
    max-width: 90vw;
    max-height: 95vh;

    /* Animation d'apparition */
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation quand le menu est visible */
.urus-mobile-menu.show .urus-custom-menu,
#mobileMenu.show .urus-custom-menu {
    transform: scale(1);
    opacity: 1;
}

/* Règle spécifique pour forcer le centrage et le flou de l'élément mobileMenu */
div#mobileMenu.offcanvas.urus-mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.35) !important;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1050 !important;
}

/* Desktop: container aligné à gauche comme sur la maquette */
@media (min-width: 992px) {

    div#mobileMenu.offcanvas.urus-mobile-menu,
    .urus-mobile-menu,
    #mobileMenu {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 0 !important;
        /* Override flexbox centering on desktop */
        display: block !important;
    }

    .urus-custom-menu {
        margin: 0 !important;
        width: 50vw !important;
        height: 100vh !important;
        height: 100svh !important;
        height: calc(var(--vh, 1vh) * 100) !important;
    }
}

/* Main menu background - Maintenant le conteneur principal */
.menu-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Close button */
.close-button {
    position: absolute;
    left: 21px;
    /* Proportionnel: 38px sur 356px = ~21px sur 100% */
    top: 40px;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    z-index: 10;
}

.close-icon {
    width: 8px;
    height: 8px;
    position: relative;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background: #000;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Section headers */
.section-header {
    position: absolute;
    font-family: 'Overpass', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #000000;
    left: 21px;
    /* Proportionnel */
}

.pour-elle {
    /* top: 78px; */
}

.pour-lui {
    /* top: 161px; */
}

.salon-header {
    top: 242px;
}

/* Menu items */
.menu-item {
    position: absolute;
    font-family: 'Overpass', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #000000;
    left: 21px;
    /* Proportionnel */
    cursor: pointer;
}

.menu-item a {
    color: inherit;
    text-decoration: none;
}

.menu-item:hover,
.menu-item a:hover {
    color: #666;
}

.location-luxe-elle {
    top: 102px;
}

.location-premium-elle {
    top: 120px;
}

.location-luxe-lui {
    top: 185px;
}

.salon-rdv {
    top: 266px;
}

.se-connecter {
    top: 327px;
}

.wishlist {
    top: 351px;
}

.contact {
    top: 375px;
}

/* Divider lines */
.divider {
    position: absolute;
    width: calc(100% - 42px);
    /* Responsive: largeur totale - marges */
    height: 1px;
    left: 21px;
    /* Proportionnel */
    background: #000000;
}

.divider-1 {
    top: 61px;
}

.divider-2 {
    top: 290px;
}

/* Zone breadcrumb + scroll pour l'arborescence dynamique */
.menu-breadcrumb {
    position: absolute;
    left: 21px;
    right: 21px;
    top: 72px;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #000;
}

.urus-menu__back {
    background: none;
    border: none;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
}

.urus-menu__path {
    color: #000;
    font-weight: 400;
    padding-top: 3px;
}

.menu-scroll {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 100px;
    /* sous le breadcrumb */
    bottom: 90px;
    /* au-dessus des boutons */
    overflow-y: auto;
    padding: 0 5px 20px;
}

/* Adapter le menu mobile du module ps_mainmenu à notre design */
.urus-menu-dynamic .main-menu__mobile {
    height: 100%;
}

.urus-menu-dynamic .main-menu__mobile .menu {
    max-width: none;
    padding: 0;
}

.urus-menu-dynamic .menu__list {
    list-style: none;
    padding: 0 5px;
    margin: 0;
}

.urus-menu-dynamic .menu__list>li {
    border-bottom: 1px solid #f0f0f0;
}

.urus-menu-dynamic .menu__list>li:last-child {
    border-bottom: none;
}

.urus-menu-dynamic .menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.urus-menu-dynamic .menu__link:hover {
    background: #f8f9fa;
    color: #000;
}

.urus-menu-dynamic .main-menu__toggle-child {
    padding: 8px;
    cursor: pointer;
}

.urus-menu-dynamic .material-icons {
    font-size: 18px;
    color: #999;
}

/* Etat désactivé (gris non cliquable) */
.urus-menu-dynamic .is-disabled,
.urus-menu-dynamic [aria-disabled="true"] {
    color: #9e9e9e !important;
    pointer-events: none;
}

/* Bottom button container */
.bottom-buttons {
    position: absolute;
    width: calc(100% - 32px);
    /* Responsive */
    height: 37px;
    left: 16px;

    bottom: 16px !important;
    /* Position au dessus du bord avec marge */
    background: #000000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 4px;
    box-sizing: border-box;
    /* position: relative; */
    /* Important pour l'indicateur */
    z-index: 5;

}

/* Sliding indicator - Dimensions responsive avec ajustement selon l'onglet */
.button-indicator {
    position: absolute;
    height: 29px;
    background: #FFFFFF;
    border-radius: 5px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    left: 2px;
    /* Petit décalage pour centrer */

    /* Par défaut (location active) - texte plus court */
    width: calc(50% - 5px);
}

.button-indicator.vintage-active {
    /* Vintage & Seconde Main active - texte plus long, besoin de plus d'espace */
    width: calc(50% - 2px);
    transform: translateX(calc(96%));
    /* Position ajustée pour le second onglet */
}

/* Button styles */
.tab-button {
    position: relative;
    width: 50%;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
    font-family: 'Overpass', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

.tab-button.active {
    color: #000000;
}

.tab-button:not(.active) {
    color: #FFFFFF;
}

.location-tab {
    border-radius: 5px 0 0 5px;
}

.vintage-tab {
    border-radius: 0 5px 5px 0;
}

/* Header buttons improvements */
.urus-header__menu-btn,
.urus-header__search-btn {
    transition: all 0.2s ease;
}

.urus-header__menu-btn:hover,
.urus-header__search-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.urus-header__menu-btn:active,
.urus-header__search-btn:active {
    transform: scale(0.95);
}

/* =============================== */
/* UMENU - New burger UI from scratch
/* =============================== */

/* Panel container */
.umenu-panel {
    position: relative;
    /* Mobile: remplir presque tout l'espace avec des bords fins */
    width: calc(100vw - 20px);
    height: calc(100vh - 40px);
    height: calc(100svh - 40px);
    height: calc(var(--vh, 1vh) * 100 - 40px);
    /* Position avec marges de 10px */
    margin: 20px 10px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 40px);
    max-height: calc(100svh - 40px);
    max-height: calc(var(--vh, 1vh) * 100 - 40px);
    /* Evite l'effet de flou/épaisseur variable des lignes (pas de scale) */
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    /* Nouveau layout fluide */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    /* Espacements responsives + safe-area iOS */
    --umenu-gap-x: 16px;
    --umenu-gap-y: 16px;
    --umenu-safe-top: env(safe-area-inset-top, 0px);
    --umenu-safe-bottom: env(safe-area-inset-bottom, 0px);
    --umenu-safe-left: env(safe-area-inset-left, 0px);
    --umenu-safe-right: env(safe-area-inset-right, 0px);
    padding: calc(var(--umenu-gap-y) + var(--umenu-safe-top)) calc(var(--umenu-gap-x) + var(--umenu-safe-right)) calc(var(--umenu-gap-y) + var(--umenu-safe-bottom)) calc(var(--umenu-gap-x) + var(--umenu-safe-left));
    overflow: hidden;
}

#mobileMenu.show .umenu-panel {
    transform: translateY(0);
    opacity: 1;
}

.umenu-panel__bg {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.umenu-panel>*:not(.umenu-panel__bg) {
    position: relative;
    z-index: 1;
}

.umenu-close {
    font-size: 14px;
    background: none;
    border: 0;
    color: #000;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 4px 0;
}

.umenu-breadcrumb {
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #000;
    margin: 8px 0 10px;
}

.urus-menu__back {
    background: none;
    border: 0;
    font-size: 15px;
    line-height: 1;
    padding: 0 2px;
    cursor: pointer;
    text-decoration: none;
}

.umenu-divider {
    width: 100%;
    height: 0.5px;
    background: #000;
    margin: 10px 0;
    /* Pixel snapping pour garder 1px net sur tous DPIs */
    transform: translateZ(0);
}

.umenu-divider--top,
.umenu-divider--middle {
    top: auto;
    left: auto;
}

.umenu-scroll {
    flex: 1 1 0;
    overflow-y: auto;
    overflow-x: hidden;
    /* Better scrolling on mobile */
    -webkit-overflow-scrolling: touch;
    /* Ensure minimum space for scrollable content */
    min-height: 200px;
    /* Add some padding for better visual spacing */
    padding: 0 0 8px 0;
}

.umenu-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.umenu-group {
    margin: 10px 0 14px;
}

.umenu-group__title {
    /* padding: 8px 6px 4px; */
    padding-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.umenu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1px 6px;
    color: #000;
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    /* reset native button styles */
    background: transparent;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    text-align: left;
}

.umenu-item:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.umenu-item:hover {
    color: #666;
    background: #f8f9fa;
}

.umenu-item__chevron {
    color: #999;
    font-size: 18px;
}

.umenu-group__title.is-disabled {
    color: #9e9e9e;
}

.is-disabled {
    color: #9e9e9e !important;
    pointer-events: none;
}

.umenu-extra {
    /* margin-top: auto; */
    /* Pushes to bottom within flex container */
    /* flex-shrink: 0; */
    /* Prevent shrinking when space is limited */
}

.umenu-extra__title {
    font-size: 12px;
    font-weight: bold;
    /* margin: 12px 0; */
}

.umenu-extra__link {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 0;
}

.umenu-extra__link:hover {
    color: #666;
}

.umenu-toggle {
    position: static;
    /* dans le flux */
    align-self: stretch;
    /* largeur = largeur intérieure du panel */
    margin-top: auto;
    /* colle en bas */
    height: 37px;
    background: #000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 4px;
    box-sizing: border-box;
    z-index: 5;
}

.umenu-toggle__indicator {
    position: absolute;
    left: 5px;
    height: 29px;
    width: calc(50% - 5px);
    background: #fff;
    border-radius: 5px;
    transition: transform .3s ease, width .3s ease;
}

.umenu-toggle__indicator.vintage-active {
    width: calc(50% - 2px);
    transform: translateX(calc(97%));
}

.umenu-toggle__btn {
    width: 50%;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    cursor: pointer;
    z-index: 2;
}

.umenu-toggle__btn.is-active {
    color: #000;
}

@media (min-width: 992px) {
    #mobileMenu {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        /* Position the panel on the left side on desktop */
        padding: 0 !important;
        /* Remove padding to allow full control */
    }

    .umenu-panel {
        width: calc(50vw - 10px) !important;
        /* Exactement la moitié du viewport moins 10px (5px de chaque côté) */
        height: calc(100vh - 10px) !important;
        height: calc(100svh - 10px) !important;
        height: calc(var(--vh, 1vh) * 100 - 10px) !important;
        max-width: calc(50vw - 10px) !important;
        max-height: calc(100vh - 10px) !important;
        max-height: calc(100svh - 10px) !important;
        max-height: calc(var(--vh, 1vh) * 100 - 10px) !important;
        /* Marge de 5px sur tous les côtés */
        margin: 0 !important;
        transform: translateY(0) !important;
        /* Espacé de 5px du bord gauche et du haut */
        position: absolute !important;
        left: 5px !important;
        top: 5px !important;
        border-radius: 6px !important;
        /* Restaurer le border-radius pour un aspect plus propre */
        /* Pas de padding interne pour occuper toute la largeur */
        --umenu-gap-x: 24px;
        --umenu-gap-y: 24px;
        padding: 24px !important;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .umenu-panel {
        /* Mobile petit écran: marges encore plus fines */
        width: calc(100vw - 16px);
        height: calc(100vh - 32px);
        height: calc(100svh - 32px);
        height: calc(var(--vh, 1vh) * 100 - 32px);
        margin: 16px 8px;
        max-width: calc(100vw - 16px);
        max-height: calc(100vh - 32px);
        max-height: calc(100svh - 32px);
        max-height: calc(var(--vh, 1vh) * 100 - 32px);
        /* Tighter spacing on mobile */
        --umenu-gap-x: 12px;
        --umenu-gap-y: 12px;
    }

    .urus-custom-menu {
        width: min(320px, calc(100vw - 20px));
        /* Plus petit sur mobile */
        height: min(700px, calc(100vh - 40px));
    }

    /* Ajuster les tailles de police pour mobile */
    .section-header,
    .menu-item {
        font-size: 11px;
        line-height: 14px;
    }

    .close-button {
        font-size: 14px;
    }

    /* Réduire l'espacement vertical sur mobile */
    .pour-elle {
        /* top: 70px; */
    }

    .salon-header {
        top: 218px;
    }

    .location-luxe-elle {
        top: 92px;
    }

    .location-premium-elle {
        top: 108px;
    }

    .location-luxe-lui {
        top: 167px;
    }

    .salon-rdv {
        top: 240px;
    }

    .se-connecter {
        top: 295px;
    }

    .wishlist {
        top: 317px;
    }

    .contact {
        top: 339px;
    }

    .divider-1 {
        top: 61px;
    }

    .divider-2 {
        top: 271px;
    }

    .search__offcanvas .offcanvas-header {
        padding: 0.75rem;
    }

    /* Improve scroll behavior on small screens */
    .umenu-scroll {
        min-height: 150px;
    }
}

@media (max-width: 400px) {
    .umenu-panel {
        /* Très petits écrans: marges minimales mais présentes */
        width: calc(100vw - 12px);
        height: calc(100vh - 24px);
        height: calc(100svh - 24px);
        height: calc(var(--vh, 1vh) * 100 - 24px);
        margin: 12px 6px;
        max-width: calc(100vw - 12px);
        max-height: calc(100vh - 24px);
        max-height: calc(100svh - 24px);
        max-height: calc(var(--vh, 1vh) * 100 - 24px);
        /* Even tighter spacing */
        --umenu-gap-x: 8px;
        --umenu-gap-y: 8px;
    }

    .urus-custom-menu {
        width: calc(100vw - 16px);
        height: calc(100vh - 32px);
    }

    .section-header,
    .menu-item {
        font-size: 13px;
        line-height: 13px;
    }

    /* Make the scroll area more prominent on very small screens */
    .umenu-scroll {
        min-height: 120px;
    }
}

/* Special handling for landscape orientation on small screens */
@media (max-height: 500px) and (orientation: landscape) {
    .umenu-panel {
        height: calc(100svh - 40px);
        height: calc(100vh - 40px);
        height: calc(var(--vh, 1vh) * 100 - 40px);
        max-height: calc(100svh - 40px);
        max-height: calc(100vh - 40px);
        max-height: calc(var(--vh, 1vh) * 100 - 40px);
        --umenu-gap-x: 8px;
        --umenu-gap-y: 6px;
    }

    .umenu-scroll {
        min-height: 80px;
    }

    .umenu-close {
        font-size: 12px;
        padding: 2px 0;
    }

    .umenu-divider {
        margin: 6px 0;
    }
}

/* Very constrained height environments */
@media (max-height: 400px) {
    .umenu-panel {
        height: calc(100svh - 20px);
        height: calc(100vh - 20px);
        height: calc(var(--vh, 1vh) * 100 - 20px);
        max-height: calc(100svh - 20px);
        max-height: calc(100vh - 20px);
        max-height: calc(var(--vh, 1vh) * 100 - 20px);
        --umenu-gap-x: 6px;
        --umenu-gap-y: 4px;
    }

    .umenu-scroll {
        min-height: 60px;
    }

    .umenu-extra {
        font-size: 11px;
    }
}

.mobile-menu__main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__main li {
    border-bottom: 1px solid #eee;
}

.mobile-menu__main a {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.mobile-menu__main a:hover {
    color: #0066cc;
    background-color: #f8f9fa;
    padding-left: 0.5rem;
    transition: all 0.2s ease;
}

.mobile-menu__user,
.mobile-menu__nav {
    margin-top: 1rem;
}

.mobile-menu__user .btn,
.mobile-menu__nav .btn {
    justify-content: flex-start;
    text-align: left;
}

.mobile-menu__user .material-icons,
.mobile-menu__nav .material-icons {
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .urus-mobile-menu {
        width: 280px;
    }

    .search__offcanvas .offcanvas-header {
        padding: 0.75rem;
    }
}

/* Animation improvements */
.offcanvas.show {
    transform: none;
}

.offcanvas {
    transition: transform 0.3s ease-in-out;
}

/* Header buttons improvements */
.urus-header__menu-btn,
.urus-header__search-btn {
    transition: all 0.2s ease;
}

.urus-header__menu-btn:hover,
.urus-header__search-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.urus-header__menu-btn:active,
.urus-header__search-btn:active {
    transform: scale(0.95);
}