/* Diners Choice Section Styles */

.diners-choice-section {
    width: 100%;
    margin: 3rem 0;
}

/* Header */
.dc-header {
    text-align: left;
    margin-bottom: 3rem;
}

.dc-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C67353;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dc-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.dc-updated {
    font-size: 0.9rem;
    color: #999;
}

/* Tabs */
.dc-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.dc-tab {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dc-tab:hover {
    border-color: #333;
    color: #333;
}

.dc-tab.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Restaurants Layout - Left & Right Columns */
.dc-restaurants-layout {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.dc-left-column {
    flex: 1;
        min-width: 700px;
}

.dc-right-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dc-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    
}

.dc-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Featured Card (Left Side) */
.dc-card-featured {
    width: 100%;
}

/* Small Cards (Right Side) */
.dc-card-small {
    width: 100%;
}

/* Card Image */
.dc-card-image {
    position: relative;
    overflow: hidden;
}

/* Featured card image (left side) */
.dc-card-featured .dc-card-image {
    width:60%;
}

/* Small card image (right side) */
.dc-card-small .dc-card-image {
    height: 100px;
  width:200px;
}

.dc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.dc-bookmark {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.dc-bookmark:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Card Content */
.dc-card-content {
    padding-left: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dc-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.dc-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dc-card-title a:hover {
    color: #e74c3c;
}

.dc-card-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.dc-separator {
    color: #ccc;
}

.dc-price {
    font-weight: 600;
}

.dc-rating {
    color: #e74c3c;
}

.dc-review-count {
    font-size: 0.85rem;
    color: #999;
    margin-left: 0.25rem;
}

.dc-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.dc-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0.75rem 0 1rem 0;
    flex-grow: 1;
}

/* Button */
.dc-btn-primary {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    background: #C67353;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.dc-btn-primary:hover {
    background: #D98C6A;
}

/* Loading State */
.dc-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.dc-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* No Results */
.dc-no-results {
    text-align: center;
    padding: 3rem;
}

.dc-no-results-text {
    text-align: center;
    color: #999;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 968px) {
    .dc-restaurants-layout {
        flex-direction: column;
    }
    
    .dc-right-column {
        width: 100%;
    }
    
    .dc-card-featured .dc-card-image {
        height: 300px;
    }
    
    .dc-card-small .dc-card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .dc-title {
        font-size: 1.8rem;
    }
    
    .dc-subtitle {
        font-size: 1rem;
    }
    
    .dc-restaurants-layout {
        gap: 1.5rem;
    }
    
    .dc-card-featured .dc-card-image {
        height: 250px;
    }
    
    .dc-card-small .dc-card-image {
        height: 180px;
    }
    
    .dc-tabs {
        gap: 0.75rem;
    }
    
    .dc-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
