.side-panel {
    position: fixed !important;
    top: 0 !important;
    right: -440px !important;
    width: min(420px, 92vw) !important;
    height: 100vh !important;
    z-index: 10000 !important;
    padding: 24px 44px 42px !important;
    overflow-y: auto !important;
    color: #111;
    background:
        radial-gradient(circle at 82% 8%, rgb(255, 255, 255), transparent 34%),
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, .95), transparent 38%),
        linear-gradient(135deg, #fffdf8 0%, #f7f0e6 54%, #fffaf2 100%);
    box-shadow: -28px 0 80px rgba(0, 0, 0, .18);
    transition: right .55s cubic-bezier(.16, 1, .3, 1) !important;
}

.side-panel.is-open {
    right: 0 !important;
}

.backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    background: rgba(0, 0, 0, .48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .35s ease;
}

.backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.panel-open {
    overflow: hidden;
}

.panel-close {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    color: #111;
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
}

.panel-logo-wrap {
    text-align: center;
    margin: 74px 0 52px;
}

.panel-logo {
    width: 112px;
    height: 112px;
    margin: 0 auto 22px;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    color: #f3c56f;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: 2px;
    background: linear-gradient(145deg, #16110a, #4a3212);
}

.panel-title {
    margin: 0;
    color: #111;
    font-size: 30px;
    line-height: 1.5;
    font-weight: 950;
}

.panel-subtitle {
    margin: 6px 0 0;
    color: #6d6256;
    font-size: 16px;
    line-height: 2;
    font-weight: 850;
}

.panel-separator {
    height: 1px;
    margin: 34px 0 42px;
    background: linear-gradient(to left, transparent, rgba(176, 138, 46, .42), transparent);
}

.panel-info-card {
    padding: 0;
    margin: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.panel-info-title {
    margin: 0 0 34px;
    color: #9b741f;
    font-size: 22px;
    font-weight: 950;
    text-align: center;
}

.info-row {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.info-row i {
    color: #9b741f;
    font-size: 25px;
}

.info-label {
    color: #7a7065;
    font-size: 16px;
    font-weight: 900;
}

.info-value {
    direction: ltr;
    color: #111;
    font-size: 16px;
    font-weight: 950;
    white-space: nowrap;
}

.social-title {
    margin: 0 0 30px;
    color: #5d5348;
    font-size: 17px;
    font-weight: 950;
    text-align: center;
}

.social-list {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-link {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, #4b3513, #9b741f);
    text-decoration: none;
}

.social-link i {
    font-size: 27px;
    color: #fff;
}

@media(max-width:520px) {
    .side-panel {
        width: 92vw !important;
        padding: 18px 30px 36px !important;
    }

    .info-row {
        grid-template-columns: 30px 1fr;
    }

    .info-value {
        grid-column: 2;
        text-align: right;
    }

    .social-list {
        gap: 14px;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }
}
/* FORCE FIX - SIDE PANEL OPEN */
.side-panel {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: min(420px, 92vw) !important;
    height: 100vh !important;
    z-index: 999999 !important;
    transform: translateX(110%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: transform .55s cubic-bezier(.16, 1, .3, 1) !important;
}

.side-panel.is-open {
    transform: translateX(0) !important;
}

.backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999998 !important;
    background: rgba(0, 0, 0, .48) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .35s ease;
}

.backdrop.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}