/* =============================================
   SOSYAL MEDYA ÜRÜN DETAY
   ============================================= */

.page-sosyal-urun-detay .hero {
    min-height: clamp(300px, 20vw + 120px, 380px);
}

.page-sosyal-urun-detay .hero__bg img {
    object-position: center right;
}

.page-sosyal-urun-detay .hero__bg::after {
    background: linear-gradient(
        180deg,
        rgba(76, 29, 149, 0.35) 0%,
        rgba(8, 14, 28, 0.55) 100%
    );
}

.hero-stack--sosyal-urun-detay {
    position: relative;
    top: -11rem;
    margin-bottom: -11rem;
    z-index: 20;
    width: 100%;
    background: transparent;
    padding-bottom: 2rem;
}

.page-sosyal-urun-detay .site-main--sosyal-urun-detay {
    background: transparent;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- Hero banner ---- */

.sosyal-urun-hero {
    width: 100%;
    margin-top: -1.75rem;
    margin-bottom: 1.75rem;
}

.sosyal-urun-hero__card {
    position: relative;
    overflow: hidden;
    min-height: clamp(240px, 24vw + 120px, 320px);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.sosyal-urun-hero__media {
    position: absolute;
    inset: 0;
}

.sosyal-urun-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.sosyal-urun-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 64, 175, 0.45) 0%,
        rgba(30, 58, 138, 0.62) 100%
    );
}

.sosyal-urun-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    min-height: inherit;
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
}

.sosyal-urun-hero__title {
    color: #ffffff;
    font-size: clamp(1.5rem, 1.5vw + 1rem, 2.125rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.sosyal-urun-hero__desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.8125rem, 0.25vw + 0.75rem, 0.9375rem);
    line-height: 1.6;
    max-width: 40rem;
    margin-inline: auto;
}

.sosyal-urun-hero__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.35rem;
}

.sosyal-urun-hero__stars {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: #facc15;
    font-size: 1.35rem;
    line-height: 1;
}

.sosyal-urun-hero__rating-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}

.sosyal-urun-detay {
    width: 100%;
}

/* ---- Hizmet grid ---- */

.sosyal-service-panel {
    --service-accent: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 100%);
    --service-shadow: rgba(221, 42, 123, 0.28);
    --service-border-hover: #f9c5dc;
    --service-hint-hover: #c13584;
    --service-arrow-bg: #fdf2f8;
    --service-arrow-color: #c13584;

    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.sosyal-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    list-style: none;
}

.sosyal-service-grid__item {
    animation: sosyalServiceIn 0.45s ease both;
    animation-delay: var(--item-delay, 0ms);
}

@keyframes sosyalServiceIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sosyal-service-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 72px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: 1px solid #fce7f3;
    background: #ffffff;
    text-decoration: none;
    color: #0f172a;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sosyal-service-item::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--service-accent);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.sosyal-service-item:hover {
    transform: translateY(-2px);
    border-color: var(--service-border-hover);
    box-shadow: 0 14px 32px rgba(221, 42, 123, 0.12);
}

.sosyal-service-item:hover::before {
    opacity: 1;
}

.sosyal-service-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--service-accent);
    color: #ffffff;
    font-size: 1.05rem;
    box-shadow: 0 8px 18px var(--service-shadow);
    transition: transform 0.22s ease;
}

.sosyal-service-item__icon i {
    font-size: 1.35rem;
    line-height: 1;
}

.sosyal-service-item:hover .sosyal-service-item__icon {
    transform: scale(1.06);
}

.sosyal-service-item__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sosyal-service-item__label {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.sosyal-service-item__hint {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.22s ease;
}

.sosyal-service-item:hover .sosyal-service-item__hint {
    color: var(--service-hint-hover);
}

.sosyal-service-item__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--service-arrow-bg);
    color: var(--service-arrow-color);
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.sosyal-service-item:hover .sosyal-service-item__arrow {
    background: var(--service-accent);
    color: #ffffff;
    transform: translateX(2px);
}

.page-sosyal-urun-detay .faq-section {
    padding-top: 1.15rem;
}

@media (max-width: 767px) {
    .sosyal-service-item {
        min-height: 68px;
        padding: 0.75rem 0.85rem;
    }

    .sosyal-service-item__label {
        font-size: 0.875rem;
    }

    .sosyal-service-item__hint {
        display: none;
    }
}

@media (min-width: 768px) {
    .sosyal-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }
}

@media (min-width: 1200px) {
    .sosyal-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.9rem 1rem;
    }
}
