aside {
    flex: 0 0 25%;
    background: var(--wp--preset--color--primary);
    padding: var(--wp--preset--spacing--10);
    border-radius: 5px;
    background: linear-gradient(135deg, #004d40 0%, #00796b 100%);
    z-index: 3;
}

#deals-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

#deals-categories a {
    display: block;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: var(--wp--preset--spacing--5);
    text-decoration: none;
    color: var(--wp--preset--color--primary);
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    color: #fff;
}

#deals-categories a:hover {
    background: #fff;
    color: var(--wp--preset--color--primary);
}

#deals-categories a.active {
    background: #fff;
    color: var(--wp--preset--color--primary);
}

.deals-list {
    padding-left: 0.5rem;
}

#fc-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 150px;
    position: relative;
    z-index: 1;
}

#fc-container h2 {
    font-size: 1.5rem;
    color: var(--wp--preset--color--primary);
}

#deals-content {
    position: relative;
}

#fc-container.loaded {
    pointer-events: auto;
}

.map-container {
    position: relative;
    z-index: 10 !important;
}

/* Featured Content */
.featured-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: inherit;
    max-width: 100%;
    padding: 0 1rem;
}

.featured-content {
    flex: 0 0 70%;
    color: #225a4b;
}

.featured-content h3,
p {
    margin: 0.5rem;
}

.featured-button {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
}

.fc-grid-layout {
    display: flex;
    justify-content: left;
    gap: 2rem;
    padding: 0.5rem 0.5rem;
}

.fc-slider-layout {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.fc-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.fc-card:hover {
    transform: translateY(-5px);
}

.fc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f97316;
    color: white;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
}

.fc-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.fc-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fc-card-body h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.fc-card-body p {
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1;
}

.read-more {
    text-decoration: none;
    color: #225a4b;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.fc-card-footer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    text-align: right;
}

@media (max-width: 768px) {
    .fc-grid-layout {
        grid-template-columns: 1fr;
    }

    .fc-slider-layout {
        flex-direction: row;
        overflow-x: auto;
    }
}