/* 
 * Main Styles
 * Common styles used across all shortcodes
 */

/* Filter buttons (used in destinations and offers) */
.dest-filter,
.offers-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.offers-filter {
    margin-bottom: 35px;
    justify-content: center;
}

.dest-filter button,
.offers-filter .filter-btn {
    border: 1px solid #999;
    padding: 3px 14px;
    border-radius: 30px;
    background: #fff;
    font-size: 12px;
    color: #999;
    cursor: pointer;
    transition: all 0.25s ease;
}

.dest-filter button:hover,
.offers-filter .filter-btn:hover {
    background: #caa938;
    border: 1px solid #caa938;
    color: #ffffff;
}

.dest-filter button.active,
.offers-filter .filter-btn.active {
    background: #caa938;
    border: 1px solid #caa938;
    color: #ffffff;
}
