.pay-later-gallery-section {
    background: linear-gradient(180deg, #2B2B2B 0%, #000000 100%);
    color: #fff;
    padding-top: 60px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.pay-later-content {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.pay-later-subtitle {
    color: #d0bf95;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pay-later-title {
    font-family: serif;
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.pay-later-text {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .pay-later-title {
        font-size: 32px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}