/* ===== PREIS GALERIE ===== */

.price-gallery-area {
    padding: 80px 0;
    background: #ffffff;
}

.section-title span {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 50px;
}

.price-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-image {
    width: 100%;
    max-width: 900px;   /* nu devine uriașă pe desktop */
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.price-image:hover {
    transform: scale(1.02);
}

/* ===== MOBILE OPTIMIZATION ===== */

@media (max-width: 768px) {
    .price-gallery-area {
        padding: 50px 15px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .price-image {
        border-radius: 10px;
    }
}