
.section-title {
    font-size: 32px;
    font-weight: bold;
    margin: 40px 0;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--kfc-red);
}

.deal-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 100%;
    padding: 20px;
}

.deal-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--kfc-red);
    border-radius: 50%;
}

.favorite-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--kfc-red);
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.deal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-top: 30px;
    margin-bottom: 20px;
}

.deal-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.deal-description {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    min-height: 40px;
}

.deal-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-bucket {
    background-color: var(--kfc-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.add-to-bucket:hover {
    background-color: #c4002b;
}

.price-prefix {
    font-weight: normal;
    margin-right: 5px;
}