.venues-section {
    background: var(--white);
    position: relative;
}

.venues-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-6);
}

/* Scroll wrapper */
.venues-scroll-wrap {
    position: relative;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

/* Card */
.venues-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(194, 24, 91, 0.06);
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
    box-shadow: var(--shadow-xs);
}

.venues-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(194, 24, 91, 0.1);
}

.venues-card:hover .venues-image-wrap img {
    transform: scale(1.05);
}

.venues-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--gray-100);
}

.venues-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.venues-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--saffron-gold), var(--saffron-gold-dark, #d4922a));
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(230, 162, 60, 0.3);
}

.venues-rating-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}

.venues-info {
    padding: var(--space-4);
}

.venues-name {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.venues-city {
    font-size: 12px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.venues-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.venues-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--rani-pink);
}

/* Scroll nav buttons */
.venues-scroll-nav {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: var(--space-5);
}

.venues-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.venues-nav-btn:hover {
    border-color: var(--rani-pink);
    color: var(--rani-pink);
    background: var(--blush);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .venues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .venues-grid {
        grid-template-columns: none;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding-bottom: 4px;
    }
    .venues-grid::-webkit-scrollbar {
        display: none;
    }
    .venues-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    .venues-scroll-nav {
        display: flex;
    }
    .venues-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .venues-card {
        flex: 0 0 260px;
    }
}
