html {
    background: black;
    color:white;
}


body{
    margin:0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:white;
    background: linear-gradient(15deg, rgb(86 0 255 / 16%) 0%, rgba(5, 10, 20, 0.92) 75%, rgba(0, 0, 0, 1) 100%);
    min-height: 100vh;
}

.head {
    display: block;
    height: 50px;
}

main {
    display: block;
    padding-top: 50px;
}

html:not(.is-auth) #business-add {
  display: none !important;
}

html.is-auth [login],
html.is-auth .login,
html.is-auth #login {
  display: none !important;
}

.hidden {
    display: none !important;
}


@media (max-width: 700px) {
    .mhidden {
        display: none !important;
    }
    
}
.space {
    display: block;
    width: 100%;
    height: 20px;
}

.flex {
    display: flex;
    flex-direction: column-reverse;
}

.right {
    margin-left: auto;
    right: 0;
}

.mt {
    margin-top: 10px!important;
}

.mb {
    margin-bottom: 10px!important;
}

.ml {
    margin-left: 10px!important;
}

.mr {
    margin-right: 10px!important;
}

.p1 {
    padding: 5px!important;
}

.p2 {
    padding: 10px!important;
}

.p3 {
    padding: 15px!important;
}

.m1 {
    margin: 5px!important;
}

.m2 {
    margin: 10px!important;
}

.m3 {
    margin: 15px!important;
}

.btn-white {
    color: black!important;
    background-color: white!important;
}

.btn-dark {
    color: white!important;
    background-color: #57555e!important;
}

button,
button:focus,
button:active,
button:hover,
button:focus-visible{
    border: none;
    outline: none;
    box-shadow: none;
    background-image: none;
    font-size: 16px!important;
}

.section{
    padding: 5px 5px 5px;
    margin: 0 auto;
}

.title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    margin-bottom: 5px;
}

h2{
    font-size: 34px;
    line-height: 1.1;
    margin:0;
    letter-spacing: .2px;
    font-weight: 800;
}

.container{
    margin: 0 auto;
}

@media (min-width: 560px){
    .container{
        max-width: 540px;
    }
}

@media (min-width: 960px){
    .container{
        max-width: 880px;
    }
}

@media (min-width: 1480px){
    .container{
        max-width: 1280px;
    }
}

@media (min-width: 1720px){
    .container{
        max-width: 1536px;
    }
}

/* viewport (zone scrollable) */
.belaq-viewport{
    --visible: 1;
    --gaps: 1;
    --gap: 24px;
    --cardW: calc((100% - (var(--gaps) * var(--gap))) / var(--visible));

    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;

    /* IMPORTANT : on laisse le scroll natif.
       On NE met PAS scroll-behavior ici (sinon certains cas "manuel" semblent animés). */
    scroll-behavior: auto;

    padding: 0 6px;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
}
.belaq-viewport::-webkit-scrollbar{
    display:none;
}

@media (min-width: 700px){
    .belaq-viewport{
        --visible: 2;
        --gaps: 3;
    }
}

@media (min-width: 1024px){
    .belaq-viewport{
        --visible: 3;
        --gaps: 4;
    }
}

@media (min-width: 1280px){
    .belaq-viewport{
        --visible: 4;
        --gaps: 4;
    }
}

.belaq-items{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    gap: var(--gap);
    align-items:flex-start;
}

.belaq-card{
    flex: 0 0 auto;
    width: var(--cardW);
}

.thumb{
    max-height: 600px;
    width: 100%;
    aspect-ratio: 1 / 2;
    /*border-radius: 18px;*/
    /*background: var(--card-bg);*/
    overflow: hidden;
    position: relative;
    /*box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.thumb::after{
  content: "";
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 400px at 20% 0%, rgba(255,255,255,.14), rgba(255,255,255,0));
  pointer-events:none;
}*/


.thumb-img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.num{
    position:absolute;
    top:10px;
    left:10px;
    font-weight: 800;
    opacity:.9;
    font-size: 14px;
    background: rgba(0,0,0,.4);
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
}

.meta{
    padding: 10px 4px 0;
}
.meta .t{
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin:0 0 6px 0;
    opacity: .96;
}
.meta .s{
    font-size: 13px;
    margin:0;
    opacity: .72;
}


/* barre de déplacement (type YTM) */
.belaq-scrollbar{
    margin-top: 5px;
    padding: 0 6px;
}

.track{
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    position: relative;
    overflow:hidden;
    cursor: pointer;
    user-select:none;
    touch-action:none;
}

.thumbbar{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    width: 40px;
    transform: translate3d(0px,0,0);
    cursor: grab;
    will-change: transform, width;
    user-select:none;
    touch-action:none;
}
.thumbbar:active{
    cursor: grabbing;
}

.card-center {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centre verticalement */
    align-items: center;     /* centre horizontalement */
    text-align: center;
}

.card-tags {
    display: flex;
    align-items: center;
    flex-flow: row;
}

.card-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0.5rem);
    padding: 0.3rem 0.5rem;
    font-size: 15px;
    margin-right: 5px;
    pointer-events: none;
    border-radius: 25px;
}

.card-tag-icon {
    margin-right: 0.25rem;
}

.card-rating-text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem;
}
.card-rating-star {
    font-size: 11px;
}

.card-rating-stars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.belaq-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
}

.belaq-items {
    display: flex;
}

.belaq-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    flex: 0 0 auto;
}

.search-box,
.search-box-category {
    height: 48px;
    display: flex;
    align-items: stretch;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 24px;
    overflow: hidden;
    outline: none;
    box-shadow: none;
    transform: none;
    transition: none;
    -webkit-tap-highlight-color: transparent;
}

.search-box {
    width: 640px;
    max-width: calc(100vw - 24px);
}

.search-box-category {
    width: 320px;
    max-width: calc(100vw - 24px);
}

.search-box:hover,
.search-box:active,
.search-box:focus,
.search-box:focus-within,
.search-box-category:hover,
.search-box-category:active,
.search-box-category:focus,
.search-box-category:focus-within {
    outline: none;
    box-shadow: none;
    transform: none;
}

.search-input,
.search-input-category {
    flex: 1;
    display: block;
    height: 100%;
    min-width: 0;
    margin: 0;
    padding: 0 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    line-height: 48px;
    box-shadow: none;
    transform: none;
    transition: none;
    filter: none;
    text-indent: 0;
    letter-spacing: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    vertical-align: top;
    -webkit-tap-highlight-color: transparent;
}

.search-input::placeholder,
.search-input-category::placeholder {
    color: #8a8a8a;
    opacity: 1;
}

.search-input:hover,
.search-input:active,
.search-input:focus,
.search-input:focus-visible,
.search-input-category:hover,
.search-input-category:active,
.search-input-category:focus,
.search-input-category:focus-visible {
    margin: 0;
    padding: 0 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    line-height: 48px;
    box-shadow: none;
    transform: none;
    transition: none;
    filter: none;
}

.search-btn,
.search-btn-category {
    flex: 0 0 64px;
    width: 64px;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    border-left: 1px solid #2a2a2a;
    background: #1f1f1f;
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    box-shadow: none;
    transform: none;
    transition: none;
    filter: none;
    border-radius: 0;
    -webkit-tap-highlight-color: transparent;
}

.search-btn:hover,
.search-btn:active,
.search-btn:focus,
.search-btn:focus-visible,
.search-btn-category:hover,
.search-btn-category:active,
.search-btn-category:focus,
.search-btn-category:focus-visible {
    background: #1f1f1f;
    color: #fff;
    border-left: 1px solid #2a2a2a;
    outline: none;
    box-shadow: none;
    transform: none;
    transition: none;
    filter: none;
}

.search-btn::-moz-focus-inner,
.search-btn-category::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.search-btn i,
.search-btn-category i {
    pointer-events: none;
    transform: none;
    transition: none;
}

button.search-btn,
button.search-btn:hover,
button.search-btn:active,
button.search-btn:focus,
button.search-btn:focus-visible,
button.search-btn-category,
button.search-btn-category:hover,
button.search-btn-category:active,
button.search-btn-category:focus,
button.search-btn-category:focus-visible {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background: #1f1f1f !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    filter: none !important;
}

input.search-input,
input.search-input:hover,
input.search-input:active,
input.search-input:focus,
input.search-input:focus-visible,
input.search-input-category,
input.search-input-category:hover,
input.search-input-category:active,
input.search-input-category:focus,
input.search-input-category:focus-visible {
    margin: 0 !important;
    padding: 0 18px !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    filter: none !important;
    background: transparent !important;
    line-height: 48px !important;
}

.range-wrap {
    width: 320px;
}

.range-label {
    margin-bottom: 5px;
    font-size: 16px;
}

#km-range {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

#km-range::-webkit-slider-runnable-track {
    height: 6px;
    background: #fff;
    border-radius: 999px;
}

#km-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -6px;
    border: 0;
    border-radius: 50%;
    background: #fff;
}

#km-range::-moz-range-track {
    height: 6px;
    background: #fff;
    border: 0;
    border-radius: 999px;
}

#km-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: #fff;
}

#km-range::-ms-track {
    height: 6px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

#km-range::-ms-fill-lower,
#km-range::-ms-fill-upper {
    background: #fff;
    border-radius: 999px;
}

#km-range::-ms-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: #fff;
}

.tags-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 16px;
}

.tag-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    outline: none;
    cursor: pointer;

    height: 34px;
    padding: 0 14px;
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    white-space: nowrap;

    box-shadow: none;
    transform: none;
    transition: background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.tag-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.tag-btn.active {
    background: rgba(22, 45, 53, 0.95);
}

.tag-btn:focus,
.tag-btn:active,
.tag-btn:focus-visible {
    outline: none;
    box-shadow: none;
    transform: none;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    padding: 12px;
    z-index: 10;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    position: relative;
    width: 95vw;
    max-width: 1400px;
    max-height: calc(100vh - 24px);
    border-radius: 25px;
    background: #121212;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    z-index: 11;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    outline: none;
    box-shadow: none;
    z-index: 13;
}

.modal-close:hover,
.modal-close:focus,
.modal-close:active {
    outline: none;
    box-shadow: none;
    transform: none;
}

.modal-content {
    position: relative;
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: clamp(1rem, 2vw, 1.5rem);
    padding-top: clamp(4rem, 7vw, 5rem);
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 2vw, 2rem);
    z-index: 12;
}

.modal-text {
    flex: 1 1 22rem;
    min-width: min(100%, 18rem);
    position: relative;
    z-index: 1;
}

.modal-image {
    flex: 1 1 20rem;
    align-self: center;
    width: 100%;
    max-width: 42%;
    max-height: 70vh;
    height: auto;
    object-fit: contain;
    border-radius: clamp(0.75rem, 1.5vw, 1.125rem);
    display: block;
    position: relative;
    z-index: 1;
}

/* quand il n'y a plus assez de place, l'image passe dessous */
@media (max-width: 60rem) {
    .modal-content {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .modal-text,
    .modal-image {
        flex-basis: 100%;
        max-width: 100%;
    }

    .modal-image {
        width: calc(100% - 10px);
        max-width: calc(100% - 10px);
        margin: 8px 5px 0;
        max-height: none;
    }
}


.suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    max-height: 320px;
    overflow-y: auto;
    background: black;
    border: 1px solid #2c3340;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
    z-index: 12;
}

.suggestion {
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid #222834;
}

.suggestion:last-child {
    border-bottom: 0;
}

.suggestion.active,
.suggestion:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav-btn.prev {
    left: 15px;
    background: none;
    font-size: 40px !important;
    position: absolute;
    z-index: 5;
    transform: translateY(360%);
}

.nav-btn.next {
    right: 15px;
    background: none;
    font-size: 40px !important;
    position: absolute;
    z-index: 5;
    transform: translateY(360%);
}
.nav-btn[disabled] {
    opacity: .25;
    cursor: default;
    pointer-events: none;
}
    
.btn-nav-back {
    position: fixed;
    left: 0;
    height: inherit;
    z-index: 3;
    width: 50px!important;
    height: 50px!important;
    color: black;
}

@media (orientation: landscape) {
    .btn-nav-back {
        border-radius: 0 0 38px!important;
        top: 0;
    }

    .btn-nav-my-account {
        border-radius: 0 0 0 38px!important;
        top: 0;
    }
}

@media (orientation: portrait) {
    .btn-nav-back {
        bottom: 0;
        margin-left: 10px;
        margin-bottom: 10px;
        border-radius: 50%!important;
    }

    .btn-nav-my-account {
        bottom: 0;
        margin-right: 10px;
        margin-bottom: 10px;
        border-radius: 50%!important;
    }
}



.auth-shell {
    padding: 22px;
    color: #fff;
}

.auth-title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
}

.auth-subtitle {
    margin: 0 0 18px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.auth-tab {
    border: 1px solid var(--border);
    background: #1b1b1b;
    color: #fff;
    border-radius: 14px;
    height: 46px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.auth-tab.active {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
}

.auth-field {
    margin-bottom: 14px;
}

.auth-label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
}

.auth-input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--border);
    background: #1b1b1b;
    color: #fff;
    border-radius: 14px;
    padding: 14px 15px;
    outline: none;
    font-size: 14px;
}

.auth-input::placeholder {
    color: rgba(255,255,255,.45);
}

.auth-input:focus {
    border-color: rgba(255,255,255,.35);
}

.auth-btn {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-btn-primary {
    background: #fff;
    color: #111;
}

.auth-btn-dark {
    background: #1b1b1b;
    color: #fff;
    border: 1px solid var(--border);
}

.auth-btn-google {
    background: #fff;
    color: #111;
    margin-top: 14px;
}

.auth-sep {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0 14px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.auth-sep::before,
.auth-sep::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-message {
    display: none;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.45;
}

.auth-message.show {
    display: block;
}

.auth-message.success {
    background: rgba(60, 179, 113, .18);
    border: 1px solid rgba(60, 179, 113, .35);
    color: #b9ffd7;
}

.auth-message.error {
    background: rgba(220, 53, 69, .18);
    border: 1px solid rgba(220, 53, 69, .35);
    color: #ffd0d6;
}

.auth-account {
    text-align: center;
}

.auth-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #272727;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

.auth-account h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.auth-account p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.auth-actions {
    display: grid;
    gap: 12px;
}

.business-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    text-align: left;
    margin-bottom: 20px;
}

.business-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.business-subtitle {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
}

.business-create-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.business-name-input {
    display: block;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: #fff;
    outline: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.business-name-input::placeholder {
    color: rgba(255,255,255,.45);
    padding: 0;
    margin: 0;
}

.business-name-input:focus {
    border-color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.08);
    padding: 0;
    margin: 0;
}

.business-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.business-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #fff;
}

.business-table th,
.business-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    text-align: left;
    white-space: nowrap;
}

.business-table th {
    color: rgba(255,255,255,.75);
    font-weight: 700;
}

.business-empty-row {
    text-align: center !important;
    color: var(--muted);
}

.business-mini-img {
    width: 46px;
    height: 34px;
    object-fit: cover;
    border-radius: 0;
    border: none;
    background: none;
}

.business-delete-btn {
    border: 0;
    border-radius: 10px;
    padding: 7px 10px;
    cursor: pointer;
    color: #fff;
    background: rgba(255,70,90,.22);
}

.business-delete-btn:hover {
    background: rgba(255,70,90,.35);
}

.business-upload-zone {
    position: relative;
    border: 2px dashed rgba(255,255,255,.18);
    border-radius: 18px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
    background: rgba(255,255,255,.02);
}

.business-upload-zone:hover,
.business-upload-zone.is-dragover {
    border-color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.06);
    transform: translateY(-1px);
}

.business-upload-zone-inner {
    padding: 24px;
}

.business-upload-icon {
    font-size: 34px;
    margin-bottom: 12px;
    color: #fff;
}

.business-upload-main-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.business-upload-alt-text {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
}

.business-upload-input {
    display: none;
}

.business-preview-wrap {
    margin-top: 18px;
}

.business-preview-title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.business-preview-image {
    display: block;
    width: 100%;
    max-width: 420px;
    max-height: 280px;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.03);
}

.business-upload-button {
    background: white;
    color: black;
    padding: 10px;
    margin-top: 16px;
    border-radius: 25px;
}

.hidden {
    display: none !important;
}

@media (max-width: 700px) {
    .business-create-row {
        flex-direction: column;
        align-items: stretch;
    }

    .business-name-input,
    .business-create-row .auth-btn {
        width: 100%;
    }
}

.business-edit-popup.hidden {
    display: none;
}

.business-edit-popup {
    position: fixed;
    inset: 0;
    z-index: 12;
}

.business-edit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.business-edit-box {
    position: relative;
    z-index: 5;
    width: min(92vw, 620px);
    max-height: 92vh;
    overflow: auto;
    margin: 4vh auto;
    padding: 10px;
    border-radius: 24px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

.business-edit-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
}

.business-edit-name {
    margin: 6px 0 18px;
    opacity: 0.85;
}

.business-preview-wrap {
    margin-bottom: 16px;
    border-radius: 18px;
    overflow: hidden;
}

.business-preview-wrap.hidden {
    display: none;
}

.business-preview-wrap img {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.business-edit-btn {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    background: #fff;
    color: #000;
}

.business-mini-img {
    width: 75px;
    height: 150px;
    object-fit: contain;
    border-radius: 0px;
}

.stripe-card-modal.hidden {
    display: none;
}

.stripe-card-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.stripe-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(8px);
}

.stripe-card-box {
    position: relative;
    z-index: 1;
    width: min(520px, 96vw);
    padding: 22px;
    border-radius: 22px;
    background: #140d22;
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 90px rgba(0,0,0,.65);
}

.stripe-card-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #991b1b;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
}

.stripe-card-note {
    opacity: .85;
    margin-bottom: 16px;
}

.stripe-card-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 16px 0;
    font-size: 14px;
    opacity: .92;
}

.section {
    width: 90vw;
}


