/* Voucher Section Styles */
.voucher-section {
    padding: 60px 0;
    background-color: #fff;
}

.voucher-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

/* Voucher Categories */
.voucher-categories {
    display: flex;
    gap: 40px;
    position: relative;
}

/* Vertical Line */
.voucher-categories::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1px;
    background-color: #e0e0e0;
}

.voucher-category {
    flex: 1;
}

.voucher-category h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* Honda Vouchers */
.honda-vouchers .voucher-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.honda-vouchers .voucher-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.honda-vouchers .voucher-item {
    text-align: center;
}

.honda-vouchers .voucher-item img {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.honda-vouchers .voucher-item img:hover {
    transform: scale(1.05);
}

.honda-vouchers .voucher-details {
    margin-top: 5px;
    text-align: center;
}

.honda-vouchers .voucher-details h4 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Belanja Vouchers */
.belanja-vouchers .voucher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.belanja-vouchers .voucher-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.belanja-vouchers .voucher-item {
    text-align: center;
}

.belanja-vouchers .voucher-item img {
    width: 100%;
    max-width: 160px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.belanja-vouchers .voucher-item img:hover {
    transform: scale(1.05);
}

.belanja-vouchers .voucher-details {
    margin-top: 5px;
}

.belanja-vouchers .voucher-details h4 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Note */
.voucher-note {
    text-align: right;
    margin-top: 20px;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .voucher-categories {
        flex-direction: column;
        gap: 40px;
    }

    .voucher-categories::after {
        display: none;
    }

    .honda-vouchers .voucher-grid,
    .honda-vouchers .voucher-grid-bottom,
    .belanja-vouchers .voucher-grid,
    .belanja-vouchers .voucher-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .honda-vouchers .voucher-grid,
    .honda-vouchers .voucher-grid-bottom,
    .belanja-vouchers .voucher-grid,
    .belanja-vouchers .voucher-grid-bottom {
        grid-template-columns: 1fr;
    }

    .voucher-item img {
        max-width: 180px;
    }
}
