.voucher-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.item-voucher {
  display: flex;
  align-items: stretch;
  
}

.item-voucher .voucher-info {
  padding-left: 0.8rem;
  font-size: 0.85rem;
  border: 1px solid #cccccc;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.item-voucher .coupon-code {
  /* margin-bottom: 1rem; */
}

.item-voucher .info-apply-date {
  font-size: 0.8rem;
  color: #a7a7a7

}

.icon-voucher-wrapper {
  position: relative;
  width: 7rem;

}

.icon-voucher-wrapper img {
  width: 10rem;
  flex-shrink: 1;
}

.icon-voucher-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-voucher-wrapper svg path {
  fill: #fff;
}

.coupon-code {
  width: 100%;
}

.copy_v {
  display: flex;
  align-items: center;
  background: #0c4999;
  border-radius: 7px;
  margin-left: 4px;
  color: #fff;
  padding: 2px 4px;
  font-size: 12px;
  gap: 5px;
  transition: .3s all;
  cursor: pointer;
}

.copy_v svg {
  width: 11px;
}

.copy_v:hover {
  background: #f60f01;
}

.copy_v span {
  margin-top: -3px;
}

.voucher-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 12px;
    max-width: max-content;
    margin: 0.1rem 0;
}
.voucher-badge--active  { background: #e6f4ea; color: #1e7e34; }
.voucher-badge--used    { background: #eceff1; color: #607d8b; }
.voucher-badge--expired { background: #fdecea; color: #c0392b; }

/* Làm mờ voucher đã dùng/hết hạn */
.voucher-item--used,
.voucher-item--expired {
    opacity: 0.55;
}
.voucher-item--used .btn-copy,
.voucher-item--expired .btn-copy {
    pointer-events: none;
    background: #ccc;
}

@media (max-width: 1366px) {
  .voucher-list {
    grid-template-columns: 1fr;
  }
  
}