.discounts-section {
    padding: 60px 0;
    background: #fff;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.discounts-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.8);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.discounts-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 rgba(0,0,0,0.8);
}

.discounts-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.discounts-card-content {
    padding: 20px;
    flex-grow: 1;
}

.discounts-card-title {
    font-family: 'Kumar One', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.3;
}

.discounts-card-description {
    font-family: 'Bayon', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 15px;
}

.discounts-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.pagination-list {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    background: #fff;
    font-family: 'Bayon', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 8px;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #000;
    color: #fff;
}

.city-filter {
    margin-top: 20px;
    text-align: center;
}

.city-filter select {
    padding: 12px 40px 12px 20px;
    border: 2px solid #000;
    border-radius: 30px;
    font-family: 'Bayon', sans-serif;
    font-size: 1rem;
    background: #fff;
    cursor: pointer;
    outline: none;
    width: 250px;
    max-width: 90%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.city-filter select:hover,
.city-filter select:focus {
    background-color: #f5f5f5;
}

.no-results {
    grid-column: span 2;
    text-align: center;
    padding: 40px;
    font-family: 'Bayon', sans-serif;
    font-size: 1.2rem;
    color: #666;
}

@media (max-width: 768px) {
    .discounts-grid {
        gap: 15px;
    }
    .discounts-card-image {
        height: 120px;
    }
    .discounts-card-title {
        font-size: 1rem;
    }
    .discounts-card-description {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .discounts-card-meta {
        font-size: 0.75rem;
    }
    .discounts-card-content {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .discounts-card-image {
        height: 100px;
    }
    .discounts-card-title {
        font-size: 0.95rem;
    }
    .discounts-card-description {
        font-size: 0.8rem;
    }
}