.offer-tabs {
    margin: 20px 0;
}
.offer-tabs .tab-buttons {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}
.offer-tabs .tab-buttons li {
    padding: 10px 15px;
    background: #f2f2f2;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}
.offer-tabs .tab-buttons li:hover {
    background: #ddd;
}
.offer-tabs .tab-buttons li.active {
    background: #0073aa;
    color: #fff;
}
.offer-tabs .tab-content {
    display: none;
}
.offer-tabs .tab-content.active {
    display: block;
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}
.offer-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    transition: 0.3s;
}
.offer-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.offer-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
}
.offer-price {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}
.offer-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #0073aa;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
}