    /* ── DB Mobile Drawer ──────────────────────────────────────── */
    .db-mobile-drawer {
        display: flex;
        flex-direction: column;
        padding: 0 !important;
        overflow-y: auto;
    }

    /* Close button */
    .mobile-nav__close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.15);
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        z-index: 10;
        transition: background .2s ease;
    }
    .mobile-nav__close:hover { background: rgba(178,13,93,.55); border-color: transparent; }

    /* ── Logo section ── */
    .db-drawer__logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 28px 20px 20px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        background: rgba(255,255,255,.02);
    }
    .db-drawer__logo img {
        height: 60px;
        width: auto;
        display: block;
    }

    /* ── Nav links ── */
    .db-drawer__nav {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .db-drawer__nav-list {
        margin: 0;
        padding: 0;
    }
    .db-drawer__nav-list li { margin: 0; }
    .db-drawer__nav-list li a {
        display: flex;
        align-items: center;
        padding: 14px 22px;
        font-size: 15px;
        font-weight: 600;
        color: rgba(255,255,255,.85);
        letter-spacing: .3px;
        border-left: 3px solid transparent;
        transition: color .22s ease, background .22s ease, border-color .22s ease, padding-left .22s ease;
    }
    .db-drawer__nav-list li a:hover,
    .db-drawer__nav-list li a.active {
        color: #ffd29a;
        background: rgba(255,255,255,.04);
        border-left-color: #B20D5D;
        padding-left: 28px;
    }

    /* ── Language switcher ── */
    .db-drawer__lang {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .db-drawer__lang-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 13px 16px;
        border: 1px solid rgba(255,210,154,.25);
        border-radius: 12px;
        background: rgba(255,210,154,.06);
        color: #ffd29a;
        font-size: 14.5px;
        font-weight: 600;
        letter-spacing: .3px;
        cursor: pointer;
        text-align: left;
        transition: background .22s ease, border-color .22s ease;
    }
    .db-drawer__lang-btn:hover {
        background: rgba(178,13,93,.18);
        border-color: rgba(178,13,93,.5);
    }
    .db-drawer__lang-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: rgba(255,255,255,.08);
        flex-shrink: 0;
    }
    .db-drawer__lang-icon img {
        filter: brightness(0) invert(1);
        opacity: .9;
        display: block;
    }
    .db-drawer__lang-label { flex: 1; }
    .db-drawer__lang-arrow {
        font-size: 11px;
        opacity: .6;
        flex-shrink: 0;
    }

    /* ── Contact row ── */
    .db-drawer__contact {
        margin: 0 !important;
        padding: 16px 22px !important;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .db-drawer__contact li {
        font-size: 13px;
        color: rgba(255,255,255,.65);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .db-drawer__contact li i {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: rgba(178,13,93,.25);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: #ffd29a;
        flex-shrink: 0;
    }
    .db-drawer__contact li a {
        color: rgba(255,255,255,.75);
        font-size: 13px;
        transition: color .2s ease;
        word-break: break-all;
    }
    .db-drawer__contact li a:hover { color: #ffd29a; }

    /* ── Social icons ── */
    .db-drawer__social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding: 20px 22px;
        margin-top: auto;
    }
    .db-drawer__social a {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.12);
        color: #fff !important;
        font-size: 15px;
        transition: all .25s ease;
        -webkit-text-fill-color: #fff !important;
    }
    .db-drawer__social a:hover {
        background: linear-gradient(135deg, #B20D5D 0%, #4A0AB4 100%);
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(178,13,93,.4);
    }
