/* tier-price.css */

/* ============================================================
   WRAPPER
   ============================================================ */
.gam-tier-widget {
    margin: 16px 0 20px;
    font-size: 14px;
}

/* ============================================================
   BẢNG TIER
   ============================================================ */
.gam-tier-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.gam-tier-table thead tr {
    background: #f5f5f5;
}

.gam-tier-table th {
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    color: #555;
    border-bottom: 1px solid #e8e8e8;
    white-space: nowrap;
}

.gam-tier-table td {
    padding: 9px 12px !important;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    transition: background 0.15s;
}

.gam-tier-table tbody tr:last-child td {
    border-bottom: none;
}

/* Row active (đang chọn) */
.gam-tier-table .gam-tier-row.gam-tier-active {
    background: #f0faf4;
}

.gam-tier-table .gam-tier-row.gam-tier-active td {
    color: #2e7d32;
    font-weight: 600;
}

.gam-tier-table .gam-tier-row.gam-tier-active .gam-tier-qty::before {
    content: "▶ ";
    font-size: 10px;
    opacity: 0.7;
}

/* Discount pill */
.gam-disc-pill {
    display: inline-block;
    background: #fdecea;
    color: #c62828;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.gam-tier-row.gam-tier-active .gam-disc-pill {
    background: #c8e6c9;
    color: #1b5e20;
}

.gam-base-label {
    font-size: 11px;
    color: #999;
}

/* ============================================================
   NEXT TIER HINT
   ============================================================ */
.gam-next-tier-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    color: #5d4037;
    margin-bottom: 12px;
    line-height: 1.5;
}

.gam-hint-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    color: #f9a825;
}

/* ============================================================
   QTY SUMMARY
   ============================================================ */
.gam-qty-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.gam-summary-label {
    font-size: 13px;
    color: #666;
    flex-shrink: 0;
}

.gam-summary-total {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.gam-summary-saving {
    font-size: 12px;
    font-weight: 500;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 2px 10px;
    border-radius: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
    .gam-tier-table th,
    .gam-tier-table td {
        padding: 7px 8px !important;
        font-size: 13px;
    }

    .gam-qty-summary {
        gap: 6px;
    }

    .gam-summary-total {
        font-size: 16px;
    }
}


.ast-sticky-add-to-cart.bottom.is-active .gam-tier-widget{
    display:none;
}