.discounts-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
}

.discounts-list {
    display: grid;
    gap: 12px;
}

.discount-item {
    padding: 15px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.discount-info {
    flex: 1;
}

.discount-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.discount-shop-badge {
    display: inline-block;
    background: #f5f5f5;
    color: #555;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.discount-details {
    font-size: 13px;
    color: #666;
}

.discount-price-section {
    text-align: right;
    background: #fff3e0;
    border: 1px solid #ffb74d;
    border-radius: 8px;
    padding: 10px 15px;
    color: #e65100;
    min-width: 120px;
}

.discount-price-now {
    font-size: 20px;
    font-weight: 700;
    color: #d32f2f;
    line-height: 1;
    margin-bottom: 4px;
}

.discount-price-before {
    font-size: 13px;
    text-decoration: line-through;
    color: #888;
}
