@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body,
    .bd-page {
        font-family: 'Inter', sans-serif;
    }

    .bd-page i,
    .bd-page i::before,
    .bd-page i::after {
        font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif !important;
    }

    /* ─── HERO ─────────────────────────────────────────────────── */
    .bd-hero {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        background: #111;
    }

    .bd-hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 8s ease;
    }

    .bd-hero:hover .bd-hero-bg {
        transform: scale(1.04);
    }

    .bd-hero-default {
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 80px;
    }

    .bd-hero-default .dft-i {
        font-size: 240px;
        color: rgba(255, 255, 255, .04);
        line-height: 1;
        user-select: none;
    }

    .bd-hero-scrim {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .25) 55%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }

    .bd-hero-ov {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .3);
        z-index: 1;
        display: none;
    }

    .bd-hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 3;
        padding: 24px 48px;
        color: #fff;
        max-width: 70%;
    }

    .bd-hero-open-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, .15);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(6px);
        border-radius: 20px;
        padding: 4px 12px;
        font-size: .7rem;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: .6px;
        margin-bottom: 10px;
    }

    .bd-hero-open-badge .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #4ade80;
        display: inline-block;
    }

    .bd-hero-open-badge.closed .dot {
        background: #f87171;
    }

    .bd-hero-name {
        font-size: 2.8rem;
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: -.5px;
        margin-bottom: 10px;
        text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
    }

    .bd-hero-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        font-size: .88rem;
        color: rgba(255, 255, 255, .9);
    }

    .bd-hero-meta .sep {
        opacity: .5;
    }

    .bd-hero-meta .rating-pill {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .bd-hero-meta .rating-pill .rnum {
        color: #f59e0b;
        font-weight: 700;
        font-size: .92rem;
    }

    /* Photo gallery strip – top right of hero */
    .bd-hero-gallery {
        position: absolute;
        right: 24px;
        bottom: 20px;
        z-index: 4;
        display: none;
        gap: 8px;
        align-items: flex-end;
    }

    .bd-hero-gallery .gthumb {
        width: 120px;
        height: 90px;
        border-radius: 10px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, .7);
        cursor: pointer;
        flex-shrink: 0;
        transition: transform .2s, border-color .2s;
        background: #333;
        position: relative;
    }

    .bd-hero-gallery .gthumb:hover {
        transform: scale(1.04);
        border-color: #fff;
    }

    .bd-hero-gallery .gthumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .bd-hero-gallery .gmore {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .6);
        backdrop-filter: blur(3px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: 800;
        color: #fff;
    }

    /* ─── ACTION TAB BAR ──────────────────────────────────────── */
    .bd-tabs {
        background: #fff;
        border-bottom: 1px solid #e5e7eb;
        position: sticky;
        top: 60px;
        z-index: 200;
        box-shadow: 0 1px 6px rgba(0, 0, 0, .05);
    }

    .bd-tabs-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .bd-tab-group {
        display: flex;
    }

    .bd-tab {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 16px 18px;
        font-size: .84rem;
        font-weight: 600;
        color: #374151;
        text-decoration: none;
        border: none;
        background: none;
        border-bottom: 2px solid transparent;
        cursor: pointer;
        transition: color .15s, border-color .15s;
        white-space: nowrap;
        font-family: inherit;
    }

    .bd-tab i {
        font-size: .78rem;
    }

    .bd-tab:hover {
        color: #111;
    }

    .bd-tab.active {
        color: #111;
        border-bottom-color: #111;
    }

    .bd-local-fav {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .8rem;
        color: #374151;
        font-weight: 500;
    }

    .bd-local-fav .fav-ico {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #b91c1c;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .8rem;
    }

    /* ─── LAYOUT ──────────────────────────────────────────────── */
    .bd-page {
        background: #f5f5f7;
        padding-bottom: 80px;
    }

    .bd-container {
        max-width: auto;
        margin: 0 auto;
        padding: 0 48px;
    }

    .bd-grid {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 28px;
        padding-top: 28px;
    }

    /* ─── LEFT COLUMN SECTIONS ─────────────────────────────────── */
    .bd-section {
        background: #fff;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        margin-bottom: 16px;
        overflow: hidden;
    }

    .bd-sec-hdr {
        padding: 22px 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .bd-sec-title {
        font-size: 1.2rem;
        font-weight: 800;
        color: #111;
        letter-spacing: -.3px;
        margin: 0;
    }

    .bd-sec-link {
        font-size: .82rem;
        font-weight: 600;
        color: #b91c1c;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .bd-sec-link:hover {
        text-decoration: underline;
    }

    /* DISCOVER */
    .disc-layout {
        display: flex;
        gap: 28px;
        align-items: flex-start;
        padding: 16px 24px 22px;
    }

    .disc-text {
        flex: 1;
        min-width: 0;
    }

    .disc-text p {
        font-size: .9rem;
        color: #444;
        line-height: 1.85;
        margin: 0 0 14px;
    }

    .disc-text p:last-child {
        margin-bottom: 0;
    }

    .disc-photo {
        width: 280px;
        flex-shrink: 0;
    }

    .disc-photo img {
        width: 280px;
        height: 260px;
        border-radius: 10px;
        object-fit: cover;
        display: block;
        border: 1px solid #e5e7eb;
    }

    .disc-info {
        padding: 0 24px 22px;
    }

    .info-row {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 11px 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .info-row:last-child {
        border-bottom: none;
    }

    .info-ico {
        width: 34px;
        height: 34px;
        background: #fef2f2;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #b91c1c;
        font-size: .78rem;
        flex-shrink: 0;
    }

    .info-label {
        font-size: .68rem;
        color: #9ca3af;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .info-val {
        font-size: .85rem;
        font-weight: 600;
        color: #111;
    }

    .info-val a {
        color: #b91c1c;
        text-decoration: none;
    }

    .info-val a:hover {
        text-decoration: underline;
    }

    .cat-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 3px 11px;
        background: #fef2f2;
        border: 1px solid rgba(185, 28, 28, .15);
        border-radius: 20px;
        font-size: .74rem;
        font-weight: 600;
        color: #b91c1c;
        margin: 2px 4px 2px 0;
    }

    .soc-btns {
        padding: 10px 24px 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .soc-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 16px;
        border-radius: 6px;
        font-size: .78rem;
        font-weight: 700;
        text-decoration: none;
        transition: opacity .15s;
    }

    .soc-btn:hover {
        opacity: .85;
        color: #fff;

    }

    .soc-fb {
        background: #1877f2;
        color: #fff;
    }



    .soc-ig {
        background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #bc1888);
        color: #fff;
    }

    .soc-tk {
        background: #000000;
        color: #fff;
    }

    .soc-tw {
        background: #1DA1F2;
        color: #fff;
    }

    .soc-li {
        background: #0A66C2;
        color: #fff;
    }

    .soc-pi {
        background: #f35628ff;
        color: #ffffff;
    }

    /* SIGNATURE DISHES */
    .bd-dish-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 14px 24px;
        border-bottom: 1px solid #f3f4f6;
        transition: background .12s;
    }

    .bd-dish-item:last-child {
        border-bottom: none;
    }

    .bd-dish-item:hover {
        background: #fafafa;
    }

    .bd-dish-img {
        width: 72px;
        height: 62px;
        border-radius: 8px;
        object-fit: cover;
        flex-shrink: 0;
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
    }

    .bd-dish-info {
        flex: 1;
        min-width: 0;
    }

    .bd-dish-name {
        font-size: .9rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 3px;
    }

    .bd-dish-desc {
        font-size: .78rem;
        color: #9ca3af;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bd-dish-price {
        font-size: .95rem;
        font-weight: 800;
        color: #111;
        flex-shrink: 0;
    }

    /* AMENITIES */
    .amen-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        padding: 14px 8px 22px;
    }

    .amen-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 12px 24px;
        min-width: 120px;
    }

    .amen-item i {
        font-size: 1.3rem;
        color: #b91c1c;
    }

    .amen-item span {
        font-size: .78rem;
        font-weight: 600;
        color: #374151;
    }

    /* PHOTOS */
    .photo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 14px 24px 22px;
    }

    .photo-grid img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        display: block;
        transition: opacity .15s;
        border: 1px solid #e5e7eb;
    }

    .photo-grid img:hover {
        opacity: .9;
    }

    /* COMMUNITY REVIEWS */
    .rev-sort-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 24px 14px;
        border-bottom: 1px solid #e5e7eb;
    }

    .rev-sort-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 7px 14px;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        background: #fff;
        font-size: .8rem;
        font-weight: 600;
        color: #374151;
        cursor: pointer;
        font-family: inherit;
        transition: border-color .15s;
    }

    .rev-sort-btn:hover {
        border-color: #9ca3af;
    }

    /* Rating summary block */
    .rev-summary {
        display: flex;
        gap: 0;
        align-items: stretch;
        padding: 22px 24px;
        border-bottom: 1px solid #e5e7eb;
    }

    .rev-score-box {
        min-width: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #e5e7eb;
        padding-right: 28px;
        margin-right: 28px;
    }

    .rev-big-num {
        font-size: 4.5rem;
        font-weight: 900;
        color: #111;
        line-height: 1;
        letter-spacing: -3px;
    }

    .rev-stars-row {
        margin: 8px 0 5px;
        display: flex;
        gap: 2px;
    }

    .rev-cnt {
        font-size: .74rem;
        color: #9ca3af;
    }

    .rev-bars {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .rev-bar-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .rev-bar-label {
        font-size: .78rem;
        color: #9ca3af;
        width: 12px;
        text-align: right;
        flex-shrink: 0;
    }

    .rev-bar-track {
        flex: 1;
        height: 10px;
        background: #f3e8e8;
        border-radius: 5px;
        overflow: hidden;
    }

    .rev-bar-fill {
        height: 100%;
        border-radius: 5px;
        background: #f59e0b;
        transition: width .8s ease;
    }

    /* Chef Note */
    .chef-note {
        display: flex;
        gap: 18px;
        align-items: flex-start;
        padding: 20px 24px;
        border-bottom: 1px solid #e5e7eb;
    }

    .chef-note img {
        width: 72px;
        height: 72px;
        border-radius: 8px;
        object-fit: cover;
        flex-shrink: 0;
        border: 1px solid #e5e7eb;
    }

    .chef-note-body .cn-title {
        font-size: .98rem;
        font-weight: 800;
        color: #111;
        margin-bottom: 7px;
    }

    .chef-note-body .cn-quote {
        font-size: .85rem;
        color: #555;
        line-height: 1.75;
        margin-bottom: 6px;
    }

    .chef-note-body .cn-attr {
        font-size: .78rem;
        color: #9ca3af;
    }

    /* Review tabs */
    .rev-tabs-hdr {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
        border-bottom: 1px solid #e5e7eb;
    }

    .rev-tab-btns {
        display: flex;
    }

    .rev-tab-btn {
        padding: 14px 18px;
        font-size: .84rem;
        font-weight: 600;
        color: #9ca3af;
        border: none;
        background: none;
        border-bottom: 2px solid transparent;
        cursor: pointer;
        transition: all .15s;
        font-family: inherit;
    }

    .rev-tab-btn.active {
        color: #111;
        border-bottom-color: #111;
    }

    .rev-write-link {
        font-size: .8rem;
        font-weight: 600;
        color: #b91c1c;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .rev-write-link:hover {
        text-decoration: underline;
    }

    /* Review card */
    .rev-card {
        padding: 20px 24px;
        border-bottom: 1px solid #f3f4f6;
    }

    .rev-card:last-child {
        border-bottom: none;
    }

    .rev-card-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }

    .rev-user {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .rev-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #e5e7eb;
        flex-shrink: 0;
    }

    .rev-uname a {
        font-size: .9rem;
        font-weight: 700;
        color: #111;
        text-decoration: none;
    }

    .rev-uname a:hover {
        color: #b91c1c;
    }

    .rev-utag {
        font-size: .72rem;
        color: #9ca3af;
        margin-top: 2px;
    }

    .rev-stars-sm {
        display: flex;
        gap: 2px;
        flex-shrink: 0;
    }

    .rev-body {
        font-size: .86rem;
        color: #444;
        line-height: 1.78;
        margin: 12px 0 10px;
    }

    .rev-actions {
        display: flex;
        gap: 14px;
    }

    .rev-action-btn {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: .76rem;
        font-weight: 600;
        color: #9ca3af;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: color .15s;
        font-family: inherit;
    }

    .rev-action-btn:hover,
    .rev-action-btn.active {
        color: #374151;
    }

    .rev-action-btn i {
        font-size: .76rem;
    }

    .rev-load-more {
        display: block;
        width: calc(100% - 48px);
        margin: 10px 24px 18px;
        padding: 12px;
        border: 1.5px solid #d1d5db;
        border-radius: 8px;
        background: #fff;
        font-size: .85rem;
        font-weight: 600;
        color: #374151;
        cursor: pointer;
        transition: all .15s;
        text-align: center;
        font-family: inherit;
    }

    .rev-load-more:hover {
        border-color: #111;
        color: #111;
    }

    /* ─── SIDEBAR ──────────────────────────────────────────────── */
    .bd-sidebar {
        position: sticky;
        top: 110px;
    }

    .sb-box {
        background: #fff;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        margin-bottom: 14px;
        overflow: hidden;
    }

    .sb-box-title {
        padding: 16px 20px 12px;
        font-size: .95rem;
        font-weight: 700;
        color: #111;
        border-bottom: 1px solid #f3f4f6;
    }

    .sb-box-body {
        padding: 16px 20px;
    }

    /* Black reserve button */
    .btn-reserve {
        width: 100%;
        padding: 14px;
        border-radius: 10px;
        background: #111;
        color: #fff;
        border: none;
        font-size: .92rem;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        font-family: inherit;
        margin-bottom: 10px;
        transition: background .15s;
    }

    .btn-reserve:hover {
        background: #1f2937;
        color: #fff;
    }

    /* Beige delivery button */
    .btn-delivery {
        width: 100%;
        padding: 13px;
        border-radius: 10px;
        background: #fdf0e0;
        color: #111;
        border: 1.5px solid #f5d9b4;
        font-size: .9rem;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        font-family: inherit;
        margin-bottom: 14px;
        transition: background .15s;
    }

    .btn-delivery:hover {
        background: #fce6c5;
        color: #111;
    }

    /* Icon row */
    .sb-icon-row {
        display: flex;
        justify-content: space-around;
        border-top: 1px solid #f3f4f6;
        padding: 14px 0 4px;
    }

    .sb-ico-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: .68rem;
        font-weight: 700;
        color: #374151;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: .4px;
        cursor: pointer;
        background: none;
        border: none;
        font-family: inherit;
        padding: 4px 12px;
        transition: color .15s;
    }

    .sb-ico-btn:hover {
        color: #111;
    }

    .sb-ico-btn i {
        font-size: 1.1rem;
        color: #374151;
    }

    .sb-ico-btn:hover i {
        color: #111;
    }

    /* Map */
    .sb-map iframe {
        width: 100%;
        height: 170px;
        border: 0;
        display: block;
    }

    .sb-map-addr {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        padding: 12px 16px;
        font-size: .78rem;
        color: #6b7280;
        border-top: 1px solid #f3f4f6;
    }

    .sb-map-addr i {
        color: #b91c1c;
        flex-shrink: 0;
        margin-top: 1px;
        font-size: .8rem;
    }

    /* Hours */
    .sb-hours {
        padding: 14px 20px 16px;
    }

    .sb-hours-lbl {
        font-size: .68rem;
        font-weight: 800;
        letter-spacing: .8px;
        text-transform: uppercase;
        color: #9ca3af;
        margin-bottom: 10px;
    }

    .sb-hours-tbl {
        width: 100%;
        border-collapse: collapse;
    }

    .sb-hours-tbl td {
        padding: 4px 0;
        vertical-align: top;
        font-size: .8rem;
    }

    .sb-hours-tbl td:first-child {
        color: #6b7280;
        font-weight: 600;
        width: 76px;
    }

    .sb-hours-tbl td:last-child {
        color: #111;
        font-weight: 500;
    }

    .sb-hours-tbl tr.today td {
        color: #b91c1c;
        font-weight: 700;
    }

    /* Similar businesses */
    .sim-card {
        background: #fff;
        border-radius: 10px;
        border: 1px solid #e5e7eb;
        overflow: hidden;
        transition: transform .2s, box-shadow .2s;
        height: 100%;
    }

    .sim-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .09);
    }

    .sim-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .sim-body {
        padding: 12px 14px;
    }

    .sim-name {
        font-size: .88rem;
        font-weight: 700;
        color: #111;
        text-decoration: none;
        display: block;
        margin-bottom: 3px;
    }

    .sim-name:hover {
        color: #b91c1c;
    }

    .sim-meta {
        font-size: .72rem;
        color: #9ca3af;
    }

    /* Lightbox */
    .lb {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .92);
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }

    .lb.on {
        display: flex;
    }

    .lb img {
        max-width: 90vw;
        max-height: 88vh;
        border-radius: 8px;
        object-fit: contain;
    }

    .lb-x {
        position: fixed;
        top: 14px;
        right: 18px;
        color: #fff;
        font-size: 2.2rem;
        background: none;
        border: none;
        cursor: pointer;
        line-height: 1;
    }

    .lb-x:hover {
        opacity: .7;
    }

    @media(max-width:1024px) {
        .bd-grid {
            grid-template-columns: 1fr;
        }

        .bd-sidebar {
            position: static;
        }

        .bd-container {
            padding: 0 20px;
        }

        .bd-hero-content {
            padding: 20px 24px;
            max-width: 90%;
        }

        .bd-hero-name {
            font-size: 2rem;
        }

        .bd-hero-gallery {
            display: none !important;
        }

        .bd-tabs-inner {
            padding: 0 16px;
        }

        .disc-layout {
            flex-direction: column;
        }

        .disc-photo {
            width: 100%;
        }

        .disc-photo img {
            width: 100%;
            height: 220px;
        }
    }

    @media(max-width:640px) {
        .bd-hero {
            height: 260px;
        }

        .bd-hero-name {
            font-size: 1.6rem;
        }

        .bd-tab {
            padding: 12px 10px;
            font-size: .75rem;
        }

        .rev-summary {
            flex-direction: column;
        }

        .rev-score-box {
            border-right: none;
            border-bottom: 1px solid #e5e7eb;
            padding-right: 0;
            margin-right: 0;
            padding-bottom: 16px;
            margin-bottom: 16px;
        }
    }
