:root {
    --bt-orange: #f25e18;
    --bt-black: #101010;
    --bt-soft-black: #1c1c1e;
    --bt-gray: #6e6e73;
    --bt-light: #f5f5f7;
    --bt-border: #e8e8ed;
    --bt-white: #ffffff;
    --bt-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    --bt-shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.06);
    --bt-radius-xl: 28px;
    --bt-radius-lg: 22px;
    --bt-radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(242, 94, 24, 0.13), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    color: var(--bt-black);
}

a {
    color: inherit;
}

button,
input,
select {
    font-family: inherit;
}

.bt-gallery-photo > * {
    pointer-events: none;
}

.bt-photo-modal.is-open {
    display: flex !important;
}

.bt-temp-modal.is-open {
    display: grid !important;
}

.bt-app {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px;
}

.bt-topbar {
    position: sticky;
    top: 12px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 232, 237, 0.9);
    border-radius: 999px;
    padding: 10px 12px 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bt-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    min-width: 0;
}

.bt-brand-logo {
    display: block;
    height: 30px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
}

.bt-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bt-signin {
    text-decoration: none;
    background: var(--bt-black);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.bt-hero {
    padding: 34px 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.bt-hero-main {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(232, 232, 237, 0.9);
    border-radius: var(--bt-radius-xl);
    padding: 34px;
    box-shadow: var(--bt-shadow);
    overflow: hidden;
    position: relative;
}

.bt-hero-main::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(242, 94, 24, 0.12);
    right: -70px;
    top: -80px;
    pointer-events: none;
}

.bt-hero-main.bt-hero-image {
    height: 430px;
    min-height: 430px;
    max-height: 430px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #111;
}

.bt-hero-main.bt-hero-image::after {
    display: none;
    content: none;
}

.bt-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    display: block;
}

.bt-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 62%);
    pointer-events: none;
}

.bt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff3ed;
    color: var(--bt-orange);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
    width: fit-content;
}

.bt-hero-main.bt-hero-image .bt-hero-badge {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.bt-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--bt-orange);
    box-shadow: 0 0 0 6px rgba(242, 94, 24, 0.14);
}

.bt-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -3px;
}

.bt-hero-main.bt-hero-image h1 {
    z-index: 2;
    color: #fff;
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.34);
}

.bt-hero p {
    position: relative;
    z-index: 1;
    color: var(--bt-gray);
    font-size: 18px;
    line-height: 1.55;
    max-width: 620px;
    margin: 18px 0 0;
}

.bt-hero-main.bt-hero-image p {
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.bt-location-card {
    height: 430px;
    min-height: 430px;
    max-height: 430px;
    background: var(--bt-soft-black);
    color: #fff;
    border-radius: var(--bt-radius-xl);
    padding: 28px;
    box-shadow: var(--bt-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bt-location-card::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(242, 94, 24, 0.35);
    filter: blur(2px);
}

.bt-location-label {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bt-location-value {
    position: relative;
    z-index: 1;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    margin-top: 10px;
}

.bt-location-hint {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
    margin-top: 12px;
}

.bt-location-button {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 20px;
    border: 0;
    border-radius: 18px;
    padding: 15px 16px;
    background: var(--bt-orange);
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.bt-location-button:hover {
    transform: translateY(-1px);
}

.bt-location-button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.bt-search-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-xl);
    padding: 18px;
    box-shadow: var(--bt-shadow);
    margin-bottom: 18px;
}

.bt-search-form {
    display: grid;
    grid-template-columns: 1fr 220px 150px;
    gap: 10px;
    align-items: center;
}

.bt-search-input,
.bt-select {
    width: 100%;
    border: 1px solid var(--bt-border);
    background: #fff;
    border-radius: 18px;
    min-height: 52px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

.bt-search-input:focus,
.bt-select:focus {
    border-color: rgba(242, 94, 24, 0.6);
    box-shadow: 0 0 0 4px rgba(242, 94, 24, 0.12);
}

.bt-search-button {
    border: 0;
    border-radius: 18px;
    min-height: 52px;
    background: var(--bt-black);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.bt-quick-row {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.bt-quick-row::-webkit-scrollbar {
    display: none;
}

.bt-chip {
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid var(--bt-border);
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--bt-soft-black);
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bt-chip:hover {
    transform: translateY(-1px);
    box-shadow: var(--bt-shadow-soft);
}

.bt-chip-active {
    background: var(--bt-black);
    color: #fff;
    border-color: var(--bt-black);
}

.bt-section {
    margin-top: 24px;
}

.bt-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.bt-section-title {
    margin: 0;
    font-size: 25px;
    letter-spacing: -0.7px;
}

.bt-section-subtitle {
    color: var(--bt-gray);
    margin: 6px 0 0;
}

.bt-category-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 10px;
    scrollbar-width: none;
}

.bt-category-scroll::-webkit-scrollbar {
    display: none;
}

.bt-category-pill {
    min-width: 132px;
    min-height: 96px;
    background: #fff;
    border: 1px solid var(--bt-border);
    border-radius: 22px;
    padding: 16px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.bt-category-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--bt-shadow-soft);
}

.bt-category-pill-active {
    border-color: rgba(242, 94, 24, 0.55);
    box-shadow: 0 16px 40px rgba(242, 94, 24, 0.12);
}

.bt-category-icon {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.bt-category-name {
    font-weight: 900;
    font-size: 14px;
    line-height: 1.2;
}

.bt-results-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.bt-empty {
    background: #fff;
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-lg);
    padding: 26px;
    color: var(--bt-gray);
    text-align: center;
}

.bt-business-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--bt-border);
    border-radius: 26px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.055);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.bt-business-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
    border-color: rgba(242, 94, 24, 0.22);
}

.bt-business-card-main {
    display: grid;
    grid-template-columns: 82px 1fr 34px;
    gap: 14px;
    padding: 18px;
    text-decoration: none;
    align-items: center;
}

.bt-business-logo-wrap {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    overflow: hidden;
    background: #f4f4f5;
    border: 1px solid var(--bt-border);
    flex-shrink: 0;
}

.bt-business-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: none;
}

.bt-business-logo-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top right, rgba(242, 94, 24, 0.18), transparent 38%),
        #fff3ed;
    color: var(--bt-orange);
    font-size: 32px;
    font-weight: 950;
}

.bt-business-content {
    min-width: 0;
}

.bt-business-topline {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex-wrap: wrap;
}

.bt-business-name {
    margin: 0;
    font-size: 19px;
    line-height: 1.15;
    letter-spacing: -0.4px;
    font-weight: 950;
}

.bt-business-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.bt-business-badge-featured {
    background: #111;
    color: #fff;
}

.bt-business-badge-premium {
    background: #fff3cd;
    color: #856404;
}

.bt-business-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 7px;
    color: var(--bt-gray);
    font-size: 14px;
    line-height: 1.3;
}

.bt-business-meta span {
    display: inline-flex;
    align-items: center;
}

.bt-business-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #b5b5bb;
}

.bt-business-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.bt-business-stat {
    display: inline-flex;
    align-items: center;
    background: #f5f5f7;
    border: 1px solid #ededf0;
    border-radius: 999px;
    padding: 6px 9px;
    color: #333;
    font-size: 13px;
    font-weight: 800;
}

.bt-business-location-note {
    margin-top: 10px;
    color: #1e8449;
    font-size: 14px;
    font-weight: 800;
}

.bt-business-arrow {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #f5f5f7;
    color: #111;
    font-weight: 900;
}

.bt-business-actions {
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--bt-border);
    padding: 12px 14px 14px;
}

.bt-business-action-primary,
.bt-business-action-secondary {
    min-height: 42px;
    border-radius: 999px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bt-business-action-primary {
    background: var(--bt-black);
    color: #fff;
    flex: 1;
}

.bt-business-action-secondary {
    border: 1px solid var(--bt-border);
    background: #fff;
    color: #111;
}

.bt-business-action-secondary.is-saved {
    background: #fff3ed;
    color: var(--bt-orange);
    border-color: rgba(242, 94, 24, 0.35);
}

.bt-fade-up {
    animation: btFadeUp 0.45s ease both;
}

@keyframes btFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    body {
        background:
            radial-gradient(circle at top right, rgba(242, 94, 24, 0.13), transparent 36%),
            linear-gradient(180deg, #fff 0%, #f5f5f7 100%);
    }

    .bt-app {
        padding: 12px;
    }

    .bt-topbar {
        top: 8px;
        border-radius: 24px;
        padding: 9px 10px 9px 14px;
    }

    .bt-brand-logo {
        height: 24px;
        max-width: 142px;
    }

    .bt-top-actions {
        gap: 6px;
    }

    .bt-signin {
        padding: 9px 12px;
        font-size: 13px;
    }

    .bt-hero {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 0 18px;
    }

    .bt-hero-main {
        padding: 26px 22px;
    }

    .bt-hero-main.bt-hero-image {
        height: 318px;
        min-height: 318px;
        max-height: 318px;
        padding: 24px;
    }

    .bt-hero-overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.34)),
            linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 62%);
    }

    .bt-hero h1 {
        font-size: clamp(34px, 11vw, 46px);
        letter-spacing: -2px;
    }

    .bt-hero p {
        font-size: 17px;
        line-height: 1.48;
    }

    .bt-location-card {
        height: auto;
        min-height: 240px;
        max-height: none;
        padding: 26px;
    }

    .bt-location-value {
        font-size: 27px;
    }

    .bt-search-panel {
        padding: 14px;
        border-radius: 24px;
    }

    .bt-search-form {
        grid-template-columns: 1fr;
    }

    .bt-search-input,
    .bt-select,
    .bt-search-button {
        min-height: 52px;
        border-radius: 17px;
    }

    .bt-section {
        margin-top: 22px;
    }

    .bt-section-title {
        font-size: 22px;
    }

    .bt-section-subtitle {
        font-size: 15px;
    }

    .bt-category-pill {
        min-width: 118px;
        min-height: 90px;
        padding: 14px;
    }

    .bt-category-name {
        font-size: 13px;
    }

    .bt-business-card {
        border-radius: 24px;
    }

    .bt-business-card-main {
        grid-template-columns: 68px 1fr;
        gap: 12px;
        padding: 15px;
    }

    .bt-business-logo-wrap {
        width: 68px;
        height: 68px;
        border-radius: 19px;
    }

    .bt-business-logo-placeholder {
        font-size: 27px;
    }

    .bt-business-name {
        font-size: 17px;
    }

    .bt-business-arrow {
        display: none;
    }

    .bt-business-actions {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .bt-business-actions::-webkit-scrollbar {
        display: none;
    }

    .bt-business-action-primary,
    .bt-business-action-secondary {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .bt-business-action-primary {
        flex: 0 0 auto;
    }
}

.bt-sheet-open {
    overflow: hidden;
}

.bt-auth-sheet {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.bt-auth-sheet.is-open {
    display: block;
}

.bt-auth-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bt-auth-panel {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(480px, calc(100% - 24px));
    background: #fff;
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(232, 232, 237, 0.95);
    animation: btAuthUp 0.24s ease both;
}

.bt-auth-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #f5f5f7;
    color: #111;
    font-size: 24px;
    cursor: pointer;
}

.bt-auth-logo {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: #fff3ed;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}

.bt-auth-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.bt-auth-panel h2 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -1px;
}

.bt-auth-panel p {
    color: var(--bt-gray);
    line-height: 1.45;
    margin: 10px 0 18px;
}

.bt-auth-panel input[type="email"] {
    width: 100%;
    height: 54px;
    border-radius: 18px;
    border: 1px solid var(--bt-border);
    padding: 0 16px;
    font-size: 16px;
    outline: none;
    margin-bottom: 10px;
}

.bt-auth-panel input[type="email"]:focus {
    border-color: rgba(242, 94, 24, 0.62);
    box-shadow: 0 0 0 4px rgba(242, 94, 24, 0.12);
}

.bt-auth-panel button[type="submit"] {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 18px;
    background: var(--bt-black);
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
}

@keyframes btAuthUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 860px) {
    .bt-auth-panel {
        bottom: 10px;
        border-radius: 28px;
        padding: 24px;
    }
}

@media (min-width: 861px) {
    .bt-results-layout {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .bt-business-card-main {
        grid-template-columns: 78px 1fr 32px;
        padding: 18px;
    }

    .bt-business-logo-wrap {
        width: 78px;
        height: 78px;
        border-radius: 22px;
    }

    .bt-business-actions {
        padding: 12px 16px 16px;
    }

    .bt-business-action-primary {
        flex: 0 0 auto;
        min-width: 120px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .bt-business-action-secondary {
        min-width: 92px;
    }
}

@media (min-width: 1100px) {
    .bt-results-layout {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bt-business-card-main {
        grid-template-columns: 70px 1fr;
    }

    .bt-business-logo-wrap {
        width: 70px;
        height: 70px;
        border-radius: 20px;
    }

    .bt-business-arrow {
        display: none;
    }

    .bt-business-actions {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .bt-business-actions::-webkit-scrollbar {
        display: none;
    }

    .bt-business-action-primary,
    .bt-business-action-secondary {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

.bt-auth-sent-view {
    display: none;
}

.bt-auth-sheet.is-sent .bt-auth-form-view {
    display: none;
}

.bt-auth-sheet.is-sent .bt-auth-sent-view {
    display: block;
}

.bt-auth-benefits {
    margin-top: 18px;
    background: #f5f5f7;
    border: 1px solid var(--bt-border);
    border-radius: 18px;
    padding: 14px;
}

.bt-auth-benefits strong {
    display: block;
    margin-bottom: 8px;
}

.bt-auth-benefits ul {
    margin: 0;
    padding-left: 18px;
    color: var(--bt-gray);
    line-height: 1.5;
}

.bt-auth-guest-button,
.bt-profile-skip-button {
    width: 100%;
    height: 50px;
    border: 1px solid var(--bt-border);
    border-radius: 18px;
    background: #fff;
    color: #111;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    margin-top: 12px;
}

.bt-profile-sheet {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.bt-profile-sheet.is-open {
    display: block;
}

.bt-profile-panel {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 24px));
    background: #fff;
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(232, 232, 237, 0.95);
    animation: btAuthUp 0.24s ease both;
}

.bt-profile-panel h2 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -1px;
}

.bt-profile-panel p {
    color: var(--bt-gray);
    line-height: 1.45;
}

.bt-profile-panel label {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
}

.bt-profile-panel input[type="text"] {
    width: 100%;
    height: 54px;
    border-radius: 18px;
    border: 1px solid var(--bt-border);
    padding: 0 16px;
    font-size: 16px;
    outline: none;
    margin-bottom: 10px;
}

.bt-profile-panel input[type="text"]:focus {
    border-color: rgba(242, 94, 24, 0.62);
    box-shadow: 0 0 0 4px rgba(242, 94, 24, 0.12);
}

.bt-profile-panel button[type="submit"]:not(.bt-profile-skip-button) {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 18px;
    background: var(--bt-black);
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
}

.bt-profile-note {
    margin-top: 18px;
    background: #fff3ed;
    border: 1px solid rgba(242, 94, 24, 0.18);
    border-radius: 18px;
    padding: 14px;
}

.bt-profile-note strong {
    display: block;
    margin-bottom: 8px;
}

.bt-profile-note p {
    margin: 8px 0 0;
    font-size: 14px;
}

.bt-save-button {
    gap: 6px;
}

.bt-save-icon {
    font-size: 16px;
    line-height: 1;
}

.bt-business-action-secondary.is-saved {
    background: #fff3ed;
    color: var(--bt-orange);
    border-color: rgba(242, 94, 24, 0.45);
    box-shadow: 0 8px 22px rgba(242, 94, 24, 0.12);
}

.bt-business-action-secondary.is-saved .bt-save-icon {
    color: var(--bt-orange);
}

.bt-user-menu {
    position: relative;
}

.bt-user-button {
    border: 0;
    background: var(--bt-black);
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px 6px 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    cursor: pointer;
    font-weight: 900;
}

.bt-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--bt-orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 950;
}

.bt-user-button-text {
    white-space: nowrap;
}

.bt-user-chevron {
    opacity: 0.75;
    font-size: 15px;
    transform: translateY(-1px);
}

.bt-user-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 286px;
    background: #fff;
    border: 1px solid var(--bt-border);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
    padding: 10px;
    display: none;
    z-index: 100;
}

.bt-user-menu.is-open .bt-user-dropdown {
    display: block;
}

.bt-user-dropdown-head {
    padding: 12px 12px 14px;
    border-bottom: 1px solid var(--bt-border);
    margin-bottom: 6px;
}

.bt-user-dropdown-head strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

.bt-user-dropdown-head span {
    display: block;
    color: var(--bt-gray);
    font-size: 13px;
    margin-top: 4px;
    word-break: break-word;
}

.bt-user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 16px;
    text-decoration: none;
    color: #111;
    font-weight: 850;
}

.bt-user-dropdown-item:hover {
    background: #f5f5f7;
}

.bt-user-dropdown-item span {
    width: 22px;
    text-align: center;
}

.bt-user-dropdown-item em {
    margin-left: auto;
    font-style: normal;
    font-size: 11px;
    padding: 4px 7px;
    border-radius: 999px;
    background: #fff3ed;
    color: var(--bt-orange);
    font-weight: 900;
}

@media (max-width: 860px) {
    .bt-user-button-text {
        display: none;
    }

    .bt-user-dropdown {
        right: -4px;
        width: min(286px, calc(100vw - 28px));
    }
}

.bt-user-button {
    padding: 6px 12px 6px 6px;
    gap: 9px;
    font-weight: 760;
    letter-spacing: -0.15px;
}

.bt-user-avatar {
    width: 32px;
    height: 32px;
    font-size: 15px;
    font-weight: 850;
}

.bt-user-button-text {
    font-size: 15px;
    font-weight: 760;
}

.bt-user-chevron {
    display: none;
}

.bt-user-dropdown {
    width: 310px;
    padding: 14px;
    border-radius: 28px;
}

.bt-user-dropdown-head {
    padding: 12px 12px 16px;
    margin-bottom: 8px;
}

.bt-user-dropdown-head strong {
    font-size: 17px;
    font-weight: 760;
    letter-spacing: -0.2px;
}

.bt-user-dropdown-head span {
    font-size: 14px;
    margin-top: 6px;
}

.bt-user-dropdown-item {
    min-height: 52px;
    padding: 13px 13px;
    border-radius: 18px;
    gap: 13px;
    font-size: 16px;
    font-weight: 720;
    letter-spacing: -0.12px;
}

.bt-user-dropdown-item span {
    width: 26px;
    font-size: 18px;
}

.bt-user-dropdown-item em {
    font-size: 11px;
    padding: 5px 8px;
    background: #f5f5f7;
    color: #6e6e73;
    font-weight: 760;
}

.bt-business-action-secondary.is-saved {
    background: #fff3ed;
    color: var(--bt-orange);
    border-color: rgba(242, 94, 24, 0.48);
}

.bt-business-action-secondary.is-saved .bt-save-icon {
    color: var(--bt-orange);
}

@media (max-width: 860px) {
    .bt-user-button {
        padding: 6px;
    }

    .bt-user-button-text {
        display: none;
    }

    .bt-user-dropdown {
        width: min(315px, calc(100vw - 28px));
    }
}

.bt-save-icon,
.bt-user-dropdown-item span {
    display: inline-grid;
    place-items: center;
}

.bt-save-icon i {
    font-size: 15px;
}

.bt-user-dropdown-item i {
    font-size: 17px;
    color: #333;
}

.bt-user-dropdown-item:hover i {
    color: var(--bt-orange);
}

.bt-business-action-secondary.is-saved .bt-save-icon i {
    color: var(--bt-orange);
}

.bt-save-icon,
.bt-user-dropdown-item span {
    display: inline-grid;
    place-items: center;
}

.bt-save-icon i {
    font-size: 15px;
}

.bt-user-dropdown-item i {
    font-size: 17px;
    color: #333;
}

.bt-user-dropdown-item:hover i {
    color: var(--bt-orange);
}

.bt-business-action-secondary.is-saved .bt-save-icon i {
    color: var(--bt-orange);
}

.bt-profile-hero {
    margin-top: 28px;
    background:
        radial-gradient(circle at top right, rgba(242, 94, 24, 0.16), transparent 36%),
        #fff;
    border: 1px solid var(--bt-border);
    border-radius: 32px;
    padding: 30px;
    box-shadow: var(--bt-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bt-profile-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bt-orange);
    background: #fff3ed;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 850;
    margin-bottom: 14px;
}

.bt-profile-hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: -2px;
    line-height: 0.96;
}

.bt-profile-hero p {
    margin: 14px 0 0;
    color: var(--bt-gray);
    font-size: 17px;
    line-height: 1.45;
}

.bt-profile-mini-card {
    min-width: 230px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--bt-border);
    border-radius: 24px;
    padding: 18px;
    display: grid;
    gap: 6px;
    box-shadow: var(--bt-shadow-soft);
}

.bt-profile-avatar-big {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin-bottom: 8px;
}

.bt-profile-mini-card strong {
    font-size: 17px;
    font-weight: 780;
}

.bt-profile-mini-card span {
    color: var(--bt-gray);
    font-size: 14px;
    word-break: break-word;
}

.bt-profile-empty {
    padding: 42px 24px;
}

.bt-profile-empty-icon {
    width: 68px;
    height: 68px;
    border-radius: 24px;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.bt-profile-empty h2 {
    margin: 0;
    color: #111;
    font-size: 26px;
    letter-spacing: -0.6px;
}

.bt-profile-empty p {
    max-width: 520px;
    margin: 10px auto 20px;
    color: var(--bt-gray);
    line-height: 1.5;
}

.bt-profile-empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 18px;
    background: var(--bt-black);
    color: #fff;
    text-decoration: none;
    font-weight: 850;
}

@media (max-width: 860px) {
    .bt-profile-hero {
        margin-top: 18px;
        border-radius: 28px;
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
    }

    .bt-profile-mini-card {
        min-width: 0;
    }

    .bt-profile-hero h1 {
        font-size: 38px;
        letter-spacing: -1.4px;
    }
}

.bt-profile-success {
    margin-top: 18px;
    background: #e7f7ec;
    color: #126b2f;
    border: 1px solid rgba(18, 107, 47, 0.16);
    border-radius: 18px;
    padding: 14px 16px;
    font-weight: 780;
    display: flex;
    align-items: center;
    gap: 9px;
}

.bt-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.bt-profile-card {
    background: #fff;
    border: 1px solid var(--bt-border);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--bt-shadow-soft);
}

.bt-profile-card h2 {
    margin: 0 0 18px;
    font-size: 24px;
    letter-spacing: -0.6px;
}

.bt-profile-card label {
    display: block;
    font-weight: 760;
    margin: 14px 0 8px;
}

.bt-profile-card input {
    width: 100%;
    height: 54px;
    border-radius: 18px;
    border: 1px solid var(--bt-border);
    padding: 0 16px;
    font-size: 16px;
    outline: none;
}

.bt-profile-card input:focus {
    border-color: rgba(242, 94, 24, 0.62);
    box-shadow: 0 0 0 4px rgba(242, 94, 24, 0.12);
}

.bt-profile-card input:disabled {
    background: #f5f5f7;
    color: var(--bt-gray);
}

.bt-profile-card button[type="submit"]:not(.bt-profile-logout):not(.bt-user-logout-button) {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 18px;
    background: var(--bt-black);
    color: #fff;
    font-weight: 850;
    font-size: 15px;
    cursor: pointer;
    margin-top: 14px;
}

.bt-profile-action-list {
    display: grid;
    gap: 10px;
}

.bt-profile-action {
    min-height: 66px;
    border: 1px solid var(--bt-border);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: #111;
    background: #fff;
}

.bt-profile-action:hover {
    border-color: rgba(242, 94, 24, 0.32);
    background: #fffaf7;
    transform: translateY(-1px);
}

.bt-profile-action span {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.bt-profile-action div {
    min-width: 0;
}

.bt-profile-action strong {
    display: block;
    font-size: 16px;
    font-weight: 760;
    letter-spacing: -0.2px;
}

.bt-profile-action small {
    display: block;
    color: var(--bt-gray);
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.3;
}

.bt-profile-action.is-muted {
    opacity: 0.76;
    cursor: default;
}

.bt-profile-action.is-muted:hover {
    transform: none;
    background: #fff;
    border-color: var(--bt-border);
}

.bt-profile-privacy {
    grid-column: 1 / -1;
}

.bt-profile-privacy p {
    color: var(--bt-gray);
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 760px;
}

.bt-profile-logout {
    min-height: 50px;
    border: 1px solid rgba(180, 30, 30, 0.16);
    border-radius: 999px;
    background: #fff;
    color: #b42318;
    font-weight: 850;
    font-size: 15px;
    cursor: pointer;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.bt-profile-logout:hover {
    background: #fff1f0;
}

.bt-user-logout-form {
    margin: 6px 0 0;
    padding-top: 6px;
    border-top: 1px solid var(--bt-border);
}

.bt-user-logout-button {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.bt-user-logout-button:hover {
    background: #fff1f0;
    color: #b42318;
}

.bt-user-logout-button:hover i {
    color: #b42318;
}

@media (max-width: 860px) {
    .bt-profile-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bt-profile-card {
        border-radius: 24px;
        padding: 20px;
    }

    .bt-profile-card h2 {
        font-size: 22px;
    }

    .bt-profile-action {
        min-height: 64px;
    }

    .bt-profile-action strong {
        font-size: 15px;
    }

    .bt-profile-privacy {
        grid-column: auto;
    }

    .bt-profile-logout {
        width: 100%;
    }
}
.bt-profile-summary-card {
    width: 100%;
    margin-top: 22px;
    border: 1px solid var(--bt-border);
    background: #fff;
    border-radius: 30px;
    padding: 22px;
    box-shadow: var(--bt-shadow-soft);
    cursor: pointer;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.bt-profile-summary-card:hover {
    transform: translateY(-1px);
    border-color: rgba(242, 94, 24, 0.28);
    box-shadow: var(--bt-shadow);
}

.bt-profile-summary-main {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.bt-profile-photo-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.bt-profile-photo {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    border: 2px solid var(--bt-orange);
}

.bt-profile-edit-dot {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--bt-orange);
    color: #fff;
    display: grid;
    place-items: center;
    border: 3px solid #fff;
    font-size: 12px;
}

.bt-profile-summary-text {
    min-width: 0;
}

.bt-profile-summary-text strong {
    display: block;
    font-size: 20px;
    font-weight: 780;
    letter-spacing: -0.4px;
    color: #111;
}

.bt-profile-summary-text span {
    display: block;
    color: var(--bt-gray);
    margin-top: 4px;
    word-break: break-word;
}

.bt-profile-summary-text small {
    display: block;
    color: var(--bt-gray);
    margin-top: 8px;
    line-height: 1.35;
}

.bt-profile-summary-progress {
    width: min(360px, 34vw);
}

.bt-profile-summary-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
    font-weight: 760;
}

.bt-profile-summary-progress-head strong {
    color: #111;
}

.bt-profile-progress-track {
    height: 10px;
    background: #f0f0f2;
    border-radius: 999px;
    overflow: hidden;
}

.bt-profile-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bt-orange), #ff8a45);
    border-radius: 999px;
}

.bt-profile-summary-edit {
    grid-column: 1 / -1;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff3ed;
    color: var(--bt-orange);
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 780;
    font-size: 14px;
}

.bt-profile-edit-panel {
    margin-top: 18px;
}

.bt-profile-edit-panel[hidden] {
    display: none;
}

.bt-profile-card-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.bt-profile-card-head h2 {
    margin-bottom: 6px;
}

.bt-profile-card-head p {
    margin: 0;
    color: var(--bt-gray);
    line-height: 1.45;
}

.bt-profile-panel-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #f5f5f7;
    color: #111;
    cursor: pointer;
    flex-shrink: 0;
}

.bt-profile-form {
    display: grid;
    gap: 18px;
}

.bt-profile-photo-field {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--bt-border);
    border-radius: 22px;
    background: #fafafa;
}

.bt-profile-photo-preview {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.bt-profile-photo-preview img {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    border: 2px solid var(--bt-orange);
}

.bt-profile-photo-field label {
    margin: 0 0 8px;
}

.bt-profile-photo-field input[type="file"] {
    height: auto;
    padding: 12px;
    background: #fff;
}

.bt-profile-photo-field small {
    display: block;
    color: var(--bt-gray);
    margin-top: 8px;
    line-height: 1.35;
}

.bt-profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bt-profile-field label {
    display: block;
    font-weight: 760;
    margin-bottom: 8px;
}

.bt-profile-field input {
    width: 100%;
    height: 54px;
    border-radius: 18px;
    border: 1px solid var(--bt-border);
    padding: 0 16px;
    font-size: 16px;
    outline: none;
}

.bt-profile-field input:focus {
    border-color: rgba(242, 94, 24, 0.62);
    box-shadow: 0 0 0 4px rgba(242, 94, 24, 0.12);
}

.bt-profile-field input:disabled {
    background: #f5f5f7;
    color: var(--bt-gray);
}

.bt-profile-location-box {
    border: 1px solid rgba(242, 94, 24, 0.18);
    background: #fffaf7;
    border-radius: 22px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.bt-profile-location-box strong {
    display: block;
    margin-bottom: 5px;
}

.bt-profile-location-box p {
    margin: 0;
    color: var(--bt-gray);
    line-height: 1.4;
}

.bt-profile-location-box button {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--bt-orange);
    color: #fff;
    padding: 0 16px;
    font-weight: 850;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.bt-profile-location-box button:disabled {
    opacity: 0.7;
    cursor: wait;
}

.bt-profile-save-button {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 18px;
    background: var(--bt-black);
    color: #fff;
    font-weight: 850;
    font-size: 15px;
    cursor: pointer;
}

@media (max-width: 860px) {
    .bt-profile-summary-card {
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 20px;
        gap: 18px;
    }

    .bt-profile-summary-progress {
        width: 100%;
    }

    .bt-profile-summary-edit {
        width: 100%;
        justify-content: center;
    }

    .bt-profile-form-grid {
        grid-template-columns: 1fr;
    }

    .bt-profile-photo-field {
        align-items: flex-start;
    }

    .bt-profile-location-box {
        flex-direction: column;
        align-items: stretch;
    }

    .bt-profile-location-box button {
        width: 100%;
        justify-content: center;
    }
}

.bt-company-links {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--bt-border);
}

.bt-company-links h3 {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 780;
    letter-spacing: -0.2px;
}

.bt-company-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bt-company-link {
    min-height: 38px;
    border-radius: 999px;
    border: 1px solid var(--bt-border);
    background: #fff;
    color: #333;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 720;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.bt-company-link i {
    color: var(--bt-orange);
    font-size: 13px;
}

.bt-company-link:hover {
    transform: translateY(-1px);
    background: #fff3ed;
    border-color: rgba(242, 94, 24, 0.32);
    color: var(--bt-orange);
}

.bt-company-page {
    margin-top: 30px;
    background:
        radial-gradient(circle at top right, rgba(242, 94, 24, 0.15), transparent 38%),
        #fff;
    border: 1px solid var(--bt-border);
    border-radius: 34px;
    padding: 42px;
    box-shadow: var(--bt-shadow);
    text-align: center;
}

.bt-company-icon {
    width: 76px;
    height: 76px;
    border-radius: 28px;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-size: 30px;
}

.bt-company-page h1 {
    margin: 12px 0 0;
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: -2px;
    line-height: 0.98;
}

.bt-company-page p {
    max-width: 680px;
    margin: 18px auto 24px;
    color: var(--bt-gray);
    font-size: 17px;
    line-height: 1.55;
}

.bt-company-back {
    min-height: 48px;
    border-radius: 999px;
    background: var(--bt-black);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    font-weight: 850;
}

@media (max-width: 860px) {
    .bt-company-link-grid {
        gap: 7px;
    }

    .bt-company-link {
        font-size: 12px;
        min-height: 36px;
        padding: 0 10px;
    }

    .bt-company-page {
        margin-top: 20px;
        border-radius: 28px;
        padding: 28px 22px;
    }

    .bt-company-page h1 {
        font-size: 36px;
        letter-spacing: -1.2px;
    }
}

.bt-review-list {
    display: grid;
    gap: 16px;
}

.bt-review-card {
    background: #fff;
    border: 1px solid var(--bt-border);
    border-radius: 28px;
    padding: 20px;
    box-shadow: var(--bt-shadow-soft);
}

.bt-review-business {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 14px;
    align-items: center;
}

.bt-review-business-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: 900;
}

.bt-review-business-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-review-business-name {
    display: block;
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 780;
    letter-spacing: -0.3px;
}

.bt-review-business p {
    margin: 5px 0 0;
    color: var(--bt-gray);
}

.bt-review-status {
    background: #f5f5f7;
    color: #555;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 780;
    white-space: nowrap;
}

.bt-review-rating {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f5a623;
}

.bt-review-rating strong {
    margin-left: 6px;
    color: #111;
}

.bt-review-content,
.bt-review-reply {
    margin-top: 16px;
    border: 1px solid var(--bt-border);
    border-radius: 20px;
    padding: 16px;
    background: #fff;
}

.bt-review-reply {
    background: #fffaf7;
    border-color: rgba(242, 94, 24, 0.16);
}

.bt-review-content h3,
.bt-review-reply h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 780;
}

.bt-review-content p,
.bt-review-reply p {
    margin: 0;
    color: #444;
    line-height: 1.55;
}

.bt-muted-text {
    color: var(--bt-gray) !important;
}

.bt-review-footer {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--bt-gray);
    font-size: 14px;
}

.bt-review-footer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bt-review-footer a {
    color: var(--bt-orange);
    text-decoration: none;
    font-weight: 780;
}

@media (max-width: 860px) {
    .bt-review-card {
        border-radius: 24px;
        padding: 16px;
    }

    .bt-review-business {
        grid-template-columns: 52px 1fr;
    }

    .bt-review-status {
        grid-column: 1 / -1;
        width: fit-content;
    }

    .bt-review-business-logo {
        width: 52px;
        height: 52px;
        border-radius: 17px;
    }

    .bt-review-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

.bt-messages-layout {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 18px;
    align-items: start;
}

.bt-messages-inbox,
.bt-message-thread {
    background: #fff;
    border: 1px solid var(--bt-border);
    border-radius: 30px;
    box-shadow: var(--bt-shadow-soft);
}

.bt-messages-inbox {
    padding: 18px;
}

.bt-messages-inbox h2 {
    margin: 0 0 14px;
    font-size: 24px;
    letter-spacing: -0.6px;
}

.bt-conversation-list {
    display: grid;
    gap: 10px;
}

.bt-conversation-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    padding: 12px;
    border: 1px solid var(--bt-border);
    border-radius: 20px;
    background: #fff;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.bt-conversation-item:hover,
.bt-conversation-item.is-active {
    background: #fffaf7;
    border-color: rgba(242, 94, 24, 0.28);
    transform: translateY(-1px);
}

.bt-conversation-logo {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    font-weight: 900;
    flex-shrink: 0;
}

.bt-conversation-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-conversation-text {
    min-width: 0;
}

.bt-conversation-text strong {
    display: block;
    font-size: 15px;
    font-weight: 780;
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bt-conversation-text p {
    margin: 4px 0 0;
    color: var(--bt-gray);
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bt-conversation-unread {
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--bt-orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900;
}

.bt-message-thread {
    min-height: 540px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bt-message-thread-head {
    padding: 18px;
    border-bottom: 1px solid var(--bt-border);
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    align-items: center;
}

.bt-message-thread-head h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.bt-message-thread-head p {
    margin: 4px 0 0;
    color: var(--bt-gray);
}

.bt-message-thread-head a {
    color: var(--bt-orange);
    text-decoration: none;
    font-weight: 780;
    white-space: nowrap;
}

.bt-message-list {
    padding: 18px;
    display: grid;
    gap: 12px;
    flex: 1;
    background: #fafafa;
}

.bt-message-bubble {
    max-width: min(640px, 82%);
    border-radius: 22px;
    padding: 14px;
    border: 1px solid var(--bt-border);
}

.bt-message-bubble.is-mine {
    justify-self: end;
    background: #101010;
    color: #fff;
    border-color: #101010;
}

.bt-message-bubble.is-theirs {
    justify-self: start;
    background: #fff;
    color: #111;
}

.bt-message-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 12px;
}

.bt-message-meta strong {
    font-weight: 780;
}

.bt-message-meta span {
    opacity: 0.72;
}

.bt-message-bubble p {
    margin: 0;
    line-height: 1.5;
}

.bt-message-reply-form {
    border-top: 1px solid var(--bt-border);
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    background: #fff;
}

.bt-message-reply-form textarea {
    min-height: 54px;
    max-height: 160px;
    resize: vertical;
    border-radius: 18px;
    border: 1px solid var(--bt-border);
    padding: 14px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}

.bt-message-reply-form textarea:focus {
    border-color: rgba(242, 94, 24, 0.62);
    box-shadow: 0 0 0 4px rgba(242, 94, 24, 0.12);
}

.bt-message-reply-form button {
    min-height: 54px;
    border: 0;
    border-radius: 18px;
    background: var(--bt-orange);
    color: #fff;
    padding: 0 18px;
    font-weight: 850;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bt-message-empty-small {
    padding: 24px 16px;
}

.bt-message-empty-small i {
    font-size: 26px;
    color: var(--bt-orange);
    margin-bottom: 10px;
}

.bt-message-empty-small h3 {
    margin: 0;
    color: #111;
}

.bt-message-empty-small p {
    color: var(--bt-gray);
}

.bt-message-empty-main {
    height: 100%;
    min-height: 540px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 32px;
}

@media (max-width: 980px) {
    .bt-messages-layout {
        grid-template-columns: 1fr;
    }

    .bt-message-thread {
        min-height: auto;
    }

    .bt-message-thread-head {
        grid-template-columns: 52px 1fr;
    }

    .bt-message-thread-head a {
        grid-column: 1 / -1;
    }

    .bt-message-bubble {
        max-width: 92%;
    }

    .bt-message-reply-form {
        grid-template-columns: 1fr;
    }
}
.bt-business-message-box {
    margin: 18px 0 22px;
    background:
        radial-gradient(circle at top right, rgba(242, 94, 24, 0.10), transparent 36%),
        #fff;
    border: 1px solid var(--bt-border);
    border-radius: 26px;
    padding: 18px;
    box-shadow: var(--bt-shadow-soft);
}

.bt-business-message-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.bt-business-message-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bt-orange);
    font-weight: 820;
    margin-bottom: 8px;
}

.bt-business-message-head p {
    margin: 0 0 14px;
    color: var(--bt-gray);
    line-height: 1.45;
}

.bt-business-message-form {
    display: grid;
    gap: 10px;
}

.bt-business-message-form textarea {
    width: 100%;
    min-height: 96px;
    resize: vertical;
    border-radius: 18px;
    border: 1px solid var(--bt-border);
    padding: 14px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}

.bt-business-message-form textarea:focus {
    border-color: rgba(242, 94, 24, 0.62);
    box-shadow: 0 0 0 4px rgba(242, 94, 24, 0.12);
}

.bt-business-message-form button,
.bt-business-message-login {
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: var(--bt-black);
    color: #fff;
    padding: 0 18px;
    font-weight: 850;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
}

.bt-business-message-form button:hover,
.bt-business-message-login:hover {
    transform: translateY(-1px);
}

.bt-business-message-error {
    margin-bottom: 12px;
    background: #ffe8e8;
    color: #9b1111;
    border-radius: 16px;
    padding: 12px;
    font-weight: 760;
}

@media (max-width: 860px) {
    .bt-business-message-form button,
    .bt-business-message-login {
        width: 100%;
    }
}
.bt-user-avatar {
    position: relative;
}

.bt-user-alert-dot {
    position: absolute;
    right: -2px;
    top: -2px;
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #ff2d2d;
    border: 2px solid #fff;
    box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.55);
    animation: btPulseAlert 1.45s ease infinite;
}

.bt-user-avatar.has-unread {
    box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.10);
}

.bt-menu-badge {
    margin-left: auto;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #ff2d2d;
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    font-style: normal;
    padding: 0 7px;
}

@keyframes btPulseAlert {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.55);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 45, 45, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 45, 45, 0);
    }
}

.bt-chat-app {
    max-width: 1280px;
}

.bt-chat-topbar {
    height: 76px;
    margin: 18px 0;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--bt-border);
    border-radius: 28px;
    box-shadow: var(--bt-shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    position: sticky;
    top: 12px;
    z-index: 40;
    backdrop-filter: blur(18px);
}

.bt-chat-brand img {
    height: 34px;
    display: block;
}

.bt-chat-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bt-chat-profile-link {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--bt-black);
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
}

.bt-chat-main {
    min-height: calc(100vh - 120px);
}

.bt-chat-shell {
    height: calc(100vh - 122px);
    min-height: 620px;
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 16px;
}

.bt-chat-inbox,
.bt-chat-thread {
    background: #fff;
    border: 1px solid var(--bt-border);
    border-radius: 30px;
    box-shadow: var(--bt-shadow-soft);
    overflow: hidden;
    min-height: 0;
}

.bt-chat-inbox {
    display: flex;
    flex-direction: column;
}

.bt-chat-inbox-head {
    padding: 22px 20px 16px;
    border-bottom: 1px solid var(--bt-border);
}

.bt-chat-inbox-head h1 {
    margin: 0;
    font-size: 31px;
    line-height: 0.95;
    letter-spacing: -1.1px;
}

.bt-chat-inbox-head p {
    margin: 8px 0 0;
    color: var(--bt-gray);
    line-height: 1.35;
}

.bt-chat-conversation-list {
    overflow-y: auto;
    padding: 10px;
    display: grid;
    gap: 6px;
}

.bt-chat-conversation-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 10px;
    border-radius: 22px;
    text-decoration: none;
    color: #111;
    border: 1px solid transparent;
    transition: background 0.16s ease, border-color 0.16s ease;
}

.bt-chat-conversation-item:hover,
.bt-chat-conversation-item.is-active {
    background: #fff7f2;
    border-color: rgba(242, 94, 24, 0.22);
}

.bt-chat-conversation-item.has-unread {
    background: #fffaf7;
}

.bt-chat-business-logo {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    font-weight: 900;
    flex-shrink: 0;
}

.bt-chat-business-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-chat-conversation-text {
    min-width: 0;
}

.bt-chat-conversation-text strong {
    display: block;
    font-size: 15px;
    font-weight: 820;
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bt-chat-conversation-text p {
    margin: 5px 0 0;
    color: var(--bt-gray);
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bt-chat-conversation-meta {
    display: grid;
    justify-items: end;
    gap: 7px;
}

.bt-chat-conversation-meta small {
    color: var(--bt-gray);
    font-size: 11px;
    font-weight: 700;
}

.bt-chat-conversation-meta b {
    min-width: 23px;
    height: 23px;
    border-radius: 999px;
    background: #ff2d2d;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900;
    padding: 0 7px;
}

.bt-chat-thread {
    display: flex;
    flex-direction: column;
}

.bt-chat-thread-head {
    min-height: 78px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--bt-border);
    display: grid;
    grid-template-columns: auto 52px 1fr auto;
    align-items: center;
    gap: 12px;
}

.bt-chat-back {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: none;
    place-items: center;
    color: #111;
    text-decoration: none;
    background: #f5f5f7;
}

.bt-chat-thread-title {
    min-width: 0;
}

.bt-chat-thread-title h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bt-chat-thread-title p {
    margin: 4px 0 0;
    color: var(--bt-gray);
    font-size: 13px;
}

.bt-chat-business-link {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    text-decoration: none;
}

.bt-chat-message-list {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    background:
        radial-gradient(circle at top right, rgba(242, 94, 24, 0.08), transparent 34%),
        #fafafa;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bt-chat-bubble {
    max-width: min(650px, 78%);
    border-radius: 23px;
    padding: 12px 14px 9px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.bt-chat-bubble.is-mine {
    align-self: flex-end;
    background: #111;
    color: #fff;
    border-bottom-right-radius: 8px;
}

.bt-chat-bubble.is-theirs {
    align-self: flex-start;
    background: #fff;
    color: #111;
    border: 1px solid var(--bt-border);
    border-bottom-left-radius: 8px;
}

.bt-chat-bubble p {
    margin: 0;
    line-height: 1.45;
    font-size: 15px;
}

.bt-chat-bubble small {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    opacity: 0.65;
    text-align: right;
}

.bt-chat-reply-form {
    padding: 12px;
    border-top: 1px solid var(--bt-border);
    display: grid;
    grid-template-columns: 1fr 50px;
    gap: 10px;
    background: #fff;
}

.bt-chat-reply-form textarea {
    min-height: 50px;
    max-height: 130px;
    resize: vertical;
    border-radius: 18px;
    border: 1px solid var(--bt-border);
    padding: 14px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}

.bt-chat-reply-form textarea:focus {
    border-color: rgba(242, 94, 24, 0.62);
    box-shadow: 0 0 0 4px rgba(242, 94, 24, 0.12);
}

.bt-chat-reply-form button {
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 18px;
    background: var(--bt-orange);
    color: #fff;
    cursor: pointer;
    font-size: 17px;
}

.bt-chat-select-empty,
.bt-chat-empty-inbox,
.bt-chat-empty-thread {
    min-height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    padding: 28px;
}

.bt-chat-select-empty div,
.bt-chat-empty-inbox div {
    width: 74px;
    height: 74px;
    border-radius: 26px;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    font-size: 30px;
}

.bt-chat-select-empty h2,
.bt-chat-empty-inbox h2 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.8px;
}

.bt-chat-select-empty p,
.bt-chat-empty-inbox p {
    color: var(--bt-gray);
    max-width: 360px;
    line-height: 1.5;
}

.bt-chat-empty-inbox a {
    min-height: 46px;
    border-radius: 999px;
    background: var(--bt-black);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    font-weight: 850;
    margin-top: 4px;
}

@media (max-width: 860px) {
    .bt-chat-app {
        width: 100%;
        padding: 0;
    }

    .bt-chat-topbar {
        margin: 8px;
        height: 64px;
        border-radius: 24px;
        top: 8px;
    }

    .bt-chat-brand img {
        height: 29px;
    }

    .bt-chat-main {
        min-height: calc(100vh - 86px);
    }

    .bt-chat-shell {
        height: calc(100vh - 86px);
        min-height: 0;
        display: block;
    }

    .bt-chat-inbox,
    .bt-chat-thread {
        height: 100%;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }

    .bt-chat-shell.has-selected-conversation .bt-chat-inbox {
        display: none;
    }

    .bt-chat-shell.no-selected-conversation .bt-chat-thread {
        display: none;
    }

    .bt-chat-inbox-head {
        padding: 18px 18px 14px;
    }

    .bt-chat-inbox-head h1 {
        font-size: 32px;
    }

    .bt-chat-conversation-list {
        padding: 8px;
    }

    .bt-chat-conversation-item {
        min-height: 78px;
        border-radius: 22px;
    }

    .bt-chat-thread-head {
        grid-template-columns: 38px 48px 1fr 42px;
        min-height: 70px;
        padding: 10px 12px;
    }

    .bt-chat-back {
        display: grid;
    }

    .bt-chat-business-logo {
        width: 48px;
        height: 48px;
        border-radius: 17px;
    }

    .bt-chat-thread-title h2 {
        font-size: 17px;
    }

    .bt-chat-message-list {
        padding: 14px 10px;
    }

    .bt-chat-bubble {
        max-width: 86%;
    }

    .bt-chat-reply-form {
        grid-template-columns: 1fr 48px;
        padding: 10px;
    }

    .bt-chat-reply-form button {
        width: 48px;
        height: 48px;
    }
}
.bt-owner-business-message-button {
    min-height: 42px;
    border-radius: 999px;
    border: 1px solid var(--bt-border);
    background: #fff;
    color: #111;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 820;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.bt-owner-business-message-button span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bt-owner-business-message-button i {
    color: var(--bt-orange);
}

.bt-owner-business-message-button b {
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #ff2d2d;
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    font-weight: 950;
    padding: 0 7px;
    animation: btPulseAlert 1.45s ease infinite;
}

.bt-owner-business-message-button small {
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #f5f5f7;
    color: #666;
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    font-weight: 850;
    padding: 0 7px;
}

.bt-owner-business-message-button.has-unread {
    border-color: rgba(255, 45, 45, 0.28);
    background: #fff8f8;
}

.bt-owner-business-message-button:hover {
    transform: translateY(-1px);
    background: #fff3ed;
    border-color: rgba(242, 94, 24, 0.32);
}
.bt-premium-reply-lock {
    border-top: 1px solid var(--bt-border);
    background: #fffaf7;
    padding: 16px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: start;
}

.bt-premium-reply-lock > div {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.bt-premium-reply-lock strong {
    display: block;
    font-size: 16px;
    font-weight: 850;
    color: #111;
    margin-bottom: 5px;
}

.bt-premium-reply-lock p {
    margin: 0 0 12px;
    color: var(--bt-gray);
    line-height: 1.45;
}

.bt-premium-reply-lock a {
    min-height: 42px;
    border-radius: 999px;
    background: var(--bt-orange);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    font-weight: 850;
}

.bt-chat-business-warning {
    margin: 12px 12px 0;
    background: #fffaf7;
    border: 1px solid rgba(242, 94, 24, 0.22);
    border-radius: 22px;
    padding: 14px;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    color: #111;
}

.bt-chat-business-warning i {
    color: var(--bt-orange);
    margin-top: 2px;
}

.bt-chat-business-warning strong {
    display: block;
    font-size: 14px;
    font-weight: 850;
    margin-bottom: 4px;
}

.bt-chat-business-warning p {
    margin: 0;
    color: var(--bt-gray);
    line-height: 1.45;
    font-size: 13px;
}
.bt-review-premium-lock {
    margin-top: 14px;
    border: 1px solid rgba(242, 94, 24, 0.20);
    background: #fffaf7;
    border-radius: 18px;
    padding: 15px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: start;
}

.bt-review-premium-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.bt-review-premium-lock strong {
    display: block;
    font-size: 16px;
    font-weight: 850;
    color: #111;
    margin-bottom: 5px;
}

.bt-review-premium-lock p {
    margin: 0 0 12px;
    color: #666;
    line-height: 1.45;
}

.bt-review-premium-lock a {
    min-height: 42px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    font-weight: 850;
}

:root {
    --bt-orange: #f25e18;
    --bt-black: #101010;
    --bt-gray: #666;
    --bt-light: #f5f5f7;
    --bt-border: #e8e8ec;
    --bt-shadow: 0 22px 60px rgba(0, 0, 0, 0.10);
    --bt-soft-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(242, 94, 24, 0.11), transparent 34%),
        #f5f5f7;
    color: #111;
    font-family: Arial, sans-serif;
}

a {
    color: inherit;
}

.bt-business-page {
    width: min(1120px, calc(100% - 24px));
    margin: 0 auto 40px;
}

.bt-business-hero {
    min-height: 280px;
    border-radius: 0 0 34px 34px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.82), rgba(0,0,0,0.42)),
        url('/images/banners/default/default-1.jpg') center/cover;
}

.bt-business-hero.has-cover {
    background:
        linear-gradient(135deg, rgba(0,0,0,0.72), rgba(0,0,0,0.28)),
        var(--cover-image) center/cover;
}

.bt-business-hero-inner {
    min-height: 280px;
    padding: 22px;
    display: flex;
    align-items: flex-end;
}

.bt-business-topbar {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 16px;
    height: 60px;
    border-radius: 22px;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    backdrop-filter: blur(18px);
}

.bt-business-topbar img {
    height: 25px;
}

.bt-business-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bt-business-top-actions .bt-lang-switch,
.bt-business-top-actions .language-switcher {
    position: relative;
}


.bt-business-back {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
}

.bt-business-main-card {
    margin-top: -44px;
    position: relative;
    z-index: 3;
    background: #fff;
    border-radius: 34px;
    padding: 26px;
    box-shadow: var(--bt-shadow);
}

.bt-business-head {
    display: grid;
    grid-template-columns: 116px 1fr auto;
    gap: 20px;
    align-items: center;
}

.bt-business-logo {
    width: 116px;
    height: 116px;
    border-radius: 28px;
    overflow: hidden;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    font-size: 42px;
    font-weight: 900;
    border: 5px solid #fff;
    box-shadow: var(--bt-soft-shadow);
}

.bt-business-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-business-title h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: -1.8px;
    line-height: 0.96;
}

.bt-business-title p {
    margin: 10px 0 0;
    color: var(--bt-gray);
    font-size: 17px;
    line-height: 1.35;
}

.bt-business-badges {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bt-badge {
    min-height: 32px;
    border-radius: 999px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 850;
    background: #f5f5f7;
    color: #333;
}

.bt-badge.is-premium {
    background: #111;
    color: #fff;
}

.bt-badge.is-verified {
    background: #e9f9ef;
    color: #168044;
}

.bt-badge.is-featured {
    background: #fff3ed;
    color: var(--bt-orange);
}

.bt-business-stats {
    text-align: right;
    color: var(--bt-gray);
    font-size: 14px;
}

.bt-business-stats strong {
    display: block;
    color: #111;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.bt-business-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
    gap: 10px;
}

.bt-action {
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid var(--bt-border);
    background: #fff;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 850;
    cursor: pointer;
    font-size: 15px;
}

.bt-action.is-primary {
    background: var(--bt-orange);
    color: #fff;
    border-color: var(--bt-orange);
}

.bt-action.is-dark {
    background: #111;
    color: #fff;
    border-color: #111;
}

.bt-business-layout {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    align-items: start;
}

.bt-card {
    background: #fff;
    border: 1px solid var(--bt-border);
    border-radius: 28px;
    padding: 22px;
    box-shadow: var(--bt-soft-shadow);
}

.bt-card + .bt-card {
    margin-top: 18px;
}

.bt-card h2 {
    margin: 0 0 14px;
    font-size: 21px;
    letter-spacing: -0.25px;
    font-weight: 850;
}

.bt-card h2 i {
    color: var(--bt-orange);
    margin-right: 7px;
}

.bt-description {
    color: #333;
    line-height: 1.65;
    margin: 0;
}

.bt-contact-list {
    display: grid;
    gap: 10px;
}

.bt-contact-item {
    min-height: 54px;
    border: 1px solid var(--bt-border);
    border-radius: 18px;
    padding: 12px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.bt-contact-item i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
}

.bt-contact-item strong {
    display: block;
    font-size: 13px;
}

.bt-contact-item span {
    display: block;
    color: var(--bt-gray);
    font-size: 14px;
    margin-top: 2px;
    word-break: break-word;
}

.bt-message-box {
    background:
        radial-gradient(circle at top right, rgba(242,94,24,0.13), transparent 34%),
        #fff;
    border: 1px solid rgba(242,94,24,0.20);
}

.bt-reviews-collapsible {
    border: 1px solid rgba(242,94,24,0.18);
    background: #fffaf7;
    border-radius: 24px;
    overflow: hidden;
}

.bt-reviews-collapsible summary {
    min-height: 62px;
    padding: 0 16px;
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 900;
}

.bt-reviews-collapsible summary::-webkit-details-marker {
    display: none;
}

.bt-reviews-summary-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bt-reviews-summary-left i {
    color: var(--bt-orange);
}

.bt-reviews-summary-count {
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    display: inline-grid;
    place-items: center;
    padding: 0 8px;
    font-size: 12px;
}

.bt-reviews-inside {
    padding: 0 16px 16px;
}

.bt-photo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: none;
    flex-direction: column;
}

.bt-photo-modal.is-open {
    display: flex;
}

.bt-photo-modal-head {
    min-height: 62px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.bt-photo-modal-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bt-photo-modal-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--bt-orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.bt-photo-modal-user strong {
    display: block;
    font-size: 14px;
}

.bt-photo-modal-user span {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    margin-top: 2px;
}

.bt-photo-modal-close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.14);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.bt-photo-modal-body {
    flex: 1;
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: auto;
    touch-action: pinch-zoom;
}

.bt-photo-modal-body img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bt-message-box p {
    color: var(--bt-gray);
    line-height: 1.5;
    margin: 0 0 14px;
}

.bt-message-form {
    display: grid;
    gap: 10px;
}

.bt-message-form textarea,
.bt-review-form textarea {
    width: 100%;
    min-height: 104px;
    border: 1px solid var(--bt-border);
    border-radius: 18px;
    padding: 14px;
    resize: vertical;
    font: inherit;
    outline: none;
}

.bt-message-form textarea:focus,
.bt-review-form textarea:focus {
    border-color: rgba(242,94,24,0.65);
    box-shadow: 0 0 0 4px rgba(242,94,24,0.12);
}

.bt-submit {
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    padding: 0 18px;
}

.bt-business-layout > div,
.bt-business-layout aside,
.bt-card {
    min-width: 0;
}

.bt-gallery-strip {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.bt-gallery-strip::-webkit-scrollbar {
    display: none;
}

.bt-gallery-photo {
    width: 122px;
    height: 92px;
    border: 0;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #eee;
    flex: 0 0 122px;
    cursor: pointer;
    position: relative;
    scroll-snap-align: start;
}

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

.bt-gallery-photo.is-business::after {
    content: attr(data-gallery-badge);
    position: absolute;
    left: 7px;
    bottom: 7px;
    background: rgba(0,0,0,0.72);
    color: #fff;
    border-radius: 999px;
    padding: 4px 7px;
    font-size: 10px;
    font-weight: 850;
}

.bt-gallery-photo.is-customer::after {
    content: attr(data-gallery-badge);
    position: absolute;
    left: 7px;
    bottom: 7px;
    background: rgba(242,94,24,0.92);
    color: #fff;
    border-radius: 999px;
    padding: 4px 7px;
    font-size: 10px;
    font-weight: 850;
}

.bt-gallery-more-button {
    width: 122px;
    height: 92px;
    border: 1px dashed rgba(242,94,24,0.45);
    border-radius: 18px;
    background: #fffaf7;
    color: var(--bt-orange);
    flex: 0 0 122px;
    cursor: pointer;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    font-weight: 900;
    scroll-snap-align: start;
}

.bt-gallery-more-button i {
    font-size: 20px;
}

.bt-gallery-more-button small {
    color: #555;
    font-size: 11px;
    font-weight: 800;
}
.bt-rating-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.bt-rating-number {
    width: 96px;
    height: 96px;
    border-radius: 28px;
    background: #111;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
}

.bt-rating-number strong {
    font-size: 33px;
    line-height: 1;
}

.bt-rating-number span {
    font-size: 12px;
    color: #ddd;
}

.bt-review-cta {
    border: 1px solid rgba(242,94,24,0.20);
    background: #fffaf7;
    border-radius: 24px;
    padding: 16px;
    margin-bottom: 18px;
}

.bt-review-cta summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    color: #111;
}

.bt-review-cta summary::-webkit-details-marker {
    display: none;
}

.bt-stars-input {
    margin: 14px 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
}

.bt-stars-input input {
    display: none;
}

.bt-stars-input label {
    font-size: 28px;
    cursor: pointer;
    color: #ddd;
}

.bt-stars-input input:checked ~ label,
.bt-stars-input label:hover,
.bt-stars-input label:hover ~ label {
    color: #f5a623;
}

.bt-review-form {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.bt-review-card {
    border: 1px solid var(--bt-border);
    border-radius: 22px;
    padding: 16px;
}

.bt-review-card + .bt-review-card {
    margin-top: 12px;
}

.bt-review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.bt-review-head strong {
    display: block;
}

.bt-stars {
    color: #f5a623;
    white-space: nowrap;
}

.bt-review-card p {
    line-height: 1.55;
    color: #333;
}

.bt-business-reply {
    margin-top: 12px;
    border-radius: 18px;
    background: #f5f5f7;
    padding: 13px;
}

.bt-business-reply strong {
    display: block;
    margin-bottom: 5px;
}

.bt-customer-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.bt-customer-photo-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 18px;
}

.bt-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.bt-social-link {
    min-height: 42px;
    border: 1px solid var(--bt-border);
    border-radius: 999px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 850;
}

.bt-social-link i {
    color: var(--bt-orange);
}

.bt-empty {
    color: var(--bt-gray);
    line-height: 1.5;
}

.bt-success {
    margin-top: 18px;
    border-radius: 18px;
    padding: 13px;
    background: #e9f9ef;
    color: #168044;
    font-weight: 800;
}

.bt-free-warning {
    margin-top: 12px;
    background: #fffaf7;
    border: 1px solid rgba(242,94,24,0.20);
    color: #555;
    border-radius: 18px;
    padding: 12px;
    font-size: 13px;
    line-height: 1.45;
}


.bt-temp-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 14px;
}

.bt-temp-modal.is-open {
    display: flex;
}

.bt-temp-modal-card {
    width: min(460px, 100%);
    background: #fff;
    border-radius: 28px;
    padding: 22px;
    box-shadow: var(--bt-shadow);
}

.bt-temp-modal-icon {
    width: 54px;
    height: 54px;
    border-radius: 20px;
    background: #fff3ed;
    color: var(--bt-orange);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.bt-temp-modal-card h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.6px;
}

.bt-temp-modal-card p {
    margin: 10px 0 18px;
    color: var(--bt-gray);
    line-height: 1.5;
}

.bt-temp-modal-card button {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 860px) {
    .bt-business-page {
        width: 100%;
        margin-bottom: 0;
    }

    .bt-business-hero {
        border-radius: 0 0 28px 28px;
    }

    .bt-business-main-card {
        margin: -34px 8px 0;
        border-radius: 30px;
        padding: 20px;
    }

    .bt-business-head {
        grid-template-columns: 86px 1fr;
    }

    .bt-business-logo {
        width: 86px;
        height: 86px;
        border-radius: 24px;
        font-size: 32px;
    }

    .bt-business-stats {
        grid-column: 1 / -1;
        text-align: left;
    }

    .bt-business-actions {
        grid-template-columns: 1fr 1fr;
    }

    .bt-business-layout {
        grid-template-columns: 1fr;
        padding: 0 8px 18px;
    }

    .bt-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bt-customer-photo-grid {
        grid-template-columns: 1fr 1fr;
    }
}
