/*
 * in7 Design System — centralizovana CSS osnova za sve panele
 * Verzija: 1.0 | Importuje se PRVA u svim layoutima
 *
 * Koristi se: header.php, workspace_header.php, admin layout
 * Paneli dalje mogu imati vlastite CSS fajlove za specifične komponente,
 * ali baziraju na --in7-* tokenima definisanim ovdje.
 */

/* ─── TOKENS ────────────────────────────────────────────────────────────────── */

:root {
    /* Brand colors */
    --in7-emerald:         #022c22;
    --in7-emerald-2:       #0a3d30;
    --in7-emerald-3:       #0d5a46;
    --in7-emerald-4:       #0d755b;
    --in7-gold:            #c5a059;
    --in7-gold-soft:       #d8b77a;
    --in7-gold-bright:     #ecd098;
    --in7-gold-dim:        rgba(197, 160, 89, 0.14);

    /* Surfaces */
    --in7-bg:              #f6f8f7;
    --in7-surface:         rgba(255, 255, 255, 0.96);
    --in7-surface-solid:   #ffffff;
    --in7-soft-white:      #f7f9f8;

    /* Text */
    --in7-text:            #14312a;
    --in7-text-muted:      #64746f;
    --in7-text-subtle:     #97a8a2;

    /* Borders & lines */
    --in7-line:            rgba(2, 44, 34, 0.08);
    --in7-line-strong:     rgba(2, 44, 34, 0.14);
    --in7-line-gold:       rgba(197, 160, 89, 0.22);

    /* Shadows */
    --in7-shadow-sm:       0 4px 12px rgba(0, 0, 0, 0.06);
    --in7-shadow:          0 18px 42px rgba(0, 0, 0, 0.08);
    --in7-shadow-lg:       0 30px 80px rgba(0, 0, 0, 0.14);
    --in7-shadow-gold:     0 20px 45px rgba(197, 160, 89, 0.14);
    --in7-shadow-emerald:  0 16px 32px rgba(2, 44, 34, 0.20);

    /* Radius */
    --in7-radius-sm:       10px;
    --in7-radius:          18px;
    --in7-radius-lg:       24px;
    --in7-radius-xl:       30px;
    --in7-radius-pill:     999px;

    /* Semantic colors */
    --in7-success:         #027a48;
    --in7-success-bg:      rgba(2, 122, 72, 0.08);
    --in7-warning:         #8f6d30;
    --in7-warning-bg:      rgba(143, 109, 48, 0.10);
    --in7-danger:          #b42318;
    --in7-danger-bg:       rgba(180, 35, 24, 0.08);
    --in7-info:            #0a5d8c;
    --in7-info-bg:         rgba(10, 93, 140, 0.08);

    /* Gradients */
    --in7-grad-emerald:    linear-gradient(135deg, #022c22 0%, #0a5d4a 55%, #0d755b 100%);
    --in7-grad-gold:       linear-gradient(135deg, #ecd098 0%, #c5a059 48%, #ae833e 100%);
    --in7-grad-surface:    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,251,250,0.96) 100%);

    /* Typography */
    --in7-font:            'DM Sans', system-ui, -apple-system, sans-serif;
    --in7-font-mono:       'Fira Code', 'Cascadia Code', monospace;

    /* Transitions */
    --in7-transition:      0.22s ease;
    --in7-transition-slow: 0.38s ease;

    /* Z-index scale */
    --in7-z-base:          1;
    --in7-z-card:          10;
    --in7-z-nav:           100;
    --in7-z-modal:         500;
    --in7-z-toast:         900;
    --in7-z-top:           9999;
}

/* ─── RESET / BASE ───────────────────────────────────────────────────────────── */

*, *::before, *::after {
    box-sizing: border-box;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────────── */

.in7-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: var(--in7-radius-pill);
    font-family: var(--in7-font);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--in7-transition), box-shadow var(--in7-transition), background var(--in7-transition), color var(--in7-transition);
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}

.in7-btn:disabled,
.in7-btn[disabled] {
    opacity: 0.48;
    pointer-events: none;
}

/* Primary — emerald fill */
.in7-btn--primary {
    background: var(--in7-grad-emerald);
    color: #ffffff;
    box-shadow: var(--in7-shadow-emerald);
}

.in7-btn--primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(2, 44, 34, 0.28);
}

/* Gold — luxury CTA */
.in7-btn--gold {
    position: relative;
    overflow: hidden;
    background: var(--in7-grad-gold);
    color: #0a2b24;
    box-shadow: 0 18px 34px rgba(197, 160, 89, 0.28);
}

.in7-btn--gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 42%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}

.in7-btn--gold:hover::after { transform: translateX(120%); }

.in7-btn--gold:hover {
    color: #0a2b24;
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(197, 160, 89, 0.34);
}

/* Outline — bordered ghost */
.in7-btn--outline {
    background: transparent;
    color: var(--in7-emerald);
    border: 1.5px solid var(--in7-line-strong);
}

.in7-btn--outline:hover {
    background: var(--in7-emerald);
    border-color: var(--in7-emerald);
    color: #ffffff;
}

/* Ghost — subtle for secondary actions */
.in7-btn--ghost {
    background: transparent;
    color: var(--in7-text);
    border: 1px solid var(--in7-line);
}

.in7-btn--ghost:hover {
    background: var(--in7-emerald);
    border-color: var(--in7-emerald);
    color: #ffffff;
}

/* Danger */
.in7-btn--danger {
    background: var(--in7-danger);
    color: #ffffff;
}

.in7-btn--danger:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(180, 35, 24, 0.28);
}

/* Sizes */
.in7-btn--sm  { min-height: 36px; padding: 0 16px; font-size: 11px; }
.in7-btn--lg  { min-height: 58px; padding: 0 36px; font-size: 14px; }
.in7-btn--xl  { min-height: 64px; padding: 0 44px; font-size: 15px; }
.in7-btn--full { width: 100%; }

/* Icon-only */
.in7-btn--icon {
    min-height: 40px;
    min-width: 40px;
    padding: 0;
    border-radius: var(--in7-radius-pill);
}

/* ─── CARDS ──────────────────────────────────────────────────────────────────── */

.in7-card {
    background: var(--in7-surface);
    border: 1px solid var(--in7-line);
    border-radius: var(--in7-radius-xl);
    box-shadow: var(--in7-shadow);
    overflow: hidden;
    transition: transform var(--in7-transition-slow), box-shadow var(--in7-transition-slow), border-color var(--in7-transition-slow);
}

.in7-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.10);
    border-color: var(--in7-line-gold);
}

.in7-card--flat {
    box-shadow: var(--in7-shadow-sm);
    border-radius: var(--in7-radius-lg);
}

.in7-card--flat:hover {
    transform: translateY(-3px);
    box-shadow: var(--in7-shadow);
}

.in7-card--glass {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Card sections */
.in7-card__header {
    padding: 20px 24px 0;
}

.in7-card__body {
    padding: 20px 24px;
}

.in7-card__footer {
    padding: 0 24px 20px;
    border-top: 1px solid var(--in7-line);
    margin-top: 4px;
    padding-top: 16px;
}

.in7-card__cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* ─── BADGES & CHIPS ─────────────────────────────────────────────────────────── */

.in7-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: var(--in7-radius-pill);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}

.in7-badge--emerald {
    background: rgba(2, 44, 34, 0.09);
    color: var(--in7-emerald-3);
}

.in7-badge--gold {
    background: rgba(197, 160, 89, 0.14);
    color: #7a5b24;
}

.in7-badge--success {
    background: var(--in7-success-bg);
    color: var(--in7-success);
}

.in7-badge--warning {
    background: var(--in7-warning-bg);
    color: var(--in7-warning);
}

.in7-badge--danger {
    background: var(--in7-danger-bg);
    color: var(--in7-danger);
}

.in7-badge--info {
    background: var(--in7-info-bg);
    color: var(--in7-info);
}

.in7-badge--neutral {
    background: rgba(100, 116, 111, 0.10);
    color: var(--in7-text-muted);
}

/* Dot indicator */
.in7-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.in7-dot--success { background: var(--in7-success); }
.in7-dot--warning { background: #d4900a; }
.in7-dot--danger  { background: var(--in7-danger); }
.in7-dot--info    { background: var(--in7-info); }
.in7-dot--gold    { background: var(--in7-gold); }
.in7-dot--emerald { background: var(--in7-emerald-3); }

/* ─── TABLES ─────────────────────────────────────────────────────────────────── */

.in7-table-wrap {
    border-radius: var(--in7-radius-lg);
    border: 1px solid var(--in7-line);
    overflow: hidden;
    background: var(--in7-surface-solid);
    box-shadow: var(--in7-shadow-sm);
}

.in7-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: var(--in7-text);
}

.in7-table thead th {
    padding: 13px 18px;
    background: var(--in7-soft-white);
    color: var(--in7-text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--in7-line);
    white-space: nowrap;
}

.in7-table tbody tr {
    border-bottom: 1px solid var(--in7-line);
    transition: background var(--in7-transition);
}

.in7-table tbody tr:last-child {
    border-bottom: none;
}

.in7-table tbody tr:hover {
    background: rgba(2, 44, 34, 0.024);
}

.in7-table td {
    padding: 14px 18px;
    vertical-align: middle;
    line-height: 1.4;
}

.in7-table td:first-child,
.in7-table th:first-child {
    padding-left: 24px;
}

.in7-table td:last-child,
.in7-table th:last-child {
    padding-right: 24px;
}

/* ─── FORM INPUTS ────────────────────────────────────────────────────────────── */

.in7-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.in7-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--in7-text-muted);
}

.in7-input,
.in7-select,
.in7-textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    background: var(--in7-surface-solid);
    border: 1.5px solid var(--in7-line-strong);
    border-radius: var(--in7-radius);
    font-family: var(--in7-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--in7-text);
    transition: border-color var(--in7-transition), box-shadow var(--in7-transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.in7-input:focus,
.in7-select:focus,
.in7-textarea:focus {
    border-color: var(--in7-emerald-3);
    box-shadow: 0 0 0 3px rgba(13, 90, 70, 0.10);
}

.in7-input::placeholder,
.in7-textarea::placeholder {
    color: var(--in7-text-subtle);
    font-weight: 400;
}

.in7-textarea {
    min-height: 120px;
    padding: 14px 16px;
    resize: vertical;
    line-height: 1.6;
}

.in7-input--error,
.in7-select--error,
.in7-textarea--error {
    border-color: var(--in7-danger);
}

.in7-input--error:focus,
.in7-select--error:focus,
.in7-textarea--error:focus {
    box-shadow: 0 0 0 3px var(--in7-danger-bg);
}

.in7-field-hint {
    font-size: 12px;
    color: var(--in7-text-subtle);
    margin-top: 2px;
}

.in7-field-error {
    font-size: 12px;
    color: var(--in7-danger);
    font-weight: 700;
    margin-top: 2px;
}

/* ─── SECTION HEADER ─────────────────────────────────────────────────────────── */

.in7-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.in7-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--in7-gold);
    margin-bottom: 6px;
}

.in7-section-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: var(--in7-text);
    line-height: 1.2;
    margin: 0;
}

.in7-section-subtitle {
    font-size: 15px;
    color: var(--in7-text-muted);
    margin: 8px 0 0;
    line-height: 1.6;
}

/* ─── DIVIDERS ───────────────────────────────────────────────────────────────── */

.in7-divider {
    border: none;
    height: 1px;
    background: var(--in7-line);
    margin: 0;
}

.in7-divider--gold {
    background: linear-gradient(90deg, transparent 0%, var(--in7-gold-dim) 30%, var(--in7-line-gold) 50%, var(--in7-gold-dim) 70%, transparent 100%);
}

/* ─── EMPTY STATE ────────────────────────────────────────────────────────────── */

.in7-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 32px;
    text-align: center;
    gap: 12px;
}

.in7-empty__icon {
    font-size: 36px;
    color: var(--in7-line-strong);
    margin-bottom: 4px;
}

.in7-empty__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--in7-text);
    margin: 0;
}

.in7-empty__text {
    font-size: 14px;
    color: var(--in7-text-muted);
    max-width: 320px;
    margin: 0;
    line-height: 1.5;
}

/* ─── AVATAR ─────────────────────────────────────────────────────────────────── */

.in7-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(2, 44, 34, 0.09);
    color: var(--in7-emerald-3);
    font-weight: 800;
}

.in7-avatar--sm  { width: 32px;  height: 32px;  font-size: 12px; }
.in7-avatar--md  { width: 44px;  height: 44px;  font-size: 16px; }
.in7-avatar--lg  { width: 60px;  height: 60px;  font-size: 22px; }
.in7-avatar--xl  { width: 80px;  height: 80px;  font-size: 28px; }

.in7-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── RATING STARS ───────────────────────────────────────────────────────────── */

.in7-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--in7-gold);
    font-size: 12px;
}

.in7-stars--sm { font-size: 10px; }
.in7-stars--lg { font-size: 15px; }

/* ─── STAT CARD ──────────────────────────────────────────────────────────────── */

.in7-stat {
    background: var(--in7-surface);
    border: 1px solid var(--in7-line);
    border-radius: var(--in7-radius-lg);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--in7-shadow-sm);
}

.in7-stat__value {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--in7-text);
    line-height: 1;
}

.in7-stat__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--in7-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.in7-stat__delta {
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.in7-stat__delta--up   { color: var(--in7-success); }
.in7-stat__delta--down { color: var(--in7-danger); }

/* ─── LOADER / SKELETON ──────────────────────────────────────────────────────── */

@keyframes in7-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.in7-skeleton {
    background: linear-gradient(90deg, var(--in7-line) 25%, rgba(2,44,34,0.03) 50%, var(--in7-line) 75%);
    background-size: 800px 100%;
    animation: in7-shimmer 1.4s ease-in-out infinite;
    border-radius: var(--in7-radius-sm);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────────── */

.in7-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.in7-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ─── UTILITY ────────────────────────────────────────────────────────────────── */

.in7-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.in7-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.in7-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.in7-text-emerald { color: var(--in7-emerald-3) !important; }
.in7-text-gold    { color: var(--in7-gold) !important; }
.in7-text-muted   { color: var(--in7-text-muted) !important; }
.in7-text-danger  { color: var(--in7-danger) !important; }
.in7-text-success { color: var(--in7-success) !important; }

/* ─── MOBILE ─────────────────────────────────────────────────────────────────── */

@media (max-width: 575px) {
    .in7-btn { min-height: 48px; padding: 0 20px; }
    .in7-btn--lg, .in7-btn--xl { min-height: 54px; padding: 0 28px; font-size: 13px; }
    .in7-card__body { padding: 16px 18px; }
    .in7-table td, .in7-table th { padding: 12px 14px; }
    .in7-table td:first-child, .in7-table th:first-child { padding-left: 16px; }
    .in7-table td:last-child, .in7-table th:last-child { padding-right: 16px; }
    .in7-section-title { font-size: 20px; }
    .in7-stat { padding: 16px 18px; }
}

/* ─── L-04: Email verification banner ─────────────────────────────── */
.verif-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(197, 160, 89, .12);
    border-bottom: 1px solid rgba(197, 160, 89, .3);
    color: #7a5c1e;
    font-size: 13px;
    font-weight: 600;
    flex-wrap: wrap;
}
.verif-banner i { color: #c5a059; flex-shrink: 0; }
.verif-banner span { flex: 1; min-width: 200px; }
.verif-banner-form { display: flex; }
.verif-banner-btn {
    min-height: 30px;
    padding: 0 14px;
    border: 1px solid rgba(197, 160, 89, .5);
    border-radius: 999px;
    background: rgba(197, 160, 89, .18);
    color: #7a5c1e;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.verif-banner-btn:hover { background: rgba(197, 160, 89, .3); }
.verif-banner-close {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: #9a7c3a;
    cursor: pointer;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.verif-banner-close:hover { background: rgba(197, 160, 89, .2); }

/* ─── L-05: Social proof chips on business profile ────────────────── */
.biz-review-summary {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(197, 160, 89, .18);
    color: #c5a059;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s;
}
.biz-review-summary:hover { background: rgba(197, 160, 89, .3); color: #c5a059; }
.biz-review-summary i { font-size: 11px; }
.biz-review-summary span { color: rgba(255,255,255,.65); font-weight: 600; font-size: 12px; }
.biz-views-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
}
.biz-views-count i { font-size: 12px; }

/* ─── L-01: Business onboarding wizard ────────────────────────────── */
.onb-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px 80px;
    background: var(--bg-base, #0f0f11);
}
.onb-card {
    width: min(560px, 100%);
    background: var(--bg-surface, #fff);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.onb-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 18px;
    font-weight: 900;
    color: var(--clr-text-primary, #102f28);
}
.onb-title {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--clr-text-primary, #102f28);
}
.onb-subtitle {
    margin: 0 0 28px;
    color: var(--clr-muted-l, #66766f);
    font-size: 14px;
    line-height: 1.6;
}
/* Progress */
.onb-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
}
.onb-progress-bar {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(2,44,34,.1);
    z-index: 0;
}
.onb-progress-fill {
    height: 100%;
    background: var(--color-accent, #c5a059);
    transition: width .4s ease;
}
.onb-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.onb-step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(2,44,34,.15);
    background: var(--bg-surface, #fff);
    color: var(--clr-muted-l, #9ba8a3);
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}
.onb-progress-step.is-active .onb-step-dot {
    border-color: var(--color-accent, #c5a059);
    color: var(--color-accent, #c5a059);
    background: rgba(197,160,89,.1);
}
.onb-progress-step.is-done .onb-step-dot {
    border-color: #1f7a5b;
    background: #1f7a5b;
    color: #fff;
}
.onb-step-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-muted-l, #9ba8a3);
    white-space: nowrap;
}
.onb-progress-step.is-active .onb-step-label { color: var(--clr-text-primary, #102f28); }
.onb-progress-step.is-done  .onb-step-label { color: #1f7a5b; }
/* Fields */
.onb-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}
.onb-field { display: grid; gap: 7px; }
.onb-field--wide { grid-column: 1 / -1; }
.onb-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--clr-muted-l, #66766f);
}
.onb-field input,
.onb-field textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(2,44,34,.12);
    border-radius: 14px;
    padding: 0 14px;
    color: var(--clr-text-primary, #102f28);
    background: var(--bg-surface, #fff);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    outline: 0;
}
.onb-field textarea { padding: 10px 14px; resize: vertical; }
.onb-field input:focus,
.onb-field textarea:focus {
    border-color: rgba(197,160,89,.5);
    box-shadow: 0 0 0 3px rgba(197,160,89,.12);
}
/* Hours grid */
.onb-hint {
    font-size: 13px;
    color: var(--clr-muted-l, #66766f);
    margin: 0 0 16px;
}
.onb-hours-grid { display: grid; gap: 10px; margin-bottom: 24px; }
.onb-hours-row {
    display: grid;
    grid-template-columns: 44px 90px 1fr auto 1fr;
    align-items: center;
    gap: 10px;
}
.onb-day-name { font-size: 13px; font-weight: 700; color: var(--clr-text-primary, #102f28); }
.onb-closed-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--clr-muted-l, #66766f);
    cursor: pointer;
}
.onb-hours-row input[type="time"] {
    min-height: 36px;
    border: 1px solid rgba(2,44,34,.12);
    border-radius: 10px;
    padding: 0 10px;
    font-size: 13px;
    font-family: inherit;
    outline: 0;
    background: var(--bg-surface, #fff);
    color: var(--clr-text-primary, #102f28);
}
.onb-hours-row input[type="time"]:disabled { opacity: .35; }
/* Buttons */
.onb-actions { margin-bottom: 16px; }
.onb-btn-primary {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #102f28, #1e6040);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity .2s;
}
.onb-btn-primary:hover { opacity: .88; }
.onb-skip-form { text-align: center; }
.onb-btn-skip {
    border: none;
    background: transparent;
    color: var(--clr-muted-l, #9ba8a3);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px;
}
.onb-btn-skip:hover { color: var(--clr-text-primary, #102f28); }
.onb-flash {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}
.onb-flash--ok  { background: rgba(31,122,91,.1); color: #1f7a5b; }
.onb-flash--err { background: rgba(192,57,43,.1);  color: #b43729; }

@media (max-width: 640px) {
    .onb-card { padding: 28px 22px; border-radius: 22px; }
    .onb-fields { grid-template-columns: 1fr; }
    .onb-hours-row { grid-template-columns: 40px 80px 1fr auto 1fr; gap: 6px; }
    .onb-title { font-size: 22px; }
    .onb-step-label { display: none; }
}

/* ─── L-06: Business claim ─────────────────────────────────────────── */
.biz-claim-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-muted-l, #66766f);
    text-decoration: none;
    transition: color .18s;
}
.biz-claim-link:hover { color: var(--clr-text-primary, #102f28); }
.biz-claim-link i { font-size: 12px; }
.up-claim-wrap { max-width: 560px; }
.up-claim-biz-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(2,44,34,.04);
    border: 1px solid rgba(2,44,34,.08);
    margin-bottom: 24px;
}
.up-claim-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}
.up-claim-logo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(2,44,34,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(2,44,34,.3);
    font-size: 22px;
    flex-shrink: 0;
}
.up-claim-biz-info strong { display: block; font-size: 16px; font-weight: 900; color: #102f28; }
.up-claim-biz-info span { font-size: 13px; color: #66766f; }
.up-claim-form { margin-top: 8px; }
