/* Steakhouses Near You Section */

.steakhouses-near-you-section {
    width: 100%;
    margin: 3rem 0;
    padding: 2rem 0;
}

/* Header */
.snu-header {
    margin-bottom: 2rem;
}

.snu-title {
    font-size: 24px;
    font-weight: 600;
    color: #C67353;
    margin: 0;
    line-height: 1.2;
}

/* Main Content Layout */
.snu-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Left: Map Container */
.snu-map-container {
    flex: 1;
    min-width: 0;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.snu-map {
    width: 100%;
    height: 100%;
}

/* Right: Listings Container */
.snu-listings-container {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Filter Bar */
.snu-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.snu-filter-refine {
    position: relative;
}

.snu-refine-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.snu-refine-btn:hover {
    border-color: #C67353;
    background: #f8ede7;
}

.snu-refine-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.snu-refine-btn.active svg {
    transform: rotate(180deg);
}

.snu-refine-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 200px;
    padding: 1rem;
}

.snu-filter-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.snu-filter-tag {
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.snu-filter-tag:hover {
    border-color: #C67353;
    color: #000;
    background: #f8ede7;
}

.snu-filter-tag.active {
    background: #C67353;
    color: #000;
    border-color: #C67353;
}

/* Restaurant List */
.snu-restaurant-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom Scrollbar */
.snu-restaurant-list::-webkit-scrollbar {
    width: 6px;
}

.snu-restaurant-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.snu-restaurant-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.snu-restaurant-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Restaurant Card */
.snu-restaurant-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.snu-restaurant-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #ccc;
}

/* Card Image */
.snu-card-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.snu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content */
.snu-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.snu-card-position {
    font-size: 0.9rem;
    font-weight: 700;
    color: #999;
    margin-bottom: 0.25rem;
}

.snu-card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.snu-card-title a {
    color: #C67353;
    text-decoration: none;
    transition: color 0.3s ease;
}

.snu-card-title a:hover {
    color: #C67353;
}

/* Rating */
.snu-card-rating {
    margin-bottom: 0.5rem;
}

.snu-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.snu-star {
    font-size: 0.9rem;
    line-height: 1;
    color: #ddd;
}

.snu-star-filled {
    color: #C67353;
}

.snu-star-half {
    color: #C67353;
    opacity: 0.6;
}

.snu-star-empty {
    color: #ddd;
}

/* Booking Times */
.snu-booking-times {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.snu-time-btn {
    padding: 0.5rem 1rem;
    background: #C67353;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.snu-time-btn:hover {
    background: #b05f44;
}

/* No Results */
.snu-no-results {
    text-align: center;
    padding: 3rem;
    color: #999;
}

/* Loading State */
.snu-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #999;
}

/* Responsive */
@media (max-width: 968px) {
    .snu-content {
        flex-direction: column;
    }
    
    .snu-map-container {
        height: 400px;
        width: 100%;
    }
    
    .snu-restaurant-list {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .snu-title {
        font-size: 1.5rem;
    }
    
    .snu-map-container {
        height: 300px;
    }
    
    .snu-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .snu-filter-tags {
        width: 100%;
    }
    
    .snu-restaurant-card {
        flex-direction: column;
    }
    
    .snu-card-image {
        width: 100%;
        height: 200px;
    }
}

