/* ============================================
   Breadcrumbs
   ============================================ */
.discover-breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
    color: #64748b;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
}

.discover-breadcrumbs a {
    color: #3367d6;
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.discover-breadcrumbs a:hover {
    color: #2563eb;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #94a3b8;
    flex-shrink: 0;
}

.breadcrumb-current {
    color: #5f6368;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.detailed-restaurant article .img {
    height:50rem;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.detailed-restaurant article > div {
    flex-basis: 49%;
}

.detailed-restaurant article .text-section{
    padding:2rem;
}

.detailed-restaurant article .text-section .title {
    font-size: 2.4rem;
    font-weight: 600;
}

.detailed-restaurant article .text-section .date-format {
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 1rem 0 2rem;
}
.detailed-restaurant article .price{
    width: 9rem;
    align-items: center;
    text-align: center;
    font-size: 2.4rem;
    color: var(--primary-color);
}

.detailed-restaurant article .price button {
    background: var(--primary-color);
    color:var(--white-color);
    font-weight: 600;
    font-size: 1.4rem;
    border-radius: .5rem;
    padding: 1rem;
}

.detailed-restaurant article .details {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.detailed-restaurant article .description {
    font-size: 1.8rem;
    margin: 2rem 0;
    color:var(--text-gray-color);
}

.more-btn button {
    background: var(--primary-color);
    color:var(--white-color);
    text-transform: uppercase;
    border-radius: 1rem;
    padding: .8rem 2rem;
    font-size: 1.8rem;
}


@media (min-width: 768px) {
    .detailed-restaurant article {
        display: flex;
        justify-content: space-between;
    }
    .detailed-restaurant article .text-section{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
}


.wishlist-button, .share-button {
    position: absolute;
    color: var(--white-color);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,.2);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.wishlist-button {
    right: 1.6rem;
    top: 1rem;
}
.share-button {
    right: 5.6rem;
    top: 1rem;
}

/* Comments Section - Advisories Style */
.discover-comments-section {
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
    border-top: 2px solid #e5e7eb;
}

/* Hyvor Talk Comments Container - Remove excessive padding */
.discover-comments-section .comments-section,
.discover-comments-section .comments-container,
.discover-comments-section #hyvor-talk-wrapper,
.discover-comments-section #hyvor-talk-container,
.discover-comments-section #hyvor-talk-view {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.discover-comments-section .comments-section::before {
    display: none;
}

/* Go Back Button - Advisories Style */
.discover-actions {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.btn-go-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.25);
}

.btn-go-back:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(49, 130, 206, 0.35);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .discover-breadcrumbs {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .discover-breadcrumbs a {
        max-width: 120px;
    }
    
    .breadcrumb-current {
        max-width: 150px;
    }
    
    .breadcrumb-separator {
        margin: 0 6px;
    }
    
    .discover-comments-section {
        margin-top: 16px;
        padding-top: 16px;
        padding-left: 0;
        padding-right: 0;
    }
    
    .discover-actions {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .btn-go-back {
        font-size: 1.3rem;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .discover-breadcrumbs {
        font-size: 11px;
    }
    
    .discover-breadcrumbs a {
        max-width: 80px;
    }
    
    .breadcrumb-current {
        max-width: 120px;
    }
    
    .breadcrumb-separator {
        margin: 0 4px;
        font-size: 10px;
    }
}