    .venue-detail-section {
        scroll-margin-top: 100px;
    }
    @media (max-width: 991.98px) {
        .venue-detail-section {
            scroll-margin-top: 110px;
        }
    }

    .venue-detail-sticky-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .venue-detail-sticky-nav.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .venue-detail-sticky-nav__inner {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 14px;
        box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
        padding: 0.6rem 0.8rem;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .venue-detail-sticky-nav__inner::-webkit-scrollbar {
        display: none;
    }

    .venue-detail-sticky-nav__list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        flex-wrap: nowrap;
        min-width: max-content;
    }

    .venue-detail-sticky-nav__link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.6rem 0.9rem;
        color: #475569;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        transition: color 0.2s ease, opacity 0.2s ease;
    }

    .venue-detail-sticky-nav__link:hover {
        color: var(--bs-primary);
        opacity: 0.9;
    }

    .venue-detail-sticky-nav__link.is-active {
        color: var(--bs-primary);
    }

    .review-rating-hint {
        min-width: 4.75rem;
        color: #64748b;
        font-size: 0.9rem;
        font-weight: 700;
        transition: color 0.2s ease;
    }

    .review-rating-hint.is-active {
        color: var(--bs-primary);
    }

    .review-rating-label {
        cursor: pointer;
        line-height: 1;
    }

    .review-rating-picker .review-star {
        font-size: 1.65rem;
        color: #cbd5e1;
        transition: color 0.15s ease, transform 0.15s ease;
    }

    .review-rating-picker .review-star.is-active,
    .review-rating-picker .review-star.is-preview,
    .review-rating-picker .review-star.text-warning {
        color: #f59e0b !important;
    }

    .review-rating-picker .review-rating-label:hover .review-star {
        transform: scale(1.08);
    }

    .review-photo-upload {
        position: relative;
        border: 2px dashed #d7deea;
        border-radius: 14px;
        background: #f8fafc;
        min-height: 96px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 1.1rem;
        text-align: center;
        transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    }

    .review-photo-upload:hover,
    .review-photo-upload.is-dragover {
        border-color: var(--bs-primary);
        background: #f5f0ff;
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
    }

    .review-photo-upload__input {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        z-index: 2;
    }

    .review-photo-upload__inner {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        pointer-events: none;
    }

    .review-photo-upload__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(99, 102, 241, 0.12);
        color: var(--bs-primary);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .review-photo-upload__title {
        display: block;
        color: #0f172a;
        font-size: 0.92rem;
        font-weight: 700;
        text-align: left;
    }

    .review-photo-upload__subtitle {
        display: block;
        margin-top: 0.15rem;
        color: #64748b;
        font-size: 0.8rem;
        text-align: left;
    }

    .review-photo-preview {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 0.75rem;
    }

    .review-photo-preview__item {
        position: relative;
        width: 84px;
        height: 84px;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #e2e8f0;
        background: #fff;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    }

    .review-photo-preview__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .review-photo-preview__remove {
        position: absolute;
        top: 4px;
        right: 4px;
        width: 22px;
        height: 22px;
        border: 0;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.72);
        color: #fff;
        font-size: 0.95rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
    }

    .review-photo-preview__remove:hover {
        background: rgba(15, 23, 42, 0.9);
    }

    .venue-detail-gallery {
        align-items: flex-start;
        max-height: none;
    }

    .venue-detail-gallery .venue-gallery-main {
        display: flex;
        flex: 3;
        flex-direction: column;
        gap: 10px;
        min-width: 0;
    }

    .venue-detail-gallery .venue-gallery-main.is-full {
        flex: 1 1 100%;
    }

    .venue-detail-gallery .venue-gallery-main .left-img {
        flex: 0 0 500px;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }

    .venue-detail-gallery .right-grid {
        height: 500px;
        align-self: stretch;
    }

    @media (min-width: 1200px) {
        .venue-detail-page > .container {
            max-width: 1280px;
        }

        .venue-detail-page #photos-section {
            padding: 1rem !important;
            margin-bottom: 1rem !important;
        }

        .venue-detail-page .venue-detail-gallery .venue-gallery-main .left-img,
        .venue-detail-page .venue-detail-gallery .right-grid {
            height: 470px;
        }

        .venue-detail-page .venue-detail-quick-row {
            padding-top: 0.72rem;
            padding-bottom: 0.72rem;
        }
    }

    #photos-section .venue-detail-location-badges {
        vertical-align: middle;
    }

    #photos-section .venue-detail-location-badges .label,
    #photos-section .venue-detail-location-badges .badge {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-height: 28px;
        padding: 0.35rem 0.65rem;
        line-height: 1;
        vertical-align: middle;
    }

    .venue-detail-quick-info {
        display: grid;
        gap: 0;
        border: 1px solid rgba(148, 163, 184, 0.22);
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
    }

    .venue-detail-quick-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.9rem 1rem;
        border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    }

    .venue-detail-quick-row:last-child {
        border-bottom: 0;
    }

    @media (min-width: 992px) {
        .venue-detail-quick-info {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.75rem;
            margin-top: 0.75rem;
            border: 0;
            overflow: visible;
            background: transparent;
        }

        .venue-detail-quick-row,
        .venue-detail-quick-row:last-child {
            min-height: 88px;
            align-items: flex-start;
            flex-direction: column;
            justify-content: space-between;
            gap: 0.65rem;
            padding: 0.85rem;
            border: 1px solid rgba(126, 89, 194, 0.16);
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
        }

        .venue-detail-quick-main {
            width: 100%;
            gap: 0.55rem;
        }

        .venue-detail-quick-label {
            font-size: 0.9rem;
        }

        .venue-detail-quick-value {
            font-size: 0.98rem;
        }

        .venue-detail-quick-link {
            align-self: flex-start;
            font-size: 0.82rem;
            line-height: 1.2;
        }

        .venue-detail-quick-row--actions > .d-flex {
            width: 100%;
            justify-content: flex-start !important;
            gap: 0.45rem !important;
        }

        .venue-detail-quick-row--actions .btn {
            min-height: 34px;
            border-radius: 9px;
            padding: 0.4rem 0.65rem;
            font-size: 0.78rem;
        }
    }

    .venue-detail-quick-main {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        min-width: 0;
        flex-wrap: wrap;
    }

    .venue-detail-quick-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(126, 89, 194, 0.1);
        color: var(--bs-primary);
        flex: 0 0 auto;
    }

    .venue-detail-quick-label {
        color: #0f172a;
        font-weight: 800;
    }

    .venue-detail-quick-value {
        color: #475569;
        font-weight: 600;
    }

    .venue-detail-quick-link {
        color: var(--bs-primary);
        font-weight: 800;
        text-decoration: none;
        white-space: nowrap;
    }

    .venue-detail-quick-link:hover {
        color: var(--bs-primary);
        opacity: 0.85;
    }

    .venue-detail-quick-link.is-disabled {
        color: #94a3b8;
        pointer-events: none;
        cursor: default;
    }

    .venue-contact-map {
        overflow: hidden;
        border-radius: 12px;
        background: #eef2f7;
        min-height: 260px;
    }

    .venue-contact-map-host {
        display: block;
        width: 100%;
        min-height: 260px;
    }

    .venue-contact-map iframe {
        display: block;
        width: 100%;
        height: 260px;
        border: 0;
    }

    .venue-contact-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .venue-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.85rem;
        border: 1px solid rgba(148, 163, 184, 0.22);
        border-radius: 12px;
        background: #fff;
    }

    .venue-contact-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(126, 89, 194, 0.1);
        color: var(--bs-primary);
        flex: 0 0 auto;
    }

    .venue-contact-label {
        display: block;
        color: #64748b;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        margin-bottom: 0.2rem;
    }

    .venue-contact-value {
        display: block;
        color: #0f172a;
        font-size: 0.95rem;
        font-weight: 400;
        line-height: 1.45;
    }

    .venue-calendar-outer {
        position: relative;
    }

    .venue-calendar-day {
        border-radius: 10px;
        padding: 0.35rem 0.5rem;
        border: 1px solid transparent;
        transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
    }

    .venue-calendar-day:hover,
    .venue-calendar-day:focus-visible {
        border-color: rgba(126, 89, 194, 0.35);
        background-color: rgba(126, 89, 194, 0.06);
        outline: none;
    }

    .venue-calendar-day:focus-visible {
        box-shadow: 0 0 0 2px rgba(126, 89, 194, 0.28);
    }

    .venue-calendar-weather-pop {
        position: fixed;
        z-index: 1080;
        min-width: 200px;
        max-width: min(280px, calc(100vw - 24px));
        padding: 0.65rem 0.75rem 0.75rem;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.12);
        border-radius: 12px;
        box-shadow: 0 12px 36px rgba(15, 23, 42, 0.14);
        pointer-events: auto;
    }

    .venue-calendar-weather-pop__arrow {
        position: absolute;
        left: 50%;
        bottom: -6px;
        width: 12px;
        height: 12px;
        margin-left: -6px;
        background: #fff;
        border-right: 1px solid rgba(15, 23, 42, 0.1);
        border-bottom: 1px solid rgba(15, 23, 42, 0.1);
        transform: rotate(45deg);
        pointer-events: none;
    }

    #venue-offer-section.sticky-top {
        top: 92px;
        z-index: 20;
    }

    /* «Neden bizi seçmelisiniz» / «Hakkında» — devamını oku (tüm ekran genişlikleri) */
    .venue-detail-page .venue-about-collapsible .card-body {
        position: relative;
    }

    .venue-detail-page .venue-about-collapsible .venue-about-toggle {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

    .venue-detail-page .venue-about-collapsible .venue-about-content {
        position: relative;
        max-height: 15rem;
        overflow: hidden;
    }

    .venue-detail-page .venue-about-collapsible .venue-about-content::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3.25rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 82%);
        pointer-events: none;
    }

    .venue-detail-page .venue-about-collapsible .venue-about-toggle:checked ~ .venue-about-content {
        max-height: none;
    }

    .venue-detail-page .venue-about-collapsible .venue-about-toggle:checked ~ .venue-about-content::after {
        display: none;
    }

    .venue-detail-page .venue-about-collapsible .venue-about-more {
        display: inline-block;
        margin-top: 0.55rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        color: var(--bs-primary);
        background: transparent;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 0.15em;
        cursor: pointer;
        user-select: none;
    }

    .venue-detail-page .venue-about-collapsible .venue-about-more:hover {
        color: var(--bs-primary);
        text-decoration: underline;
        opacity: 0.85;
    }

    .venue-detail-page .venue-about-collapsible .venue-about-less-text,
    .venue-detail-page .venue-about-collapsible .venue-about-toggle:checked ~ .venue-about-more .venue-about-more-text {
        display: none;
    }

    .venue-detail-page .venue-about-collapsible .venue-about-toggle:checked ~ .venue-about-more .venue-about-less-text {
        display: inline;
    }

    @media (max-width: 767.98px) {
        .venue-detail-page .venue-about-collapsible .venue-about-content {
            max-height: 9.5rem;
        }
    }

    @media (max-width: 991.98px) {
        .venue-detail-sticky-nav {
            top: 0;
        }

        .venue-detail-sticky-nav__inner {
            border-radius: 12px;
            padding: 0.55rem 0.65rem;
        }

        .venue-detail-sticky-nav__link {
            font-size: 0.85rem;
            padding: 0.55rem 0.75rem;
        }

        .venue-detail-gallery .venue-gallery-main .left-img,
        .venue-detail-gallery .right-grid {
            height: auto;
            flex-basis: auto;
        }

        .venue-contact-grid {
            grid-template-columns: 1fr;
        }

        .venue-detail-quick-row {
            align-items: flex-start;
            flex-direction: column;
            gap: 0.55rem;
        }

        #venue-offer-section.sticky-top {
            position: static;
            top: auto;
        }
    }

    @media (max-width: 767.98px) {
        .venue-detail-breadcrumb {
            margin-bottom: 0.85rem;
        }

        .venue-detail-breadcrumb .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            gap: 0.28rem;
            margin: 0;
            padding: 0.52rem 0.68rem;
            border: 1px solid #e5eaf3;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
            overflow: hidden;
        }

        .venue-detail-breadcrumb .breadcrumb-item {
            min-width: 0;
            color: #64748b;
            font-size: 0.78rem;
            font-weight: 700;
            line-height: 1.2;
            white-space: nowrap;
        }

        .venue-detail-breadcrumb .breadcrumb-item:first-child {
            display: none;
        }

        .venue-detail-breadcrumb .breadcrumb-item:nth-child(2)::before {
            display: none;
            content: "";
        }

        .venue-detail-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            color: #a78bfa;
            content: "›";
            font-weight: 900;
            padding-right: 0.34rem;
        }

        .venue-detail-breadcrumb .breadcrumb-item a {
            color: var(--bs-primary) !important;
            text-decoration: none;
        }

        .venue-detail-breadcrumb .breadcrumb-item.active {
            flex: 1 1 auto;
            overflow: hidden;
            color: #334155;
            text-overflow: ellipsis;
        }

        .venue-detail-sticky-nav__inner {
            margin: 0.5rem 0.75rem 0;
            padding: 0.45rem;
            border: 1px solid rgba(126, 89, 194, 0.12);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
        }

        .venue-detail-sticky-nav__list {
            justify-content: flex-start;
            gap: 0.28rem;
        }

        .venue-detail-sticky-nav__link {
            min-height: 36px;
            padding: 0.45rem 0.68rem;
            border: 1px solid #e7ddfb;
            border-radius: 14px;
            background: #fff;
            color: #475569;
            font-size: 0.76rem;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
        }

        .venue-detail-sticky-nav__link.is-active {
            border-color: var(--bs-primary);
            background: linear-gradient(135deg, #8a5bd3 0%, #6f49c7 100%);
            color: #fff;
            box-shadow: 0 8px 20px rgba(126, 89, 194, 0.24);
        }

        #photos-section {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            padding: 0 !important;
            border-radius: 20px !important;
            background: transparent;
            box-shadow: none;
            overflow: visible;
        }

        #photos-section .venue-detail-gallery {
            order: 1;
            margin-top: 0 !important;
        }

        #photos-section.has-mobile-hero-overlay > .crd-heaader,
        #photos-section.has-mobile-fallback-hero > .crd-heaader {
            display: none !important;
        }

        #photos-section > .crd-heaader h1 {
            font-size: 1.28rem;
            line-height: 1.25;
            margin-bottom: 0.55rem !important;
        }

        #photos-section .crd-heaader-last {
            display: none;
        }

        .venue-mobile-hero-media {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            min-height: 252px;
            background: #111827;
            box-shadow: 0 20px 42px rgba(15, 23, 42, 0.18);
        }

        .venue-detail-gallery .venue-gallery-main .venue-mobile-hero-media.left-img {
            aspect-ratio: 4 / 3;
            height: auto !important;
            min-height: 252px;
        }

        .venue-mobile-hero-media img {
            width: 100%;
            height: 100%;
            min-height: 252px;
            object-fit: cover;
            display: block;
            border-radius: 0 !important;
        }

        .venue-mobile-hero-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.16) 34%, rgba(15, 23, 42, 0.88) 100%);
            pointer-events: none;
        }

        .venue-mobile-hero-overlay {
            position: absolute;
            left: 1rem;
            right: 1rem;
            bottom: 1.05rem;
            z-index: 2;
            color: #fff;
        }

        .venue-mobile-hero-overlay h1 {
            margin: 0.45rem 0 0.35rem;
            color: #fff;
            font-size: 1.62rem;
            line-height: 1.14;
            font-weight: 800;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
            letter-spacing: 0;
        }

        .venue-mobile-hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .venue-mobile-hero-badges span {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 0.3rem 0.58rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.92);
            color: var(--bs-primary);
            font-size: 0.75rem;
            font-weight: 800;
            backdrop-filter: blur(8px);
        }

        .venue-mobile-location {
            display: inline-flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.92);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 700;
        }

        .venue-detail-gallery .right-grid {
            display: none !important;
        }

        .venue-detail-quick-info {
            order: 3;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.5rem;
            margin-top: 0.62rem;
            border: 0;
            background: transparent;
            overflow: visible;
        }

        .venue-detail-quick-row {
            display: flex;
            min-height: 78px;
            padding: 0.68rem !important;
            border: 1px solid #e8edf7 !important;
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.055);
        }

        .venue-detail-quick-main {
            align-items: flex-start;
            flex-direction: column;
            gap: 0.24rem;
            width: 100%;
        }

        .venue-detail-quick-icon {
            width: 28px;
            height: 28px;
            border-radius: 9px;
            font-size: 0.82rem;
        }

        .venue-detail-quick-label {
            font-size: 0.72rem;
            line-height: 1.2;
        }

        .venue-detail-quick-value {
            color: #172033;
            font-size: 0.9rem;
            line-height: 1.25;
            font-weight: 800;
        }

        .venue-detail-quick-link {
            display: none;
        }

        .venue-detail-quick-row--actions {
            display: none !important;
        }

        .venue-mobile-primary-actions {
            order: 4;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.4rem;
            padding: 0.6rem;
            border: 1px solid #e5eaf3;
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
        }

        .venue-mobile-primary-actions .btn,
        .venue-mobile-primary-actions form,
        .venue-mobile-primary-actions form button {
            width: 100%;
        }

        .venue-mobile-primary-actions .btn {
            min-height: 44px;
            border-radius: 12px;
            padding: 0.48rem 0.55rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.88rem;
            font-weight: 800;
            white-space: nowrap;
        }

        .venue-mobile-primary-actions > .btn:first-child {
            grid-column: 1 / 5;
            min-height: 48px;
            font-size: 0.96rem;
            box-shadow: 0 9px 18px rgba(126, 89, 194, 0.2);
            margin-bottom: 0.2rem;
        }

        .venue-mobile-favorite-form {
            margin: 0;
        }

        .venue-detail-main-stack {
            display: flex;
            flex-direction: column;
        }

        .venue-detail-main-stack > .venue-detail-section {
            border-radius: 18px !important;
            border: 1px solid #e8edf7 !important;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
            overflow: hidden;
        }

        .venue-detail-main-stack > .venue-detail-section .card-header {
            padding: 1rem;
            border-bottom-color: #edf1f7;
        }

        .venue-detail-main-stack > .venue-detail-section .card-body {
            padding: 1rem;
        }

        .venue-detail-main-stack > .venue-detail-section .card-header h2,
        .venue-detail-main-stack > .venue-detail-section .card-header .h6 {
            color: #0f172a;
            font-size: 1.02rem;
            line-height: 1.25;
        }

        .venue-contact-map {
            min-height: 180px;
            border-radius: 14px;
        }

        .venue-contact-map iframe {
            height: 180px;
        }

        .venue-contact-item {
            padding: 0.75rem;
            border-radius: 14px;
        }

        .venue-contact-icon {
            width: 30px;
            height: 30px;
            border-radius: 9px;
            font-size: 0.82rem;
        }

        #contact-section .btn {
            width: 100%;
            min-height: 44px;
            border-radius: 12px;
            font-size: 0.88rem;
            font-weight: 800;
        }

        #reviews-section .card-header > div {
            width: 100%;
            padding: 0.55rem 0.7rem;
            border-radius: 999px;
            background: #fff8e5;
        }

        #reviews-section .card-body > .d-flex {
            gap: 0.75rem !important;
            margin-bottom: 0.7rem !important;
            padding: 0.75rem !important;
            border: 1px solid #e8edf7 !important;
            border-radius: 14px;
            background: #fbfdff;
        }

        #reviews-section .square--40 {
            width: 34px !important;
            height: 34px !important;
            border-radius: 10px !important;
        }

        #reviews-section .review-star {
            font-size: 1.25rem !important;
        }

        #reviews-section textarea.form-control,
        #reviews-section input.form-control,
        #reviews-section .form-select {
            min-height: 44px;
            border-radius: 12px;
        }

        #availability-section .card-header .btn {
            width: 44px;
            height: 44px;
            padding: 0;
            border-radius: 12px;
        }

        #calendarMonthLabel {
            min-width: 6.75rem;
            text-align: center;
        }

        #capacity-section .card-body .row {
            gap: 0.6rem 0;
        }

        #capacity-section .card-body .row > [class*="col-"] > .d-flex {
            padding: 0.85rem !important;
            border-color: #e8edf7 !important;
            border-radius: 14px !important;
            background: #fbfdff;
        }

        #menus-section .card-body > .border {
            border-color: #e8edf7 !important;
            border-radius: 15px !important;
            background: #fbfdff;
        }

        #menus-section .d-flex.gap-3 {
            flex-wrap: wrap;
            gap: 0.5rem !important;
        }

        #menus-section .d-flex.gap-3 > span {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0.4rem 0.6rem;
            border-radius: 999px;
            background: rgba(126, 89, 194, 0.08);
            line-height: 1.2;
        }

        .venue-portfolio-section .card-header {
            align-items: flex-start !important;
        }

        .venue-portfolio-section .card-header .btn {
            min-height: 38px;
            border-radius: 999px;
            padding: 0.45rem 0.7rem;
            font-size: 0.78rem;
        }

        .venue-portfolio-section .card-body .row {
            --bs-gutter-x: 0.55rem;
            --bs-gutter-y: 0.55rem;
        }

        .venue-portfolio-section .card-body .row > [class*="col-"] {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .venue-portfolio-section .card-body img,
        .venue-portfolio-section .card-body .bg-light {
            height: 96px !important;
            border-radius: 12px;
        }

        .venue-portfolio-bottom-action {
            display: none;
        }

        #availability-section { order: 5; }
        #menus-section { order: 10; }
        #campaigns-section { order: 15; }
        #about-section { order: 20; }
        #faq-section { order: 25; }
        #portfolio-section { order: 30; }
        #contact-section { order: 35; }
        #reviews-section { order: 40; }
        #capacity-section { order: 50; }
    }

    @media (max-width: 360px) {
        .venue-mobile-hero-overlay h1 {
            font-size: 1.42rem;
        }

        .venue-mobile-primary-actions {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.38rem;
        }

        .venue-mobile-primary-actions .btn {
            font-size: 0.82rem;
        }

        .venue-detail-quick-info {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    #venueOfferRequestModal .offer-date-field,
    #venueQuickOfferModal .offer-date-field {
        position: relative;
        width: 100%;
    }

    #venueOfferRequestModal .offer-date-field .flatpickr-input,
    #venueQuickOfferModal .offer-date-field .flatpickr-input,
    #venueOfferRequestModal .offer-date-field .form-control.choosedate,
    #venueQuickOfferModal .offer-date-field .form-control.choosedate {
        width: 100%;
        padding-right: 2.75rem;
        cursor: pointer;
    }

    #venueOfferRequestModal .offer-date-field::after,
    #venueQuickOfferModal .offer-date-field::after {
        content: "\f133";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 0.85rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--bs-primary);
        pointer-events: none;
        font-size: 0.95rem;
        z-index: 1;
    }

    #venueOfferRequestModal .flatpickr-calendar.open,
    #venueQuickOfferModal .flatpickr-calendar.open {
        margin-top: 0.35rem;
        border-radius: 14px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
        width: min(100%, 320px);
        z-index: 1065;
    }

    #venueOfferRequestModal .flatpickr-months .flatpickr-month,
    #venueQuickOfferModal .flatpickr-months .flatpickr-month {
        height: 44px;
    }

    #venueOfferRequestModal .flatpickr-current-month,
    #venueQuickOfferModal .flatpickr-current-month {
        font-weight: 700;
        font-size: 1rem;
    }
