/* Paylaş Modal - Resim tasarımı: koyu mavi başlık, beyaz içerik, grid butonlar */
.su-share-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.su-share-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.su-share-modal.is-open .su-share-modal__content {
    transform: scale(1);
}

.su-share-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.su-share-modal__content {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

/* Koyu mavi başlık - sarı çizgi altında */
.su-share-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--selcuk-dark-blue, #0d2d5e);
    border-bottom: 3px solid var(--selcuk-yellow, #ffc90d);
    flex-shrink: 0;
}

.su-share-modal__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.su-share-modal__title-icon {
    color: var(--selcuk-yellow, #ffc90d);
    font-size: 1rem;
}

.su-share-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.su-share-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.su-share-modal__close i {
    font-size: 1.25rem;
}

/* Beyaz içerik alanı */
.su-share-modal__body {
    padding: 1.5rem;
}

.su-share-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.su-share-modal__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    min-height: 90px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    font-family: inherit;
}

.su-share-modal__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background: var(--selcuk-yellow, #ffc90d);
}

.su-share-modal__item:hover .su-share-modal__icon,
.su-share-modal__item:hover .su-share-modal__label {
    color: #2c3e50 !important;
}

.su-share-modal__item--facebook .su-share-modal__icon {
    color: #1877f2;
}

.su-share-modal__item--x .su-share-modal__icon {
    color: #000;
}

.su-share-modal__item--linkedin .su-share-modal__icon {
    color: #0a66c2;
}

.su-share-modal__item--whatsapp .su-share-modal__icon {
    color: #25d366;
}

.su-share-modal__item--copy .su-share-modal__icon {
    color: #666;
}

.su-share-modal__icon {
    font-size: 1.75rem;
}

.su-share-modal__label {
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Linki Kopyala - ortada, tek sütun */
.su-share-modal__item--copy {
    grid-column: 1 / -1;
}
@media (min-width: 400px) {
    .su-share-modal__item--copy {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .su-share-modal__grid {
        gap: 0.5rem;
        padding: 0;
    }

    .su-share-modal__body {
        padding: 1rem;
    }

    .su-share-modal__item {
        min-height: 80px;
        padding: 0.75rem 0.5rem;
    }

    .su-share-modal__icon {
        font-size: 1.5rem;
    }

    .su-share-modal__label {
        font-size: 0.75rem;
    }
}
