/* =====================================================================
   OZAN FOOD - "Bize Ulasin" iletisim widget'i
   Buton: sag kenara yapisk, dikey metinli sekme (nettexport tarzi)
   ===================================================================== */

.of-contact__tab {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10050;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    background: var(--of-brand, #1E5AA8);
    color: #fff;
    border: 0;
    border-radius: 12px 0 0 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    transition: background .2s ease;
}
.of-contact__tab:hover { background: var(--of-brand-dark, #164a8c); }
.of-contact__tab svg { width: 20px; height: 20px; flex-shrink: 0; }
.of-contact__tab span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

.of-contact__overlay {
    position: fixed;
    inset: 0;
    z-index: 10060;
    background: rgba(10, 16, 24, .55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}
.of-contact__overlay.is-open { opacity: 1; visibility: visible; }

.of-contact__modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10070;
    width: calc(100vw - 48px);
    max-width: 760px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: var(--of-surface, #fff);
    color: var(--of-text, #26303b);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(10, 16, 24, .3);
    padding: 30px 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -46%);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.of-contact__modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.of-contact__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--of-bg, #f2f0ea);
    color: var(--of-text, #26303b);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.of-contact__close svg { width: 16px; height: 16px; }

.of-contact__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--of-text, #26303b);
    font-family: 'Montserrat', sans-serif;
}

.of-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.of-contact__col-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--of-brand, #1E5AA8);
    margin: 0 0 12px;
    font-family: 'Poppins', sans-serif;
}

.of-contact__list,
.of-contact__social-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.of-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px dashed var(--of-border, #e6e2d8);
}
.of-contact__item:last-child { border-bottom: 0; }
.of-contact__item svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; color: var(--of-brand, #1E5AA8); }
.of-contact__item a { color: var(--of-brand, #1E5AA8); text-decoration: none; font-weight: 600; }
.of-contact__item a:hover { text-decoration: underline; }
.of-contact__item strong { color: var(--of-text, #26303b); }

.of-contact__social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    background: var(--of-bg, #f2f0ea);
    color: var(--of-text, #26303b);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: background .2s ease, color .2s ease;
}
.of-contact__social-link:hover {
    background: var(--of-brand, #1E5AA8);
    color: #fff;
}
.of-contact__social-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.of-contact__social-icon svg { width: 20px; height: 20px; }

@media (max-width: 480px) {
    .of-contact__tab { padding: 12px 7px; gap: 6px; }
    .of-contact__tab span { font-size: 13px; }
    .of-contact__modal { width: calc(100vw - 24px); padding: 22px 18px; }
    .of-contact__grid { grid-template-columns: 1fr; gap: 18px; }
}
