/* =========================================================
   REVIEWS – CLEANED PROFESSIONAL VERSION
   Duplicates merged by exact selector/context.
   For repeated properties, the effective declaration was kept.
========================================================= */
.hbc-single-rating{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:14px;
    padding:10px 14px;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    box-shadow:0 8px 24px rgba(15,23,42,.05);
}

.hbc-reviews-list{
    display:grid;
    gap:16px;
}

.hbc-review-item{
    border:1px solid #e5e7eb;
    border-radius:18px;
    background:#fff;
    padding:18px;
    box-shadow:0 8px 24px rgba(15,23,42,.04);
}

.hbc-review-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:10px;
}

.hbc-review-author-wrap{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.hbc-review-author{
    font-size:17px;
    font-weight:900;
    color:#111827;
    line-height:1.2;
}

.hbc-review-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    font-size:13px;
    color:#6b7280;
}

.hbc-review-content{
    font-size:15px;
    line-height:1.9;
    color:#374151;
}

.hbc-review-content p:last-child{
    margin-bottom:0;
}

.hbc-rating-open-btn, .hbc-reviews-all-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 16px;
    border:none;
    border-radius:14px;
    background:#111827;
    color:#fff;
    font-size:14px;
    font-weight:900;
    cursor:pointer;
    transition:.2s ease;
}

.hbc-rating-open-btn:hover, .hbc-reviews-all-btn:hover{
    background:#000;
}

.hbc-reviews-box{
    display:grid;
    gap:18px;
}

.hbc-reviews-head h2{
    margin:0 0 6px;
}

.hbc-reviews-subhead{
    margin:0;
    font-size:14px;
    line-height:1.8;
    color:#64748b;
}

.hbc-reviews-featured-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:16px;
}

.hbc-review-item-featured{
    height:100%;
}

.hbc-reviews-modal-dialog{
    position:relative;
    width:min(980px, calc(100% - 24px));
    max-height:88vh;
    margin:4vh auto;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(15,23,42,.22);
    display:flex;
    flex-direction:column;
}

.hbc-reviews-modal-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    padding:22px 22px 16px;
    border-bottom:1px solid #e5e7eb;
}

.hbc-reviews-modal-head h2{
    margin:0 0 6px;
    font-size:28px;
    color:#111827;
}

.hbc-reviews-modal-head p{
    margin:0;
    color:#64748b;
    font-size:14px;
}

.hbc-reviews-modal-close{
    width:44px;
    height:44px;
    border:none;
    border-radius:14px;
    background:#eef2f7;
    color:#111827;
    font-size:20px;
    font-weight:900;
    cursor:pointer;
}

.hbc-reviews-modal-tools{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 22px;
    border-bottom:1px solid #e5e7eb;
    background:#f8fafc;
    flex-wrap:wrap;
}

.hbc-reviews-modal-tools label{
    font-size:14px;
    font-weight:800;
    color:#334155;
}

.hbc-reviews-modal-tools select{
    min-width:260px;
    min-height:44px;
    border-radius:12px;
    border:1px solid #dbe4ee;
    background:#fff;
    padding:0 14px;
    font-size:14px;
    color:#111827;
}

.hbc-reviews-modal-list{
    padding:22px;
    overflow:auto;
    display:grid;
    gap:16px;
}

.hbc-review-item-modal{
    border:1px solid #e5e7eb;
    border-radius:18px;
    background:#fff;
    padding:18px;
    box-shadow:0 8px 24px rgba(15,23,42,.04);
}

.hbc-reviews-modal-summary{
    padding:18px 22px;
    border-bottom:1px solid #e5e7eb;
    background:#fff;
    display:grid;
    gap:16px;
}

.hbc-reviews-modal-summary-top{
    display:flex;
    align-items:center;
    gap:14px;
}

.hbc-reviews-modal-summary-score{
    min-width:68px;
    height:68px;
    border-radius:18px;
    background:linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:900;
    line-height:1;
}

.hbc-reviews-modal-summary-text{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.hbc-reviews-modal-summary-text strong{
    font-size:22px;
    color:#111827;
    line-height:1.1;
}

.hbc-reviews-modal-summary-text span{
    font-size:14px;
    color:#64748b;
    line-height:1.3;
}

.hbc-public-review-notice{
    margin:0 0 18px;
    padding:14px 16px;
    border-radius:16px;
    font-size:14px;
    font-weight:800;
}

.hbc-public-review-notice-success{
    background:#ecfdf5;
    border:1px solid #bbf7d0;
    color:#166534;
}

.hbc-public-review-notice-error{
    background:#fef2f2;
    border:1px solid #fecaca;
    color:#991b1b;
}

.hbc-review-form-modal{
    position:fixed;
    inset:0;
    z-index:100000;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.22s ease;
}

.hbc-review-form-modal.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.hbc-review-form-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.58);
}

.hbc-review-form-modal-dialog{
    position:relative;
    width:min(760px, calc(100% - 24px));
    max-height:88vh;
    margin:4vh auto;
    background:#fff;
    border-radius:24px;
    overflow:auto;
    box-shadow:0 30px 80px rgba(15,23,42,.22);
    padding:22px;
}

.hbc-review-form-modal-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:16px;
}

.hbc-review-form-modal-head h2{
    margin:0;
    font-size:28px;
    color:#111827;
}

.hbc-review-form-modal form{
    display:grid;
    gap:12px;
}

.hbc-review-form-modal input, .hbc-review-form-modal select, .hbc-review-form-modal textarea{
    width:100%;
    min-height:46px;
    border-radius:14px;
    border:1px solid #dbe4ee;
    background:#fff;
    padding:0 14px;
    font-size:14px;
    color:#111827;
}

.hbc-review-form-modal textarea{
    min-height:130px;
    padding:14px;
    resize:vertical;
}

.hbc-review-form-modal form button[type="submit"]{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 18px;
    border:none;
    border-radius:14px;
    background:#111827;
    color:#fff;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
}

.hbc-review-form-grid{
    display:grid;
    gap:16px;
}

.hbc-review-form-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.hbc-review-form-field-full{
    grid-column:1 / -1;
}

.hbc-review-form-optional{
    padding:14px;
    border:1px solid #e5e7eb;
    border-radius:16px;
    background:#f8fafc;
}

.hbc-review-form-optional-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
}

.hbc-review-score-picker{
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:10px;
}

.hbc-review-score-btn{
    min-height:52px;
    border:1px solid #dbe4ee;
    border-radius:14px;
    background:#fff;
    color:#111827;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    transition:.2s ease;
}

.hbc-review-score-btn:hover{
    background:#f8fafc;
    border-color:#94a3b8;
}

.hbc-review-score-btn.is-active{
    background:#111827;
    color:#fff;
    border-color:#111827;
    transform:translateY(-1px);
}

.hbc-review-score-btn.score-10{
    background:#15803d;
    color:#fff;
    border-color:#15803d;
}

.hbc-review-score-btn.score-9{
    background:#22c55e;
    color:#fff;
    border-color:#22c55e;
}

.hbc-review-score-btn.score-8{
    background:#eab308;
    color:#111;
    border-color:#eab308;
}

.hbc-review-score-btn.score-7{
    background:#f59e0b;
    color:#111;
    border-color:#f59e0b;
}

.hbc-review-score-btn.score-6{
    background:#dc2626;
    color:#fff;
    border-color:#dc2626;
}

.hbc-card-rating{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:6px;
    margin-top:-2px;
}

.hbc-card-rating-label{
    font-size:12px;
    font-weight:800;
    color:#111827;
}

.hbc-card-rating-count{
    font-size:12px;
    color:#6b7280;
}

.hbc-card-rating-bottom, .hall-card-rating-bottom{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.hbc-card-rating-bottom .hbc-card-rating-score, .hall-card-rating-bottom .hall-card-rating-score{
    min-width:40px;
    height:40px;
    padding:0 10px;
    border-radius:12px;
    background:#0f172a;
    color:#fff;
    font-size:16px;
    font-weight:800;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.hbc-card-rating-bottom .hbc-card-rating-label, .hall-card-rating-bottom .hall-card-rating-label{
    font-size:13px;
    font-weight:700;
    color:#111827;
}

.hbc-card-rating-bottom .hbc-card-rating-count, .hall-card-rating-bottom .hall-card-rating-count{
    font-size:12px;
    color:#64748b;
}

.hbc-single-rating-actions .hbc-rating-open-btn, .hbc-single-rating-actions .hbc-reviews-all-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 18px;
    border:1px solid #d6c29c;
    border-radius:14px;
    background:linear-gradient(180deg, #fffdf8 0%, #f6efe2 100%);
    color:#8b6b2e;
    font-size:14px;
    font-weight:800;
    line-height:1;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(15,23,42,.08);
    transition:.22s ease;
}

.hbc-single-rating-actions .hbc-rating-open-btn:hover, .hbc-single-rating-actions .hbc-reviews-all-btn:hover{
    transform:translateY(-1px);
    background:linear-gradient(180deg, #fffaf0 0%, #f2e6cf 100%);
    color:#6f531f;
    box-shadow:0 12px 24px rgba(15,23,42,.12);
}

.hbc-single-rating-actions .hbc-rating-open-btn:focus, .hbc-single-rating-actions .hbc-reviews-all-btn:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(201,138,45,.18), 0 10px 24px rgba(15,23,42,.10);
}

.hbc-single-rating-text{
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;
}

.hbc-single-rating-actions{
    margin-right:auto;
    width:100%;
    margin-top:8px !important;
    justify-content:flex-start;
    align-items:center;
    display:flex;
    grid-column:1 / -1;
    gap:10px;
    flex-wrap:wrap;
}

.hbc-single-rating.hbc-single-rating-rich{
    display:grid;
    grid-template-columns:72px 1fr;
    gap:12px;
    align-items:center;
    padding:16px 18px;
    background:#fff;
    border:1px solid #e7ecf2;
    border-radius:18px;
    box-shadow:0 8px 24px rgba(15,23,42,.04);
    margin-right:auto;
    margin-left:0;
    width:fit-content;
    max-width:100%;
    align-self:start;
    margin:0;
}

.hbc-rating-map:hover .hbc-rating-map-badge{
    background:#1d4ed8;
}

.hbc-single-rating.hbc-single-rating-rich, .hbc-rating-map{
    width:100%;
    min-height:148px;
    height:100%;
    box-sizing:border-box;
}

.hbc-rating-map img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hbc-rating-map, .hbc-single-rating-rich, .hbc-summary-amenities-box{
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
    border-radius:0 !important;
    margin:0 !important;
}

.hbc-rating-map{
    width:100%;
    height:100%;
    position:relative;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #e7ecf2;
    background:#f8fafc;
    text-decoration:none;
    display:block;
    min-height:140px;
    border-left:1px solid #eef2f7;
}

.hbc-single-rating-rich{
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    display:flex;
    justify-content:space-between;
    padding:18px 18px 16px;
    flex-direction:column;
    min-height:140px;
    border-right:2px solid #d1d5db !important;
}

.hbc-rating-map-wrap{
    align-items:stretch;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    background:#fff;
    border-bottom:2px solid #d1d5db;
}

.hbc-single-rating-score{
    background:#0f3d91;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
    width:52px;
    min-width:46px;
    height:46px;
    border-radius:12px;
    font-size:22px;
    font-weight:800;
}

.hbc-single-rating-text strong{
    line-height:1.2;
    font-weight:800;
    margin:0;
    font-size:22px;
    color:#111827;
}

.hbc-single-rating-text span{
    line-height:1.4;
    font-size:14px;
    color:#6b7280;
}

.hbc-single-rating-actions .hbc-rating-open-btn{
    min-height:42px !important;
    padding:0 14px !important;
    border:1px solid #d6c29c !important;
    border-radius:12px !important;
    background:#fffaf0 !important;
    color:#8b6b2e !important;
    font-size:13px !important;
    font-weight:700 !important;
    line-height:1 !important;
    box-shadow:none !important;
}

.hbc-review-form-toggle{
    min-height:46px;
    border:none;
    cursor:pointer;
    border-radius:12px;
    background:#e5e7eb !important;
    color:#111827 !important;
    font-size:15px;
    font-weight:600;
    transition:all .2s ease;
}

.hbc-review-form-toggle:hover{
    background:#d1d5db !important;
    color:#111827 !important;
}

.hbc-review-form-toggle:active{
    background:#cbd5e1 !important;
    transform:none !important;
}

.hbc-review-form-field label{
    font-size:14px !important;
    color:#334155 !important;
    font-weight:600 !important;
}

.hbc-review-form-field select, .hbc-review-form-field input, .hbc-review-form-field textarea{
    font-size:14px !important;
    height:42px;
}

.hbc-review-form-field select{
    padding:0 10px;
}

.hbc-review-score-picker div{
    font-size:15px !important;
    font-weight:600;
}

.hbc-rating-map-disabled{
    pointer-events:none;
    cursor:default;
    opacity:.92;
}

.hbc-single-rating.is-empty{
    background:linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border:1px solid #e5ebf5;
    box-shadow:0 10px 28px rgba(15,23,42,.06);
}

.hbc-single-rating.is-empty .hbc-single-rating-score{
    display:flex;
    align-items:center;
    justify-content:center;
}

.hbc-single-rating-score-empty{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:58px;
    height:58px;
    padding:0 14px;
    border-radius:16px;
    background:linear-gradient(135deg,#1d4ed8 0%,#2563eb 100%);
    color:#fff;
    font-size:16px;
    font-weight:800;
    letter-spacing:.4px;
    box-shadow:0 10px 22px rgba(37,99,235,.22);
}

.hbc-single-rating.is-empty .hbc-single-rating-text{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.hbc-rating-empty-badge{
    display:inline-flex;
    align-items:center;
    width:max-content;
    padding:5px 10px;
    border-radius:999px;
    background:#eef4ff;
    color:#1d4ed8;
    font-size:12px;
    font-weight:800;
    line-height:1;
    border:1px solid rgba(37,99,235,.14);
}

.hbc-single-rating.is-empty .hbc-single-rating-text strong{
    display:block;
    margin:0;
    font-size:20px;
    font-weight:800;
    color:#0f172a;
    line-height:1.25;
}

.hbc-single-rating.is-empty .hbc-single-rating-text span{
    margin:0;
    color:#64748b;
    font-size:14px;
    line-height:1.6;
    max-width:320px;
}

.hbc-single-rating.is-empty .hbc-single-rating-actions{
    margin-top:14px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

.hbc-single-rating.is-empty .hbc-rating-open-btn{
    min-height:44px;
    min-width:220px;
    justify-content:center;
}

.hbc-card-rating-bottom{
    margin-top:10px;
    display:grid;
    grid-template-columns:1fr auto;
    grid-template-rows:auto auto;
    align-items:center;
    column-gap:6px;
    row-gap:2px;
    width:100%;
    margin-bottom:10px;
    direction:rtl;
}

.hbc-card-rating-bottom .hbc-card-rating-score{
    grid-column:2;
    grid-row:1 / span 2;
    align-self:center;
    justify-self:end;
    width:32px;
    height:32px;
    min-width:0;
    max-width:32px;
    padding:0;
    border-radius:10px;
    background:linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color:#fff;
    font-size:14px;
    font-weight:500;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 18px rgba(37,99,235,.20);
    border:none;
    flex-shrink:0;
}

.hbc-review-score{
    min-width:64px;
    height:40px;
    padding:0 14px;
    border-radius:12px;
    background:linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:800;
    line-height:1;
    white-space:nowrap;
    box-shadow:0 10px 24px rgba(37,99,235,.18);
    border:none;
}

.hbc-review-item-featured .hbc-review-score{
    min-width:58px;
    height:38px;
    font-size:17px;
    border-radius:11px;
}

.hbc-reviews-all-btn, .hbc-rating-open-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 16px;
    border-radius:12px;
    border:1px solid #dbe5f4;
    background:#fff;
    color:#1e293b;
    font-size:14px;
    font-weight:700;
    line-height:1;
    cursor:pointer;
    transition:background .2s ease,
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
    box-shadow:0 4px 14px rgba(15,23,42,.04);
}

.hbc-reviews-all-btn:hover, .hbc-rating-open-btn:hover{
    background:#f8fbff;
    border-color:#bfd3f2;
    color:#1d4ed8;
    box-shadow:0 8px 22px rgba(37,99,235,.10);
    transform:translateY(-1px);
}

.hbc-rating-open-btn{
    appearance:none;
    font-weight:700;
    line-height:1.2;
    cursor:pointer;
    transition:.2s ease;
    border-radius:12px;
    padding:10px 14px;
    font-size:13px;
    border:none;
    background:linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color:#fff;
    box-shadow:0 10px 24px rgba(37,99,235,.18);
}

.hbc-rating-open-btn:hover{
    border-color:#bfc9d8;
    background:linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color:#fff;
    box-shadow:0 12px 28px rgba(37,99,235,.22);
}

.hbc-reviews-all-btn{
    background:#fff;
    color:#0f172a;
}

.hbc-reviews-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    flex-wrap:wrap;
}

.hbc-rating-map-pin{
    position:absolute;
    top:50%;
    left:50%;
    width:20px;
    height:20px;
    background:#2563eb;
    border:3px solid #ffffff;
    border-radius:50%;
    transform:translate(-50%,-72%);
    box-shadow:0 0 0 5px rgba(37,99,235,0.18),
        0 8px 18px rgba(37,99,235,0.22);
    z-index:2;
}

.hbc-rating-map-pin::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:6px;
    height:6px;
    background:#ffffff;
    border-radius:50%;
    transform:translate(-50%,-50%);
}

.hbc-rating-map-pin::after{
    top:50%;
    content:"";
    position:absolute;
    left:50%;
    width:9px;
    height:9px;
    background:#2563eb;
    border-radius:1px;
    transform:translateX(-50%) rotate(45deg);
    bottom:-6px;
}

.hbc-rating-map-badge{
    line-height:1;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, 28px);
    z-index:3;
    padding:9px 16px;
    border-radius:999px;
    background:#2563eb;
    color:#fff;
    font-size:13px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(37,99,235,0.26);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
}

.hbc-rating-map-disabled .hbc-rating-map-badge{
    opacity:1;
    background:#64748b;
    box-shadow:none;
}

.hbc-review-verify-box{
    padding:8px 2px 2px;
    text-align:right;
}

.hbc-review-verify-box h3{
    margin:0 0 10px;
    font-size:24px;
    font-weight:900;
    color:#111827;
}

.hbc-review-verify-box p{
    margin:0 0 18px;
    font-size:15px;
    line-height:1.8;
    color:#475569;
}

.hbc-review-verify-form{
    display:grid;
    gap:14px;
}

.hbc-review-verify-form input[type="text"]{
    width:100%;
    min-height:54px;
    border:1px solid #dbe4ee;
    border-radius:16px;
    background:#fff;
    padding:0 16px;
    font-size:22px;
    font-weight:800;
    letter-spacing:6px;
    text-align:center;
    color:#0f172a;
    box-shadow:0 6px 16px rgba(15,23,42,.04);
}

.hbc-review-verify-form button{
    min-height:50px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#1e3a8a 0%,#2563eb 100%);
    color:#fff;
    font-size:15px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 10px 24px rgba(37,99,235,.20);
}

.hbc-review-resend-form{
    margin-top:12px;
}

.hbc-review-resend-btn{
    width:100%;
    min-height:46px;
    border:1px solid #d7e0ea;
    border-radius:14px;
    background:#fff;
    color:#1e293b;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    transition:.2s ease;
}

.hbc-review-resend-btn:hover{
    background:#f8fafc;
    border-color:#cbd5e1;
}

#hbcReviewVerifyStep .hbc-review-verify-box{
    display:flex;
    flex-direction:column;
    gap:14px;
}

#hbcReviewVerifyStep .hbc-review-verify-form > button[type="submit"]{
    width:100% !important;
    min-height:56px !important;
    border:1px solid #d7c28a !important;
    border-radius:18px !important;
    background:linear-gradient(180deg, #f6e7b8 0%, #e4c66d 48%, #c9961a 100%) !important;
    color:#1f2937 !important;
    font-size:16px !important;
    font-weight:900 !important;
    letter-spacing:.2px !important;
    box-shadow:0 14px 28px rgba(153, 118, 28, .22),
        inset 0 1px 0 rgba(255,255,255,.65) !important;
    text-shadow:0 1px 0 rgba(255,255,255,.22) !important;
    transition:transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
}

#hbcReviewVerifyStep .hbc-review-verify-form > button[type="submit"]:hover{
    transform:translateY(-1px) !important;
    filter:brightness(1.03) !important;
    box-shadow:0 18px 34px rgba(153, 118, 28, .28),
        inset 0 1px 0 rgba(255,255,255,.7) !important;
}

#hbcReviewVerifyStep .hbc-review-verify-form > button[type="submit"]:active{
    transform:translateY(0) !important;
}

#hbcReviewVerifyStep .hbc-review-resend-form{
    margin:2px 0 0 !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:6px !important;
}

#hbcReviewVerifyStep .hbc-review-resend-form > .hbc-review-resend-btn{
    width:auto !important;
    min-height:40px !important;
    padding:10px 18px !important;
    border:1px solid #dbe3ee !important;
    border-radius:999px !important;
    background:#ffffff !important;
    color:#334155 !important;
    font-size:13px !important;
    font-weight:800 !important;
    box-shadow:0 8px 18px rgba(15,23,42,.06) !important;
    text-decoration:none !important;
    transition:all .18s ease !important;
}

#hbcReviewVerifyStep .hbc-review-resend-form > .hbc-review-resend-btn:hover{
    background:#f8fafc !important;
    border-color:#cbd5e1 !important;
    color:#1d4ed8 !important;
    transform:translateY(-1px) !important;
    box-shadow:0 12px 22px rgba(15,23,42,.09) !important;
}

#hbcReviewVerifyStep .hbc-review-resend-form > .hbc-review-resend-btn::before{
    content:"↻";
    display:inline-block;
    margin-left:6px;
    font-size:12px;
    line-height:1;
}

#hbcReviewVerifyStep .hbc-review-resend-form::after{
    content:"לא קיבלתם? אפשר לשלוח קוד חדש למייל";
    display:block;
    text-align:center;
    color:#94a3b8;
    font-size:11px;
    font-weight:700;
    line-height:1.4;
}

.hbc-review-score-help{
    text-align:center;
    font-size:16px;
    color:#64748b;
    font-weight:700;
}

#hbcReviewVerifyStep .hbc-review-cancel-form{
    width:100%;
    margin-top:2px;
    display:flex;
    justify-content:center;
}

#hbcReviewVerifyStep .hbc-review-cancel-btn{
    width:auto !important;
    min-height:38px !important;
    padding:8px 14px !important;
    border:none !important;
    background:transparent !important;
    color:#94a3b8 !important;
    font-size:12px !important;
    font-weight:700 !important;
    box-shadow:none !important;
    text-decoration:none !important;
    cursor:pointer !important;
}

#hbcReviewVerifyStep .hbc-review-cancel-btn:hover{
    color:#dc2626 !important;
    background:transparent !important;
    box-shadow:none !important;
    transform:none !important;
    text-decoration:underline !important;
}

#hbcReviewEventDate{
    direction:rtl;
}

#hbcReviewEventDate[type="text"]{
    color:#94a3b8;
    font-weight:600;
}

#hbcReviewEventDate[type="date"]{
    color:#0f172a;
    font-weight:700;
}

.hbc-reviews-modal{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.22s ease;
    position:fixed;
    inset:0;
    z-index:999999;
    display:none;
}

.hbc-reviews-modal.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    display:block;
}

.hbc-reviews-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.46);
}

.hbc-reviews-panel{
    position:absolute;
    top:0;
    left:0;
    height:100dvh;
    width:min(50vw, 760px);
    min-width:640px;
    background:#fff;
    box-shadow:0 18px 60px rgba(15,23,42,.24);
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

.hbc-reviews-panel-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    padding:20px 22px;
    border-bottom:1px solid #e5e7eb;
    flex:0 0 auto;
    background:#fff;
}

.hbc-reviews-panel-head h2{
    margin:0 0 4px;
    font-size:42px;
    line-height:1.05;
    color:#111827;
}

.hbc-reviews-panel-head p{
    margin:0;
    color:#64748b;
    font-size:14px;
    font-weight:700;
}

.hbc-reviews-panel-body{
    flex:1 1 auto;
    overflow-y:auto;
    overflow-x:hidden;
    -webkit-overflow-scrolling:touch;
    background:#fff;
}

.hbc-reviews-panel-summary{
    padding:18px 22px;
    border-bottom:1px solid #e5e7eb;
    background:#fff;
}

.hbc-reviews-breakdown{
    margin-top:14px;
    border:1px solid #e5e7eb;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
}

.hbc-reviews-breakdown summary{
    list-style:none;
    cursor:pointer;
    padding:14px 16px;
    font-weight:600;
    color:#0f172a;
    position:relative;
}

.hbc-reviews-breakdown summary::-webkit-details-marker{
    display:none;
}

.hbc-reviews-breakdown summary::after{
    content:"⌄";
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    font-size:18px;
    color:#475569;
}

.hbc-reviews-breakdown[open] summary::after{
    content:"⌃";
}

.hbc-reviews-modal-bars{
    display:grid;
    gap:12px;
    padding:0 16px 16px;
}

.hbc-reviews-modal-bar-label{
    grid-area:label;
    font-size:13px;
    font-weight:600;
    color:#111827;
}

.hbc-reviews-modal-bar-fill{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    border-radius:999px;
    background:linear-gradient(90deg,#1e3a8a 0%, #0f172a 100%);
}

.hbc-reviews-panel-tools{
    position:sticky;
    top:0;
    z-index:4;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 22px;
    border-bottom:1px solid #e5e7eb;
    background:#fff;
}

.hbc-reviews-panel-tools label{
    font-size:14px;
    font-weight:600;
    color:#334155;
}

.hbc-reviews-panel-tools select{
    min-width:240px;
    min-height:44px;
    border-radius:12px;
    border:1px solid #dbe4ee;
    background:#fff;
    padding:0 14px;
    font-size:14px;
    color:#111827;
}

.hbc-reviews-panel-list{
    display:grid;
    gap:16px;
    padding:18px 22px;
}

.hbc-reviews-panel-load{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:60px;
    padding:0 22px 24px;
}

.hbc-reviews-panel-load span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:210px;
    min-height:44px;
    padding:0 16px;
    border-radius:12px;
    background:#0f1b3d;
    color:#fff;
    font-size:14px;
    font-weight:800;
    opacity:.95;
}

.hbc-reviews-panel-load.is-hidden{
    display:none;
}

body.hbc-reviews-modal-open{
    overflow:hidden;
}

.hbc-reviews-modal-bar-row{
    grid-template-columns:120px auto;
    grid-template-areas:"label value"
        "track track";
    display:flex;
    gap:10px;
    align-items:center;
}

.hbc-reviews-modal-bar-value{
    text-align:center;
    direction:ltr;
    grid-area:value;
    justify-self:start;
    line-height:24px;
    font-size:12px;
    font-weight:700;
    color:#fff;
    min-width:36px;
    height:22px;
    padding:0 8px;
    border-radius:999px;
    background:#1e3a8a;
    position:static !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.hbc-reviews-modal-bar-track{
    position:relative;
    height:8px;
    border-radius:999px;
    background:#e8edf3;
    overflow:hidden;
    grid-area:track;
    flex:1;
}

.hbc-header-nav .hbc-nav-reviews::before{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

.hbc-card-rating-bottom .hbc-card-rating-label{
    font-size:12px !important;
    grid-column:1;
    grid-row:1;
    display:block;
    margin:0;
    color:#0f172a;
    line-height:1.15;
    text-align:right;
    font-weight:600;
}

.hbc-card-rating-bottom .hbc-card-rating-count{
    direction:rtl;
    unicode-bidi:plaintext;
    transform:translateX(0px);
    text-align:right;
    grid-column:1;
    grid-row:2;
    display:block;
    margin:0;
    line-height:1.15;
    font-weight:600;
    font-size:12px;
    color:#6b7280;
}

body.page .hbc-reviews-hub{
    max-width:1280px;
    margin:0 auto;
    padding:48px 20px 90px;
    position:relative;
}

body.page .hbc-reviews-hub::before{
    content:"";
    position:absolute;
    top:8px;
    left:50%;
    transform:translateX(-50%);
    width:min(1120px, 92%);
    height:220px;
    border-radius:36px;
    background:radial-gradient(circle at center, rgba(212,175,55,.18) 0%, rgba(212,175,55,.08) 28%, rgba(212,175,55,0) 68%);
    pointer-events:none;
    z-index:0;
}

body.page .hbc-reviews-hub > *{
    position:relative;
    z-index:1;
}

body.page .hbc-reviews-hub-head h1{
    margin:0 0 12px;
    font-size:56px;
    line-height:1.02;
    font-weight:900;
    color:#0f172a;
    letter-spacing:-0.02em;
}

body.page .hbc-reviews-hub-head p{
    margin:0 auto;
    max-width:760px;
    font-size:19px;
    line-height:1.8;
    color:#64748b;
}

body.page .hbc-reviews-hub-topbox{
    background:linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,250,252,.98) 100%);
    border:1px solid rgba(201,210,224,.75);
    border-radius:32px;
    box-shadow:0 20px 60px rgba(15,23,42,.08),
        0 2px 0 rgba(255,255,255,.85) inset;
    padding:26px;
    margin-bottom:28px;
    overflow:hidden;
    position:relative;
}

body.page .hbc-reviews-hub-topbox::before{
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:100%;
    height:1px;
    background:linear-gradient(90deg, rgba(212,175,55,0) 0%, rgba(212,175,55,.55) 50%, rgba(212,175,55,0) 100%);
    top:0;
}

body.page .hbc-reviews-hub-form label{
    display:block;
    margin:0 0 14px;
    font-size:22px;
    font-weight:800;
    color:#0f172a;
}

@media (max-width:767px){

    body.page .hbc-reviews-hub-form label{
        font-size:16px;
        line-height:1.35;
        margin-bottom:10px;
    }
}

body.page .hbc-reviews-hub-actions{
    display:grid;
    grid-template-columns:220px minmax(0,1fr);
    gap:14px;
    align-items:center;
}

body.page .hbc-reviews-hub-actions select{
    width:100%;
    min-height:62px;
    border:1px solid #cfd8e3;
    border-radius:20px;
    background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding:0 20px;
    font-size:16px;
    font-weight:700;
    color:#0f172a;
    outline:none;
    box-shadow:0 1px 0 rgba(255,255,255,.95) inset,
        0 10px 24px rgba(15,23,42,.04);
    transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

body.page .hbc-reviews-hub-actions select:hover{
    border-color:#b9c7d8;
}

body.page .hbc-reviews-hub-actions select:focus{
    border-color:#d4af37;
    box-shadow:0 0 0 4px rgba(212,175,55,.14),
        0 10px 24px rgba(15,23,42,.05);
}

body.page .hbc-reviews-hub-btn{
    min-height:62px;
    border:1px solid #0b2348;
    border-radius:20px;
    background:linear-gradient(180deg, #0f2142 0%, #0b1730 100%);
    color:#fff;
    font-size:17px;
    font-weight:900;
    letter-spacing:.01em;
    cursor:pointer;
    box-shadow:0 14px 30px rgba(8,23,56,.24),
        inset 0 1px 0 rgba(255,255,255,.16);
    transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

body.page .hbc-reviews-hub-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 18px 38px rgba(8,23,56,.28),
        inset 0 1px 0 rgba(255,255,255,.18);
    filter:brightness(1.03);
}

body.page .hbc-reviews-hub-list-wrap{
    background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(249,251,253,.98) 100%);
    border:1px solid rgba(201,210,224,.75);
    border-radius:34px;
    box-shadow:0 24px 70px rgba(15,23,42,.08),
        0 2px 0 rgba(255,255,255,.86) inset;
    padding:30px;
    position:relative;
    overflow:hidden;
}

body.page .hbc-reviews-hub-list-wrap::before{
    content:"";
    position:absolute;
    top:0;
    left:24px;
    right:24px;
    height:2px;
    background:linear-gradient(90deg, rgba(212,175,55,0) 0%, rgba(212,175,55,.72) 50%, rgba(212,175,55,0) 100%);
    opacity:.9;
}

body.page .hbc-reviews-hub-list-wrap h2{
    margin:0 0 22px;
    font-size:38px;
    line-height:1.08;
    font-weight:900;
    color:#0f172a;
    letter-spacing:-0.02em;
}

body.page .hbc-reviews-hub-list{
    display:grid;
    gap:18px;
}

body.page .hbc-reviews-hub-card{
    position:relative;
    border:1px solid #d8e0ea;
    border-radius:28px;
    background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding:22px 22px 20px;
    box-shadow:0 10px 28px rgba(15,23,42,.05),
        0 1px 0 rgba(255,255,255,.9) inset;
    transition:transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

body.page .hbc-reviews-hub-card:hover{
    transform:translateY(-3px);
    border-color:#c8d3e0;
    box-shadow:0 18px 42px rgba(15,23,42,.09),
        0 1px 0 rgba(255,255,255,.95) inset;
}

body.page .hbc-reviews-hub-card::after{
    content:"";
    position:absolute;
    inset:auto 24px 0 24px;
    height:1px;
    background:linear-gradient(90deg, rgba(15,23,42,0) 0%, rgba(212,175,55,.22) 50%, rgba(15,23,42,0) 100%);
    pointer-events:none;
}

body.page .hbc-reviews-hub-card-top{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:14px;
}

body.page .hbc-reviews-hub-score{
    width:66px;
    height:66px;
    border-radius:20px;
    flex:0 0 66px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg, #0f2142 0%, #0a1732 100%);
    color:#fff;
    font-size:28px;
    font-weight:900;
    box-shadow:0 12px 24px rgba(10,23,50,.22),
        inset 0 1px 0 rgba(255,255,255,.14);
}

body.page .hbc-reviews-hub-title{
    margin:0 0 8px;
    font-size:24px;
    line-height:1.15;
    font-weight:500;
    color:#0f172a;
}

body.page .hbc-reviews-hub-title a{
    color:#0f172a;
    text-decoration:none;
    transition:color .18s ease;
}

body.page .hbc-reviews-hub-title a:hover{
    color:#0b4ea2;
}

body.page .hbc-reviews-hub-submeta{
    display:flex;
    flex-wrap:wrap;
    gap:8px 10px;
    align-items:center;
    font-size:13px;
    color:#64748b;
}

body.page .hbc-reviews-hub-submeta > span{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 10px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    color:#64748b;
    font-weight:700;
}

body.page .hbc-reviews-hub-label{
    background:#eef4ff !important;
    border-color:#cfe0ff !important;
    color:#0f172a !important;
    font-weight:900 !important;
}

body.page .hbc-reviews-hub-submeta .is-verified{
    background:#ecfdf5 !important;
    border-color:#bbf7d0 !important;
    color:#15803d !important;
    font-weight:900 !important;
}

body.page .hbc-reviews-hub-content{
    margin-top:4px;
    color:#334155;
    font-size:16px;
    line-height:1.95;
}

body.page .hbc-reviews-hub-content p{
    margin:0;
}

body.page .hbc-reviews-hub-bottom{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
    padding-top:14px;
}

body.page .hbc-reviews-hub-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 16px;
    border-radius:999px;
    border:1px solid #d5dde7;
    background:#fff;
    color:#0f172a;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:all .18s ease;
}

body.page .hbc-reviews-hub-link:hover{
    border-color:#b8c6d7;
    transform:translateY(-1px);
    box-shadow:0 8px 16px rgba(15,23,42,.06);
}

body.page .hbc-reviews-hub-link.is-primary{
    border-color:#d7c07a;
    background:linear-gradient(180deg, rgba(255,250,232,1) 0%, rgba(250,241,212,1) 100%);
    color:#6f5210;
    box-shadow:0 8px 18px rgba(212,175,55,.10);
}

body.page .hbc-reviews-hub-empty{
    padding:20px;
    border-radius:20px;
    background:#f8fafc;
    border:1px dashed #d6dee8;
    color:#64748b;
    font-size:16px;
    text-align:center;
}

.is-hidden-review{
    display:none;
}

.hbc-reviews-hub-loadmore-wrap{
    display:flex;
    justify-content:center;
    margin-top:22px;
}

.hbc-reviews-hub-loadmore{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:240px;
    min-height:56px;
    padding:0 24px;
    border:1px solid #d7c07a;
    border-radius:999px;
    background:linear-gradient(180deg, #fffaf0 0%, #f6ead0 100%);
    color:#6f5210;
    font-size:15px;
    font-weight:900;
    line-height:1;
    cursor:pointer;
    box-shadow:0 10px 24px rgba(212,175,55,.14),
        inset 0 1px 0 rgba(255,255,255,.85);
    transition:transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        filter .18s ease;
}

.hbc-reviews-hub-loadmore:hover{
    transform:translateY(-2px);
    border-color:#cfae4d;
    box-shadow:0 14px 30px rgba(212,175,55,.18),
        inset 0 1px 0 rgba(255,255,255,.95);
    filter:brightness(1.02);
}

.hbc-reviews-hub-loadmore:active{
    transform:translateY(0);
    box-shadow:0 8px 18px rgba(212,175,55,.12),
        inset 0 1px 0 rgba(255,255,255,.8);
}

.hbc-reviews-hub-loadmore:focus{
    outline:none;
    box-shadow:0 0 0 4px rgba(212,175,55,.16),
        0 12px 26px rgba(212,175,55,.16);
}

.hbc-reviews-hub-author{
    margin:6px 0 10px;
    font-size:14px;
    font-weight:700;
    color:#475569;
}

.hbc-reviews-hub{
    position:relative;
    isolation:isolate;
}

.hbc-reviews-hub-topbox{
    position:relative;
    z-index:30 !important;
    overflow:visible !important;
}

.hbc-reviews-hub-list-wrap{
    position:relative;
    z-index:1 !important;
    overflow:visible !important;
}

.hbc-reviews-hub-actions{
    display:flex;
    align-items:stretch;
    gap:0;
}

.hbc-reviews-hall-autocomplete{
    position:relative;
    flex:1;
    min-width:0;
    z-index:50 !important;
}

.hbc-reviews-hall-search-input{
    width:100%;
    height:48px;
    padding:0 14px;
    border:1px solid #cfd8e3;
    border-radius:12px 0 0 12px;
    border-left:none;
    background:#fff;
    color:#0f172a;
    font-size:15px;
    font-weight:600;
    text-align:right;
    direction:rtl;
    outline:none;
    box-shadow:none;
}

.hbc-reviews-hall-search-input::placeholder{
    color:#94a3b8;
}

.hbc-reviews-hub-btn{
    height:48px;
    padding:0 18px;
    font-size:14px;
    font-weight:800;
    border-radius:0 12px 12px 0;
    min-width:150px;
    white-space:nowrap;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hbc-reviews-hall-results{
    position:absolute;
    top:calc(100% + 8px);
    right:0;
    left:0;
    z-index:9999 !important;
    background:#fff;
    border:1px solid #dbe4ee;
    border-radius:16px;
    box-shadow:0 18px 40px rgba(15, 23, 42, 0.12),
        0 4px 14px rgba(15, 23, 42, 0.08);
    max-height:260px;
    overflow-y:auto;
    padding:6px;
}

.hbc-reviews-hall-results[hidden]{
    display:none !important;
}

.hbc-reviews-hall-result{
    display:block;
    width:100%;
    min-height:42px;
    padding:10px 12px;
    border:0;
    border-radius:10px;
    background:#fff;
    color:#0f172a;
    text-align:right;
    direction:rtl;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
}

.hbc-reviews-hall-result:hover, .hbc-reviews-hall-result:focus{
    background:#f8fafc;
    color:#183153;
}

.hbc-reviews-hall-result + .hbc-reviews-hall-result{
    margin-top:3px;
}

.hbc-reviews-hall-result.is-empty{
    background:transparent;
    color:#64748b;
    cursor:default;
}

.hbc-review-form-modal-head button, .hbc-review-form-modal-head button:hover, .hbc-review-form-modal-head button:focus, .hbc-review-form-modal-head button:focus-visible, .hbc-review-form-modal-head button:active{
    background:#e2e8f0;
    color:#0f172a;
    box-shadow:none;
    outline:none;
}

.hbc-review-form-modal-head button{
    width:44px;
    height:44px;
    background:#eef2f7;
    color:#111827;
    font-size:20px;
    font-weight:900;
    cursor:pointer;
    border:0;
    border-radius:14px;
    transition:background .15s ease, color .15s ease;
}

.hbc-review-form-modal-head button:hover, .hbc-review-form-modal-head button:focus, .hbc-review-form-modal-head button:focus-visible, .hbc-review-form-modal-head button:active{
    background:#cbd5e1;
    color:#0f172a;
}

.hbc-previous-reviews-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.hbc-previous-reviews-modal[hidden]{
    display:none !important;
}

.hbc-previous-reviews-backdrop{
    position:absolute;
    inset:0;
    background:rgba(15, 23, 42, .58);
    backdrop-filter:blur(4px);
}

.hbc-previous-reviews-dialog{
    position:relative;
    z-index:2;
    width:min(760px, 100%);
    max-height:min(86vh, 900px);
    overflow:auto;
    background:#fff;
    border-radius:24px;
    box-shadow:0 30px 80px rgba(15,23,42,.24);
    padding:28px 24px 22px;
    direction:rtl;
}

.hbc-previous-reviews-close{
    position:absolute;
    top:14px;
    left:14px;
    width:40px;
    height:40px;
    border:none;
    border-radius:999px;
    background:#f1f5f9;
    color:#0f172a;
    font-size:28px;
    line-height:1;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .18s ease, transform .18s ease;
}

.hbc-previous-reviews-close:hover{
    background:#e2e8f0;
    transform:scale(1.04);
}

.hbc-previous-reviews-head{
    padding-left:34px;
    margin-bottom:20px;
}

.hbc-previous-reviews-head h3{
    margin:0 0 8px;
    font-size:26px;
    line-height:1.2;
    font-weight:900;
    color:#0f172a;
}

.hbc-previous-reviews-head p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:#475569;
}

.hbc-previous-reviews-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hbc-previous-review-card{
    border:1px solid #e2e8f0;
    border-radius:18px;
    background:#fff;
    padding:16px;
    box-shadow:0 8px 24px rgba(15,23,42,.04);
}

.hbc-previous-review-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    margin-bottom:10px;
}

.hbc-previous-review-score{
    flex:0 0 auto;
    min-width:78px;
    padding:10px 12px;
    border-radius:14px;
    background:linear-gradient(135deg,#1e3a8a 0%, #2563eb 100%);
    color:#fff;
    text-align:center;
    font-size:18px;
    font-weight:900;
    line-height:1;
}

.hbc-previous-review-meta{
    flex:1 1 auto;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    justify-content:flex-start;
}

.hbc-previous-review-meta span{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:6px 10px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    color:#334155;
    font-size:13px;
    font-weight:700;
    line-height:1.3;
}

.hbc-previous-review-content{
    margin-top:8px;
    color:#0f172a;
    font-size:15px;
    line-height:1.9;
}

.hbc-previous-review-actions{
    margin-top:14px;
    display:flex;
    justify-content:flex-start;
}

.hbc-previous-review-edit-btn{
    min-height:44px;
    padding:0 16px;
    border:none;
    border-radius:12px;
    background:#243b5e;
    color:#fff;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    transition:background .18s ease, transform .18s ease;
}

.hbc-previous-review-edit-btn:hover{
    background:#1d3150;
    transform:translateY(-1px);
}

.hbc-previous-reviews-footer{
    margin-top:18px;
    display:flex;
    justify-content:flex-end;
}

.hbc-previous-reviews-footer-close{
    min-width:120px;
    min-height:46px;
    padding:0 18px;
    border:none;
    border-radius:14px;
    background:#0f172a;
    color:#fff;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    transition:background .18s ease, transform .18s ease;
}

.hbc-previous-reviews-footer-close:hover{
    background:#1e293b;
    transform:translateY(-1px);
}

html.hbc-previous-reviews-open, body.hbc-previous-reviews-open{
    overflow:hidden !important;
    height:100%;
}

.hbc-previous-reviews-view-edit[hidden], .hbc-previous-reviews-view-list[hidden]{
    display:none !important;
}

.hbc-previous-review-edit-form{
    display:block;
}

.hbc-previous-review-edit-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
}

.hbc-previous-review-edit-field{
    display:flex;
    flex-direction:column;
    gap:7px;
}

.hbc-previous-review-edit-field-full{
    grid-column:1 / -1;
}

.hbc-previous-review-edit-field label{
    font-size:14px;
    font-weight:800;
    color:#0f172a;
}

.hbc-previous-review-edit-field input, .hbc-previous-review-edit-field select, .hbc-previous-review-edit-field textarea{
    width:100%;
    border:1px solid #dbe3ee;
    border-radius:14px;
    background:#fff;
    color:#0f172a;
    font-size:15px;
    padding:12px 14px;
    outline:none;
    box-sizing:border-box;
}

.hbc-previous-review-edit-field textarea{
    resize:vertical;
    min-height:150px;
    line-height:1.8;
}

.hbc-previous-review-edit-field input:focus, .hbc-previous-review-edit-field select:focus, .hbc-previous-review-edit-field textarea:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.12);
}

.hbc-previous-review-edit-actions{
    margin-top:18px;
    display:flex;
    gap:12px;
    justify-content:space-between;
}

.hbc-previous-review-edit-cancel, .hbc-previous-review-edit-submit{
    min-height:46px;
    padding:0 18px;
    border:none;
    border-radius:14px;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    transition:background .18s ease, transform .18s ease;
}

.hbc-previous-review-edit-cancel{
    background:#e2e8f0;
    color:#0f172a;
}

.hbc-previous-review-edit-cancel:hover{
    background:#cbd5e1;
}

.hbc-previous-review-edit-submit{
    background:#243b5e;
    color:#fff;
}

.hbc-previous-review-edit-submit:hover{
    background:#1d3150;
    transform:translateY(-1px);
}

.hbc-current-review-box{
    margin-bottom:18px;
}

.hbc-current-review-box-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:10px;
}

.hbc-current-review-box-head h4{
    margin:0;
    font-size:17px;
    font-weight:900;
    color:#0f172a;
}

.hbc-current-review-badge{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:6px 12px;
    border-radius:999px;
    background:#eff6ff;
    border:1px solid #bfdbfe;
    color:#1d4ed8;
    font-size:13px;
    font-weight:800;
    white-space:nowrap;
}

.hbc-previous-review-card-current{
    border-color:#bfdbfe;
    box-shadow:0 10px 30px rgba(37,99,235,.08);
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

.hbc-previous-reviews-subtitle{
    margin:4px 0 12px;
    font-size:15px;
    font-weight:900;
    color:#334155;
}

@media (max-width: 768px){
    .hbc-single-rating{
        width:100%;
        justify-content:flex-start;
    }

    .hbc-review-top{
        flex-direction:column;
        align-items:flex-start;
    }
}


@media (max-width: 1000px){
    .hbc-reviews-featured-grid{
        grid-template-columns:1fr;
    }
}


@media (max-width: 782px){
    .hbc-single-rating-rich{
        align-items:flex-start;
    }

    .hbc-single-rating-actions{
        margin-right:0;
        width:100%;
    }

    .hbc-rating-open-btn, .hbc-reviews-all-btn{
        width:100%;
    }

    .hbc-reviews-modal-dialog{
        width:min(100% - 12px, 100%);
        max-height:92vh;
        margin:2vh auto;
        border-radius:18px;
    }

    .hbc-reviews-modal-tools select{
        width:100%;
        min-width:0;
    }

    .hbc-reviews-modal-bar-row{
        grid-template-columns:1fr;
        gap:8px;
    }

    .hbc-reviews-modal-bar-value{
        text-align:right;
    }

    .hbc-review-form-modal-dialog{
        width:min(100% - 12px, 100%);
        max-height:92vh;
        margin:2vh auto;
        border-radius:18px;
    }

    .hbc-review-form-optional-grid{
        grid-template-columns:1fr;
    }

    .hbc-review-score-picker{
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }

    .hbc-reviews-panel{
        inset:0;
        width:100%;
        min-width:0;
        height:100dvh;
        border-radius:0;
    }

    .hbc-reviews-panel-head{
        padding:18px 16px;
    }

    .hbc-reviews-panel-head h2{
        font-size:24px;
        line-height:1.15;
    }

    .hbc-reviews-panel-summary{
        padding:16px;
    }

    .hbc-reviews-panel-tools{
        padding:12px 16px;
        flex-wrap:wrap;
    }

    .hbc-reviews-panel-tools select{
        width:100%;
        min-width:0;
    }

    .hbc-reviews-panel-list{
        padding:16px;
    }

    .hbc-reviews-modal-summary-top{
        align-items:center;
    }

    .hbc-reviews-modal-summary-score{
        min-width:58px;
        height:58px;
        font-size:24px;
        border-radius:16px;
    }

    .hbc-reviews-modal-summary-text strong{
        font-size:20px;
    }
}


@media (max-width: 640px){
    .hbc-single-rating.hbc-single-rating-rich{
        padding:14px;
        gap:10px;
    }

    .hbc-single-rating-text strong{
        font-size:18px;
    }

    .hbc-summary-amenities-box{
        padding:14px;
        gap:14px;
    }

    .hbc-rating-open-btn{
        width:100%;
        justify-content:center;
    }
}


@media (max-width:768px){
    .hbc-rating-map-wrap{
        margin-top:12px;
    }
}


@media (max-width: 980px){
    .hbc-rating-map-wrap{
        grid-template-columns:1fr;
    }

    .hbc-rating-map{
        min-height:130px;
    }
}


@media (max-width: 767px){
    .hbc-review-score{
        min-width:54px;
        height:36px;
        padding:0 12px;
        font-size:16px;
        border-radius:10px;
    }

    .hbc-reviews-all-btn, .hbc-rating-open-btn{
        width:100%;
    }

    .hbc-review-form-modal, .hbc-review-form-modal-dialog, .hbc-review-form-modal-head, #hbcReviewFormStep, #hbcReviewVerifyStep, .hbc-review-form-grid, .hbc-review-form-field, .hbc-review-form-optional, .hbc-review-form-optional-grid, .hbc-review-score-picker, .hbc-review-verify-box{
        min-width:0;
        max-width:100%;
        box-sizing:border-box;
    }

    .hbc-review-form-grid{
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .hbc-review-form-field, .hbc-review-form-field-full{
        width:100%;
        max-width:100%;
    }

    .hbc-review-form-field input, .hbc-review-form-field select, .hbc-review-form-field textarea{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
    }

    .hbc-review-verify-form, .hbc-review-resend-form, .hbc-review-cancel-form{
        width:100%;
        max-width:100%;
    }

    .hbc-review-verify-form > button[type="submit"]{
        width:100%;
        max-width:100%;
    }

    #hbcReviewVerifyStep .hbc-review-resend-form > .hbc-review-resend-btn, #hbcReviewVerifyStep .hbc-review-cancel-btn{
        max-width:100%;
    }

    html, body{
        overflow-x:hidden;
    }

    .hbc-review-form-modal{
        padding:12px;
        position:fixed;
        inset:0;
        z-index:100000;
        display:flex;
        align-items:flex-start;
        justify-content:center;
        overflow:hidden;
        box-sizing:border-box;
    }

    .hbc-review-form-modal-dialog{
        width:100%;
        max-width:100%;
        margin:0;
        border-radius:28px;
        overflow:hidden;
        height:auto;
        max-height:calc(100dvh - 24px);
        background:#fff;
        box-shadow:0 24px 60px rgba(15,23,42,.22);
        display:flex;
        flex-direction:column;
        box-sizing:border-box;
    }

    .hbc-review-form-modal-head{
        padding:18px 18px 12px;
        flex:0 0 auto;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:12px;
        border-bottom:1px solid #eef2f7;
        background:#fff;
    }

    .hbc-review-form-modal-head h2{
        margin:0;
        font-size:24px;
        font-weight:900;
        line-height:1.15;
        color:#0f172a;
    }

    .hbc-review-form-modal-head button{
        flex:0 0 52px;
        width:52px;
        height:52px;
        border:none;
        border-radius:18px;
        background:#eef2f7;
        color:#0f172a;
        font-size:28px;
        line-height:1;
        box-shadow:none;
    }

    #hbcReviewFormStep, #hbcReviewVerifyStep{
        padding:16px 16px 22px;
        flex:1 1 auto;
        min-height:0;
        overflow-y:auto;
        overflow-x:hidden;
        -webkit-overflow-scrolling:touch;
        box-sizing:border-box;
    }

    .hbc-review-form-grid, .hbc-review-form-optional-grid{
        display:flex;
        flex-direction:column;
        gap:14px;
        width:100%;
        max-width:100%;
        min-width:0;
        box-sizing:border-box;
    }

    .hbc-review-form-field, .hbc-review-form-field-full, .hbc-review-form-optional, .hbc-review-verify-box, .hbc-review-verify-form, .hbc-review-resend-form, .hbc-review-cancel-form{
        width:100%;
        max-width:100%;
        min-width:0;
        box-sizing:border-box;
    }

    .hbc-review-form-field label, .hbc-review-verify-box h3{
        display:block;
        margin:0 0 8px;
        font-size:15px;
        font-weight:800;
        color:#0f172a;
    }

    .hbc-review-verify-box p{
        margin:0 0 14px;
        font-size:15px;
        line-height:1.7;
        color:#64748b;
    }

    .hbc-review-form-field input, .hbc-review-form-field select, .hbc-review-form-field textarea, #hbcReviewVerifyCode{
        width:100%;
        max-width:100%;
        min-width:0;
        box-sizing:border-box;
        border:1px solid #d9e2ec;
        border-radius:20px;
        background:#fff;
        color:#0f172a;
        font-size:16px !important;
        font-weight:700;
        box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
        -webkit-appearance:none;
        appearance:none;
    }

    .hbc-review-form-field input, .hbc-review-form-field select, #hbcReviewVerifyCode{
        min-height:58px;
        padding:0 18px;
    }

    .hbc-review-form-field textarea{
        min-height:132px;
        padding:16px 18px;
        resize:vertical;
    }

    .hbc-review-form-field input::placeholder, .hbc-review-form-field textarea::placeholder, #hbcReviewVerifyCode::placeholder{
        color:#9aa7b8;
        font-weight:600;
        font-size:16px;
    }

    .hbc-review-score-picker{
        display:grid;
        grid-template-columns:repeat(5, minmax(0,1fr));
        gap:10px;
        width:100%;
        max-width:100%;
    }

    .hbc-review-score-btn{
        width:100%;
        min-width:0;
        min-height:52px;
        border:1px solid #d9e2ec;
        border-radius:18px;
        background:#fff;
        color:#0f172a;
        font-size:20px;
        font-weight:900;
        box-shadow:0 8px 18px rgba(15,23,42,.05);
    }

    .hbc-review-score-btn.is-active{
        border-color:#d3ad43;
        background:linear-gradient(180deg,#f9edc5 0%, #e8cb78 45%, #c9961a 100%);
        color:#162033;
        box-shadow:0 14px 28px rgba(185,136,26,.24);
    }

    .hbc-review-score-help{
        margin-top:10px;
        text-align:center;
        font-size:15px !important;
        font-weight:800 !important;
        color:#64748b !important;
        line-height:1.35;
    }

    #hbcReviewFormStep form > button[type="submit"], .hbc-review-verify-form > button[type="submit"]{
        display:flex;
        align-items:center;
        justify-content:center;
        width:100% !important;
        min-height:58px !important;
        margin-top:14px !important;
        padding:0 18px !important;
        border:1px solid #d3b063 !important;
        border-radius:22px !important;
        background:linear-gradient(180deg,#faefc9 0%, #e8cb78 45%, #c9961a 100%) !important;
        color:#162033 !important;
        font-size:17px !important;
        font-weight:900 !important;
        text-shadow:0 1px 0 rgba(255,255,255,.22);
        box-shadow:0 16px 32px rgba(180,132,25,.24),
            inset 0 1px 0 rgba(255,255,255,.7) !important;
    }

    #hbcReviewFormStep form, .hbc-review-verify-box{
        padding-bottom:18px;
    }

    #hbcReviewVerifyStep .hbc-review-resend-form{
        margin-top:6px;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:6px;
    }

    #hbcReviewVerifyStep .hbc-review-resend-btn{
        display:inline-flex !important;
        align-items:center !important;
        justify-content:center !important;
        width:auto !important;
        min-height:42px !important;
        padding:10px 16px !important;
        border:1px solid #d9e2ec !important;
        border-radius:999px !important;
        background:#fff !important;
        color:#334155 !important;
        font-size:13px !important;
        font-weight:800 !important;
        box-shadow:0 8px 18px rgba(15,23,42,.06) !important;
    }

    #hbcReviewVerifyStep .hbc-review-resend-btn::before{
        content:"↻";
        margin-left:6px;
        font-size:12px;
    }

    #hbcReviewVerifyStep .hbc-review-resend-form::after{
        content:"לא קיבלתם? אפשר לשלוח קוד חדש למייל";
        display:block;
        text-align:center;
        color:#94a3b8;
        font-size:11px;
        font-weight:700;
        line-height:1.4;
    }

    #hbcReviewVerifyStep .hbc-review-cancel-form{
        display:flex;
        justify-content:center;
        margin-top:2px;
    }

    #hbcReviewVerifyStep .hbc-review-cancel-btn{
        width:auto !important;
        min-height:38px !important;
        padding:8px 12px !important;
        border:none !important;
        background:transparent !important;
        color:#94a3b8 !important;
        font-size:12px !important;
        font-weight:700 !important;
        box-shadow:none !important;
        text-decoration:none !important;
    }

    #hbcReviewVerifyStep .hbc-review-cancel-btn:hover, #hbcReviewVerifyStep .hbc-review-cancel-btn:active{
        color:#dc2626 !important;
        background:transparent !important;
        box-shadow:none !important;
        transform:none !important;
        text-decoration:underline !important;
    }

    .hbc-review-form-optional{
        margin-top:6px;
        padding:12px;
        border:1px solid #e6ebf2;
        border-radius:20px;
        background:#fbfcfe;
        box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
    }

    .hbc-review-form-optional-grid{
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .hbc-review-form-optional .hbc-review-form-field{
        margin:0;
    }

    .hbc-review-form-optional .hbc-review-form-field label{
        margin:0 0 6px;
        font-size:14px;
        font-weight:800;
        color:#334155;
        line-height:1.25;
    }

    .hbc-review-form-optional .hbc-review-form-field select{
        width:100%;
        min-height:52px;
        padding:0 16px;
        border:1px solid #d9e2ec;
        border-radius:18px;
        background:#fff;
        color:#0f172a;
        font-size:13px;
        font-weight:600;
        box-shadow:0 6px 14px rgba(15,23,42,.04);
        appearance:none;
        -webkit-appearance:none;
        -moz-appearance:none;
        background-image:linear-gradient(45deg, transparent 50%, #64748b 50%),
            linear-gradient(135deg, #64748b 50%, transparent 50%);
        background-position:calc(16px) calc(50% - 3px),
            calc(10px) calc(50% - 3px);
        background-size:6px 6px, 6px 6px;
        background-repeat:no-repeat;
        padding-left:28px;
    }

    .hbc-review-form-optional .hbc-review-form-field select:focus{
        outline:none;
        border-color:#c7d2e0;
        box-shadow:0 0 0 3px rgba(37,99,235,.08),
            0 8px 18px rgba(15,23,42,.05);
    }

    .hbc-review-form-toggle{
        max-width:100%;
        box-sizing:border-box;
        width:100%;
        border:none;
        box-shadow:none;
        min-height:52px;
        border-radius:18px;
        background:#eef2f7;
        color:#0f172a;
        font-size:15px;
        font-weight:600;
    }

    .hbc-review-form-field{
        margin-bottom:0;
    }

    .hbc-rating-map-wrap{
        display:flex;
        flex-direction:column;
        gap:14px;
        align-items:stretch;
    }

    .hbc-rating-map, .hbc-single-rating, .hbc-single-rating-rich{
        width:100%;
        max-width:100%;
        margin:0;
    }

    .hbc-single-rating, .hbc-single-rating-rich{
        order:1;
    }

    .hbc-rating-map{
        order:2;
        min-height:140px;
    }

    .hbc-rating-map-wrap, .hbc-rating-map-wrap > *{
        min-width:0;
    }

    .hbc-single-rating-actions{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
    }

    .hbc-single-rating-actions .hbc-rating-open-btn{
        flex:1 1 calc(50% - 5px);
        min-width:0;
    }

    .hbc-rating-map-wrap > .hbc-rating-map.hbc-rating-map-static{
        width:80% !important;
        max-width:80% !important;
        margin:0px auto 0 !important;
        margin-bottom:22px !important;
        display:block !important;
        height:auto !important;
        min-height:auto !important;
        overflow:hidden !important;
        border:1px solid #e7ecf2 !important;
        border-radius:12px !important;
        box-shadow:0 1px 3px rgba(15,23,42,0.06) !important;
    }

    .hbc-booking-heading-top{
        display:grid;
        grid-template-columns:minmax(0,1fr) auto;
        align-items:start;
        column-gap:10px;
        row-gap:4px;
    }

    .hbc-booking-title{
        margin:0;
        min-width:0;
    }

    .hbc-booking-rating-mobile-score{
        display:flex;
        align-items:center;
        justify-content:center;
        width:30px;
        height:30px;
        padding:0;
        border-radius:8px;
        background:#1d4ed8;
        color:#fff;
        font-size:14px;
        font-weight:900;
        line-height:1;
        box-shadow:0 6px 16px rgba(29,78,216,.18);
    }

    .hbc-booking-rating-mobile-text{
        display:flex;
        flex-direction:column;
        justify-content:center;
        min-width:0;
        padding-top:1px;
    }

    .hbc-booking-rating-mobile-text strong{
        display:block;
        font-size:14px;
        font-weight:900;
        color:#0f172a;
        line-height:1.15;
        white-space:nowrap;
    }

    .hbc-booking-rating-mobile-text span{
        display:block;
        margin-top:2px;
        font-size:12px;
        color:#64748b;
        line-height:1.15;
        white-space:nowrap;
    }

    .hbc-booking-rating-mobile.is-empty .hbc-booking-rating-mobile-score{
        background:#94a3b8;
    }

    .hbc-booking-rating-mobile{
        display:flex;
        align-items:flex-start;
        gap:8px;
        justify-self:start;
        text-align:left;
        direction:ltr;
        min-width:0;
        margin:0;
        position:relative;
        top:10px;
    }

    .hbc-single-rating.hbc-single-rating-rich{
        display:none !important;
    }

    .hbc-rating-map-wrap > .hbc-rating-map{
        margin-bottom:0 !important;
    }

    .hbc-reviews-head{
        display:flex;
        flex-direction:column;
        gap:10px;
    }

    .hbc-reviews-head-actions{
        display:flex;
        flex-direction:row;
        gap:10px;
        width:100%;
    }

    .hbc-reviews-head-actions button{
        flex:1;
    }

    body.page .hbc-reviews-hub{
        padding:24px 14px 50px;
    }

    body.page .hbc-reviews-hub::before{
        width:96%;
        height:150px;
        top:0;
        border-radius:24px;
    }

    body.page .hbc-reviews-hub-head{
        margin-bottom:20px;
    }

    body.page .hbc-reviews-hub-head h1{
        font-size:34px;
        line-height:1.08;
    }

    body.page .hbc-reviews-hub-head p{
        font-size:15px;
        line-height:1.75;
    }

    body.page .hbc-reviews-hub-topbox, body.page .hbc-reviews-hub-list-wrap{
        border-radius:24px;
        padding:18px;
    }

    body.page .hbc-reviews-hub-actions{
        grid-template-columns:1fr;
    }

    body.page .hbc-reviews-hub-btn, body.page .hbc-reviews-hub-actions select{
        min-height:56px;
        border-radius:16px;
    }

    body.page .hbc-reviews-hub-list-wrap h2{
        font-size:28px;
    }

    body.page .hbc-reviews-hub-card{
        border-radius:22px;
        padding:18px;
    }

    body.page .hbc-reviews-hub-card-top{
        align-items:center;
        gap:12px;
    }

    body.page .hbc-reviews-hub-score{
        width:56px;
        height:56px;
        flex-basis:56px;
        font-size:24px;
        border-radius:16px;
    }

    body.page .hbc-reviews-hub-title{
        font-size:20px;
    }

    body.page .hbc-reviews-hub-content{
        font-size:15px;
        line-height:1.85;
    }

    body.page .hbc-reviews-hub-bottom{
        flex-direction:column;
    }

    body.page .hbc-reviews-hub-link{
        width:100%;
    }

    .hbc-reviews-hub-loadmore{
        width:100%;
        max-width:100%;
    }

    .hbc-reviews-hub-actions{
        flex-direction:column;
        gap:8px;
    }

    .hbc-reviews-hall-search-input{
        border-radius:12px;
        border-left:1px solid #cfd8e3;
    }

    .hbc-reviews-hub-btn{
        border-radius:12px;
        width:100%;
    }

    .hbc-previous-reviews-modal{
        padding:12px;
        align-items:flex-end;
    }

    .hbc-previous-reviews-dialog{
        width:100%;
        max-height:90vh;
        border-radius:22px 22px 0 0;
        padding:22px 16px 18px;
    }

    .hbc-previous-reviews-close{
        top:10px;
        left:10px;
        width:38px;
        height:38px;
        font-size:26px;
    }

    .hbc-previous-reviews-head{
        padding-left:28px;
        margin-bottom:16px;
    }

    .hbc-previous-reviews-head h3{
        font-size:21px;
    }

    .hbc-previous-reviews-head p{
        font-size:14px;
        line-height:1.7;
    }

    .hbc-previous-review-top{
        flex-direction:column;
        align-items:stretch;
    }

    .hbc-previous-review-score{
        min-width:0;
        width:92px;
    }

    .hbc-previous-review-meta{
        gap:7px;
    }

    .hbc-previous-review-meta span{
        font-size:12px;
        min-height:30px;
        padding:5px 9px;
    }

    .hbc-previous-review-content{
        font-size:14px;
        line-height:1.8;
    }

    .hbc-previous-review-actions, .hbc-previous-reviews-footer{
        justify-content:stretch;
    }

    .hbc-previous-review-edit-btn, .hbc-previous-reviews-footer-close{
        width:100%;
    }

    .hbc-previous-review-edit-grid{
        grid-template-columns:1fr;
    }

    .hbc-previous-review-edit-actions{
        flex-direction:column;
    }

    .hbc-previous-review-edit-cancel, .hbc-previous-review-edit-submit{
        width:100%;
    }
}


@media (max-width:767px){
    .hbc-review-verify-box h3{
        font-size:21px;
    }

    .hbc-review-verify-form input[type="text"]{
        min-height:50px;
        font-size:20px;
        letter-spacing:4px;
    }

    .hbc-rating-map-wrap{
        display:none;
    }
}

/* =========================================================
   REVIEWS HUB - HERO BOX LIKE FIND-HALL
   מכניס את אזור הכותרת לבוקס כמו מצא לי אולם
========================================================= */

body.page .hbc-reviews-hub-head{
    position:relative;
    overflow:hidden;
    margin:0 0 24px;
    padding:42px 36px;
    border-radius:34px;
text-align:right;
    background:
        radial-gradient(circle at 85% 18%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 22%),
        radial-gradient(circle at 15% 84%, rgba(201,146,46,.20) 0%, rgba(201,146,46,0) 28%),
        linear-gradient(135deg, #0b1324 0%, #173154 48%, #27476f 100%);
    color:#fff;
    box-shadow:
        0 26px 60px rgba(15,23,42,.16),
        inset 0 1px 0 rgba(255,255,255,.08);
}

body.page .hbc-reviews-hub-head::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 100%);
}

body.page .hbc-reviews-hub-head h1{
    position:relative;
    z-index:1;
    margin:0 0 14px;
    font-size:50px;
    line-height:1.03;
    font-weight:900;
    color:#fff;
    letter-spacing:-.03em;
}

body.page .hbc-reviews-hub-head p{
    position:relative;
    z-index:1;
    margin:0;
    max-width:920px;
    font-size:17px;
    line-height:1.9;
    color:rgba(255,255,255,.92);
    text-align:right;
}


/* מובייל */
@media (max-width:767px){

    body.page .hbc-reviews-hub{
        padding-top:18px;
    }

    body.page .hbc-reviews-hub-head{
        border-radius:24px;
        padding:26px 18px;
        margin-bottom:18px;
    }

    body.page .hbc-reviews-hub-head h1{
        font-size:32px;
        line-height:1.08;
        margin-bottom:12px;
    }

    body.page .hbc-reviews-hub-head p{
        font-size:15px;
        line-height:1.8;
    }
}

/* =========================================================
   MOBILE REVIEW FORM – GENERAL REVIEWS PAGE COMPACT FIX
   מתאים את מודל השארת חוות דעת בעמוד /reviews למראה של עמוד אולם
========================================================= */

@media (max-width:767px){

    body.page .hbc-review-form-modal{
        padding:12px !important;
        position:fixed !important;
        inset:0 !important;
        z-index:100000 !important;
        display:flex !important;
        align-items:flex-start !important;
        justify-content:center !important;
        overflow:hidden !important;
        box-sizing:border-box !important;
    }

    body.page .hbc-review-form-modal-overlay{
        position:absolute !important;
        inset:0 !important;
        z-index:1 !important;
        background:rgba(15, 23, 42, .58) !important;
    }

    body.page .hbc-review-form-modal-dialog{
        position:relative !important;
        z-index:2 !important;

        width:calc(100% - 22px) !important;
        max-width:430px !important;
        max-height:92vh !important;
        max-height:92dvh !important;

        margin:3vh auto !important;
        padding:14px !important;

        border-radius:18px !important;
        background:#fff !important;
        overflow:auto !important;
        box-sizing:border-box !important;

        display:block !important;
        box-shadow:0 24px 60px rgba(15,23,42,.22) !important;
    }

    body.page .hbc-review-form-modal-head{
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        gap:10px !important;

        margin:0 0 10px !important;
        padding:0 0 10px !important;

        border-bottom:1px solid #edf0f4 !important;
        background:#fff !important;
    }

    body.page .hbc-review-form-modal-head h2{
        margin:0 !important;
        font-size:19px !important;
        line-height:1.25 !important;
        font-weight:900 !important;
        color:#0f172a !important;
    }

    body.page .hbc-review-form-modal-head button,
    body.page .hbc-review-form-modal-head button[data-hbc-close-review-form]{
        width:38px !important;
        height:38px !important;
        min-width:38px !important;
        flex:0 0 38px !important;

        border:none !important;
        border-radius:12px !important;
        background:#eef2f7 !important;
        color:#0f172a !important;

        font-size:20px !important;
        line-height:1 !important;
        padding:0 !important;
        box-shadow:none !important;
    }

    body.page #hbcReviewFormStep,
    body.page #hbcReviewVerifyStep{
        padding:0 !important;
        margin:0 !important;
        overflow:visible !important;
        min-height:0 !important;
    }

    body.page .hbc-review-form-modal form{
        display:grid !important;
        gap:8px !important;
        margin:0 !important;
    }

    body.page .hbc-review-form-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:8px !important;
        width:100% !important;
        max-width:100% !important;
    }

    body.page .hbc-review-form-field{
        gap:4px !important;
        margin:0 !important;
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
    }

    body.page .hbc-review-form-field label{
        font-size:13px !important;
        line-height:1.2 !important;
        margin:0 !important;
        font-weight:700 !important;
        color:#334155 !important;
    }

    body.page .hbc-review-form-modal input,
    body.page .hbc-review-form-modal select,
    body.page .hbc-review-form-modal textarea{
        width:100% !important;
        max-width:100% !important;
        box-sizing:border-box !important;

        font-size:16px !important; /* מונע זום באייפון */
        min-height:44px !important;
        height:44px !important;

        padding:0 12px !important;
        border-radius:12px !important;
        border:1px solid #dbe4ee !important;
        background:#fff !important;
        color:#0f172a !important;
    }

    body.page .hbc-review-form-modal textarea{
        height:auto !important;
        min-height:78px !important;
        padding:10px 12px !important;
        line-height:1.45 !important;
        resize:vertical !important;
    }

    body.page .hbc-review-score-picker{
        display:grid !important;
        grid-template-columns:repeat(5, minmax(0, 1fr)) !important;
        gap:6px !important;
        width:100% !important;
        max-width:100% !important;
    }

    body.page .hbc-review-score-btn{
        min-width:0 !important;
        min-height:42px !important;
        height:42px !important;
        padding:0 !important;

        border-radius:12px !important;
        font-size:16px !important;
        font-weight:900 !important;
        line-height:1 !important;
    }

    body.page .hbc-review-score-help{
        font-size:13px !important;
        line-height:1.25 !important;
        margin-top:1px !important;
        text-align:center !important;
    }

    body.page .hbc-review-form-toggle{
        width:100% !important;
        min-height:42px !important;
        height:42px !important;

        border-radius:12px !important;
        font-size:16px !important;
        padding:0 12px !important;
    }

    body.page .hbc-review-form-optional{
        padding:9px !important;
        border-radius:14px !important;
        margin-top:0 !important;
    }

    body.page .hbc-review-form-optional-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:8px !important;
    }

    body.page .hbc-review-form-modal form > button[type="submit"]{
        width:100% !important;
        min-height:46px !important;
        height:46px !important;

        border-radius:13px !important;
        font-size:16px !important;
        margin-top:2px !important;
    }

    body.page .hbc-reviews-hub-actions{
        gap:8px !important;
    }

    body.page .hbc-reviews-hub-btn,
    body.page .hbc-reviews-hub-actions select{
        min-height:46px !important;
        height:46px !important;
        border-radius:13px !important;
        font-size:15px !important;
    }
}

/* =========================================================
   REVIEW SCORE PICKER – TRAFFIC LIGHT FINAL OVERRIDE
   עובד גם בעמוד אולם וגם בעמוד חוות דעת כללי
========================================================= */

/* כל הכפתורים יקבלו צבע לפי ציון - גם לפני בחירה */
body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn[data-score="10"]{
    background:#15803d !important;
    border-color:#15803d !important;
    color:#fff !important;
}

body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn[data-score="9"]{
    background:#22c55e !important;
    border-color:#22c55e !important;
    color:#fff !important;
}

body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn[data-score="8"]{
    background:#facc15 !important;
    border-color:#facc15 !important;
    color:#111827 !important;
}

body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn[data-score="7"]{
    background:#f59e0b !important;
    border-color:#f59e0b !important;
    color:#111827 !important;
}

body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn[data-score="6"]{
    background:#dc2626 !important;
    border-color:#dc2626 !important;
    color:#fff !important;
}

/* מצב רגיל - פחות חזק כשלא נבחר */
body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn{
    opacity:.62 !important;
    border-width:2px !important;
    box-shadow:none !important;
    font-weight:900 !important;
    transition:all .18s ease !important;
}

/* מצב נבחר - ברור מאוד */
body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn.is-active{
    opacity:1 !important;
    transform:translateY(-2px) scale(1.05) !important;
    border-width:3px !important;
    box-shadow:0 10px 24px rgba(15,23,42,.28) !important;
    outline:3px solid rgba(15,23,42,.16) !important;
    outline-offset:2px !important;
}

/* וי קטן על הכפתור שנבחר */
body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn.is-active::after{
    content:"✓";
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    position:absolute !important;
    top:-8px !important;
    left:-8px !important;

    width:20px !important;
    height:20px !important;
    border-radius:50% !important;

    background:#0f172a !important;
    color:#fff !important;
    font-size:12px !important;
    font-weight:900 !important;
    line-height:1 !important;

    box-shadow:0 4px 10px rgba(15,23,42,.25) !important;
}

/* בשביל שהוי יתמקם נכון */
body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn{
    position:relative !important;
}

/* טקסט נבחר ציון */
body .hbc-review-form-modal #hbcReviewScoreHelp,
body .hbc-review-form-modal .hbc-review-score-help{
    margin-top:6px !important;
    font-size:14px !important;
    font-weight:700 !important;
    color:#0f172a !important;
    text-align:center !important;
}

/* מובייל */
@media (max-width:767px){
    body .hbc-review-form-modal .hbc-review-score-picker{
        gap:8px !important;
    }

    body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn{
        min-height:44px !important;
        height:44px !important;
        border-radius:12px !important;
        font-size:16px !important;
    }

    body .hbc-review-form-modal .hbc-review-score-picker .hbc-review-score-btn.is-active{
        transform:translateY(-1px) scale(1.04) !important;
        outline-width:2px !important;
        outline-offset:1px !important;
    }
}

/* =========================================================
   REVIEWS HUB – equal search + button widths on desktop
========================================================= */

@media (min-width:768px){

    body.page .hbc-reviews-hub-actions{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:14px !important;
        align-items:stretch !important;
        width:100% !important;
    }

    body.page .hbc-reviews-hall-autocomplete,
    body.page .hbc-reviews-hub-btn{
        width:100% !important;
        max-width:none !important;
        min-width:0 !important;
        box-sizing:border-box !important;
    }

    body.page .hbc-reviews-hall-search-input,
    body.page #hbcOpenSelectedHallReview{
        width:100% !important;
        height:54px !important;
        min-height:54px !important;
        max-height:54px !important;
        box-sizing:border-box !important;
    }

    body.page #hbcOpenSelectedHallReview{
        padding:0 18px !important;
        margin:0 !important;
    }
}

/* כפתור השארת חוות דעת - לא פעיל עד בחירת אולם */
body.page #hbcOpenSelectedHallReview:disabled,
body.page #hbcOpenSelectedHallReview.is-disabled{
    opacity:.45 !important;
    cursor:not-allowed !important;
    pointer-events:none !important;
    filter:grayscale(.25) !important;
    box-shadow:none !important;
}