:root{
    --rhv-blue:#0866f2;
    --rhv-navy:#061638;
    --rhv-text:#081126;
    --rhv-muted:#5d687c;
    --rhv-line:#dde5f0;
    --rhv-soft:#f8fafc;
    --rhv-gold:#f5ad00;
    --rhv-green:#078b34;
}

*{box-sizing:border-box}
html,body{
    margin:0;
    background:#fff;
    color:var(--rhv-text);
    font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}
a{text-decoration:none;color:var(--rhv-blue)}
button,input{font:inherit}

.rhv-page{
    min-height:100vh;
    background:#fff;
    padding-bottom:86px;
}

.rhv-header{
    height:78px;
    border-bottom:1px solid var(--rhv-line);
    display:grid;
    grid-template-columns:auto auto minmax(360px,1fr) auto auto;
    align-items:center;
    gap:18px;
    padding:14px 24px;
    max-width:1320px;
    margin:0 auto;
}

.rhv-brand{
    display:inline-flex;
    align-items:center;
    gap:5px;
    color:var(--rhv-navy);
    font-weight:900;
    font-size:30px;
    letter-spacing:-1px;
    line-height:1;
}
.rhv-brand b{
    background:var(--rhv-blue);
    color:#fff;
    border-radius:6px;
    padding:4px 6px;
    font-size:.72em;
}

.rhv-icon{
    width:40px;
    height:40px;
    border:1px solid var(--rhv-line);
    background:#fff;
    border-radius:10px;
    font-size:22px;
    cursor:pointer;
}

.rhv-search{
    display:grid;
    grid-template-columns:190px 1fr 82px;
    gap:10px;
    align-items:center;
}

.rhv-search input,
.rhv-location-btn{
    height:44px;
    border:1px solid #cfd8e6;
    border-radius:9px;
    background:#fff;
    padding:0 14px;
    color:#111827;
    min-width:0;
}

.rhv-location-btn{
    font-weight:700;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-align:left;
}

.rhv-search button[type=submit]{
    height:44px;
    border:0;
    border-radius:9px;
    background:var(--rhv-blue);
    color:#fff;
    font-weight:800;
    cursor:pointer;
}

.rhv-nav{
    display:flex;
    align-items:center;
    gap:20px;
    font-weight:750;
    white-space:nowrap;
}
.rhv-nav a{color:#111827}
.rhv-nav .rhv-signup{
    color:#fff;
    background:var(--rhv-blue);
    padding:12px 16px;
    border-radius:9px;
}

.rhv-main{
    max-width:1180px;
    margin:0 auto;
    padding:0 20px 34px;
}

.rhv-breadcrumb{
    display:flex;
    gap:10px;
    align-items:center;
    white-space:nowrap;
    overflow:auto;
    padding:22px 0;
    color:var(--rhv-muted);
    font-size:15px;
}

.rhv-hero{
    border:1px solid var(--rhv-line);
    border-radius:14px 14px 0 0;
    padding:22px;
    display:grid;
    grid-template-columns:180px 1fr 260px;
    gap:32px;
    align-items:center;
    background:#fff;
}

.rhv-logo-card{
    width:170px;
    height:170px;
    border:1px solid #cfd8e6;
    border-radius:14px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.rhv-logo-card img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:10px;
}
.rhv-logo-card span{
    display:none;
    width:86px;
    height:86px;
    border-radius:24px;
    background:#eaf2ff;
    color:var(--rhv-blue);
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:44px;
}
.rhv-logo-card.missing span,
.rhv-logo-card:not(:has(img)) span{
    display:flex;
}

.rhv-hero-info h1{
    font-size:32px;
    margin:0 0 12px;
    letter-spacing:-.8px;
}
.rhv-hero-info p{
    color:var(--rhv-muted);
    margin:8px 0;
    font-size:16px;
}

.rhv-badges{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:10px;
}
.rhv-badges span{
    background:#eef6ff;
    color:var(--rhv-blue);
    border:1px solid #cfe2ff;
    border-radius:999px;
    padding:6px 10px;
    font-weight:800;
    font-size:13px;
}

.rhv-rating{
    display:flex;
    gap:10px;
    align-items:center;
    margin:8px 0;
}
.rhv-rating span{
    color:var(--rhv-gold);
    letter-spacing:1px;
}
.rhv-rating strong{
    font-size:18px;
}

.rhv-open-row{
    border:0;
    background:transparent;
    color:var(--rhv-green);
    font-weight:750;
    padding:0;
    margin-top:6px;
    cursor:pointer;
}

.rhv-actions,
.rhv-contact-grid{
    display:grid;
    gap:12px;
}
.rhv-actions form{margin:0}

.rhv-primary,
.rhv-secondary{
    min-height:48px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-weight:800;
    padding:0 16px;
    cursor:pointer;
    font-size:16px;
}
.rhv-primary{
    background:var(--rhv-blue);
    color:#fff!important;
    border:1px solid var(--rhv-blue);
}
.rhv-secondary{
    background:#fff;
    color:#111827!important;
    border:1px solid #cfd8e6;
    width:100%;
}

.rhv-trust{
    border:1px solid var(--rhv-line);
    border-top:0;
    padding:22px;
    background:#fff;
}
.rhv-section-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:16px;
}
.rhv-section-title h2{
    margin:0;
    font-size:22px;
}
.rhv-section-title button{
    border:0;
    background:#fff;
    color:var(--rhv-blue);
    font-weight:800;
    cursor:pointer;
}

.rhv-trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}
.rhv-trust-grid article{
    border:1px solid var(--rhv-line);
    border-radius:12px;
    background:#fff;
    padding:16px;
    text-align:center;
}
.rhv-trust-grid b{
    display:block;
    color:var(--rhv-blue);
    font-size:24px;
}
.rhv-trust-grid strong{
    display:block;
    margin:6px 0;
}
.rhv-trust-grid span{
    color:var(--rhv-muted);
    font-size:13px;
}

.rhv-tabs{
    border:1px solid var(--rhv-line);
    border-top:0;
    background:#fff;
    display:flex;
    overflow:auto;
}
.rhv-tabs button{
    border:0;
    background:#fff;
    color:#566176;
    font-weight:600;
    font-size:15px;
    padding:15px 18px;
    position:relative;
    cursor:pointer;
    white-space:nowrap;
}
.rhv-tabs button.active{
    color:var(--rhv-blue);
    font-weight:750;
}
.rhv-tabs button.active:after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:44px;
    height:3px;
    border-radius:999px;
    background:var(--rhv-blue);
    transform:translateX(-50%);
}

.rhv-section{
    border:1px solid var(--rhv-line);
    border-top:0;
    padding:24px;
    background:#fff;
    scroll-margin-top:20px;
}
.rhv-section h2{
    margin:0 0 14px;
    font-size:24px;
}
.rhv-section p{
    color:#293449;
    line-height:1.6;
}

.rhv-mini-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:14px;
}
.rhv-mini-actions a,
.rhv-mini-actions button{
    border:1px solid var(--rhv-line);
    background:#fff;
    border-radius:999px;
    padding:9px 14px;
    color:var(--rhv-blue);
    font-weight:800;
    cursor:pointer;
}

.rhv-service-list,
.rhv-review-list{
    display:grid;
    gap:12px;
}
.rhv-service-list a{
    border:1px solid var(--rhv-line);
    border-radius:12px;
    padding:16px;
    color:var(--rhv-text);
    display:grid;
    gap:6px;
}
.rhv-service-list span{
    color:var(--rhv-muted);
}
.rhv-service-list em{
    font-style:normal;
    color:var(--rhv-blue);
    font-weight:800;
}

.rhv-photo-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}
.rhv-photo-grid button{
    border:0;
    background:#f3f6fa;
    border-radius:10px;
    overflow:hidden;
    padding:0;
    cursor:pointer;
}
.rhv-photo-grid img{
    width:100%;
    aspect-ratio:1.25/1;
    object-fit:cover;
    display:block;
}

.rhv-review-summary{
    border:1px solid var(--rhv-line);
    border-radius:12px;
    padding:18px;
    margin-bottom:16px;
    display:grid;
    grid-template-columns:160px 1fr;
    gap:20px;
    align-items:center;
}
.rhv-review-summary strong{
    display:block;
    font-size:42px;
}
.rhv-review-summary span{
    color:var(--rhv-gold);
}
.rhv-review-summary small{
    display:block;
    color:var(--rhv-muted);
    margin-top:4px;
}
.rhv-review-summary p{
    display:grid;
    grid-template-columns:48px 1fr 38px;
    gap:8px;
    align-items:center;
    margin:8px 0;
}
.rhv-review-summary i{
    height:10px;
    background:#e8e8e8;
    border-radius:999px;
    overflow:hidden;
}
.rhv-review-summary i b{
    display:block;
    height:100%;
    background:var(--rhv-gold);
}

.rhv-review-list article{
    border:1px solid var(--rhv-line);
    border-radius:12px;
    padding:18px;
}
.rhv-review-list header{
    display:flex;
    justify-content:space-between;
    gap:14px;
}
.rhv-review-list header span{
    color:var(--rhv-gold);
}
.rhv-review-list small{
    display:block;
    color:var(--rhv-muted);
    margin-top:3px;
}
.rhv-review-list p{
    margin:12px 0 0;
}

.rhv-info-list{
    border:1px solid var(--rhv-line);
    border-radius:12px;
    overflow:hidden;
}
.rhv-info-list a,
.rhv-info-list button{
    width:100%;
    border:0;
    border-bottom:1px solid #edf1f6;
    background:#fff;
    display:grid;
    grid-template-columns:1fr auto;
    gap:6px 10px;
    padding:16px;
    text-align:left;
    color:var(--rhv-text);
    cursor:pointer;
}
.rhv-info-list a:last-child,
.rhv-info-list button:last-child{
    border-bottom:0;
}
.rhv-info-list span{
    grid-column:1/-1;
    color:var(--rhv-muted);
}
.rhv-info-list em{
    grid-row:1/3;
    grid-column:2;
    align-self:center;
    font-style:normal;
    color:var(--rhv-muted);
}

.rhv-mobile-bar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    background:#fff;
    border-top:1px solid var(--rhv-line);
    padding:12px 18px;
    display:none;
    grid-template-columns:1fr 104px;
    gap:10px;
    z-index:30;
}

.rhv-drawer,
.rhv-modal{
    position:fixed;
    inset:0;
    background:rgba(8,17,38,.46);
    z-index:100;
    display:flex;
}
.rhv-drawer[hidden],
.rhv-modal[hidden]{
    display:none;
}
.rhv-drawer-panel{
    width:min(360px,86vw);
    height:100%;
    background:#fff;
    padding:22px;
    display:flex;
    flex-direction:column;
    gap:18px;
}
.rhv-drawer-panel>a:not(.rhv-brand){
    color:var(--rhv-text);
    font-weight:800;
    padding:12px;
    border-radius:10px;
    background:#f8fafc;
}

.rhv-x{
    position:absolute;
    top:16px;
    right:16px;
    width:42px;
    height:42px;
    border:1px solid var(--rhv-line);
    background:#fff;
    border-radius:999px;
    font-size:30px;
    line-height:1;
    cursor:pointer;
    z-index:2;
}

.rhv-modal{
    align-items:center;
    justify-content:center;
    padding:18px;
}
.rhv-modal-card{
    position:relative;
    background:#fff;
    border-radius:18px;
    max-width:680px;
    width:100%;
    max-height:86vh;
    overflow:auto;
    padding:58px 22px 22px;
}
.rhv-hours-list p{
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #edf1f6;
    padding:12px 0;
    margin:0;
}
.rhv-photo-viewer{
    position:relative;
    max-width:980px;
    width:100%;
}
.rhv-photo-viewer img{
    width:100%;
    max-height:88vh;
    object-fit:contain;
    background:#000;
    border-radius:12px;
}

.rhv-empty{
    border:1px dashed var(--rhv-line);
    border-radius:12px;
    padding:18px;
    color:var(--rhv-muted)!important;
}

@media(max-width:900px){
    .rhv-header{
        grid-template-columns:auto 1fr auto;
        padding:14px 18px;
    }
    .rhv-search,
    .rhv-nav{
        display:none;
    }
    .rhv-brand{
        font-size:28px;
    }
    .rhv-main{
        padding:0 18px;
    }
    .rhv-hero{
        grid-template-columns:92px 1fr;
        border-radius:14px;
        padding:16px;
        gap:14px;
    }
    .rhv-logo-card{
        width:92px;
        height:92px;
    }
    .rhv-hero-info h1{
        font-size:24px;
    }
    .rhv-actions{
        grid-column:1/-1;
        grid-template-columns:1fr 1fr;
    }
    .rhv-trust-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .rhv-photo-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .rhv-review-summary{
        grid-template-columns:1fr;
    }
    .rhv-mobile-bar{
        display:grid;
    }
    .rhv-section{
        padding:20px 16px;
    }
    .rhv-tabs{
        position:relative;
    }
    .rhv-actions form{
        grid-column:auto;
    }
}

@media(max-width:520px){
    .rhv-actions{
        grid-template-columns:1fr;
    }
    .rhv-trust-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .rhv-section-title{
        align-items:flex-start;
        flex-direction:column;
    }
    .rhv-review-list header{
        display:block;
    }
    .rhv-tabs button{
        font-size:14px;
        padding:13px 14px;
    }
}

/* Mobile + image layout correction */

/* Business/logo image should fill its card cleanly */
.rhv-logo-card{
    background:#f8fafc !important;
}

.rhv-logo-card img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    padding:0 !important;
}

/* If logo image is meant to stay contained later, use this class manually:
   .rhv-logo-card.logo-contain img { object-fit:contain!important; padding:10px!important; }
*/

/* Cleaner desktop hero image size */
@media(min-width:901px){
    .rhv-logo-card{
        width:180px !important;
        height:180px !important;
    }

    .rhv-hero{
        grid-template-columns:190px 1fr 270px !important;
        align-items:center !important;
    }
}

/* Mobile page order and spacing */
@media(max-width:900px){
    .rhv-page{
        padding-bottom:92px !important;
        background:#fff !important;
    }

    .rhv-header{
        height:70px !important;
        display:grid !important;
        grid-template-columns:44px 1fr 44px !important;
        gap:10px !important;
        padding:12px 16px !important;
        border-bottom:1px solid var(--rhv-line) !important;
    }

    .rhv-header .rhv-brand{
        justify-self:center !important;
        font-size:27px !important;
    }

    .rhv-header > .rhv-icon:first-child{
        justify-self:start !important;
    }

    .rhv-header > .rhv-icon:last-child{
        justify-self:end !important;
    }

    .rhv-main{
        padding:0 14px 28px !important;
    }

    .rhv-breadcrumb{
        padding:14px 0 !important;
        font-size:13px !important;
        gap:8px !important;
    }

    .rhv-hero{
        display:grid !important;
        grid-template-columns:88px 1fr !important;
        gap:14px !important;
        padding:14px !important;
        border:1px solid var(--rhv-line) !important;
        border-radius:16px !important;
        background:#fff !important;
        align-items:start !important;
    }

    .rhv-logo-card{
        width:88px !important;
        height:88px !important;
        border-radius:14px !important;
    }

    .rhv-hero-info{
        min-width:0 !important;
    }

    .rhv-hero-info h1{
        font-size:22px !important;
        line-height:1.15 !important;
        margin:0 0 8px !important;
        letter-spacing:-.4px !important;
    }

    .rhv-badges{
        gap:6px !important;
        margin-bottom:7px !important;
    }

    .rhv-badges span{
        font-size:11px !important;
        padding:4px 8px !important;
    }

    .rhv-rating{
        gap:6px !important;
        flex-wrap:wrap !important;
        margin:6px 0 !important;
        font-size:13px !important;
    }

    .rhv-rating span{
        font-size:14px !important;
        letter-spacing:.5px !important;
    }

    .rhv-rating strong{
        font-size:14px !important;
    }

    .rhv-hero-info p{
        font-size:13px !important;
        margin:5px 0 !important;
        line-height:1.35 !important;
    }

    .rhv-open-row{
        font-size:13px !important;
        line-height:1.35 !important;
        text-align:left !important;
    }

    .rhv-actions{
        grid-column:1/-1 !important;
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:10px !important;
        margin-top:4px !important;
    }

    .rhv-actions .rhv-primary{
        grid-column:1/-1 !important;
    }

    .rhv-actions form{
        grid-column:auto !important;
        margin:0 !important;
    }

    .rhv-primary,
    .rhv-secondary{
        min-height:46px !important;
        font-size:14px !important;
        border-radius:10px !important;
        padding:0 12px !important;
    }

    .rhv-trust{
        margin-top:14px !important;
        border:1px solid var(--rhv-line) !important;
        border-radius:16px !important;
        padding:16px !important;
    }

    .rhv-section-title{
        margin-bottom:12px !important;
    }

    .rhv-section-title h2{
        font-size:19px !important;
        line-height:1.25 !important;
    }

    .rhv-section-title button,
    .rhv-section-title a,
    .rhv-section-title span{
        font-size:14px !important;
    }

    .rhv-trust-grid{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:10px !important;
    }

    .rhv-trust-grid article{
        padding:13px 10px !important;
        border-radius:12px !important;
    }

    .rhv-trust-grid b{
        font-size:20px !important;
    }

    .rhv-trust-grid strong{
        font-size:13px !important;
        margin:5px 0 !important;
    }

    .rhv-trust-grid span{
        font-size:12px !important;
        line-height:1.25 !important;
    }

    .rhv-tabs{
        margin:14px -14px 0 !important;
        border-left:0 !important;
        border-right:0 !important;
        border-top:1px solid var(--rhv-line) !important;
        border-bottom:1px solid var(--rhv-line) !important;
        overflow-x:auto !important;
        background:#fff !important;
        scrollbar-width:none !important;
    }

    .rhv-tabs::-webkit-scrollbar{
        display:none !important;
    }

    .rhv-tabs button{
        flex:0 0 auto !important;
        font-size:14px !important;
        font-weight:600 !important;
        padding:14px 16px !important;
    }

    .rhv-tabs button.active:after{
        width:36px !important;
    }

    .rhv-section{
        border:1px solid var(--rhv-line) !important;
        border-radius:16px !important;
        margin-top:14px !important;
        padding:18px 16px !important;
    }

    .rhv-section h2{
        font-size:21px !important;
        margin-bottom:10px !important;
    }

    .rhv-section p{
        font-size:14px !important;
        line-height:1.55 !important;
    }

    .rhv-service-list a{
        padding:14px !important;
        border-radius:12px !important;
    }

    .rhv-service-list strong{
        font-size:15px !important;
    }

    .rhv-service-list span,
    .rhv-service-list em{
        font-size:13px !important;
    }

    .rhv-photo-grid{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:8px !important;
    }

    .rhv-photo-grid img{
        aspect-ratio:1/1 !important;
        object-fit:cover !important;
    }

    .rhv-review-summary{
        padding:14px !important;
        gap:12px !important;
    }

    .rhv-review-summary strong{
        font-size:34px !important;
    }

    .rhv-review-list article{
        padding:14px !important;
    }

    .rhv-review-list p{
        font-size:14px !important;
    }

    .rhv-info-list a,
    .rhv-info-list button{
        padding:14px !important;
    }

    .rhv-mobile-bar{
        display:grid !important;
        grid-template-columns:1fr 96px !important;
        padding:10px 14px calc(10px + env(safe-area-inset-bottom)) !important;
    }
}

/* Very small mobile */
@media(max-width:420px){
    .rhv-hero{
        grid-template-columns:78px 1fr !important;
        gap:12px !important;
    }

    .rhv-logo-card{
        width:78px !important;
        height:78px !important;
    }

    .rhv-hero-info h1{
        font-size:20px !important;
    }

    .rhv-actions{
        grid-template-columns:1fr !important;
    }

    .rhv-actions .rhv-primary{
        grid-column:auto !important;
    }
}

/* Location + presentation cleanup */
.rhv-location-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:8px !important;
    appearance:none !important;
    cursor:pointer !important;
}

.rhv-location-btn .rhv-loc-icon{
    color:var(--rhv-blue);
    flex:0 0 auto;
}

.rhv-location-btn [data-location-label]{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    min-width:0;
}

.rhv-chevron{
    transform:rotate(90deg);
    color:#667085;
    font-weight:900;
    flex:0 0 auto;
}

.rhv-open-row{
    display:inline-flex !important;
    align-items:center !important;
    gap:6px !important;
    border:0 !important;
    background:transparent !important;
    appearance:none !important;
    color:var(--rhv-green) !important;
    font-weight:750 !important;
    padding:0 !important;
    cursor:pointer !important;
}

.rhv-open-row span{
    color:var(--rhv-green);
}

.rhv-open-row b{
    color:var(--rhv-blue);
    font-weight:800;
    margin-left:4px;
}

/* Cleaner trust area */
.rhv-trust{
    border-radius:0 !important;
}

.rhv-trust-grid article{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:96px !important;
}

.rhv-trust-grid b{
    width:34px;
    height:34px;
    border-radius:999px;
    background:#eef6ff;
    display:flex !important;
    align-items:center;
    justify-content:center;
    margin:0 auto 6px;
}

/* Cleaner modal representation */
.rhv-modal{
    backdrop-filter:blur(2px);
}

.rhv-modal-card{
    box-shadow:0 24px 70px rgba(8,17,38,.22);
    border:1px solid #e7edf6;
}

.rhv-modal-card h2{
    margin:0 0 10px;
    font-size:26px;
    letter-spacing:-.4px;
}

.rhv-modal-lead{
    margin:0 0 16px;
    color:var(--rhv-muted);
    font-weight:700;
}

.rhv-location-card{
    border:1px solid var(--rhv-line);
    border-radius:14px;
    padding:16px;
    margin:14px 0;
    background:#f8fafc;
    display:grid;
    gap:6px;
}

.rhv-location-card strong{
    font-size:17px;
}

.rhv-location-card span{
    color:#445066;
    line-height:1.45;
}

.rhv-location-card a{
    font-weight:800;
    margin-top:4px;
}

/* Header visual balance */
.rhv-header{
    border-bottom:1px solid #e6edf6 !important;
}

.rhv-search input{
    box-shadow:none !important;
}

.rhv-search button[type=submit]{
    box-shadow:none !important;
}

/* Mobile cleanup */
@media(max-width:900px){
    .rhv-header{
        max-width:none !important;
    }

    .rhv-location-btn{
        max-width:100% !important;
    }

    .rhv-trust{
        border-radius:16px !important;
    }

    .rhv-trust-grid article{
        min-height:88px !important;
    }

    .rhv-modal{
        align-items:flex-end !important;
        padding:0 !important;
    }

    .rhv-modal-card{
        border-radius:22px 22px 0 0 !important;
        max-height:86vh !important;
        padding:58px 18px 24px !important;
    }

    .rhv-x{
        top:14px !important;
        right:14px !important;
    }
}

/* Floating CTA redesign */
.rhv-page{
    padding-bottom:0 !important;
}

.rhv-mobile-bar{
    display:none !important;
}

/* Desktop: no bottom floating CTA. Hero/contact sections already carry actions. */
@media(min-width:901px){
    .rhv-mobile-bar{
        display:none !important;
    }
}

/* Mobile: compact, useful, not oversized */
@media(max-width:900px){
    .rhv-page{
        padding-bottom:78px !important;
    }

    .rhv-mobile-bar{
        position:fixed !important;
        left:10px !important;
        right:10px !important;
        bottom:10px !important;
        z-index:80 !important;
        display:grid !important;
        grid-template-columns:1fr 64px 64px !important;
        gap:8px !important;
        align-items:center !important;
        padding:8px !important;
        border:1px solid rgba(221,229,240,.95) !important;
        border-radius:18px !important;
        background:rgba(255,255,255,.96) !important;
        box-shadow:0 14px 35px rgba(8,17,38,.18) !important;
        backdrop-filter:blur(10px) !important;
    }

    .rhv-float-primary,
    .rhv-float-icon{
        min-height:48px !important;
        border-radius:13px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        text-align:center !important;
        font-weight:850 !important;
        text-decoration:none !important;
    }

    .rhv-float-primary{
        background:var(--rhv-blue) !important;
        color:#fff !important;
        font-size:15px !important;
        padding:0 14px !important;
    }

    .rhv-float-icon{
        background:#fff !important;
        border:1px solid #cfd8e6 !important;
        color:#111827 !important;
        flex-direction:column !important;
        gap:1px !important;
        font-size:17px !important;
        line-height:1 !important;
    }

    .rhv-float-icon span{
        font-size:11px !important;
        font-weight:800 !important;
        color:#4b5565 !important;
    }
}

@media(max-width:380px){
    .rhv-mobile-bar{
        grid-template-columns:1fr 56px 56px !important;
        left:8px !important;
        right:8px !important;
        bottom:8px !important;
    }

    .rhv-float-primary{
        font-size:14px !important;
        padding:0 10px !important;
    }
}

/* Request Quote is separate from Book */
.rhv-request-quote-section{
    background:#f8fafc;
}

.rhv-quote-options{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}

.rhv-quote-note{
    margin:12px 0 0;
    color:var(--rhv-muted);
    font-size:13px;
}

@media(max-width:900px){
    .rhv-quote-options{
        grid-template-columns:1fr;
    }
}

/* Real Request Quote modal */
.rhv-actions button.rhv-primary,
.rhv-contact-grid button.rhv-primary{
    border:1px solid var(--rhv-blue);
}

.rhv-service-action{
    border:1px solid var(--rhv-line);
    border-radius:12px;
    padding:16px;
    color:var(--rhv-text);
    display:grid;
    gap:6px;
    background:#fff;
    text-align:left;
    cursor:pointer;
    width:100%;
}

.rhv-service-action strong{
    color:var(--rhv-text);
}

.rhv-service-action span{
    color:var(--rhv-muted);
}

.rhv-request-modal-card{
    max-width:620px;
    padding:0 !important;
    overflow:hidden;
}

.rhv-request-modal-head{
    background:var(--rhv-blue);
    color:#fff;
    padding:20px 22px;
}

.rhv-request-modal-head h2{
    margin:0 0 6px;
    font-size:25px;
}

.rhv-request-modal-head p{
    margin:0;
    line-height:1.4;
    color:#eaf2ff;
}

.rhv-request-form{
    padding:18px 22px 22px;
    display:grid;
    gap:12px;
}

.rhv-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.rhv-request-form label{
    display:grid;
    gap:5px;
    color:#0b1633;
    font-weight:800;
    font-size:13px;
}

.rhv-request-form label b{
    color:#dc2626;
}

.rhv-request-form input,
.rhv-request-form select,
.rhv-request-form textarea{
    width:100%;
    border:1px solid #cfd8e6;
    border-radius:10px;
    min-height:42px;
    padding:10px 12px;
    background:#fff;
    color:#111827;
}

.rhv-request-form textarea{
    min-height:86px;
    resize:vertical;
}

.rhv-agree-row{
    grid-template-columns:22px 1fr !important;
    align-items:start;
    border:1px solid var(--rhv-line);
    border-radius:10px;
    padding:12px;
    background:#f8fafc;
}

.rhv-agree-row input{
    min-height:auto;
    margin-top:2px;
}

.rhv-agree-row span{
    font-weight:700;
    color:#334155;
    line-height:1.35;
}

.rhv-submit-quote{
    min-height:48px;
    border:0;
    border-radius:10px;
    background:#ffc928;
    color:#071126;
    font-weight:900;
    cursor:pointer;
}

@media(max-width:700px){
    .rhv-form-grid{
        grid-template-columns:1fr;
    }

    .rhv-request-modal-card{
        max-width:none;
        width:100%;
        border-radius:22px 22px 0 0;
    }
}

/* Use default RepairHit Request Quote modal exactly, only ensure it layers above theme */
.rh-quote-modal,
.rh-request-quote-modal,
#rhRequestQuoteModal{
    z-index:999999 !important;
}

/* New theme should not show custom Request Quote section/modal */
.rhv-request-quote-section,
[data-request-quote-modal],
[data-rh-quote-modal-removed]{
    display:none !important;
}

/* Final: floating CTA disabled for installable theme */
.rhv-mobile-bar,
.rhv-float-primary,
.rhv-float-icon{
    display:none !important;
    visibility:hidden !important;
    pointer-events:none !important;
}

.rhv-page{
    padding-bottom:24px !important;
}

@media(max-width:900px){
    .rhv-page{
        padding-bottom:24px !important;
    }
}

/* Review UX upgrade */
.rhv-review-title{
    align-items:flex-start;
}

.rhv-review-title > div:first-child span{
    display:block;
    color:var(--rhv-muted);
    margin-top:4px;
    font-size:14px;
}

.rhv-review-title-actions{
    display:flex;
    gap:10px;
    align-items:center;
}

.rhv-review-title-actions .rhv-primary,
.rhv-review-title-actions .rhv-secondary{
    min-height:40px;
    font-size:14px;
    padding:0 14px;
}

.rhv-review-card{
    border:1px solid var(--rhv-line);
    border-radius:14px;
    padding:16px;
    background:#fff;
}

.rhv-review-card header{
    display:grid;
    grid-template-columns:44px 1fr auto;
    gap:12px;
    align-items:center;
}

.rhv-review-avatar{
    width:44px;
    height:44px;
    border-radius:999px;
    background:#eef6ff;
    color:var(--rhv-blue);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    border:1px solid #cfe2ff;
}

.rhv-review-person strong{
    display:block;
    font-size:15px;
    color:var(--rhv-text);
}

.rhv-review-person small{
    display:block;
    color:var(--rhv-muted);
    margin-top:2px;
}

.rhv-review-stars{
    color:var(--rhv-gold);
    letter-spacing:.5px;
    white-space:nowrap;
}

.rhv-review-preview,
.rhv-review-full p{
    margin:12px 0 0;
    color:#293449;
    line-height:1.55;
    font-size:15px;
}

.rhv-review-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
    padding-top:12px;
    border-top:1px solid #edf1f6;
}

.rhv-review-actions a,
.rhv-review-actions button{
    border:1px solid var(--rhv-line);
    background:#fff;
    border-radius:999px;
    padding:8px 12px;
    color:var(--rhv-blue);
    font-weight:800;
    font-size:13px;
    cursor:pointer;
}

.rhv-review-actions [data-report-link]{
    color:#64748b;
}

.rhv-read-all-row{
    margin-top:16px;
}

.rhv-read-all-row .rhv-primary{
    max-width:340px;
}

@media(max-width:700px){
    .rhv-review-title{
        display:grid;
        gap:12px;
    }

    .rhv-review-title-actions{
        width:100%;
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .rhv-review-card header{
        grid-template-columns:42px 1fr;
    }

    .rhv-review-stars{
        grid-column:2;
        justify-self:start;
    }
}

/* Review report modal */
.rhv-report-card{
    max-width:520px !important;
}

.rhv-report-card h2{
    margin:0 0 8px;
}

.rhv-report-copy{
    color:var(--rhv-muted);
    margin:0 0 14px;
    line-height:1.45;
}

.rhv-report-card form{
    display:grid;
    gap:10px;
}

.rhv-report-option{
    display:flex;
    gap:10px;
    align-items:center;
    border:1px solid var(--rhv-line);
    border-radius:12px;
    padding:12px;
    font-weight:750;
    cursor:pointer;
}

.rhv-report-option input{
    width:18px;
    height:18px;
}

.rhv-report-note{
    display:grid;
    gap:6px;
    color:#111827;
    font-weight:800;
    font-size:13px;
}

.rhv-report-note textarea{
    width:100%;
    min-height:78px;
    border:1px solid #cfd8e6;
    border-radius:10px;
    padding:10px 12px;
    resize:vertical;
}

/* Themed all reviews page */
.rhv-reviews-page .rhv-header{
    grid-template-columns:auto minmax(360px,1fr) auto;
}

.rhv-review-page-hero{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:center;
    border-radius:14px 14px 0 0;
    border-top:1px solid var(--rhv-line);
}

.rhv-review-page-hero h1{
    margin:8px 0 8px;
    font-size:34px;
    letter-spacing:-.8px;
}

.rhv-back-link{
    font-weight:850;
}

.rhv-review-page-score{
    border:1px solid var(--rhv-line);
    border-radius:14px;
    padding:18px;
    text-align:center;
    min-width:170px;
    background:#f8fafc;
}

.rhv-review-page-score strong{
    display:block;
    font-size:44px;
    line-height:1;
}

.rhv-review-page-score span{
    color:var(--rhv-gold);
    display:block;
    margin:6px 0;
}

.rhv-review-page-score small{
    color:var(--rhv-muted);
}

.rhv-write-review-form{
    display:grid;
    gap:12px;
    max-width:680px;
}

.rhv-write-review-form label{
    display:grid;
    gap:6px;
    color:#111827;
    font-weight:800;
}

.rhv-write-review-form select,
.rhv-write-review-form textarea{
    width:100%;
    border:1px solid #cfd8e6;
    border-radius:10px;
    padding:10px 12px;
}

.rhv-write-review-form textarea{
    min-height:130px;
    resize:vertical;
}

.rhv-pagination{
    margin-top:20px;
}

@media(max-width:900px){
    .rhv-reviews-page .rhv-header{
        grid-template-columns:1fr;
        height:auto;
    }

    .rhv-review-page-hero{
        grid-template-columns:1fr;
    }

    .rhv-review-page-hero h1{
        font-size:27px;
    }

    .rhv-review-page-score{
        text-align:left;
    }
}

/* Themed all reviews page */
.rhv-reviews-page .rhv-header{
    grid-template-columns:auto minmax(360px,1fr) auto;
}

.rhv-review-page-hero{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:center;
    border-radius:14px 14px 0 0;
    border-top:1px solid var(--rhv-line);
}

.rhv-review-page-hero h1{
    margin:8px 0 8px;
    font-size:34px;
    letter-spacing:-.8px;
}

.rhv-back-link{
    font-weight:850;
}

.rhv-review-page-score{
    border:1px solid var(--rhv-line);
    border-radius:14px;
    padding:18px;
    text-align:center;
    min-width:170px;
    background:#f8fafc;
}

.rhv-review-page-score strong{
    display:block;
    font-size:44px;
    line-height:1;
}

.rhv-review-page-score span{
    color:var(--rhv-gold);
    display:block;
    margin:6px 0;
}

.rhv-review-page-score small{
    color:var(--rhv-muted);
}

.rhv-write-review-form{
    display:grid;
    gap:12px;
    max-width:680px;
}

.rhv-write-review-form label{
    display:grid;
    gap:6px;
    color:#111827;
    font-weight:800;
}

.rhv-write-review-form select,
.rhv-write-review-form textarea{
    width:100%;
    border:1px solid #cfd8e6;
    border-radius:10px;
    padding:10px 12px;
}

.rhv-write-review-form textarea{
    min-height:130px;
    resize:vertical;
}

.rhv-pagination{
    margin-top:20px;
}

@media(max-width:900px){
    .rhv-reviews-page .rhv-header{
        grid-template-columns:1fr;
        height:auto;
    }

    .rhv-review-page-hero{
        grid-template-columns:1fr;
    }

    .rhv-review-page-hero h1{
        font-size:27px;
    }

    .rhv-review-page-score{
        text-align:left;
    }
}

/* Google-style themed all reviews page */
.rhv-reviews-page{
    background:#fff !important;
}

.rhv-reviews-page .rhv-main{
    max-width:860px !important;
}

.rhv-reviews-page .rhv-header{
    max-width:1180px !important;
}

.rhv-review-page-hero{
    border-radius:18px !important;
    margin-bottom:14px !important;
    background:#fff !important;
}

.rhv-review-page-hero h1{
    font-size:30px !important;
    line-height:1.12 !important;
}

.rhv-review-page-hero p{
    max-width:560px !important;
}

.rhv-review-page-score{
    box-shadow:none !important;
}

.rhv-review-filters{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:0 0 14px;
    margin-bottom:12px;
    scrollbar-width:none;
}

.rhv-review-filters::-webkit-scrollbar{
    display:none;
}

.rhv-review-filters a{
    flex:0 0 auto;
    border:1px solid var(--rhv-line);
    border-radius:999px;
    padding:9px 13px;
    font-size:13px;
    font-weight:850;
    color:#334155;
    background:#fff;
}

.rhv-review-filters a:first-child{
    border-color:#bcd4ff;
    background:#eef6ff;
    color:var(--rhv-blue);
}

.rhv-google-review-feed{
    gap:12px !important;
}

.rhv-reviews-page .rhv-review-card{
    border:0 !important;
    border-bottom:1px solid #edf1f6 !important;
    border-radius:0 !important;
    padding:18px 0 !important;
    box-shadow:none !important;
}

.rhv-reviews-page .rhv-review-card:first-child{
    padding-top:4px !important;
}

.rhv-reviews-page .rhv-review-card header{
    grid-template-columns:46px 1fr auto !important;
}

.rhv-reviews-page .rhv-review-avatar{
    width:46px !important;
    height:46px !important;
    background:#eaf2ff !important;
    border:0 !important;
}

.rhv-reviews-page .rhv-review-person strong{
    font-size:15px !important;
}

.rhv-reviews-page .rhv-review-person small{
    font-size:13px !important;
}

.rhv-reviews-page .rhv-review-stars{
    font-size:14px !important;
}

.rhv-reviews-page .rhv-review-preview,
.rhv-reviews-page .rhv-review-full p{
    font-size:15px !important;
    line-height:1.55 !important;
    margin-left:58px !important;
}

.rhv-reviews-page .rhv-review-actions{
    border-top:0 !important;
    margin-left:58px !important;
    padding-top:8px !important;
}

.rhv-reviews-page .rhv-review-actions a,
.rhv-reviews-page .rhv-review-actions button{
    border:0 !important;
    background:transparent !important;
    padding:5px 8px !important;
    color:var(--rhv-blue) !important;
    font-size:13px !important;
}

.rhv-infinite-reviews-loader{
    min-height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:var(--rhv-muted);
    font-size:14px;
    font-weight:800;
}

.rhv-infinite-reviews-loader[hidden]{
    display:none !important;
}

.rhv-infinite-reviews-loader span{
    width:18px;
    height:18px;
    border-radius:999px;
    border:3px solid #dbe6f4;
    border-top-color:var(--rhv-blue);
    animation:rhvSpin .8s linear infinite;
}

.rhv-infinite-reviews-loader strong{
    font-size:14px;
}

@keyframes rhvSpin{
    to{transform:rotate(360deg)}
}

/* prevent default pagination SVG from destroying the themed page */
.rhv-pagination{
    display:none !important;
}

.rhv-pagination svg,
.rhv-reviews-page svg{
    max-width:18px !important;
    max-height:18px !important;
}

@media(max-width:900px){
    .rhv-reviews-page .rhv-main{
        max-width:none !important;
        padding:0 14px 28px !important;
    }

    .rhv-review-page-hero{
        padding:18px 16px !important;
    }

    .rhv-review-page-hero h1{
        font-size:24px !important;
    }

    .rhv-review-page-score{
        min-width:0 !important;
    }

    .rhv-reviews-page .rhv-review-card header{
        grid-template-columns:42px 1fr !important;
    }

    .rhv-reviews-page .rhv-review-stars{
        grid-column:2 !important;
    }

    .rhv-reviews-page .rhv-review-preview,
    .rhv-reviews-page .rhv-review-full p,
    .rhv-reviews-page .rhv-review-actions{
        margin-left:54px !important;
    }

    .rhv-review-title-actions{
        grid-template-columns:1fr !important;
    }
}

/* Sticky back + sort bar for themed reviews page */
.rhv-review-sticky-tools{
    position:sticky;
    top:0;
    z-index:60;
    display:grid;
    grid-template-columns:auto 1fr;
    gap:12px;
    align-items:center;
    padding:12px 0;
    margin-bottom:12px;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid #edf1f6;
    backdrop-filter:blur(10px);
}

.rhv-sticky-back{
    min-height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--rhv-line);
    border-radius:999px;
    padding:0 14px;
    color:var(--rhv-blue);
    background:#fff;
    font-weight:900;
    white-space:nowrap;
}

.rhv-sticky-sort{
    display:flex;
    gap:8px;
    overflow-x:auto;
    justify-content:flex-end;
    scrollbar-width:none;
}

.rhv-sticky-sort::-webkit-scrollbar{
    display:none;
}

.rhv-sticky-sort a{
    flex:0 0 auto;
    min-height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--rhv-line);
    border-radius:999px;
    padding:0 13px;
    font-size:13px;
    font-weight:850;
    color:#334155;
    background:#fff;
}

.rhv-sticky-sort a:first-child{
    border-color:#bcd4ff;
    background:#eef6ff;
    color:var(--rhv-blue);
}

.rhv-reviews-page .rhv-review-page-hero{
    margin-bottom:0 !important;
}

@media(max-width:900px){
    .rhv-review-sticky-tools{
        top:0;
        grid-template-columns:1fr;
        gap:9px;
        padding:10px 0;
    }

    .rhv-sticky-back{
        justify-content:flex-start;
        width:fit-content;
    }

    .rhv-sticky-sort{
        justify-content:flex-start;
        margin-left:-2px;
        padding-bottom:1px;
    }

    .rhv-sticky-sort a{
        min-height:38px;
        font-size:12px;
        padding:0 12px;
    }
}

/* Mobile overview rating row: 5.0 > stars > review count */
@media(max-width:900px){
    .rhv-hero .rhv-rating{
        display:flex !important;
        align-items:center !important;
        flex-wrap:nowrap !important;
        gap:7px !important;
        width:100% !important;
        margin:6px 0 7px !important;
        white-space:nowrap !important;
        line-height:1 !important;
    }

    .rhv-hero .rhv-rating strong{
        flex:0 0 auto !important;
        font-size:15px !important;
        font-weight:900 !important;
        color:var(--rhv-text) !important;
        line-height:1 !important;
        order:1 !important;
    }

    .rhv-hero .rhv-rating span{
        flex:0 0 auto !important;
        color:var(--rhv-gold) !important;
        font-size:14px !important;
        letter-spacing:0 !important;
        line-height:1 !important;
        order:2 !important;
    }

    .rhv-hero .rhv-rating a{
        flex:0 1 auto !important;
        min-width:0 !important;
        overflow:hidden !important;
        text-overflow:ellipsis !important;
        color:var(--rhv-blue) !important;
        font-size:13px !important;
        font-weight:750 !important;
        line-height:1 !important;
        order:3 !important;
    }
}

@media(max-width:380px){
    .rhv-hero .rhv-rating{
        gap:5px !important;
    }

    .rhv-hero .rhv-rating strong{
        font-size:14px !important;
    }

    .rhv-hero .rhv-rating span{
        font-size:13px !important;
    }

    .rhv-hero .rhv-rating a{
        font-size:12px !important;
    }
}

/* FINAL mobile/tablet header + rating row correction */

/* Earlier breakpoint was too late; logo gets squeezed on tablet/mobile widths */
@media(max-width:1180px){
    .rhv-header{
        width:100% !important;
        max-width:none !important;
        height:68px !important;
        display:grid !important;
        grid-template-columns:44px minmax(0,1fr) 44px !important;
        align-items:center !important;
        gap:8px !important;
        padding:10px 14px !important;
        margin:0 !important;
        overflow:visible !important;
        border-bottom:1px solid var(--rhv-line) !important;
    }

    .rhv-header .rhv-search,
    .rhv-header .rhv-nav{
        display:none !important;
    }

    .rhv-header .rhv-icon{
        width:40px !important;
        height:40px !important;
        min-width:40px !important;
        padding:0 !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        overflow:visible !important;
    }

    .rhv-header .rhv-icon:first-child{
        grid-column:1 !important;
        justify-self:start !important;
    }

    .rhv-header .rhv-brand{
        grid-column:2 !important;
        justify-self:center !important;
        align-self:center !important;
        width:auto !important;
        max-width:100% !important;
        min-width:0 !important;
        overflow:visible !important;
        white-space:nowrap !important;
        font-size:27px !important;
        line-height:1 !important;
        transform:none !important;
        margin:0 !important;
        padding:0 !important;
    }

    .rhv-header .rhv-brand span,
    .rhv-header .rhv-brand b{
        display:inline-flex !important;
        align-items:center !important;
        flex:0 0 auto !important;
    }

    .rhv-header .rhv-brand b{
        padding:4px 6px !important;
        border-radius:6px !important;
    }

    .rhv-header > .rhv-icon:last-child{
        grid-column:3 !important;
        justify-self:end !important;
    }
}

/* Very small screens: slightly smaller logo, never clipped */
@media(max-width:420px){
    .rhv-header{
        grid-template-columns:40px minmax(0,1fr) 40px !important;
        padding:10px 12px !important;
    }

    .rhv-header .rhv-brand{
        font-size:24px !important;
        letter-spacing:-.8px !important;
    }

    .rhv-header .rhv-brand b{
        padding:3px 5px !important;
    }
}

/* Force hero rating into one row: 5.0 ★★★★★ 341 reviews */
@media(max-width:1180px){
    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating{
        display:flex !important;
        flex-direction:row !important;
        align-items:center !important;
        justify-content:flex-start !important;
        flex-wrap:nowrap !important;
        gap:6px !important;
        width:100% !important;
        max-width:100% !important;
        margin:6px 0 7px !important;
        padding:0 !important;
        white-space:nowrap !important;
        line-height:1 !important;
        overflow:hidden !important;
    }

    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating strong,
    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating span,
    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating a{
        display:inline-flex !important;
        align-items:center !important;
        width:auto !important;
        max-width:none !important;
        margin:0 !important;
        padding:0 !important;
        line-height:1 !important;
        white-space:nowrap !important;
        float:none !important;
        clear:none !important;
    }

    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating strong{
        order:1 !important;
        flex:0 0 auto !important;
        font-size:14px !important;
        font-weight:900 !important;
        color:var(--rhv-text) !important;
    }

    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating span{
        order:2 !important;
        flex:0 0 auto !important;
        font-size:13px !important;
        letter-spacing:0 !important;
        color:var(--rhv-gold) !important;
    }

    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating a{
        order:3 !important;
        flex:0 1 auto !important;
        min-width:0 !important;
        overflow:hidden !important;
        text-overflow:ellipsis !important;
        font-size:12px !important;
        font-weight:750 !important;
        color:var(--rhv-blue) !important;
    }
}

/* On narrow mobile, shorten spacing but keep one line */
@media(max-width:380px){
    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating{
        gap:4px !important;
    }

    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating strong{
        font-size:13px !important;
    }

    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating span{
        font-size:12px !important;
    }

    .rhv-page .rhv-hero .rhv-hero-info .rhv-rating a{
        font-size:11px !important;
    }
}

/* FINAL mobile review overview: 5.0 ★★★★★ 341 reviews in one row */
@media(max-width:900px){
    .rhv-section#reviews .rhv-review-summary,
    .rhv-reviews-page .rhv-review-summary{
        display:block !important;
        padding:14px !important;
        border-radius:14px !important;
        margin-bottom:14px !important;
    }

    .rhv-section#reviews .rhv-review-summary > div:first-child,
    .rhv-reviews-page .rhv-review-summary > div:first-child{
        display:flex !important;
        flex-direction:row !important;
        align-items:center !important;
        justify-content:flex-start !important;
        gap:8px !important;
        width:100% !important;
        white-space:nowrap !important;
        overflow:hidden !important;
    }

    .rhv-section#reviews .rhv-review-summary > div:first-child strong,
    .rhv-reviews-page .rhv-review-summary > div:first-child strong{
        display:inline-flex !important;
        flex:0 0 auto !important;
        font-size:20px !important;
        line-height:1 !important;
        font-weight:900 !important;
        margin:0 !important;
        color:var(--rhv-text) !important;
    }

    .rhv-section#reviews .rhv-review-summary > div:first-child span,
    .rhv-reviews-page .rhv-review-summary > div:first-child span{
        display:inline-flex !important;
        flex:0 0 auto !important;
        font-size:15px !important;
        line-height:1 !important;
        letter-spacing:0 !important;
        margin:0 !important;
        color:var(--rhv-gold) !important;
    }

    .rhv-section#reviews .rhv-review-summary > div:first-child small,
    .rhv-reviews-page .rhv-review-summary > div:first-child small{
        display:inline-flex !important;
        flex:0 1 auto !important;
        min-width:0 !important;
        overflow:hidden !important;
        text-overflow:ellipsis !important;
        white-space:nowrap !important;
        font-size:13px !important;
        line-height:1 !important;
        margin:0 !important;
        color:var(--rhv-muted) !important;
        font-weight:750 !important;
    }

    /* Hide breakdown bars on mobile overview so the top row does not become stacked/heavy */
    .rhv-section#reviews .rhv-review-summary > div:nth-child(2){
        display:none !important;
    }

    /* On all-reviews page keep bars but put them below cleanly */
    .rhv-reviews-page .rhv-review-summary > div:nth-child(2){
        display:grid !important;
        gap:4px !important;
        margin-top:12px !important;
    }

    .rhv-reviews-page .rhv-review-summary > div:nth-child(2) p{
        margin:5px 0 !important;
        grid-template-columns:42px 1fr 34px !important;
        font-size:12px !important;
    }
}

@media(max-width:380px){
    .rhv-section#reviews .rhv-review-summary > div:first-child,
    .rhv-reviews-page .rhv-review-summary > div:first-child{
        gap:5px !important;
    }

    .rhv-section#reviews .rhv-review-summary > div:first-child strong,
    .rhv-reviews-page .rhv-review-summary > div:first-child strong{
        font-size:18px !important;
    }

    .rhv-section#reviews .rhv-review-summary > div:first-child span,
    .rhv-reviews-page .rhv-review-summary > div:first-child span{
        font-size:13px !important;
    }

    .rhv-section#reviews .rhv-review-summary > div:first-child small,
    .rhv-reviews-page .rhv-review-summary > div:first-child small{
        font-size:12px !important;
    }
}

/* HARD FIX: review overview row classes */
@media(max-width:900px){
    .rhv-review-overview-card{
        display:block !important;
        padding:12px 14px !important;
        margin-bottom:14px !important;
    }

    .rhv-review-overview-card .rhv-review-overview-row{
        display:flex !important;
        flex-direction:row !important;
        align-items:center !important;
        justify-content:flex-start !important;
        gap:8px !important;
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        white-space:nowrap !important;
        overflow:hidden !important;
        line-height:1 !important;
    }

    .rhv-review-overview-rating,
    .rhv-review-overview-stars,
    .rhv-review-overview-count{
        display:inline-flex !important;
        align-items:center !important;
        width:auto !important;
        max-width:none !important;
        margin:0 !important;
        padding:0 !important;
        line-height:1 !important;
        white-space:nowrap !important;
        float:none !important;
        clear:none !important;
    }

    .rhv-review-overview-rating{
        flex:0 0 auto !important;
        font-size:19px !important;
        font-weight:950 !important;
        color:var(--rhv-text) !important;
    }

    .rhv-review-overview-stars{
        flex:0 0 auto !important;
        font-size:14px !important;
        letter-spacing:0 !important;
        color:var(--rhv-gold) !important;
    }

    .rhv-review-overview-count{
        flex:0 1 auto !important;
        min-width:0 !important;
        overflow:hidden !important;
        text-overflow:ellipsis !important;
        font-size:13px !important;
        font-weight:750 !important;
        color:var(--rhv-muted) !important;
    }

    /* Business page overview: no bars on mobile */
    .rhv-section#reviews .rhv-review-overview-card > div:nth-child(2){
        display:none !important;
    }
}

/* Sort hover + selected state */
.rhv-sticky-sort a{
    transition:background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease !important;
}

.rhv-sticky-sort a:hover,
.rhv-sticky-sort a:focus{
    background:#eef6ff !important;
    border-color:#bcd4ff !important;
    color:var(--rhv-blue) !important;
    box-shadow:0 3px 12px rgba(8,102,242,.12) !important;
}

.rhv-sticky-sort a.is-active{
    background:var(--rhv-blue) !important;
    border-color:var(--rhv-blue) !important;
    color:#fff !important;
    box-shadow:0 4px 14px rgba(8,102,242,.20) !important;
}

.rhv-sticky-sort a.is-active:hover,
.rhv-sticky-sort a.is-active:focus{
    background:#0757d0 !important;
    border-color:#0757d0 !important;
    color:#fff !important;
}

/* Override old first-child active styling */
.rhv-sticky-sort a:first-child:not(.is-active){
    background:#fff !important;
    border-color:var(--rhv-line) !important;
    color:#334155 !important;
}

/* When sorting reviews, jump directly to first review instead of top header */
#reviews-feed{
    scroll-margin-top:92px;
}

@media(max-width:900px){
    #reviews-feed{
        scroll-margin-top:126px;
    }
}

/* Mobile compact hours row: ● Open today · 8:30AM-8:30PM View hours */
@media(max-width:900px){
    .rhv-hero .rhv-open-row{
        display:flex !important;
        align-items:center !important;
        flex-wrap:nowrap !important;
        gap:4px !important;
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        overflow:hidden !important;
        white-space:nowrap !important;
        text-overflow:ellipsis !important;
        font-size:11px !important;
        line-height:1 !important;
        margin-top:5px !important;
    }

    .rhv-hero .rhv-open-row span{
        flex:0 0 auto !important;
        font-size:9px !important;
        line-height:1 !important;
    }

    .rhv-hero .rhv-open-row b{
        flex:0 0 auto !important;
        margin-left:3px !important;
        font-size:11px !important;
        line-height:1 !important;
        font-weight:850 !important;
        color:var(--rhv-blue) !important;
    }
}

@media(max-width:380px){
    .rhv-hero .rhv-open-row{
        font-size:10px !important;
        gap:3px !important;
    }

    .rhv-hero .rhv-open-row b{
        font-size:10px !important;
    }
}

/* Final mobile hours format: Open · 8:30AM-8:30PM View */
.rhv-open-row em{
    font-style:normal;
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.rhv-hours-mobile{
    display:none;
}

.rhv-hours-desktop{
    display:inline-flex;
}

@media(max-width:900px){
    .rhv-hero .rhv-open-row{
        display:flex !important;
        align-items:center !important;
        flex-wrap:nowrap !important;
        gap:4px !important;
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        overflow:hidden !important;
        white-space:nowrap !important;
        font-size:11px !important;
        line-height:1 !important;
        margin-top:5px !important;
    }

    .rhv-hours-dot{
        display:none !important;
    }

    .rhv-hours-desktop{
        display:none !important;
    }

    .rhv-hours-mobile{
        display:inline-flex !important;
        flex:0 1 auto !important;
        font-size:11px !important;
        line-height:1 !important;
        color:var(--rhv-green) !important;
        font-weight:750 !important;
    }

    .rhv-hero .rhv-open-row b{
        display:inline-flex !important;
        flex:0 0 auto !important;
        margin-left:3px !important;
        font-size:11px !important;
        line-height:1 !important;
        font-weight:850 !important;
        color:var(--rhv-blue) !important;
    }
}

@media(max-width:380px){
    .rhv-hours-mobile,
    .rhv-hero .rhv-open-row b{
        font-size:10px !important;
    }
}

/* FINAL popup/modal accessibility + centered layout */
html.rhv-modal-open,
body.rhv-modal-open{
    overflow:hidden !important;
}

/* Theme modals: hours, location, about, report, photo */
.rhv-modal{
    position:fixed !important;
    inset:0 !important;
    z-index:999990 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:18px !important;
    background:rgba(6,22,56,.56) !important;
    backdrop-filter:blur(4px) !important;
    overflow:auto !important;
}

.rhv-modal[hidden]{
    display:none !important;
}

.rhv-modal-card{
    position:relative !important;
    width:min(640px, calc(100vw - 32px)) !important;
    max-height:calc(100vh - 44px) !important;
    overflow:auto !important;
    background:#fff !important;
    border:1px solid #e5edf8 !important;
    border-radius:22px !important;
    box-shadow:0 28px 90px rgba(6,22,56,.32) !important;
    padding:64px 24px 24px !important;
    margin:auto !important;
}

/* Better modal content spacing */
.rhv-modal-card h2{
    margin:0 0 10px !important;
    font-size:26px !important;
    line-height:1.15 !important;
    letter-spacing:-.4px !important;
    color:var(--rhv-text) !important;
}

.rhv-modal-card p{
    margin:0 0 14px !important;
    line-height:1.5 !important;
}

.rhv-modal-card .rhv-info-list,
.rhv-modal-card .rhv-hours-list,
.rhv-modal-card form{
    margin-top:14px !important;
}

/* Close button: always visible, accessible, thumb-sized */
.rhv-x,
.rhv-modal .rhv-x,
.rhv-drawer .rhv-x{
    position:absolute !important;
    top:14px !important;
    right:14px !important;
    z-index:1000001 !important;
    width:44px !important;
    height:44px !important;
    min-width:44px !important;
    min-height:44px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border:1px solid #d9e3f0 !important;
    border-radius:999px !important;
    background:#fff !important;
    color:#0f172a !important;
    font-size:30px !important;
    line-height:1 !important;
    font-weight:500 !important;
    box-shadow:0 10px 28px rgba(6,22,56,.18) !important;
    cursor:pointer !important;
}

.rhv-x:hover,
.rhv-x:focus{
    border-color:var(--rhv-blue) !important;
    color:var(--rhv-blue) !important;
    outline:3px solid rgba(8,102,242,.16) !important;
}

/* Photo viewer popup */
.rhv-photo-viewer{
    position:relative !important;
    width:min(980px, calc(100vw - 32px)) !important;
    max-height:calc(100vh - 44px) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin:auto !important;
}

.rhv-photo-viewer img{
    max-width:100% !important;
    max-height:calc(100vh - 64px) !important;
    object-fit:contain !important;
    border-radius:18px !important;
    background:#000 !important;
}

/* Drawer is separate: keep as drawer, but close remains accessible */
.rhv-drawer{
    z-index:999980 !important;
}

.rhv-drawer-panel{
    position:relative !important;
    box-shadow:18px 0 60px rgba(6,22,56,.22) !important;
}

/* Default RepairHit Request Quote modal from partial */
.rh-quote-modal{
    z-index:1000000 !important;
    align-items:center !important;
    justify-content:center !important;
    padding:18px !important;
    background:rgba(6,22,56,.56) !important;
    backdrop-filter:blur(4px) !important;
}

.rh-quote-modal.is-visible{
    display:flex !important;
}

.rh-quote-card{
    position:relative !important;
    width:min(620px, calc(100vw - 32px)) !important;
    max-height:calc(100vh - 44px) !important;
    overflow:auto !important;
    border-radius:22px !important;
    margin:auto !important;
    box-shadow:0 28px 90px rgba(6,22,56,.32) !important;
}

.rh-quote-close,
.rh-quote-modal .rh-quote-close{
    position:absolute !important;
    top:14px !important;
    right:14px !important;
    z-index:1000002 !important;
    width:44px !important;
    height:44px !important;
    min-width:44px !important;
    min-height:44px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border:1px solid #d9e3f0 !important;
    border-radius:999px !important;
    background:#fff !important;
    color:#0f172a !important;
    font-size:30px !important;
    line-height:1 !important;
    box-shadow:0 10px 28px rgba(6,22,56,.18) !important;
    cursor:pointer !important;
}

.rh-quote-close:hover,
.rh-quote-close:focus{
    border-color:var(--rhv-blue) !important;
    color:var(--rhv-blue) !important;
    outline:3px solid rgba(8,102,242,.16) !important;
}

/* Report modal spacing */
.rhv-report-card{
    width:min(540px, calc(100vw - 32px)) !important;
}

.rhv-report-option{
    min-height:48px !important;
}

.rhv-report-note textarea{
    min-height:92px !important;
}

/* Mobile: still centered, not bottom sheet */
@media(max-width:700px){
    .rhv-modal{
        align-items:center !important;
        justify-content:center !important;
        padding:14px !important;
    }

    .rhv-modal-card{
        width:calc(100vw - 28px) !important;
        max-height:calc(100vh - 28px) !important;
        border-radius:20px !important;
        padding:62px 18px 20px !important;
    }

    .rhv-modal-card h2{
        font-size:22px !important;
    }

    .rh-quote-modal{
        align-items:center !important;
        justify-content:center !important;
        padding:14px !important;
    }

    .rh-quote-card{
        width:calc(100vw - 28px) !important;
        max-height:calc(100vh - 28px) !important;
        border-radius:20px !important;
    }

    .rhv-x,
    .rh-quote-close{
        width:42px !important;
        height:42px !important;
        min-width:42px !important;
        min-height:42px !important;
        top:12px !important;
        right:12px !important;
        font-size:28px !important;
    }
}

/* Request Quote trigger inside tabs/services */
.rhv-tab-quote{
    color:var(--rhv-blue) !important;
    font-weight:800 !important;
}

.rhv-tab-quote::after{
    display:none !important;
}

.rhv-service-quote-btn{
    min-height:40px !important;
    font-size:14px !important;
    padding:0 14px !important;
}

.rhv-service-action{
    border:1px solid var(--rhv-line);
    border-radius:12px;
    padding:16px;
    color:var(--rhv-text);
    display:grid;
    gap:6px;
    background:#fff;
    text-align:left;
    cursor:pointer;
    width:100%;
}

.rhv-service-action strong{
    color:var(--rhv-text);
}

.rhv-service-action span{
    color:var(--rhv-muted);
}

.rhv-service-action em{
    font-style:normal;
    color:var(--rhv-blue);
    font-weight:800;
}

/* Keep only one working blue Request Quote tab */
.rhv-tabs .rhv-tab-quote{
    background:var(--rhv-blue) !important;
    color:#fff !important;
    border-radius:999px !important;
    margin:8px 10px !important;
    padding:8px 16px !important;
    font-weight:900 !important;
    align-self:center !important;
    border:1px solid var(--rhv-blue) !important;
}

.rhv-tabs .rhv-tab-quote:hover,
.rhv-tabs .rhv-tab-quote:focus{
    background:#0757d0 !important;
    color:#fff !important;
    outline:3px solid rgba(8,102,242,.16) !important;
}

.rhv-tabs .rhv-tab-quote::after{
    display:none !important;
}

/* Review cards: name + stars together, always 5 stars shown */
.rhv-review-card .rhv-review-head{
    display:grid !important;
    grid-template-columns:46px minmax(0,1fr) !important;
    gap:12px !important;
    align-items:start !important;
}

.rhv-review-card .rhv-review-person{
    display:grid !important;
    gap:4px !important;
    min-width:0 !important;
}

.rhv-review-card .rhv-review-name-row{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:10px !important;
    min-width:0 !important;
    flex-wrap:wrap !important;
}

.rhv-review-card .rhv-review-name-row strong{
    color:var(--rhv-text) !important;
    font-size:18px !important;
    font-weight:850 !important;
    line-height:1.2 !important;
}

.rhv-review-card .rhv-review-person small{
    color:var(--rhv-muted) !important;
    font-size:13px !important;
    line-height:1.2 !important;
}

.rhv-review-card .rhv-review-stars{
    display:inline-flex !important;
    align-items:center !important;
    gap:0 !important;
    font-size:16px !important;
    line-height:1 !important;
    white-space:nowrap !important;
    letter-spacing:0 !important;
    justify-self:start !important;
}

.rhv-review-card .rhv-stars-filled{
    color:var(--rhv-gold) !important;
}

.rhv-review-card .rhv-stars-empty{
    color:#d7dde7 !important;
}

@media(max-width:900px){
    .rhv-review-card .rhv-review-head{
        grid-template-columns:42px minmax(0,1fr) !important;
        gap:10px !important;
    }

    .rhv-review-card .rhv-review-name-row{
        gap:6px !important;
        align-items:flex-start !important;
    }

    .rhv-review-card .rhv-review-name-row strong{
        font-size:16px !important;
    }

    .rhv-review-card .rhv-review-stars{
        font-size:14px !important;
    }

    .rhv-review-card .rhv-review-person small{
        font-size:12px !important;
    }
}

@media(max-width:420px){
    .rhv-review-card .rhv-review-name-row{
        flex-wrap:wrap !important;
    }

    .rhv-review-card .rhv-review-stars{
        font-size:13px !important;
    }
}

/* FINAL force review stars beside reviewer name */
.rhv-review-card header.rhv-review-head,
.rhv-reviews-page .rhv-review-card header.rhv-review-head{
    display:grid !important;
    grid-template-columns:46px minmax(0,1fr) !important;
    gap:12px !important;
    align-items:start !important;
}

.rhv-review-card .rhv-review-head .rhv-review-avatar{
    grid-column:1 !important;
    grid-row:1 !important;
}

.rhv-review-card .rhv-review-head .rhv-review-person{
    grid-column:2 !important;
    grid-row:1 !important;
    display:grid !important;
    gap:4px !important;
    min-width:0 !important;
}

.rhv-review-card .rhv-review-name-row{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:10px !important;
    min-width:0 !important;
    max-width:100% !important;
}

.rhv-review-card .rhv-review-name-row strong{
    display:inline-flex !important;
    flex:0 1 auto !important;
    min-width:0 !important;
    max-width:60% !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    white-space:nowrap !important;
    font-size:16px !important;
    font-weight:900 !important;
    color:var(--rhv-text) !important;
    line-height:1.2 !important;
}

.rhv-review-card .rhv-review-name-row .rhv-review-stars{
    position:static !important;
    margin:0 !important;
    padding:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    flex:0 0 auto !important;
    white-space:nowrap !important;
    font-size:15px !important;
    line-height:1 !important;
    letter-spacing:0 !important;
}

.rhv-review-card .rhv-stars-filled{
    color:var(--rhv-gold) !important;
}

.rhv-review-card .rhv-stars-empty{
    color:#d7dde7 !important;
}

/* Remove old far-right behavior if any older CSS still targets review stars */
.rhv-review-card > header > .rhv-review-stars{
    position:static !important;
    justify-self:start !important;
    grid-column:auto !important;
}

/* Make body/actions align cleanly under name area */
.rhv-review-card .rhv-review-preview,
.rhv-review-card .rhv-review-full p,
.rhv-review-card .rhv-review-actions{
    margin-left:58px !important;
}

@media(max-width:700px){
    .rhv-review-card header.rhv-review-head,
    .rhv-reviews-page .rhv-review-card header.rhv-review-head{
        grid-template-columns:42px minmax(0,1fr) !important;
        gap:10px !important;
    }

    .rhv-review-card .rhv-review-name-row{
        gap:7px !important;
        flex-wrap:nowrap !important;
    }

    .rhv-review-card .rhv-review-name-row strong{
        max-width:54% !important;
        font-size:15px !important;
    }

    .rhv-review-card .rhv-review-name-row .rhv-review-stars{
        font-size:13px !important;
    }

    .rhv-review-card .rhv-review-preview,
    .rhv-review-card .rhv-review-full p,
    .rhv-review-card .rhv-review-actions{
        margin-left:52px !important;
    }
}

/* Themed search/category results */
.rhv-results-page{
    background:#f8fafc;
}

.rhv-results-page .rhv-main{
    max-width:1180px;
}

.rhv-results-hero{
    border:1px solid var(--rhv-line);
    border-radius:22px;
    background:linear-gradient(135deg,#09224e,#0b4ea2);
    color:#fff;
    padding:28px;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:22px;
    align-items:end;
    margin-bottom:20px;
}

.rhv-results-pill{
    display:inline-flex;
    background:#ffc928;
    color:#071126;
    border-radius:999px;
    padding:8px 13px;
    font-weight:900;
    font-size:13px;
}

.rhv-results-hero h1{
    margin:14px 0 8px;
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1px;
}

.rhv-results-hero p{
    margin:0;
    color:#eaf2ff;
}

.rhv-results-refine{
    display:grid;
    gap:10px;
    background:#fff;
    border-radius:16px;
    padding:14px;
}

.rhv-results-refine input,
.rhv-results-refine button{
    min-height:44px;
    border-radius:10px;
}

.rhv-results-refine input{
    border:1px solid #cfd8e6;
    padding:0 12px;
}

.rhv-results-refine button{
    border:0;
    background:var(--rhv-blue);
    color:#fff;
    font-weight:900;
}

.rhv-results-layout{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:18px;
    align-items:start;
}

.rhv-results-filters{
    position:sticky;
    top:12px;
    border:1px solid var(--rhv-line);
    border-radius:18px;
    background:#fff;
    padding:14px;
    display:grid;
    gap:8px;
}

.rhv-results-filters strong{
    font-size:16px;
    margin-bottom:4px;
}

.rhv-results-filters a{
    border:1px solid #e5edf8;
    border-radius:999px;
    padding:10px 12px;
    color:#334155;
    font-weight:850;
    font-size:13px;
}

.rhv-results-filters a:hover{
    color:var(--rhv-blue);
    background:#eef6ff;
    border-color:#bcd4ff;
}

.rhv-results-list{
    display:grid;
    gap:14px;
}

.rhv-result-card{
    border:1px solid var(--rhv-line);
    border-radius:18px;
    background:#fff;
    padding:14px;
    display:grid;
    grid-template-columns:180px 1fr;
    gap:16px;
    box-shadow:0 8px 24px rgba(8,17,38,.05);
}

.rhv-result-image{
    height:140px;
    border-radius:14px;
    background:#eef6ff;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.rhv-result-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.rhv-result-image span{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#dbeafe;
    color:var(--rhv-blue);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    font-weight:950;
}

.rhv-result-body{
    min-width:0;
}

.rhv-result-head{
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:start;
}

.rhv-result-head h2{
    margin:0;
    color:var(--rhv-text);
    font-size:22px;
    line-height:1.15;
}

.rhv-result-head small{
    color:#64748b;
    font-weight:850;
    white-space:nowrap;
}

.rhv-result-meta{
    display:flex;
    align-items:center;
    gap:7px;
    margin:10px 0;
    white-space:nowrap;
}

.rhv-result-meta strong{
    color:var(--rhv-text);
}

.rhv-result-meta span{
    color:var(--rhv-gold);
    letter-spacing:0;
}

.rhv-result-category,
.rhv-result-location{
    color:#475569;
    margin:7px 0;
}

.rhv-result-badges{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin:10px 0;
}

.rhv-result-badges span{
    border:1px solid #cfe2ff;
    background:#eef6ff;
    color:var(--rhv-blue);
    border-radius:999px;
    padding:5px 9px;
    font-size:12px;
    font-weight:850;
}

.rhv-result-actions{
    display:flex;
    gap:10px;
    margin-top:12px;
}

.rhv-result-actions .rhv-primary,
.rhv-result-actions .rhv-secondary{
    min-height:40px;
    font-size:14px;
    padding:0 16px;
}

.rhv-results-pagination{
    margin-top:20px;
}

.rhv-results-pagination svg{
    width:18px !important;
    height:18px !important;
}

@media(max-width:900px){
    .rhv-results-page .rhv-main{
        padding:0 14px 28px;
    }

    .rhv-results-hero{
        grid-template-columns:1fr;
        padding:20px 16px;
        border-radius:18px;
    }

    .rhv-results-hero h1{
        font-size:27px;
    }

    .rhv-results-layout{
        grid-template-columns:1fr;
    }

    .rhv-results-filters{
        position:sticky;
        top:0;
        z-index:40;
        display:flex;
        overflow-x:auto;
        border-radius:0;
        margin:0 -14px 12px;
        padding:10px 14px;
        border-left:0;
        border-right:0;
        scrollbar-width:none;
    }

    .rhv-results-filters::-webkit-scrollbar{
        display:none;
    }

    .rhv-results-filters strong{
        display:none;
    }

    .rhv-results-filters a{
        flex:0 0 auto;
        background:#fff;
    }

    .rhv-result-card{
        grid-template-columns:96px 1fr;
        padding:12px;
        gap:12px;
        border-radius:16px;
    }

    .rhv-result-image{
        height:96px;
        border-radius:12px;
    }

    .rhv-result-head{
        display:block;
    }

    .rhv-result-head h2{
        font-size:17px;
    }

    .rhv-result-head small{
        display:block;
        margin-top:5px;
        font-size:12px;
    }

    .rhv-result-meta{
        gap:5px;
        margin:7px 0;
        font-size:12px;
        overflow:hidden;
    }

    .rhv-result-meta a{
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .rhv-result-category,
    .rhv-result-location{
        font-size:13px;
        margin:5px 0;
    }

    .rhv-result-badges{
        margin:7px 0;
    }

    .rhv-result-badges span{
        font-size:11px;
    }

    .rhv-result-actions{
        display:grid;
        grid-template-columns:1fr 72px;
        gap:8px;
    }

    .rhv-result-actions .rhv-primary,
    .rhv-result-actions .rhv-secondary{
        min-height:38px;
        font-size:13px;
        padding:0 10px;
    }
}

/* Final themed results cleanup */
.rhv-results-page .rhv-header{
    max-width:1180px !important;
    margin:0 auto !important;
    grid-template-columns:auto minmax(520px,1fr) auto !important;
    justify-content:center !important;
    padding-left:20px !important;
    padding-right:20px !important;
}

.rhv-results-page .rhv-search{
    grid-template-columns:170px minmax(240px,1fr) 86px !important;
    max-width:620px !important;
    width:100% !important;
    justify-self:center !important;
}

.rhv-results-page .rhv-main{
    max-width:980px !important;
}

.rhv-results-hero{
    background:#fff !important;
    color:var(--rhv-text) !important;
    border:1px solid var(--rhv-line) !important;
    border-radius:18px !important;
    padding:22px 24px !important;
    display:block !important;
    margin-bottom:16px !important;
    box-shadow:0 8px 24px rgba(8,17,38,.04) !important;
}

.rhv-results-pill{
    background:#eef6ff !important;
    color:var(--rhv-blue) !important;
    border:1px solid #cfe2ff !important;
}

.rhv-results-hero h1{
    color:var(--rhv-text) !important;
    font-size:31px !important;
    margin:12px 0 6px !important;
}

.rhv-results-hero p{
    color:var(--rhv-muted) !important;
}

.rhv-results-layout{
    grid-template-columns:170px 1fr !important;
    gap:14px !important;
}

.rhv-results-filters{
    border-radius:16px !important;
    padding:12px !important;
}

.rhv-results-list{
    gap:12px !important;
}

.rhv-result-card{
    grid-template-columns:150px minmax(0,1fr) !important;
    gap:14px !important;
    padding:12px !important;
    border-radius:16px !important;
    box-shadow:none !important;
}

.rhv-result-image{
    height:132px !important;
    border-radius:13px !important;
    position:relative !important;
}

.rhv-result-image img{
    position:absolute !important;
    inset:0 !important;
    z-index:2 !important;
}

.rhv-result-image span{
    display:flex !important;
    position:relative !important;
    z-index:1 !important;
}

.rhv-result-image:not(.is-missing) img + span{
    display:none !important;
}

.rhv-result-head h2{
    font-size:19px !important;
    letter-spacing:-.25px !important;
}

.rhv-result-head small{
    font-size:12px !important;
    background:#f1f5f9 !important;
    border:1px solid #dbe4ef !important;
    border-radius:999px !important;
    padding:5px 8px !important;
}

.rhv-result-meta{
    margin:7px 0 !important;
    font-size:13px !important;
}

.rhv-result-stars{
    color:var(--rhv-gold) !important;
    letter-spacing:0 !important;
}

.rhv-result-no-rating{
    color:#b77900 !important;
    background:#fff7df !important;
    border:1px solid #ffe3a3 !important;
    border-radius:999px !important;
    padding:4px 8px !important;
    font-weight:850 !important;
}

.rhv-result-lines{
    display:grid !important;
    gap:4px !important;
}

.rhv-result-category,
.rhv-result-location,
.rhv-result-description{
    margin:0 !important;
    line-height:1.35 !important;
}

.rhv-result-category{
    color:#1e293b !important;
    font-weight:800 !important;
    font-size:13px !important;
}

.rhv-result-location{
    color:#475569 !important;
    font-size:13px !important;
}

.rhv-result-description{
    color:#64748b !important;
    font-size:13px !important;
}

.rhv-result-badges{
    margin:8px 0 !important;
}

.rhv-result-actions{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    margin-top:8px !important;
}

.rhv-result-actions .rhv-primary{
    flex:0 0 auto !important;
    min-width:118px !important;
    min-height:38px !important;
    font-size:13px !important;
    padding:0 14px !important;
}

.rhv-result-actions .rhv-secondary,
.rhv-result-call{
    flex:0 0 auto !important;
    width:auto !important;
    min-width:72px !important;
    min-height:38px !important;
    font-size:13px !important;
    padding:0 12px !important;
}

@media(max-width:1180px){
    .rhv-results-page .rhv-header{
        max-width:none !important;
        grid-template-columns:44px minmax(0,1fr) 44px !important;
    }

    .rhv-results-page .rhv-search,
    .rhv-results-page .rhv-nav{
        display:none !important;
    }
}

@media(max-width:900px){
    .rhv-results-page .rhv-main{
        max-width:none !important;
        padding:0 14px 28px !important;
    }

    .rhv-results-hero{
        padding:16px !important;
        margin-bottom:12px !important;
    }

    .rhv-results-hero h1{
        font-size:23px !important;
    }

    .rhv-results-layout{
        grid-template-columns:1fr !important;
    }

    .rhv-result-card{
        grid-template-columns:92px minmax(0,1fr) !important;
        gap:11px !important;
        padding:11px !important;
    }

    .rhv-result-image{
        height:92px !important;
    }

    .rhv-result-head h2{
        font-size:16px !important;
        line-height:1.18 !important;
    }

    .rhv-result-head small{
        display:inline-flex !important;
        margin-top:6px !important;
    }

    .rhv-result-description{
        display:none !important;
    }

    .rhv-result-badges{
        gap:5px !important;
    }

    .rhv-result-badges span{
        font-size:10px !important;
        padding:4px 7px !important;
    }

    .rhv-result-actions{
        gap:7px !important;
    }

    .rhv-result-actions .rhv-primary{
        min-width:104px !important;
        min-height:36px !important;
        font-size:12px !important;
    }

    .rhv-result-actions .rhv-secondary,
    .rhv-result-call{
        min-width:58px !important;
        min-height:36px !important;
        font-size:12px !important;
        padding:0 9px !important;
    }
}

/* Real themed search UX */
.rhv-results-page .rhv-header{
    max-width:1180px !important;
    margin:0 auto !important;
    grid-template-columns:auto minmax(540px,1fr) auto !important;
    gap:16px !important;
    justify-content:center !important;
    align-items:center !important;
}

.rhv-results-page .rhv-live-search{
    position:relative;
    display:grid !important;
    grid-template-columns:190px minmax(260px,1fr) 84px !important;
    gap:8px !important;
    max-width:660px !important;
    width:100% !important;
    justify-self:center !important;
}

.rhv-search-box{
    position:relative;
    min-width:0;
}

.rhv-search-box input{
    width:100%;
}

.rhv-suggest-panel,
.rhv-location-suggestions{
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 6px);
    z-index:100000;
    background:#fff;
    border:1px solid #dce6f3;
    border-radius:14px;
    box-shadow:0 18px 50px rgba(8,17,38,.18);
    padding:8px;
    display:grid;
    gap:4px;
}

.rhv-suggest-panel[hidden],
.rhv-location-suggestions[hidden]{
    display:none !important;
}

.rhv-suggest-item,
.rhv-location-suggest-item{
    width:100%;
    border:0;
    background:#fff;
    display:grid;
    gap:2px;
    text-align:left;
    padding:10px 12px;
    border-radius:10px;
    cursor:pointer;
    color:#0b1633;
}

.rhv-suggest-item:hover,
.rhv-suggest-item:focus,
.rhv-location-suggest-item:hover,
.rhv-location-suggest-item:focus{
    background:#eef6ff;
    outline:none;
}

.rhv-suggest-item strong,
.rhv-location-suggest-item strong{
    font-size:14px;
    font-weight:900;
}

.rhv-suggest-item span,
.rhv-location-suggest-item span{
    font-size:12px;
    color:#64748b;
}

.rhv-results-location-card{
    max-width:520px !important;
}

.rhv-location-search-form{
    display:grid;
    gap:12px;
}

.rhv-location-search-form label{
    display:grid;
    gap:6px;
    font-weight:850;
}

.rhv-location-search-form input{
    min-height:44px;
    border:1px solid #cfd8e6;
    border-radius:10px;
    padding:0 12px;
}

.rhv-location-actions{
    margin:14px 0;
}

.rhv-results-hero{
    background:#fff !important;
    color:var(--rhv-text) !important;
    border:1px solid var(--rhv-line) !important;
    box-shadow:none !important;
}

.rhv-results-hero h1{
    color:var(--rhv-text) !important;
}

.rhv-results-hero p{
    color:var(--rhv-muted) !important;
}

@media(max-width:1180px){
    .rhv-results-page .rhv-header{
        grid-template-columns:auto minmax(0,1fr) auto !important;
        height:auto !important;
        padding:12px 14px !important;
    }

    .rhv-results-page .rhv-live-search{
        grid-column:1 / -1 !important;
        grid-row:2 !important;
        display:grid !important;
        grid-template-columns:1fr 72px !important;
        max-width:none !important;
        width:100% !important;
        order:2 !important;
    }

    .rhv-results-page .rhv-live-search .rhv-location-btn{
        grid-column:1 / -1 !important;
        justify-content:flex-start !important;
        min-height:38px !important;
    }

    .rhv-results-page .rhv-live-search .rhv-search-box{
        grid-column:1 !important;
    }

    .rhv-results-page .rhv-live-search button[type="submit"]{
        grid-column:2 !important;
    }

    .rhv-results-page .rhv-nav{
        display:none !important;
    }
}

@media(max-width:700px){
    .rhv-results-page .rhv-header{
        display:grid !important;
        grid-template-columns:auto 1fr auto !important;
        align-items:center !important;
    }

    .rhv-results-page .rhv-brand{
        justify-self:center !important;
    }

    .rhv-results-page .rhv-live-search{
        margin-top:6px !important;
    }

    .rhv-suggest-panel{
        position:fixed !important;
        left:14px !important;
        right:14px !important;
        top:132px !important;
        max-height:55vh !important;
        overflow:auto !important;
    }
}

/* Results page: replace page numbers with clean Load More */
.rhv-results-pagination{
    display:none !important;
}

.rhv-results-pagination nav,
.rhv-results-pagination svg,
.rhv-results-page nav[role="navigation"]{
    display:none !important;
}

.rhv-results-load-more-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:18px 0 8px;
}

.rhv-results-load-more-wrap[hidden]{
    display:none !important;
}

.rhv-results-load-more{
    min-height:46px;
    min-width:210px;
    border:1px solid var(--rhv-blue);
    border-radius:999px;
    background:#fff;
    color:var(--rhv-blue);
    font-weight:900;
    cursor:pointer;
    box-shadow:0 8px 24px rgba(8,102,242,.08);
}

.rhv-results-load-more:hover,
.rhv-results-load-more:focus{
    background:var(--rhv-blue);
    color:#fff;
    outline:3px solid rgba(8,102,242,.16);
}

.rhv-results-loading{
    color:var(--rhv-muted);
    font-weight:800;
    font-size:14px;
}

@media(max-width:700px){
    .rhv-results-load-more{
        width:100%;
        min-width:0;
    }
}

/* Results thumbnails must use business photos cleanly */
.rhv-result-image{
    background:#eef6ff !important;
}

.rhv-result-image img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

.rhv-result-image.is-missing span{
    display:flex !important;
}

.rhv-result-image:not(.is-missing) img{
    display:block !important;
}

.rhv-result-image:not(.is-missing) img ~ span{
    display:none !important;
}

/* Hero/review overview stars: empty stars for zero reviews */
.rhv-stars{
    display:inline-flex !important;
    align-items:center !important;
    gap:0 !important;
    letter-spacing:0 !important;
    white-space:nowrap !important;
}

.rhv-stars-filled{
    color:var(--rhv-gold) !important;
}

.rhv-stars-empty{
    color:#d5dce8 !important;
}

/* Results cards: no rating should still show easy-to-read empty stars */
.rhv-result-empty-rating{
    display:inline-flex !important;
    align-items:center !important;
    gap:7px !important;
    white-space:nowrap !important;
}

.rhv-result-empty-rating .rhv-stars-empty{
    color:#d5dce8 !important;
    font-size:13px !important;
    line-height:1 !important;
    letter-spacing:0 !important;
}

.rhv-result-empty-rating .rhv-result-no-rating{
    color:#64748b !important;
    background:#f8fafc !important;
    border:1px solid #e2e8f0 !important;
    border-radius:999px !important;
    padding:4px 8px !important;
    font-weight:850 !important;
}

/* Empty stars for unrated businesses across search, city, and service result cards */
.rhv-result-empty-rating{
    display:inline-flex !important;
    align-items:center !important;
    gap:7px !important;
    white-space:nowrap !important;
}

.rhv-result-empty-rating .rhv-stars-empty,
.rhv-stars-empty{
    color:#d5dce8 !important;
    font-size:13px !important;
    line-height:1 !important;
    letter-spacing:0 !important;
}

.rhv-result-empty-rating .rhv-result-no-rating,
.rhv-result-no-rating{
    color:#64748b !important;
    background:#f8fafc !important;
    border:1px solid #e2e8f0 !important;
    border-radius:999px !important;
    padding:4px 8px !important;
    font-weight:850 !important;
}

/* New theme logo: REPAIR navy + HIT yellow badge with navy text */
.rhv-brand{
    color:#071833 !important;
    text-decoration:none !important;
}

.rhv-brand span{
    color:#071833 !important;
}

.rhv-brand b{
    background:#ffc928 !important;
    color:#071833 !important;
    border-radius:8px !important;
    padding:2px 7px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    line-height:1 !important;
    box-shadow:none !important;
}

/* Keep mobile header logo clean */
@media(max-width:700px){
    .rhv-brand b{
        border-radius:7px !important;
        padding:2px 6px !important;
    }
}

/* RepairHit Verified homepage */
.rhv-home-page{
    background:#f8fafc;
    min-height:100vh;
}

.rhv-home-page .rhv-main{
    max-width:1180px;
}

.rhv-home-header{
    max-width:1180px;
    margin:0 auto;
}

.rhv-home-hero{
    display:grid;
    grid-template-columns:minmax(0,1.25fr) 380px;
    gap:22px;
    align-items:stretch;
    padding:28px 0 18px;
}

.rhv-home-hero-copy{
    background:linear-gradient(135deg,#071833,#0b4ea2);
    color:#fff;
    border-radius:28px;
    padding:42px;
    position:relative;
    overflow:hidden;
}

.rhv-home-hero-copy:after{
    content:"";
    position:absolute;
    width:240px;
    height:240px;
    border-radius:999px;
    background:rgba(255,201,40,.13);
    right:-70px;
    top:-70px;
}

.rhv-home-pill,
.rhv-section-kicker{
    display:inline-flex;
    background:#ffc928;
    color:#071833;
    border-radius:999px;
    padding:8px 13px;
    font-size:13px;
    font-weight:950;
}

.rhv-home-hero h1{
    max-width:760px;
    font-size:48px;
    line-height:1.04;
    letter-spacing:-1.6px;
    margin:18px 0 14px;
    position:relative;
    z-index:2;
}

.rhv-home-hero p{
    max-width:680px;
    color:#eaf2ff;
    font-size:18px;
    line-height:1.55;
    margin:0 0 22px;
    position:relative;
    z-index:2;
}

.rhv-home-search{
    display:grid;
    grid-template-columns:1fr 180px 140px;
    gap:10px;
    background:#fff;
    border-radius:18px;
    padding:10px;
    position:relative;
    z-index:2;
}

.rhv-home-search input{
    min-height:48px;
    border:1px solid #dbe4ef;
    border-radius:12px;
    padding:0 13px;
    font-weight:750;
}

.rhv-home-search button{
    border:0;
    border-radius:12px;
    background:#ffc928;
    color:#071833;
    font-weight:950;
    cursor:pointer;
}

.rhv-home-quick{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:16px;
    position:relative;
    z-index:2;
}

.rhv-home-quick a{
    color:#fff;
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.22);
    border-radius:999px;
    padding:8px 11px;
    font-weight:850;
    font-size:13px;
}

.rhv-home-trust-card{
    background:#fff;
    border:1px solid var(--rhv-line);
    border-radius:28px;
    padding:26px;
    display:grid;
    align-content:center;
    gap:16px;
    box-shadow:0 18px 45px rgba(8,17,38,.07);
}

.rhv-home-trust-card strong{
    font-size:25px;
    line-height:1.18;
    letter-spacing:-.5px;
    color:var(--rhv-text);
}

.rhv-home-trust-card div{
    display:grid;
    grid-template-columns:34px 1fr;
    gap:10px;
    align-items:center;
}

.rhv-home-trust-card span{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#eef6ff;
    color:var(--rhv-blue);
    font-weight:950;
}

.rhv-home-trust-card p{
    margin:0;
    color:#475569;
    font-weight:750;
}

.rhv-home-section{
    margin-top:22px;
    background:#fff;
    border:1px solid var(--rhv-line);
    border-radius:24px;
    padding:24px;
}

.rhv-home-section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:16px;
    margin-bottom:18px;
}

.rhv-home-section-head h2{
    margin:10px 0 0;
    color:var(--rhv-text);
    font-size:30px;
    letter-spacing:-.7px;
}

.rhv-home-section-head a{
    color:var(--rhv-blue);
    font-weight:900;
}

.rhv-home-category-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:12px;
}

.rhv-home-category-card{
    border:1px solid #dce6f3;
    border-radius:18px;
    padding:18px 14px;
    display:grid;
    gap:8px;
    min-height:130px;
    align-content:center;
    color:var(--rhv-text);
    background:#fff;
}

.rhv-home-category-card:hover{
    border-color:#bcd4ff;
    background:#f7fbff;
    transform:translateY(-1px);
}

.rhv-home-category-card span{
    width:42px;
    height:42px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef6ff;
    color:var(--rhv-blue);
    font-weight:950;
    font-size:20px;
}

.rhv-home-category-card strong{
    font-size:15px;
    line-height:1.2;
}

.rhv-home-category-card em{
    color:#64748b;
    font-size:12px;
    font-style:normal;
    font-weight:750;
}

.rhv-home-business-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.rhv-home-business-card{
    display:grid;
    grid-template-columns:132px minmax(0,1fr);
    gap:14px;
    border:1px solid #dce6f3;
    border-radius:18px;
    padding:12px;
    background:#fff;
}

.rhv-home-business-img{
    height:124px;
    border-radius:14px;
    overflow:hidden;
    background:#eef6ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.rhv-home-business-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.rhv-home-business-img img + span{
    display:none;
}

.rhv-home-business-img span{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#dbeafe;
    color:var(--rhv-blue);
    font-size:30px;
    font-weight:950;
}

.rhv-home-business-card h3{
    margin:0;
    color:var(--rhv-text);
    font-size:18px;
    line-height:1.16;
}

.rhv-home-rating{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:5px;
    margin:8px 0;
    font-size:13px;
}

.rhv-home-rating strong{
    color:var(--rhv-text);
}

.rhv-home-rating em{
    color:#64748b;
    font-style:normal;
    font-weight:750;
}

.rhv-home-business-card p{
    margin:0 0 6px;
    color:#1e293b;
    font-weight:800;
    font-size:13px;
}

.rhv-home-business-card small{
    color:#64748b;
    font-weight:750;
}

.rhv-home-business-actions{
    display:flex;
    gap:8px;
    margin-top:10px;
}

.rhv-home-business-actions a{
    min-height:34px;
    border-radius:10px;
    border:1px solid #cfe2ff;
    padding:0 12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--rhv-blue);
    font-weight:900;
    font-size:13px;
}

.rhv-home-business-actions a:first-child{
    background:var(--rhv-blue);
    color:#fff;
    border-color:var(--rhv-blue);
}

.rhv-home-cta{
    margin:22px 0 36px;
    border-radius:24px;
    background:#071833;
    color:#fff;
    padding:26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.rhv-home-cta h2{
    margin:10px 0 8px;
    font-size:30px;
}

.rhv-home-cta p{
    margin:0;
    color:#dbeafe;
    max-width:720px;
}

.rhv-home-cta a{
    min-height:48px;
    padding:0 18px;
    border-radius:14px;
    background:#ffc928;
    color:#071833;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:950;
    white-space:nowrap;
}

@media(max-width:1000px){
    .rhv-home-hero{
        grid-template-columns:1fr;
    }

    .rhv-home-category-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:700px){
    .rhv-home-page .rhv-main{
        padding:0 14px 28px;
    }

    .rhv-home-hero{
        padding-top:12px;
    }

    .rhv-home-hero-copy{
        padding:24px 18px;
        border-radius:22px;
    }

    .rhv-home-hero h1{
        font-size:33px;
        letter-spacing:-1px;
    }

    .rhv-home-hero p{
        font-size:15px;
    }

    .rhv-home-search{
        grid-template-columns:1fr;
    }

    .rhv-home-search button{
        min-height:46px;
    }

    .rhv-home-section{
        padding:16px;
        border-radius:20px;
    }

    .rhv-home-section-head{
        align-items:start;
    }

    .rhv-home-section-head h2{
        font-size:24px;
    }

    .rhv-home-business-grid{
        grid-template-columns:1fr;
    }

    .rhv-home-business-card{
        grid-template-columns:92px minmax(0,1fr);
        gap:11px;
    }

    .rhv-home-business-img{
        height:92px;
    }

    .rhv-home-business-card h3{
        font-size:16px;
    }

    .rhv-home-cta{
        display:grid;
        padding:20px;
    }

    .rhv-home-cta h2{
        font-size:24px;
    }

    .rhv-home-cta a{
        width:100%;
    }
}
