:root {
    --bg: #f5f5f7;
    --card: #ffffff;
    --text: #1d1d1f;
    --muted: #6e6e73;
    --blue: #007aff;
    --blue-dark: #005ecb;
    --green: #34c759;
    --red: #ff3b30;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    text-decoration: none;
}

/* LOGIN */

.login-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 122, 255, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(52, 199, 89, 0.12), transparent 35%),
        #f5f5f7;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    width: 100%;
    max-width: 430px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 32px;
    box-shadow: var(--shadow);
    padding: 34px;
}

.login-logo-box {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.login-logo {
    max-width: 62px;
    max-height: 62px;
    object-fit: contain;
    z-index: 2;
}

.login-icon-fallback {
    position: absolute;
    font-size: 34px;
    color: var(--blue);
}

.login-card h1 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.login-subtitle {
    color: var(--muted);
    margin-bottom: 28px;
}

.apple-input-group .input-group-text {
    background: #f5f5f7;
    border: 1px solid var(--border);
    border-right: 0;
    border-radius: 16px 0 0 16px;
}

.apple-input-group .form-control {
    border: 1px solid var(--border);
    border-left: 0;
    background: #f5f5f7;
    border-radius: 0 16px 16px 0;
    padding: 13px 14px;
}

.apple-input-group .form-control:focus {
    box-shadow: none;
    border-color: var(--blue);
    background: #ffffff;
}

.apple-btn {
    border: 0;
    border-radius: 18px;
    padding: 13px 18px;
    background: var(--blue);
    font-weight: 700;
}

.apple-btn:hover {
    background: var(--blue-dark);
}

.apple-alert {
    border-radius: 18px;
    border: 0;
}

.login-footer {
    margin-top: 26px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

/* APP LAYOUT */

.app-body {
    background: var(--bg);
}

.app-shell {
    min-height: 100vh;
    display: flex;
}

.sidebar {
    width: 280px;
    min-height: 100vh;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    border-right: 1px solid var(--border);
    padding: 24px;
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 14px;
    background: white;
}

.brand-box strong {
    display: block;
    font-size: 16px;
}

.brand-box span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.side-nav {
    display: grid;
    gap: 8px;
}

.side-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    padding: 13px 14px;
    border-radius: 16px;
    font-weight: 600;
    transition: 0.15s ease;
}

.side-nav a i {
    font-size: 18px;
}

.side-nav a:hover,
.side-nav a.active {
    background: #eef5ff;
    color: var(--blue);
}

.side-nav .logout-link {
    color: var(--red);
    margin-top: 16px;
}

.main-content {
    flex: 1;
    padding: 30px;
    overflow: hidden;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.topbar h1 {
    font-size: 34px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.045em;
    margin: 0 0 8px;
}

.topbar p {
    color: var(--muted);
    margin: 0;
}

.user-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted);
    white-space: nowrap;
}

/* CARDS */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.stat-card,
.apple-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.stat-card {
    padding: 22px;
}

.stat-card span {
    color: var(--muted);
    font-weight: 600;
}

.stat-card strong {
    display: block;
    font-size: 30px;
    letter-spacing: -0.04em;
    margin-top: 8px;
}

.stat-card small {
    color: var(--muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.apple-card {
    padding: 22px;
}

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

.card-head h2 {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 4px;
}

.card-head p {
    color: var(--muted);
    margin: 0;
}

.apple-small-btn,
.apple-mini-btn {
    border-radius: 999px;
    font-weight: 700;
}

.apple-mini-btn {
    padding: 6px 12px;
}

/* TABLE */

.apple-table {
    margin: 0;
}

.apple-table th {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.apple-table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
    padding-top: 14px;
    padding-bottom: 14px;
}

.vendor-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vendor-cell img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
    background: #f5f5f7;
    padding: 4px;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    background: #f5f5f7;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

/* MOBILE */

@media (max-width: 920px) {
    .app-shell {
        display: block;
    }

    .sidebar {
        position: relative;
        width: 100%;
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .side-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .side-nav a {
        justify-content: center;
        font-size: 13px;
        padding: 11px 8px;
    }

    .side-nav a i {
        font-size: 17px;
    }

    .main-content {
        padding: 18px;
    }

    .topbar {
        display: block;
    }

    .user-pill {
        margin-top: 14px;
        display: inline-flex;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .login-card {
        padding: 26px;
        border-radius: 26px;
    }

    .side-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .topbar h1 {
        font-size: 30px;
    }

    .stat-card strong {
        font-size: 28px;
    }
}
/* TECH MOBILE */

.tech-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 122, 255, 0.16), transparent 35%),
        #f5f5f7;
}

.tech-wrapper {
    max-width: 520px;
    margin: 0 auto;
    padding: 18px;
}

.tech-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.tech-header h1 {
    font-size: 32px;
    font-weight: 850;
    letter-spacing: -0.045em;
    margin: 0;
}

.tech-header p {
    color: var(--muted);
    margin: 4px 0 0;
}

.tech-logout {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #ffffff;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    font-size: 20px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 22px;
}

.camera-box {
    text-align: center;
    margin-bottom: 20px;
}

.camera-icon {
    width: 82px;
    height: 82px;
    border-radius: 26px;
    background: #eef5ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: 0 auto 18px;
}

.camera-box h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 8px;
}

.camera-box p {
    color: var(--muted);
    margin-bottom: 18px;
}

.preview-box {
    margin-top: 16px;
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f7;
    border: 1px solid var(--border);
}

.preview-box img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    display: block;
}

.tech-textarea {
    border-radius: 18px;
    background: #f5f5f7;
    border: 1px solid var(--border);
    resize: none;
}

.tech-textarea:focus {
    background: #fff;
    box-shadow: none;
    border-color: var(--blue);
}

.location-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f7;
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 18px;
    padding: 12px 14px;
    font-weight: 600;
}

.location-box.location-ok {
    background: #edfff3;
    color: #168a3a;
}

.tech-secondary-btn {
    border-radius: 18px;
    font-weight: 700;
}
/* CONFIRM EXPENSE */

.confirm-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 22px;
}

.confirm-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.confirm-vendor-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: #f5f5f7;
    border-radius: 18px;
    padding: 7px;
}

.confirm-top span {
    display: block;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.confirm-top h1 {
    font-size: 25px;
    font-weight: 850;
    letter-spacing: -0.04em;
    margin: 0;
}

.confirm-image-box {
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f7;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.confirm-image-box img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
}

.confirm-summary {
    background: #f8f8fa;
    border-radius: 24px;
    padding: 16px;
    border: 1px solid var(--border);
}

.confirm-input {
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #ffffff;
}

.confirm-input:focus {
    box-shadow: none;
    border-color: var(--blue);
}

.items-box {
    margin-top: 16px;
    background: #f8f8fa;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 16px;
}

.items-box h2 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.item-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 10px 0;
}

.item-row:last-child {
    border-bottom: 0;
}

.item-row strong {
    font-size: 14px;
}

.item-row span {
    font-weight: 800;
}

.confidence-box {
    margin-top: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confidence-box span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.confidence-box strong {
    font-size: 24px;
    letter-spacing: -0.035em;
}

.reject-btn {
    border-radius: 18px;
    font-weight: 800;
    color: var(--red);
}

.confirm-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 18px;
}

.confirm-icon.danger {
    background: #fff1f0;
    color: var(--red);
}

.confirm-card > h1 {
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.confirm-card > p {
    color: var(--muted);
}


/* EXPENSE DETAIL */

.detail-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px;
}

.detail-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 22px;
}

.detail-topbar > div {
    flex: 1;
}

.detail-topbar h1 {
    font-size: 34px;
    font-weight: 850;
    letter-spacing: -0.045em;
    margin: 0 0 4px;
}

.detail-topbar p {
    color: var(--muted);
    margin: 0;
}

.back-btn {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.detail-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
}

.detail-total-box {
    background: #f5f5f7;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 18px;
}

.detail-total-box span {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

.detail-total-box strong {
    display: block;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.055em;
    margin-top: 6px;
}

.detail-info-list {
    display: grid;
    gap: 10px;
}

.detail-info-list > div {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px 14px;
}

.detail-info-list span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
}

.detail-info-list strong {
    font-size: 15px;
}

.detail-note strong {
    font-weight: 600;
    line-height: 1.5;
}

.receipt-image-box {
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f7;
    border: 1px solid var(--border);
}

.receipt-image-box img {
    width: 100%;
    max-height: 680px;
    object-fit: contain;
    display: block;
}

@media (max-width: 850px) {
    .detail-page {
        padding: 18px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-topbar h1 {
        font-size: 28px;
    }

    .detail-total-box strong {
        font-size: 36px;
    }
}



/* FILTERS */

.filter-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.filter-submit {
    display: flex;
    align-items: end;
}

@media (max-width: 1100px) {
    .filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .filter-grid {
        grid-template-columns: 1fr;
    }
}

/* REPORTS */

.report-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 180px;
    gap: 14px;
    align-items: end;
}

@media (max-width: 650px) {
    .report-filter-grid {
        grid-template-columns: 1fr;
    }
}

/* USERS */

.mini-stats-list {
    display: grid;
    gap: 12px;
}

.mini-stats-list > div {
    background: #f5f5f7;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-stats-list span {
    color: var(--muted);
    font-weight: 700;
}

.mini-stats-list strong {
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 800;
}

.status-pill.active {
    background: #edfff3;
    color: #168a3a;
}

.status-pill.inactive {
    background: #fff1f0;
    color: var(--red);
}

/* SETTINGS */

.folder-list {
    display: grid;
    gap: 12px;
}

.folder-row {
    background: #f5f5f7;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.folder-row strong {
    display: block;
}

.folder-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.settings-note {
    display: flex;
    gap: 10px;
    background: #eef5ff;
    color: var(--blue);
    border-radius: 18px;
    padding: 12px 14px;
    font-weight: 700;
}

.vendor-form-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.4fr 1fr 160px;
    gap: 14px;
    align-items: end;
}

.vendor-submit {
    display: flex;
    align-items: end;
}

.settings-logo-preview {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: #f5f5f7;
    border-radius: 12px;
    padding: 5px;
}

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

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

/* NATIVE CAMERA TECH VIEW */

.native-camera-body {
    margin: 0;
    background: #000;
    overflow: hidden;
}

.native-camera-screen {
    position: fixed;
    inset: 0;
    background: #000;
    overflow: hidden;
}

.native-camera-screen video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.camera-dark-overlay {
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 2;
}

.camera-dark-overlay.top {
    top: 0;
    height: 180px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent);
}

.camera-dark-overlay.bottom {
    bottom: 0;
    height: 260px;
    background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
}

.native-camera-header {
    position: absolute;
    top: env(safe-area-inset-top, 0);
    left: 0;
    right: 0;
    padding: 18px;
    padding-top: calc(18px + env(safe-area-inset-top, 0px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    color: #fff;
}

.native-camera-header h1 {
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -0.045em;
    margin: 0;
}

.native-camera-header p {
    margin: 4px 0 0;
    opacity: 0.78;
}

.native-camera-exit {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,0.38);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.native-alert {
    position: absolute;
    top: 92px;
    left: 18px;
    right: 18px;
    z-index: 6;
    background: rgba(52, 199, 89, 0.92);
    color: #fff;
    border-radius: 18px;
    padding: 12px 14px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.camera-help {
    position: absolute;
    top: 50%;
    left: 18px;
    right: 18px;
    transform: translateY(-50%);
    z-index: 4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.9;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
    pointer-events: none;
}

.camera-help i {
    font-size: 22px;
}

.native-location-pill {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: calc(126px + env(safe-area-inset-bottom, 0px));
    z-index: 5;
    background: rgba(0,0,0,0.42);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(16px);
    border-radius: 999px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
}

.native-location-pill.location-ok {
    background: rgba(22, 138, 58, 0.72);
    color: #fff;
}

.native-camera-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom, 0);
    padding: 18px 22px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.native-gallery-btn,
.native-switch-btn {
    border: 0;
    color: #fff;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 12px 10px;
    min-height: 62px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.native-gallery-btn i,
.native-switch-btn i {
    font-size: 22px;
}

.native-gallery-btn span,
.native-switch-btn span {
    font-size: 12px;
}

.native-capture-btn {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.94);
    background: rgba(255,255,255,0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.native-capture-btn span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
}

.native-capture-btn:active span {
    transform: scale(0.9);
}

/* REVIEW CAPTURE */

.capture-review-screen {
    min-height: 100vh;
    background: #f5f5f7;
    padding: 18px;
    padding-top: calc(18px + env(safe-area-inset-top, 0px));
    overflow-y: auto;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-header h1 {
    font-size: 30px;
    font-weight: 850;
    letter-spacing: -0.045em;
    margin: 0;
}

.review-header p {
    margin: 4px 0 0;
    color: var(--muted);
}

.review-back-btn {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 0;
    background: #fff;
    color: var(--text);
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    font-size: 22px;
}

.review-image-box {
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    margin-bottom: 16px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.12);
}

.review-image-box img {
    width: 100%;
    max-height: 58vh;
    object-fit: contain;
    display: block;
}

.review-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid var(--border);
    padding: 18px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}

@media (max-width: 380px) {
    .native-capture-btn {
        width: 76px;
        height: 76px;
    }

    .native-camera-controls {
        gap: 12px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .native-gallery-btn,
    .native-switch-btn {
        min-height: 58px;
        border-radius: 18px;
    }
}