/* Printviy — mobil sağ çekmece menü (pv-mobile-drawer namespace).
   Yalnızca mobil breakpoint'te aktiftir; masaüstü görünümü etkilemez. */
.pv-mobile-drawer {
    --pvmd-mint: #A8E6CF;
    --pvmd-mint-soft: rgba(168, 230, 207, .38);
    --pvmd-black: #111111;
    --pvmd-gray: #666666;
    --pvmd-light: #F5F5F5;
    --pvmd-white: #FFFFFF;
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
}
.pv-mobile-drawer.pv-mobile-drawer--open {
    visibility: visible;
    pointer-events: auto;
}
.pv-mobile-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .55);
    opacity: 0;
    transition: opacity .25s ease;
}
.pv-mobile-drawer--open .pv-mobile-drawer__backdrop {
    opacity: 1;
}
.pv-mobile-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    height: 100dvh;
    width: 88%;
    max-width: 380px;
    background: var(--pvmd-white);
    box-shadow: -10px 0 34px rgba(0, 0, 0, .16);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.pv-mobile-drawer--open .pv-mobile-drawer__panel {
    transform: translateX(0);
}
.pv-mobile-drawer__header {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    border-bottom: 1px solid var(--pvmd-light);
}
.pv-mobile-drawer__logo {
    height: 30px;
    display: block;
}
.pv-mobile-drawer__close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    border-radius: 10px;
    color: var(--pvmd-black);
    cursor: pointer;
}
.pv-mobile-drawer__close:hover,
.pv-mobile-drawer__close:focus-visible {
    background: var(--pvmd-light);
}
.pv-mobile-drawer__nav {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 16px;
}
.pv-mobile-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pv-mobile-drawer__item {
    border-bottom: 1px solid var(--pvmd-light);
}
.pv-mobile-drawer__item-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 10px 16px;
    background: none;
    border: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--pvmd-black);
    text-align: left;
    cursor: pointer;
}
.pv-mobile-drawer__item-toggle:focus-visible,
.pv-mobile-drawer__item--link a:focus-visible,
.pv-mobile-drawer__contact-link:focus-visible,
.pv-mobile-drawer__submenu a:focus-visible {
    outline: 2px solid var(--pvmd-black);
    outline-offset: -2px;
}
.pv-mobile-drawer__item-icon {
    flex: none;
    display: inline-flex;
    color: var(--pvmd-gray);
}
.pv-mobile-drawer__item-label {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: break-word;
}
.pv-mobile-drawer__item-chevron {
    flex: none;
    display: inline-flex;
    color: var(--pvmd-gray);
    transition: transform .2s ease;
}
.pv-mobile-drawer__item-toggle[aria-expanded="true"] .pv-mobile-drawer__item-chevron {
    transform: rotate(90deg);
}
.pv-mobile-drawer__item-toggle[aria-expanded="true"] {
    background: var(--pvmd-mint-soft);
}
.pv-mobile-drawer__submenu {
    list-style: none;
    margin: 0;
    padding: 2px 16px 10px 48px;
    overflow: hidden;
    max-height: 0;
    transition: max-height .28s ease;
}
.pv-mobile-drawer__submenu:not([hidden]) {
    max-height: 600px;
}
.pv-mobile-drawer__submenu li + li {
    margin-top: 2px;
}
.pv-mobile-drawer__submenu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 0;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: var(--pvmd-gray);
    overflow-wrap: break-word;
}
.pv-mobile-drawer__submenu a:hover,
.pv-mobile-drawer__submenu a:focus-visible {
    color: var(--pvmd-black);
}
.pv-mobile-drawer__item--link a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 10px 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--pvmd-black);
}
.pv-mobile-drawer__item--link .pv-mobile-drawer__item-icon {
    color: var(--pvmd-gray);
}
.pv-mobile-drawer__contact {
    flex: none;
    padding: 14px 16px 18px;
}
.pv-mobile-drawer__contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 12px 14px;
    background: var(--pvmd-mint);
    border-radius: 14px;
    color: var(--pvmd-black);
}
.pv-mobile-drawer__contact-icon {
    flex: none;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .55);
    border-radius: 50%;
}
.pv-mobile-drawer__contact-text {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
}
.pv-mobile-drawer__contact-text strong {
    font-weight: 600;
    font-size: 14px;
}
.pv-mobile-drawer__contact-text span {
    font-weight: 500;
    font-size: 13px;
    color: var(--pvmd-black);
    opacity: .8;
}
.pv-mobile-drawer__contact-chevron {
    flex: none;
    display: inline-flex;
}

/* Yalnızca mobil: çekmeceyi tetikleyen mevcut hamburger butonları görünür kalır,
   masaüstünde (>900px) drawer hiçbir zaman açılmaz. */
@media (min-width: 901px) {
    .pv-mobile-drawer {
        display: none !important;
    }
}
@media (max-width: 380px) {
    .pv-mobile-drawer__panel {
        width: 90%;
    }
}

body.pv-mobile-drawer-lock {
    overflow: hidden;
}
