/* Main Content */
.hr_productpage_main_content {
    /* max-width: 1200px; */
    margin-top: 75px;
    /* padding: 20px; */
}

/* Restaurant Header */
.hr_productpage_restaurant_header {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hr_productpage_restaurant_images {
    display: flex;
    gap: 10px;
}

.hr_productpage_main_image {
    width: 300px;
    height: 200px;
}

.hr_productpage_main_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hr_productpage_side_images {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hr_productpage_side_images img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.hr_productpage_more_photos {
    background: #007bff;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hr_productpage_more_photos span {
    font-size: 18px;
    font-weight: bold;
}

.hr_productpage_add_photos_btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 12px;
}

.hr_productpage_restaurant_info {
    flex: 1;
}

.hr_productpage_business_header h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.hr_productpage_rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hr_productpage_stars {
    background: #4CAF50;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.hr_productpage_reviews {
    color: #666;
    font-size: 14px;
}

.hr_productpage_verified {
    background: #007bff;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.hr_productpage_business_details h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.hr_productpage_rating_line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hr_productpage_action_buttons {
    display: flex;
    gap: 10px;
}

.hr_productpage_btn_primary {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hr_productpage_btn_secondary {
    border: 1px solid #007bff;
    background-color: transparent;
    color: #007bff;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hr_productpage_btn_icon {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
}

/* Tab Navigation */
.hr_productpage_tab_navigation {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hr_productpage_tab_container {
    display: flex;
    padding: 0 20px;
}

.hr_productpage_tab_btn {
    background: none;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.hr_productpage_tab_btn.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.hr_productpage_tab_btn:hover {
    color: #007bff;
}

@media (min-width: 1024px) {
    .hr_productpage_content_wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 20px;
    }
}

/* Content Sections */
.hr_productpage_content_section {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hr_productpage_section_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hr_productpage_section_header h3 {
    font-size: 18px;
    color: #333;
}

.hr_productpage_view_all {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

/* Overview Section */
.hr_productpage_overview_section h3 {
    margin-bottom: 15px;
    color: #333;
}

.hr_productpage_overview_section p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.hr_productpage_overview_highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.hr_productpage_highlight_card {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hr_productpage_highlight_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hr_productpage_highlight_card i {
    font-size: 30px;
    color: #007bff;
    margin-bottom: 10px;
}

.hr_productpage_highlight_card h4 {
    margin-bottom: 8px;
    color: #333;
}

.hr_productpage_highlight_card p {
    color: #666;
    font-size: 14px;
}

/* Menu Section */
.hr_productpage_menu_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.hr_productpage_menu_item {
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hr_productpage_menu_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hr_productpage_menu_item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.hr_productpage_menu_item h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.hr_productpage_price {
    color: #007bff;
    font-weight: bold;
}

/* Quick Info */
.hr_productpage_quick_info_grid {
    display: grid;
    gap: 15px;
}

.hr_productpage_info_item strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.hr_productpage_info_item p {
    color: #666;
    font-size: 14px;
}

/* Services Section */
.hr_productpage_services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hr_productpage_service_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hr_productpage_service_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hr_productpage_service_item i {
    font-size: 24px;
    color: #007bff;
    margin-top: 5px;
}

.hr_productpage_service_item h4 {
    margin-bottom: 5px;
    color: #333;
}

.hr_productpage_service_item p {
    color: #666;
    font-size: 14px;
}

/* Photos Section */
.hr_productpage_photo_categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hr_productpage_category_btn {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.hr_productpage_category_btn.active {
    background: #007bff;
    color: #ffffff;
    border-color: #007bff;
}

.hr_productpage_category_btn span {
    font-size: 12px;
    opacity: 0.8;
}

.hr_productpage_photo_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.hr_productpage_photo_grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hr_productpage_photo_grid img:hover {
    transform: scale(1.05);
}

.hr_productpage_upload_btn {
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Explore Section */
.hr_productpage_explore_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hr_productpage_explore_item h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

.hr_productpage_explore_item ul {
    list-style: none;
}

.hr_productpage_explore_item li {
    margin-bottom: 8px;
}

.hr_productpage_explore_item a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.hr_productpage_explore_item a:hover {
    text-decoration: underline;
}

/* Reviews Section */
.hr_productpage_reviews_summary {
    margin-bottom: 30px;
    text-align: center;
}

.hr_productpage_rating_overview {
    display: inline-block;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 8px;
}

.hr_productpage_big_rating {
    font-size: 48px;
    font-weight: bold;
    color: #007bff;
}

.hr_productpage_stars_display {
    font-size: 24px;
    color: #FFD700;
    margin: 10px 0;
}

.hr_productpage_reviews_list {
    margin-bottom: 20px;
}

.hr_productpage_review_item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
}

.hr_productpage_review_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.hr_productpage_review_rating {
    color: #FFD700;
}

.hr_productpage_review_date {
    color: #666;
    font-size: 12px;
}

.hr_productpage_write_review_btn {
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Right Sidebar */
.hr_productpage_right_sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hr_productpage_contact_card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hr_productpage_contact_card h3 {
    margin-bottom: 15px;
    color: #333;
}

.hr_productpage_show_number_btn {
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    /* width: 100%; */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hr_productpage_contact_info h4 {
    margin-bottom: 10px;
    color: #333;
}

.hr_productpage_contact_info p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.hr_productpage_get_directions,
.hr_productpage_copy_link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
}

.hr_productpage_distance,
.hr_productpage_business_hours {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.hr_productpage_actions {
    margin: 20px 0;
}

.hr_productpage_actions a {
    display: block;
    color: #007bff;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.hr_productpage_actions a:last-child {
    border-bottom: none;
}

.hr_productpage_gstin {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
}

/* Also Listed */
.hr_productpage_also_listed {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hr_productpage_also_listed h3 {
    margin-bottom: 15px;
    color: #333;
}

.hr_productpage_listing_categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hr_productpage_listing_categories a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
}

.hr_productpage_more_link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

/* Report Error */
.hr_productpage_report_error {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hr_productpage_report_error h3 {
    margin-bottom: 10px;
    color: #333;
}

.hr_productpage_report_error p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.hr_productpage_report_btn {
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hr_productpage_restaurant_header {
        flex-direction: column;
    }

    .hr_productpage_restaurant_images {
        flex-direction: column;
        align-items: center;
    }

    .hr_productpage_side_images {
        flex-direction: row;
        justify-content: center;
    }

    .hr_productpage_content_wrapper {
        grid-template-columns: 1fr;
    }

    .hr_productpage_tab_container {
        overflow-x: auto;
        padding: 0 10px;
    }

    .hr_productpage_tab_btn {
        white-space: nowrap;
        padding: 15px 15px;
    }

    .hr_productpage_overview_highlights {
        grid-template-columns: 1fr;
    }

    .hr_productpage_services_grid {
        grid-template-columns: 1fr;
    }

    .hr_productpage_explore_content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hr_productpage_main_content {
        padding: 10px 0;
    }

    .hr_productpage_restaurant_header {
        padding: 15px;
    }

    .hr_productpage_content_section {
        padding: 15px;
    }

    .hr_productpage_menu_grid {
        grid-template-columns: 1fr;
    }

    .hr_productpage_photo_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hr_productpage_action_buttons {
        flex-wrap: wrap;
    }

    .hr_productpage_btn_primary,
    .hr_productpage_btn_secondary {
        flex: 1;
        justify-content: center;
    }
}

/* Hover Effects */
.hr_productpage_tab_btn:hover,
.hr_productpage_view_all:hover,
.hr_productpage_get_directions:hover,
.hr_productpage_copy_link:hover,
.hr_productpage_more_link:hover,
.hr_productpage_listing_categories a:hover,
.hr_productpage_actions a:hover {
    opacity: 0.8;
}

.hr_productpage_btn_primary:hover,
.hr_productpage_btn_secondary:hover,
.hr_productpage_show_number_btn:hover,
.hr_productpage_upload_btn:hover,
.hr_productpage_report_btn:hover,
.hr_productpage_write_review_btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.hr_productpage_btn_icon:hover {
    background-color: #e0e0e0;
}

/* Loading animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .hr_productpage_content_section {
                    animation: fadeIn 0.5s ease-out;
                } */