/* Smart Discount Manager - Frontend Styles */

/* Discount Table */
.sdm-discount-table-wrapper {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 4px;
}

.sdm-discount-table-title {
    margin: 0 0 15px;
    font-size: 16px;
    color: #333;
}

.sdm-discount-table {
    width: 100%;
    border-collapse: collapse;
}

.sdm-discount-table th,
.sdm-discount-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.sdm-discount-table th {
    background: #e9ecef;
    font-weight: 600;
}

.sdm-discount-table tr:last-child td {
    border-bottom: none;
}

.sdm-discount-table tr:hover td {
    background: #f5f5f5;
}

/* You Save */
.sdm-you-save th,
.sdm-you-save td {
    color: #28a745;
}

.sdm-savings {
    color: #28a745;
    font-size: 1.1em;
}

/* Free Product */
.sdm-free-text {
    display: inline-block;
    padding: 2px 8px;
    background: #28a745;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

/* Sale Badge */
.sdm-sale-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    margin-left: 10px;
}

/* Price Display */
.sdm-original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.sdm-discounted-price {
    color: #e74c3c;
    font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .sdm-discount-table th,
    .sdm-discount-table td {
        padding: 8px;
        font-size: 13px;
    }
}
