/* Product Price Alert Styles */
.price-alert {
    background-color: #d4edda;
    border: 2px dashed #28a745;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-alert-icon {
    background-color: #28a745;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-alert-icon span {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.price-alert-content {
    flex: 1;
}

.price-alert-title {
    font-weight: bold;
    color: #155724;
    margin-bottom: 5px;
}

.price-alert-text {
    color: #155724;
    font-size: 0.9em;
}

/* Price tiers table */
.price-tiers-container {
    margin: 20px 0;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.price-tiers-title {
    padding: 12px 16px;
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    color: #212529;
}

.price-tiers-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-tiers-table thead tr {
    background: #f2f2f2;
}

.price-tiers-table th {
    padding: 10px 16px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #dee2e6;
}

.price-tiers-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #212529;
}

.price-tiers-table tr:last-child td {
    border-bottom: none;
}

/* Zebra striping leve */
.price-tiers-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.tier-price {
    color: #1a7a2e;
    font-weight: 700;
}

/* Highlight tier ativo */
.price-tiers-table tr.active-tier td {
    background: #eaf6ec !important;
    font-weight: 700;
}

/* Loading state */
.price-tiers-container.loading .price-tiers-table {
    opacity: 0.4;
    pointer-events: none;
}

.tier-consult-link {
    color: #e67e22;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.tier-consult-link:hover {
    text-decoration: underline;
}