/* ═══════════════════════════════════════
   Altunsa Product Banner Widget
   ═══════════════════════════════════════ */

.altunsa-pb-section {
    position: relative;
    width: 100%;
    height: 293px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.altunsa-pb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.altunsa-pb-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.altunsa-pb-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.altunsa-pb-text {
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0 20px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.altunsa-pb-text p {
    margin: 0;
}

.altunsa-pb-text b,
.altunsa-pb-text strong {
    font-weight: 700;
}

/* ── Scroll Animation ── */
.altunsa-pb-section[data-altunsa-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.altunsa-pb-section[data-altunsa-animate].altunsa-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Elementor editörde animasyon göster */
.elementor-editor-active .altunsa-pb-section[data-altunsa-animate] {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .altunsa-pb-text {
        font-size: 1.8rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .altunsa-pb-text {
        font-size: 1.4rem;
        padding: 10px;
        line-height: 1.4;
    }
}
