/* ===== TRANG KHO VOUCHER ===== */

/* Voucher section */
.voucher-section {
    padding: 20px 135px 40px;
}

/* 4 cột */
.voucher-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 16px;
}

/* Card voucher — dùng ảnh khung làm nền */
.voucher-card {
    background-image: url('../images/voucher-frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 16px 12px;
    min-height: 130px;
    gap: 0;
}

/* Phần trái: nội dung */
.voucher-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 10px;
}

.voucher-desc {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
}

.voucher-apply,
.voucher-code {
    font-size: 11px;
    color: #555555;
}

/* Đường kẻ phân cách nét đứt */
.voucher-divider {
    width: 1px;
    align-self: stretch;
    border-left: 1.5px dashed #7ABEFA;
    margin: 0 10px;
    flex-shrink: 0;
}

/* Phần phải: giảm giá + nút */
.voucher-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 80px;
}

.voucher-discount {
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    line-height: 1.4;
}

.voucher-btn {
    background-color: #7ABEFA;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.voucher-btn:hover {
    opacity: 0.85;
}

.voucher-btn--copied {
    background-color: #4caf50 !important;
}
