body.mobile-shell.customer-auth-shell {
    background: radial-gradient(circle at top left, rgba(212, 93, 136, 0.16), transparent 34%),
    linear-gradient(180deg, #f8edf2 0%, #f5e9ef 100%);
}

.customer-chat-avatar.customer-chat-participant-trigger {
    border: 0;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.customer-chat-avatar.customer-chat-participant-trigger:hover,
.customer-chat-avatar.customer-chat-participant-trigger:focus-visible {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(202, 92, 135, 0.12), 0 10px 20px rgba(212, 93, 136, 0.16);
}

.customer-chat-participant-label {
    display: block;
    width: fit-content;
    margin: 0 0 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8e6b79;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
}

.customer-chat-participant-label:hover,
.customer-chat-participant-label:focus-visible {
    outline: none;
    color: var(--primary);
}

.customer-chat-send:disabled {
    cursor: not-allowed;
    opacity: 0.56;
    box-shadow: none;
}

.customer-chat-page[data-chat-banned="true"] .customer-chat-input-shell {
    background: rgba(245, 241, 244, 0.98);
}

.customer-chat-page[data-chat-banned="true"] .mobile-input {
    color: #8a7b82;
}

.customer-chat-page[data-chat-banned="true"] .customer-chat-stage,
.customer-chat-page[data-chat-banned="true"] .customer-chat-stage-body,
.customer-chat-page[data-chat-banned="true"] .customer-chat-log {
    filter: none;
    backdrop-filter: none;
}

.customer-chat-ban-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(112px, 17dvh, 168px) 24px calc(var(--chat-composer-bottom-padding) + 112px);
    pointer-events: none;
    isolation: isolate;
}

.customer-chat-ban-overlay[hidden] {
    display: none !important;
}

.customer-chat-ban-overlay-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: transparent;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: none;
}

.customer-chat-ban-overlay-card {
    position: relative;
    z-index: 2;
    width: min(100%, 320px);
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(222, 191, 204, 0.92);
    background: #fffdfd;
    box-shadow: 0 24px 44px rgba(82, 47, 62, 0.18);
    filter: none;
    backdrop-filter: none;
    opacity: 1;
    text-align: center;
}

.customer-chat-ban-overlay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: rgba(202, 92, 135, 0.12);
    color: #b24f75;
}

.customer-chat-ban-overlay-icon svg {
    display: block;
    width: 28px;
    height: 28px;
}

.customer-chat-ban-overlay-card strong {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.customer-chat-ban-overlay-card p {
    margin: 0;
    color: #7e6270;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.chat-participant-sheet {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
}

.chat-participant-sheet[hidden] {
    display: none !important;
}

.chat-participant-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 24, 28, 0.38);
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: none;
}

.chat-participant-sheet__panel {
    position: relative;
    width: min(100%, 420px);
    max-height: min(78vh, 720px);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 250, 0.98));
    box-shadow: 0 28px 60px rgba(127, 42, 74, 0.2);
    overflow: hidden;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.chat-participant-sheet.is-visible .chat-participant-sheet__panel {
    transform: translateY(0);
    opacity: 1;
}

.chat-participant-sheet__content {
    display: grid;
    gap: 16px;
    padding: 22px 18px 18px;
    max-height: inherit;
    overflow-y: auto;
}

.chat-participant-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.chat-participant-sheet__header strong {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 800;
}

.chat-participant-sheet__close,
.chat-participant-sheet__back {
    border: 0;
    background: transparent;
    color: #8e6b79;
    font-size: 13px;
    font-weight: 700;
}

.chat-participant-sheet__identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-participant-sheet__badge,
.chat-participant-sheet__profile-initial {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 93, 136, 0.12);
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
}

.chat-participant-sheet__identity strong,
.chat-participant-sheet__profile-card strong {
    display: block;
    margin: 0;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 800;
}

.chat-participant-sheet__identity small,
.chat-participant-sheet__profile-card small,
.chat-participant-sheet__helper,
.chat-participant-sheet__tip,
.chat-participant-sheet__state {
    color: #8e6b79;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
}

.chat-participant-sheet__stack,
.chat-participant-sheet__form {
    display: grid;
    gap: 10px;
}

.chat-participant-sheet__action,
.chat-participant-sheet__submit {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(212, 93, 136, 0.14);
    background: #fff;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.chat-participant-sheet__submit {
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #d45d88 0%, #ff9ea6 100%);
    color: #fff;
}

.chat-participant-sheet__action.is-danger,
.chat-participant-sheet__submit.is-danger {
    border-color: rgba(201, 83, 83, 0.18);
    color: #b33939;
}

.chat-participant-sheet__submit.is-danger {
    background: linear-gradient(135deg, #ef5d6b 0%, #d9485b 100%);
    color: #fff;
}

.chat-participant-sheet__profile-card {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(212, 93, 136, 0.06);
}

.chat-participant-sheet__meta {
    display: grid;
    gap: 10px;
    margin: 0;
}

.chat-participant-sheet__meta div {
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(240, 217, 226, 0.95);
}

.chat-participant-sheet__meta dt {
    margin-bottom: 4px;
    color: #8e6b79;
    font-size: 12px;
    font-weight: 700;
}

.chat-participant-sheet__meta dd {
    margin: 0;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
}

.chat-participant-sheet__field,
.chat-participant-sheet__duration-field {
    display: grid;
    gap: 6px;
}

.chat-participant-sheet__field span,
.chat-participant-sheet__duration-field span {
    color: #8e6b79;
    font-size: 12px;
    font-weight: 700;
}

.chat-participant-sheet__field textarea,
.chat-participant-sheet__duration-field input {
    width: 100%;
    border: 1px solid rgba(240, 217, 226, 0.95);
    border-radius: 16px;
    background: #fff;
    color: var(--text-primary);
    font-size: 14px;
    padding: 12px 14px;
}

.chat-participant-sheet__field textarea {
    min-height: 132px;
    resize: vertical;
}

.chat-participant-sheet__duration-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 480px) {
    .chat-participant-sheet {
        padding: 10px;
    }

    .chat-participant-sheet__panel {
        width: 100%;
        border-radius: 24px;
    }

    .chat-participant-sheet__content {
        padding: 20px 14px 14px;
    }

    .chat-participant-sheet__duration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

body.mobile-shell .mobile-page {
    background: radial-gradient(circle at top right, rgba(255, 175, 193, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdfd 0%, #fff9fb 56%, #fff7fa 100%);
}

body.mobile-shell .mobile-form-card,
body.mobile-shell .mobile-item-card,
body.mobile-shell .mobile-link-item,
body.mobile-shell .mobile-grid,
body.mobile-shell .mobile-tabs {
    border-color: var(--customer-brand-section-card-border);
}

body.mobile-shell .mobile-form-card,
body.mobile-shell .mobile-item-card,
body.mobile-shell .mobile-link-item {
    background-color: var(--customer-brand-section-card-fill);
    background-image: var(--customer-brand-section-card-background);
    box-shadow: 0 16px 32px rgba(216, 168, 185, 0.11),
    0 2px 6px rgba(31, 42, 58, 0.03);
}

body.mobile-shell .mobile-form-card {
    padding: 18px;
}

body.mobile-shell .mobile-grid-card {
    background-color: var(--customer-brand-section-card-fill);
    background-image: var(--customer-brand-section-card-background);
    color: var(--text-primary);
}

body.mobile-shell .mobile-link-item {
    position: relative;
    display: block;
    overflow: hidden;
}

body.mobile-shell .mobile-link-item::after {
    content: "›";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

body.mobile-shell a,
body.mobile-shell button,
body.mobile-shell summary,
body.mobile-shell input,
body.mobile-shell select,
body.mobile-shell textarea,
body.mobile-shell label,
body.mobile-shell [role="button"] {
    -webkit-tap-highlight-color: transparent;
}

.customer-auth-shell {
    min-height: 100vh;
    min-height: 100dvh;
}

.customer-auth-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(24px + env(safe-area-inset-top, 0px)) 14px calc(24px + env(safe-area-inset-bottom, 0px));
}

.customer-splash-page {
    --customer-splash-progress-duration: 1000ms;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(28px + env(safe-area-inset-top, 0px)) 20px calc(32px + env(safe-area-inset-bottom, 0px));
}

.customer-splash-card {
    position: relative;
    width: 100%;
    padding: 32px 26px 26px;
    border-radius: 34px;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #d45d88 0%, #ff9ea6 100%);
    color: #ffffff;
    box-shadow: 0 24px 48px rgba(212, 93, 136, 0.24);
}

.customer-splash-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -28% auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(8px);
}

.customer-splash-mark-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-splash-mark {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: customerSplashFloat 2.2s ease-in-out infinite;
    filter: drop-shadow(0 16px 22px rgba(127, 42, 74, 0.18));
}

.customer-splash-mark img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 22px;
}

.customer-splash-copy span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.customer-splash-copy h1 {
    margin: 6px 0 0;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1.2px;
}

.customer-splash-message {
    position: relative;
    z-index: 1;
    margin: 28px 0 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
}

.customer-splash-progress {
    position: relative;
    z-index: 1;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.customer-splash-progress span {
    display: block;
    width: 38%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), #ffffff);
    animation: customerSplashLoad var(--customer-splash-progress-duration) ease-in-out infinite;
}

.customer-splash-hint {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
}

.customer-splash-skip {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

@keyframes customerSplashFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes customerSplashLoad {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(340%);
    }
}

.customer-auth-hero {
    margin-bottom: 18px;
    padding: 24px 20px;
    border-radius: 28px;
    background: linear-gradient(135deg, #d45d88 0%, #ffa3a5 100%);
    color: #ffffff;
    box-shadow: 0 22px 40px rgba(212, 93, 136, 0.22);
}

.customer-auth-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(127, 42, 74, 0.16);
}

.customer-auth-mark img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.customer-auth-brand {
    margin-top: 18px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.customer-auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 700;
}

.customer-auth-hero h1 {
    margin: 14px 0 10px;
    font-size: 28px;
    line-height: 1.22;
    letter-spacing: -0.7px;
}

.customer-auth-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.customer-auth-links {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.customer-auth-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
}

.customer-auth-links.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-auth-links.compact a:last-child {
    grid-column: 1 / -1;
}

.customer-auth-policy-links,
.customer-auth-policy-note {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.customer-auth-policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-top: 14px;
}

.customer-auth-policy-links a,
.customer-auth-policy-note a,
.customer-legal-link-row a,
.customer-legal-page a {
    color: var(--primary-strong);
    font-weight: 800;
    text-decoration: none;
}

.customer-auth-policy-note {
    margin-top: 4px;
}

.customer-auth-social-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 14px;
    color: #7d5a67;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.customer-auth-social-divider::before,
.customer-auth-social-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(94, 47, 65, 0.14);
}

.customer-kakao-login-button {
    display: block;
    width: 100%;
    text-decoration: none;
}

.customer-kakao-login-button:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.48);
    outline-offset: 2px;
    border-radius: 12px;
}

.customer-kakao-login-image {
    display: block;
    width: 100%;
    height: auto;
}

.customer-social-invite-page {
    position: relative;
}

.customer-social-invite-modal {
    position: fixed;
    inset: 0;
    z-index: 1700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(22px + env(safe-area-inset-top, 0px)) 16px calc(22px + env(safe-area-inset-bottom, 0px));
}

.customer-social-invite-modal[hidden] {
    display: none !important;
}

body.mobile-shell.customer-social-invite-open {
    overflow: hidden;
}

.customer-social-invite-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(6, 5, 6, 0.68);
    cursor: pointer;
}

.customer-social-invite-sheet {
    position: relative;
    width: min(100%, 402px);
    max-height: calc(100vh - 44px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--card-background);
    padding: 24px 22px 22px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
}

.customer-social-invite-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.customer-social-invite-close svg {
    width: 18px;
    height: 18px;
}

.customer-social-invite-sheet h2 {
    margin: 0 42px 8px 0;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.customer-social-invite-sheet p {
    margin: 0 0 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.customer-social-invite-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 10px;
}

.customer-invite-share-card {
    display: grid;
    gap: 14px;
}

.customer-invite-code-kv {
    justify-content: space-between;
}

.customer-invite-code-copy-row {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.customer-invite-code-copy-row strong {
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: right;
}

.customer-icon-button.customer-invite-code-copy-button {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #8b5c6d;
}

.customer-icon-button.customer-invite-code-copy-button svg {
    width: 20px;
    height: 20px;
}

.customer-invite-url-input {
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-invite-share-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
}

.customer-home-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    padding: 6px 4px 0;
}

.customer-home-brand {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.3px;
    color: var(--text-primary);
}

.customer-home-brand span {
    color: var(--primary);
}

.customer-home-header p {
    margin: 6px 0 0;
    color: #8e6b79;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.customer-home-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
    flex: 0 0 auto;
}

.customer-home-intro {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.customer-summary-card {
    padding: 20px;
    border-radius: 26px;
    background: linear-gradient(135deg, #d45d88 0%, #ffa3a5 100%);
    color: #ffffff;
    box-shadow: 0 20px 38px rgba(212, 93, 136, 0.22);
}

.customer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 700;
}

.customer-summary-card h2 {
    margin: 12px 0 8px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.7px;
}

.customer-summary-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.customer-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.customer-summary-metric {
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
}

.customer-summary-metric strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
}

.customer-summary-metric span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.customer-shortcut-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.customer-shortcut {
    display: block;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: var(--shadow-soft);
}

.customer-shortcut strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    letter-spacing: -0.2px;
}

.customer-shortcut span {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.5;
}

.customer-grid-link {
    color: inherit;
    text-decoration: none;
}

.customer-grid-link.is-static {
    cursor: default;
}

.customer-grid-link:hover .mobile-grid-card,
.customer-grid-link:focus-visible .mobile-grid-card {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px var(--customer-brand-accent-shadow);
}

.customer-grid-link.is-static:hover .mobile-grid-card,
.customer-grid-link.is-static:focus-visible .mobile-grid-card {
    transform: none;
    box-shadow: 0 1px 1px rgba(31, 42, 58, 0.02);
}

.customer-section-stack,
.customer-helper-grid,
.customer-notice-list,
.customer-faq-list,
.customer-inline-actions,
.customer-form-actions {
    display: grid;
    gap: 12px;
}

.customer-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 18px 0 12px;
}

.customer-list-header h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.35px;
}

.customer-list-header a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.customer-request-card,
.customer-notice-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.customer-notice-card {
    border-color: rgba(212, 93, 136, 0.18);
    background: rgba(255, 255, 255, 0.97);
}

.customer-tenant-info-card {
    padding: 18px;
    cursor: pointer;
}

.customer-tenant-info-panel {
    padding: 0 14px 14px;
}

.customer-tenant-info-panel .customer-list-header {
    margin: 16px 0 12px;
}

.customer-tenant-info-list {
    padding-inline: 2px;
}

.customer-tenant-search-empty {
    margin-top: 0;
}

.customer-tenant-info-card[hidden],
.customer-tenant-search-empty[hidden] {
    display: none !important;
}

.customer-tenant-search-shell {
    padding: 0 14px;
    margin: 8px 0 12px;
}

.customer-tenant-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    border: 1px solid rgba(240, 217, 226, 0.92);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(216, 168, 185, 0.08);
    padding: 0 16px 0 18px;
}

.customer-tenant-search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.customer-tenant-search-input.mobile-input {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    padding-right: 40px;
    color: #24344f;
    font-size: 15px;
}

.customer-tenant-search-input.mobile-input::placeholder {
    color: var(--text-muted);
}

.customer-tenant-search-input.mobile-input:focus {
    border: 0;
    box-shadow: none;
}

.customer-tenant-search-button {
    position: absolute;
    right: 14px;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary);
    transform: translateY(-50%);
    cursor: pointer;
}

.customer-tenant-search-button svg {
    width: 21px;
    height: 21px;
}

.customer-notice-card-layout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.customer-notice-card-layout.no-thumb {
    grid-template-columns: minmax(0, 1fr);
}

.customer-notice-card-copy {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.customer-notice-thumb {
    width: 82px;
    height: 82px;
}

.customer-request-card .mobile-item-header,
.customer-notice-card .mobile-item-header {
    align-items: flex-start;
}

.customer-notice-card .mobile-item-header {
    flex-wrap: nowrap;
    min-width: 0;
}

.customer-request-meta,
.customer-notice-meta {
    display: grid;
    gap: 4px;
    color: var(--text-secondary);
    font-size: 12px;
}

.customer-notice-card .customer-notice-meta {
    flex: 0 0 auto;
    min-width: max-content;
    display: block;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

.customer-notice-card .mobile-item-subtitle {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-notice-detail-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.4;
}

.customer-notice-detail-meta-label {
    color: #5f4552;
    font-weight: 800;
}

.customer-notice-detail-meta time {
    white-space: nowrap;
}

.customer-request-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.customer-tenant-info-card-layout {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.customer-tenant-info-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-tenant-info-card-icon {
    width: 96px;
    height: 96px;
    border-radius: 14px;
    flex: 0 0 96px;
}

.customer-tenant-info-card-copy {
    min-width: 0;
    display: grid;
    gap: 8px;
    align-content: center;
}

.customer-tenant-info-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.customer-tenant-info-card-title {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-tenant-info-card-description {
    margin: 0;
    min-height: 2.9em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.customer-tenant-info-card-meta {
    display: flex;
    align-items: center;
    gap: 8px 12px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.customer-tenant-info-card-meta-item {
    min-width: 0;
    display: inline-flex;
    align-items: center;
}

.customer-tenant-info-card-meta-item:last-child {
    color: var(--text-primary);
}

.customer-tenant-info-card-phone {
    position: relative;
    z-index: 1;
}

.customer-phone-icon-link,
.customer-tenant-info-card-phone {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(202, 92, 135, 0.24);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(202, 92, 135, 0.1);
    color: var(--primary-strong);
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(113, 40, 68, 0.08);
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.customer-phone-icon {
    width: 17px;
    height: 17px;
    display: block;
}

.customer-tenant-info-card-phone:link,
.customer-tenant-info-card-phone:visited,
.customer-tenant-info-card-phone:active,
.customer-phone-icon-link:link,
.customer-phone-icon-link:visited,
.customer-phone-icon-link:active {
    color: var(--primary-strong);
    text-decoration: none;
}

.customer-tenant-info-card-phone:hover,
.customer-tenant-info-card-phone:focus-visible,
.customer-phone-icon-link:hover,
.customer-phone-icon-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(202, 92, 135, 0.42);
    background: rgba(202, 92, 135, 0.16);
    color: var(--primary);
    text-decoration: none;
}

.customer-tenant-info-card:focus-visible {
    outline: 2px solid rgba(202, 92, 135, 0.28);
    outline-offset: 2px;
}

.customer-address-search-row {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.customer-address-search-postcode {
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.customer-address-search-row .mobile-secondary-button {
    min-width: 0;
    padding-inline: 18px;
    white-space: nowrap;
}

.customer-request-search-card {
    margin-bottom: 14px;
}

.customer-current-progress-card {
    display: grid;
    gap: 16px;
    margin-bottom: 14px;
}

.customer-current-progress-card,
#current-progress-detail {
    display: none;
}

.customer-current-progress-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.customer-current-progress-header p {
    margin: 6px 0 0;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.customer-current-progress-body,
.customer-current-progress-empty {
    display: grid;
    gap: 14px;
}

.customer-current-progress-summary {
    display: grid;
    gap: 12px;
}

.customer-current-progress-empty strong,
.customer-current-progress-copy strong {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.45;
}

.customer-current-progress-empty p,
.customer-current-progress-copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}

.customer-current-progress-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.customer-progress-step {
    padding: 10px 8px;
    border-radius: 18px;
    border: 1px solid rgba(236, 217, 225, 0.92);
    background: linear-gradient(180deg, #fffdfd 0%, #fff7fa 100%);
    text-align: center;
}

.customer-progress-step span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    border-radius: 999px;
    background: rgba(234, 214, 222, 0.85);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 800;
}

.customer-progress-step strong {
    display: block;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.customer-progress-step.reached {
    border-color: rgba(217, 108, 147, 0.22);
    background: linear-gradient(180deg, #fff6fa 0%, #fff0f5 100%);
}

.customer-progress-step.reached span {
    background: linear-gradient(135deg, #d96c93 0%, #ca5c87 100%);
    color: #ffffff;
    box-shadow: 0 8px 14px rgba(202, 92, 135, 0.18);
}

.customer-progress-step.reached strong {
    color: var(--text-primary);
}

.customer-current-progress-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.customer-current-progress-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(240, 217, 226, 0.82);
}

.customer-current-progress-item.full {
    grid-column: 1 / -1;
}

.customer-current-progress-item.customer-current-progress-bank {
    padding: 11px 12px;
    border-radius: 16px;
}

.customer-current-progress-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}

.customer-current-progress-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.customer-current-progress-bank > span {
    margin-bottom: 4px;
}

.customer-bank-account-copy-row {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
}

.customer-bank-account-name,
.customer-current-progress-bank .customer-bank-account-name {
    flex: 0 0 auto;
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    white-space: nowrap;
}

.customer-current-progress-bank-line,
.customer-reservation-bank-number {
    min-width: 0;
    flex: 0 1 auto;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.customer-bank-account-copy-button {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 217, 226, 0.95);
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-strong);
    box-shadow: 0 8px 18px rgba(216, 168, 185, 0.1);
}

.customer-bank-account-copy-button svg {
    width: 17px;
    height: 17px;
}

.customer-bank-account-copy-button.is-copied {
    color: #1f8f5f;
    border-color: rgba(31, 143, 95, 0.28);
    background: rgba(31, 143, 95, 0.08);
}

.customer-current-progress-bank-note,
.customer-reservation-bank-box span {
    display: block;
    margin-top: 3px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.customer-request-search-form {
    display: grid;
    gap: 14px;
}

.customer-request-search-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.customer-request-search-actions > :only-child {
    grid-column: 1 / -1;
}

.customer-request-actions.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-request-actions > :only-child {
    grid-column: 1 / -1;
}

.customer-request-action-link,
.customer-request-cancel-form .mobile-secondary-button {
    min-height: 44px;
}

.customer-request-cancel-form {
    gap: 0;
}

.customer-request-card-clickable {
    cursor: pointer;
}

.customer-request-history-list {
    gap: 12px;
}

.customer-request-history-list .customer-request-card {
    position: relative;
    padding: 16px 15px 15px 19px;
    overflow: hidden;
    border-radius: 14px;
    border-color: rgba(228, 199, 211, 0.9);
    background: #ffffff;
    background-image: linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
    box-shadow: 0 10px 24px rgba(99, 72, 83, 0.06);
}

.customer-request-history-list .customer-request-card::before {
    content: "";
    position: absolute;
    inset: 12px auto 12px 0;
    width: 3px;
    border-radius: 999px;
    background: var(--primary);
    opacity: 0.72;
}

.customer-request-history-list .customer-request-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(202, 92, 135, 0.18), transparent 72%);
}

.customer-request-history-list .customer-request-card .mobile-item-header {
    gap: 10px;
    align-items: flex-start;
}

.customer-request-history-list .customer-request-card .mobile-item-title {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
}

.customer-request-history-list .customer-request-card .mobile-item-subtitle {
    margin-top: 5px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.customer-request-history-list .customer-request-card .mobile-chip {
    min-width: fit-content;
    border: 1px solid rgba(228, 199, 211, 0.72);
    box-shadow: 0 6px 14px rgba(99, 72, 83, 0.05);
}

.customer-request-history-list .customer-request-meta {
    display: grid;
    gap: 0;
    margin-top: 13px;
    overflow: hidden;
    border: 1px solid rgba(236, 213, 223, 0.95);
    border-radius: 12px;
    background: #fffdfd;
}

.customer-request-meta-row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px;
    border-top: 1px solid rgba(239, 222, 229, 0.92);
}

.customer-request-meta-row:first-child {
    border-top: 0;
}

.customer-request-history-list .customer-request-meta span {
    display: block;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.customer-request-history-list .customer-request-meta-label {
    color: #9a7b89;
    font-size: 11px;
    font-weight: 900;
}

.customer-request-history-list .customer-request-meta-value {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 800;
}

.customer-request-history-list .customer-request-meta-note {
    margin-top: 0;
}

.customer-request-history-list .customer-request-meta-note .customer-request-meta-value {
    color: #5d4652;
    font-weight: 900;
}

.customer-request-card-clickable:hover,
.customer-request-card-clickable:focus-visible {
    border-color: rgba(202, 92, 135, 0.28);
    box-shadow: 0 14px 28px rgba(216, 168, 185, 0.14);
}

.customer-request-card-clickable:focus-visible {
    outline: 2px solid rgba(202, 92, 135, 0.28);
    outline-offset: 2px;
}

.customer-history-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 1220;
    display: grid;
    align-items: end;
    pointer-events: none;
}

.customer-history-detail-modal[aria-hidden="true"] {
    visibility: hidden;
}

.customer-history-detail-modal[aria-hidden="false"] {
    pointer-events: auto;
}

.customer-history-detail-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(49, 31, 41, 0.38);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.customer-history-detail-modal[aria-hidden="false"] .customer-history-detail-backdrop {
    opacity: 1;
}

.customer-history-detail-sheet {
    position: relative;
    z-index: 1;
    width: min(100%, 640px);
    max-height: min(86vh, 760px);
    margin: 0 auto;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    overflow-y: auto;
    border-radius: 24px 24px 0 0;
    background: #fffdfd;
    box-shadow: 0 -18px 48px rgba(54, 34, 44, 0.18);
    transform: translateY(14px);
    transition: transform 0.18s ease;
}

.customer-history-detail-modal[aria-hidden="false"] .customer-history-detail-sheet {
    transform: translateY(0);
}

.customer-history-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.customer-history-detail-header h2 {
    margin: 8px 0 0;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.customer-request-type-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    align-items: end;
    pointer-events: none;
}

.customer-request-type-modal[aria-hidden="true"] {
    visibility: hidden;
}

.customer-request-type-modal[aria-hidden="false"] {
    pointer-events: auto;
}

.customer-request-type-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(49, 31, 41, 0.36);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.customer-request-type-modal[aria-hidden="false"] .customer-request-type-backdrop {
    opacity: 1;
}

.customer-request-type-sheet {
    position: relative;
    display: grid;
    gap: 18px;
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 24px 24px 0 0;
    background: var(--card-background, #ffffff);
    box-shadow: 0 -18px 40px rgba(87, 55, 71, 0.18);
    transform: translateY(100%);
    transition: transform 0.18s ease;
}

.customer-request-type-modal[aria-hidden="false"] .customer-request-type-sheet {
    transform: translateY(0);
}

.customer-request-type-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.customer-request-type-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 900;
}

.customer-request-type-header p {
    margin: 6px 0 0;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 700;
}

.customer-request-type-options {
    display: grid;
    gap: 10px;
}

.customer-postcode-layer {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 18px calc(24px + env(safe-area-inset-bottom, 0px));
}

.customer-postcode-layer.is-open {
    display: flex;
}

.customer-postcode-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(34, 22, 30, 0.42);
}

.customer-postcode-sheet {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    padding: 18px;
    width: min(100%, 420px);
    max-height: min(78vh, 620px);
    border-radius: 28px;
    background: linear-gradient(180deg, #fffafc 0%, #ffffff 100%);
    border: 1px solid rgba(240, 217, 226, 0.95);
    box-shadow: 0 24px 48px rgba(72, 34, 51, 0.22);
}

.customer-postcode-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.customer-postcode-head strong {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.customer-postcode-head p {
    margin: 6px 0 0;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-postcode-frame {
    min-height: 420px;
    height: min(56vh, 460px);
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(240, 217, 226, 0.9);
    background: #ffffff;
}

@media (max-width: 420px) {
    .customer-address-search-row {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .customer-postcode-layer {
        padding: 18px 14px calc(18px + env(safe-area-inset-bottom, 0px));
    }

    .customer-postcode-sheet {
        width: 100%;
        border-radius: 24px;
    }

    .customer-postcode-frame {
        min-height: 360px;
    }
}

body.customer-modal-open {
    overflow: hidden;
}

.customer-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 1700;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.customer-confirm-modal[hidden] {
    display: none;
}

.customer-confirm-modal[aria-hidden="false"] {
    pointer-events: auto;
    opacity: 1;
}

.customer-confirm-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(31, 20, 27, 0.42);
    backdrop-filter: blur(8px);
}

.customer-confirm-modal__sheet {
    position: relative;
    width: min(100%, 390px);
    padding: 22px 18px 16px;
    border: 1px solid rgba(241, 214, 225, 0.96);
    border-radius: 22px;
    background: rgba(255, 252, 253, 0.98);
    box-shadow: 0 20px 44px rgba(108, 64, 82, 0.22);
    transform: translateY(12px);
    transition: transform 0.18s ease;
}

.customer-confirm-modal[aria-hidden="false"] .customer-confirm-modal__sheet {
    transform: translateY(0);
}

.customer-confirm-modal__copy {
    display: grid;
    gap: 8px;
    text-align: center;
}

.customer-confirm-modal__copy strong {
    color: #372630;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.customer-confirm-modal__copy p {
    margin: 0;
    color: #8f6a79;
    font-size: 13px;
    line-height: 1.55;
}

.customer-confirm-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.customer-confirm-modal__cancel,
.customer-confirm-modal__confirm {
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 900;
}

.customer-confirm-modal__cancel {
    background: #f8edf2;
    color: #705766;
}

.customer-confirm-modal__confirm {
    background: #d45486;
    color: #fff;
    box-shadow: 0 10px 20px rgba(212, 84, 134, 0.24);
}

body.customer-chat-image-viewer-open {
    overflow: hidden;
}

.customer-faq-card h3,
.customer-faq-card summary,
.customer-notice-card .mobile-item-title {
    margin: 0;
    font-size: 14px;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-faq-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.customer-faq-card summary::-webkit-details-marker {
    display: none;
}

.customer-faq-card summary::after {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.62;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.customer-faq-card[open] summary::after {
    transform: rotate(225deg);
}

.customer-faq-card p {
    margin: 8px 0 0;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.6;
}

.customer-readonly {
    background: var(--neutral-background);
    color: var(--neutral-text);
}

.customer-notice-body {
    white-space: pre-wrap;
    line-height: 1.75;
    color: var(--text-primary);
}

.customer-verification-block {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(225, 197, 210, 0.92);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
}

.customer-verification-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.customer-verification-row,
.customer-verification-code-row {
    display: grid;
    gap: 10px;
}

.customer-verification-button {
    min-height: 48px;
}

.customer-verification-message {
    min-height: 18px;
}

.customer-resident-registration-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(96px, 0.62fr);
    align-items: center;
    gap: 8px;
}

.customer-resident-registration-separator {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.customer-resident-registration-back {
    position: relative;
    min-width: 0;
}

.customer-resident-registration-back .mobile-input {
    padding-right: 66px;
}

.customer-resident-registration-mask {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    pointer-events: none;
}

.customer-summary-card {
    position: relative;
    overflow: hidden;
}

.customer-summary-card::before,
.customer-summary-card::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.customer-summary-card::before {
    width: 180px;
    height: 180px;
    top: -88px;
    right: -72px;
}

.customer-summary-card::after {
    width: 120px;
    height: 120px;
    bottom: -62px;
    left: -44px;
}

.customer-summary-card > * {
    position: relative;
    z-index: 1;
}

.customer-summary-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.customer-summary-dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.customer-summary-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
}

.customer-summary-dots span.active {
    width: 28px;
    background: #ffffff;
}

.customer-shortcut {
    background: linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
    box-shadow: 0 14px 24px rgba(216, 168, 185, 0.1),
    0 2px 4px rgba(31, 42, 58, 0.03);
}

.customer-shortcut-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    margin-bottom: 12px;
    padding: 8px 10px;
    border-radius: 14px;
    background: #ffeff5;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.customer-shortcut-icon.alt {
    background: #fff4f0;
    color: #cf6f6c;
}

.customer-list-header p {
    margin: 6px 0 0;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.customer-page-hero,
.customer-profile-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    padding: 22px 20px;
    border-radius: 26px;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #fff5f8 0%, #ffe9ef 100%);
    border: 1px solid rgba(240, 217, 226, 0.95);
    box-shadow: 0 16px 30px rgba(216, 168, 185, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.customer-page-hero h2,
.customer-profile-hero h2 {
    margin: 12px 0 8px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.7px;
    color: var(--text-primary);
}

.customer-page-hero p,
.customer-profile-hero p {
    margin: 0;
    color: #795f6c;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.customer-stage-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.customer-stage-item {
    padding: 12px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: #9a7b89;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

.customer-stage-item.active {
    background: linear-gradient(135deg, #d45d88 0%, #ee7f98 100%);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(212, 93, 136, 0.18);
}

.customer-soft-grid,
.customer-support-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.customer-pwa-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.customer-soft-card,
.customer-inline-note {
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(240, 217, 226, 0.9);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-primary);
}

.customer-soft-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 800;
}

.customer-soft-card p,
.customer-inline-note {
    margin: 0;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.customer-detail-card + .customer-detail-card {
    margin-top: 14px;
}

.customer-card-heading {
    margin-bottom: 18px;
}

.customer-card-heading p {
  margin: -2px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.mobile-description {
  margin: 0;
  font-size: 10px;
  color: #43333b;
}

.customer-pwa-card {
    padding: 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(240, 217, 226, 0.95);
    background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
    box-shadow: 0 16px 28px rgba(216, 168, 185, 0.12),
    0 2px 6px rgba(31, 42, 58, 0.03);
}

.customer-pwa-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.customer-pwa-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
}

.customer-pwa-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.customer-pwa-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffeff5;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    flex: 0 0 auto;
}

.customer-pwa-icon.alt {
    background: #fff4ee;
    color: #cf6f6c;
}

.customer-inline-button {
    min-height: 48px;
}

.customer-inline-button[disabled] {
    opacity: 0.58;
    cursor: default;
    box-shadow: none;
    transform: none;
}

.customer-support-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(240, 217, 226, 0.95);
    background: linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 24px rgba(216, 168, 185, 0.1),
    0 2px 4px rgba(31, 42, 58, 0.03);
}

.customer-support-tile strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 800;
}

.customer-support-tile span {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-support-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffeff5;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    flex: 0 0 auto;
}

.customer-support-icon.alt {
    background: #fff4ee;
    color: #cf6f6c;
}

.customer-profile-hero {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-profile-avatar {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d45d88 0%, #ffb1a8 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(212, 93, 136, 0.18);
    flex: 0 0 auto;
}

.customer-profile-meta {
    min-width: 0;
}

.customer-profile-meta h2 {
    margin-top: 10px;
}

.customer-profile-divider {
    display: inline-block;
    margin: 0 6px;
}

.customer-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.customer-info-tile {
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff7fa 0%, #fffdfd 100%);
    border: 1px solid rgba(240, 217, 226, 0.84);
}

.customer-info-tile span {
    display: block;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}

.customer-info-tile strong {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.customer-setting-link {
    padding-right: 40px;
}

.customer-setting-link-list-spaced {
    margin-top: 14px;
}

.customer-setting-link span {
    display: block;
}

.customer-setting-link small {
    display: block;
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-appbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 6px 22px;
}

.customer-appbar-leading {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.customer-appbar-home {
    padding-top: 4px;
}

.customer-home-page {
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
}

.customer-home-page .customer-appbar-home {
    position: fixed;
    top: 0;
    left: 50%;
    width: min(430px, 100vw);
    box-sizing: border-box;
    transform: translateX(-50%);
    z-index: 70;
    margin: 0;
    padding: calc(12px + env(safe-area-inset-top, 0px)) 20px 10px;
    background: var(--page-background);
    box-shadow: 0 12px 24px rgba(216, 168, 185, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

html.customer-male-theme .customer-home-page .customer-appbar-home {
    box-shadow: 0 12px 24px rgba(10, 10, 10, 0.34);
}

.customer-male-home-banner {
    min-height: 178px;
    margin: 12px -14px 18px;
    padding: 30px 28px;
    border-top: 1px solid rgba(245, 197, 66, 0.18);
    border-bottom: 1px solid rgba(245, 197, 66, 0.22);
    background:
        linear-gradient(135deg, rgba(245, 197, 66, 0.22) 0%, rgba(200, 155, 44, 0.2) 34%, rgba(17, 17, 15, 0.7) 100%),
        #8A6F25;
    box-shadow: 0 18px 34px rgba(10, 10, 10, 0.32);
}

.customer-male-home-banner-icon {
    display: inline-block;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 28px;
    margin-right: 8px;
    font-size: 30px;
    line-height: 1;
    vertical-align: -5px;
}

.customer-male-home-banner-copy {
    min-width: 0;
}

.customer-male-home-banner-copy p {
    margin: 0 0 16px;
    color: rgba(255, 247, 224, 0.72);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0;
}

.customer-male-home-banner-copy h1 {
    margin: 0 0 12px;
    color: #FFF7E0;
    font-size: 27px;
    font-weight: 950;
    line-height: 1.24;
    letter-spacing: 0;
    word-break: keep-all;
}

.customer-male-home-banner-copy strong {
    display: block;
    color: rgba(255, 247, 224, 0.92);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.38;
    letter-spacing: 0;
    word-break: keep-all;
}

.customer-male-home-card-area {
    display: grid;
    gap: 14px;
    padding: 0 6px;
}

.customer-male-home-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    min-height: 118px;
    padding: 22px 22px 22px 20px;
    border: 1px solid rgba(245, 197, 66, 0.24);
    border-radius: 24px;
    background: rgba(17, 17, 15, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 32px rgba(10, 10, 10, 0.38);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.customer-male-home-card:focus-within,
.customer-male-home-card:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 197, 66, 0.44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 22px 36px rgba(10, 10, 10, 0.44);
}

.customer-male-home-card-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
}

.customer-male-home-card-copy {
    min-width: 0;
}

.customer-male-home-card-copy h2 {
    margin: 0 0 8px;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.customer-male-home-card-copy p {
    margin: 0;
    color: #AFA79B;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0;
}

.customer-male-home-card.is-message {
    border-color: rgba(245, 197, 66, 0.32);
    background: linear-gradient(135deg, rgba(17, 17, 15, 0.96), rgba(45, 40, 31, 0.94));
}

.customer-male-home-card.is-message .customer-male-home-card-copy h2 {
    color: #FFE08A;
}

.customer-male-home-card.is-push {
    border-color: rgba(183, 137, 255, 0.26);
}

.customer-male-home-card.is-push .customer-male-home-card-copy h2 {
    color: #B789FF;
}

.customer-male-home-card.is-ranking {
    border-color: rgba(255, 185, 82, 0.32);
}

.customer-male-home-card.is-ranking .customer-male-home-card-copy h2 {
    color: #FFB952;
}

.customer-appbar-tab {
    align-items: flex-start;
}

.customer-appbar-dual {
    align-items: flex-start;
}

.customer-appbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.customer-request-history-appbar {
    position: relative;
    align-items: flex-start;
    padding-right: 96px;
    min-height: 64px;
}

.customer-request-history-appbar > :first-child {
    min-width: 0;
    flex: 1 1 auto;
}

.customer-request-history-appbar .customer-appbar-actions {
    position: absolute;
    top: 12px;
    right: 6px;
    margin-left: 0;
    align-self: auto;
}

.customer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
}

.customer-brand-mark {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(212, 93, 136, 0.16);
}

.customer-brand-mark img,
.customer-icon-button svg,
.customer-bottom-nav a svg {
    width: 100%;
    height: 100%;
}

.customer-brand-mark img {
    display: block;
}

.customer-brand-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.customer-icon-button {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 217, 226, 0.95);
    background: #ffffff;
    color: var(--text-primary);
    box-shadow: 0 8px 18px rgba(216, 168, 185, 0.08);
    text-decoration: none;
}

.customer-icon-button.plain {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.customer-icon-button.secondary {
    color: #634853;
}

.customer-icon-button svg {
    width: 22px;
    height: 22px;
}

.customer-icon-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ff5c60;
    border: 2px solid #fff7fa;
}

.customer-page-title {
    margin: 0;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.7px;
    line-height: 1.2;
}

.customer-page-subtitle {
    margin: 8px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-home-hero {
    position: relative;
    margin-bottom: 0;
}

.customer-home-hero-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: 34px;
    box-shadow: 0 22px 40px rgba(212, 93, 136, 0.2);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.customer-home-hero-track::-webkit-scrollbar {
    display: none;
}

.customer-home-hero-slide {
    position: relative;
    --hero-image-position-y: 50%;
    flex: 0 0 100%;
    display: block;
    min-height: 220px;
    padding: 32px 26px 58px;
    overflow: hidden;
    scroll-snap-align: start;
    color: #ffffff;
}

.customer-home-hero-slide-link {
    text-decoration: none;
    color: #ffffff;
    touch-action: pan-x pan-y;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.customer-home-hero-slide-link:visited,
.customer-home-hero-slide-link:hover,
.customer-home-hero-slide-link:active {
    color: #ffffff;
}

.customer-home-hero-slide-link > * {
    pointer-events: none;
}

.customer-home-hero-slide-link .customer-home-hero-title {
    color: #ffffff;
}

.customer-home-hero-slide-link .customer-home-hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
}

.customer-home-hero-track.is-dragging {
    scroll-snap-type: none;
    scroll-behavior: auto !important;
    cursor: grabbing;
}

.customer-home-hero-slide-link:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: -6px;
}

.customer-home-hero-slide.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(9, 15, 27, 0.08) 0%, rgba(9, 15, 27, 0.16) 42%, rgba(9, 15, 27, 0.72) 100%);
    pointer-events: none;
}

.customer-home-hero-image,
.customer-home-hero-surface {
    position: absolute;
    inset: 0;
}

.customer-home-hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center var(--hero-image-position-y, 50%);
}

.customer-home-hero-surface {
    opacity: 1;
}

.customer-home-hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 0;
}

.customer-home-hero-line {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55em;
    font-size: 15px;
}

.customer-home-hero-line.is-title-line {
    font-size: 28px;
}

.customer-home-hero-line.is-subtitle-line {
    font-size: 15px;
}

.customer-home-hero-line + .customer-home-hero-line {
    margin-top: 14px;
}

.customer-home-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    font-size: 1em;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
}

.customer-home-hero-icon:not(.is-svg-icon) {
    max-width: 100%;
    padding: 4px 10px;
    font-size: 0.48em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

.customer-home-hero-icon.is-svg-icon {
    width: 1.08em;
    min-width: 1.08em;
    height: 1.08em;
    padding: 0;
}

.customer-home-hero-icon.is-svg-icon::before {
    content: "";
    width: 100%;
    height: 100%;
    background: currentColor;
    -webkit-mask: var(--slide-icon-mask) center / contain no-repeat;
    mask: var(--slide-icon-mask) center / contain no-repeat;
}

.customer-home-hero-middle-icon {
    margin-top: 14px;
    font-size: 28px;
}

.customer-home-hero-title {
    margin: 0;
    font-size: 1em;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: 0;
    text-align: center;
    min-width: 0;
}

.customer-home-hero-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1em;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    min-width: 0;
}

.customer-home-hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
}

.customer-home-hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    transition: width 0.18s ease, background-color 0.18s ease;
}

.customer-home-hero-dot.active {
    width: 56px;
    background: #ffffff;
}

.customer-home-panel {
    margin-top: 18px;
    border-radius: 34px;
    border: 1px solid rgba(240, 217, 226, 0.95);
    background: rgba(255, 255, 255, 0.94);
    overflow: hidden;
    box-shadow: 0 18px 32px rgba(216, 168, 185, 0.1);
}

.customer-accent-section {
    border-color: var(--customer-brand-section-border);
    /*background: linear-gradient(135deg, #d45d88, #ff98ae);*/
    background: var(--customer-brand-section-background);
    box-shadow: 0 18px 32px rgba(216, 168, 185, 0.1);
}

.customer-accent-section .customer-list-header h2,
.customer-accent-section .customer-list-header a {
    color: var(--customer-brand-section-heading);
}

.customer-accent-section .customer-list-header p {
    color: var(--customer-brand-section-subtext);
}

body.mobile-shell .customer-accent-section .mobile-item-card,
body.mobile-shell .customer-accent-section .customer-notice-card,
body.mobile-shell .customer-accent-section .mobile-grid-card {
    border-color: var(--customer-brand-section-card-border);
    background-color: var(--customer-brand-section-card-fill);
    background-image: var(--customer-brand-section-card-background);
    box-shadow: var(--customer-brand-section-card-shadow);
}

body.mobile-shell .customer-accent-section .mobile-grid-card {
    border-color: var(--customer-brand-section-card-border);
}

.customer-home-tab-strip {
    position: relative;
}

.customer-home-tab-strip::before,
.customer-home-tab-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 26px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.customer-home-tab-strip::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 26%, rgba(255, 255, 255, 0) 100%);
}

.customer-home-tab-strip::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.96) 26%, rgba(255, 255, 255, 0) 100%);
}

.customer-accent-section .customer-home-tab-strip::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 26%, rgba(255, 255, 255, 0) 100%);
}

.customer-accent-section .customer-home-tab-strip::after {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.96) 26%, rgba(255, 255, 255, 0) 100%);
}

.customer-home-tab-strip:not(.is-scroll-start)::before,
.customer-home-tab-strip:not(.is-scroll-end)::after {
    opacity: 1;
}

.customer-home-tabs {
    border: 0;
    border-radius: 0;
    gap: 18px;
    padding: 20px 18px 0;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 18px;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

@media (pointer: fine) {
    .customer-home-tabs {
        cursor: default;
    }

    .customer-home-tabs.is-mouse-dragging {
        cursor: default;
        scroll-snap-type: none;
    }

    .customer-home-tabs.is-mouse-dragging .mobile-tab {
        pointer-events: none;
    }
}

.customer-accent-section .customer-home-tabs {
    background: transparent;
}

.customer-accent-section .customer-home-tabs .mobile-tab {
    color: var(--customer-brand-section-tab);
}

.customer-accent-section .customer-home-tabs .mobile-tab.active {
    color: var(--customer-brand-section-tab-active);
}

.customer-accent-section .customer-home-tabs .mobile-tab.active::after {
    background: var(--customer-brand-section-tab-active);
}

.customer-home-tabs::after {
    content: "";
    flex: 0 0 6px;
}

.customer-home-tabs .mobile-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: inline-flex;
    align-items: center;
    -webkit-user-drag: none;
}

.customer-home-tab-text {
    line-height: 1.25;
}

.customer-home-grid {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    margin-bottom: 0;
    padding-bottom: 24px;
}

.customer-home-grid .mobile-grid-card {
    border-color: rgba(212, 93, 136, 0.18);
    background: rgba(255, 255, 255, 0.97);
}

.customer-accent-section .customer-home-grid {
    background: transparent;
}

body.mobile-shell .customer-accent-section .customer-home-grid .mobile-grid-card {
    border-color: var(--customer-brand-section-card-border);
    background-color: var(--customer-card-fill, var(--customer-brand-section-card-fill));
    background-image: var(--customer-card-bg-image, var(--customer-brand-section-card-background));
    color: var(--customer-card-text, var(--text-primary));
}

.customer-accent-section .mobile-grid-label {
    color: inherit;
}

.customer-accent-section .mobile-grid-icon:not(.has-image) {
    background: var(--customer-icon-bg, linear-gradient(135deg, var(--primary-strong), var(--primary-bright)));
    box-shadow: inset 0 0 0 1px var(--customer-brand-section-icon-border), var(--customer-brand-section-icon-shadow);
    color: var(--customer-icon-text, #ffffff);
}

.customer-accent-section .mobile-grid-icon.has-image {
    background-color: #ffffff;
    color: var(--customer-icon-text, inherit);
}

.customer-accent-section .mobile-grid-icon:not(.has-image)::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--customer-brand-section-icon-overlay);
    z-index: 0;
}

.customer-home-grid-pager {
    position: relative;
}

.customer-home-grid-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.customer-home-grid-track::-webkit-scrollbar {
    display: none;
}

.customer-home-grid-page {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
}

.customer-home-grid-page .customer-home-grid {
    margin-bottom: 0;
}

.customer-home-grid-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 18px 18px;
}

.customer-accent-section .customer-home-grid-pagination {
    padding-top: 2px;
}

.customer-home-grid-pagination p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.customer-home-grid-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.customer-home-grid-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(216, 168, 185, 0.32);
    transition: width 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.customer-accent-section .customer-home-grid-dot {
    background: var(--customer-brand-section-dot);
}

.customer-home-grid-dot.active {
    width: 24px;
    background: var(--customer-brand-accent);
    transform: translateY(-1px);
}

.customer-accent-section .customer-home-grid-dot.active {
    background: var(--customer-brand-section-dot-active);
}

.customer-home-board-panel {
    --customer-home-board-visible-count: 10;
    --customer-home-board-item-height: 56px;
    padding: 14px 14px 16px;
}

.customer-home-board-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 0 4px 12px;
}

.customer-home-board-header p {
    margin: 0;
    color: var(--customer-brand-section-subtext);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.customer-home-board-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
}

.customer-home-board-action {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 12px;
    white-space: nowrap;
}

.customer-home-board-panel .mobile-item-card,
.customer-home-board-panel .customer-tenant-board-list-item {
    margin-bottom: 0;
}

.customer-home-board-scroll {
    min-height: 0;
}

.customer-home-board-scroll.is-scrollable {
    height: min(
        calc(
            (var(--customer-home-board-item-height) * var(--customer-home-board-visible-count))
            + (9 * 10px)
        ),
        52dvh
    );
    max-height: min(
        calc(
            (var(--customer-home-board-item-height) * var(--customer-home-board-visible-count))
            + (9 * 10px)
        ),
        52dvh
    );
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(202, 92, 135, 0.38) transparent;
}

.customer-home-board-scroll.is-scrollable::-webkit-scrollbar {
    width: 6px;
}

.customer-home-board-scroll.is-scrollable::-webkit-scrollbar-track {
    background: transparent;
}

.customer-home-board-scroll.is-scrollable::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(202, 92, 135, 0.38);
}

.customer-home-board-panel .customer-tenant-board-list-item {
    box-sizing: border-box;
    height: var(--customer-home-board-item-height);
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 18px;
    overflow: hidden;
}

.customer-home-board-line {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    width: 100%;
}

.customer-home-board-line-heading {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.customer-home-board-line-title {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #2f2128;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.customer-home-board-line-comment-count,
.customer-home-board-line-media-icon,
.customer-home-board-line-author,
.customer-home-board-line-date {
    flex: 0 0 auto;
    color: #8f6a79;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.customer-home-board-line-media-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ca5c87;
}

.customer-home-board-line-media-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.customer-home-board-line-comment-count {
    color: #e05266;
    font-weight: 700;
}

.customer-home-board-line-author {
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-home-assigned-panel {
    padding: 22px 22px 24px;
}

.customer-home-notice-panel {
    padding: 20px 14px 16px;
}

.customer-home-notice-panel .customer-list-header {
    margin: 0;
    padding: 0 6px 12px;
}

.customer-home-notice-panel .customer-list-header h2,
.customer-home-notice-panel .customer-list-header a {
    color: var(--customer-brand-section-heading);
}

.customer-home-notice-panel .customer-list-header p {
    color: var(--customer-brand-section-subtext);
}

.customer-home-notice-panel .customer-section-stack {
    gap: 10px;
}

.customer-home-notice-panel .mobile-item-card,
.customer-home-notice-panel .customer-notice-card {
    margin-bottom: 0;
    box-shadow: 0 10px 18px rgba(98, 28, 55, 0.12);
}

.customer-home-notice-panel .customer-home-notice-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.35;
    white-space: normal;
    overflow: hidden;
}

.customer-home-assigned-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.customer-home-assigned-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.customer-home-assigned-header p {
    margin: 8px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-home-assigned-card {
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
    border: 1px solid rgba(240, 217, 226, 0.95);
    box-shadow: 0 16px 28px rgba(216, 168, 185, 0.1);
}

.customer-home-assigned-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-home-assigned-avatar {
    width: 64px;
    height: 64px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d45d88 0%, #ffb1a8 100%);
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 16px 28px rgba(212, 93, 136, 0.2);
    flex: 0 0 auto;
}

.customer-home-assigned-copy h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.customer-home-assigned-copy p {
    margin: 6px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.customer-home-assigned-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.customer-home-assigned-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(240, 217, 226, 0.82);
}

.customer-home-assigned-item.full {
    grid-column: 1 / -1;
}

.customer-home-assigned-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}

.customer-home-assigned-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.customer-home-assigned-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.customer-home-assigned-action {
    min-width: 0;
    flex: 1 1 180px;
}

.mobile-nav.customer-bottom-nav {
    --customer-bottom-nav-color: var(--customer-brand-accent);
    gap: 0;
    padding: 8px 12px calc(4px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(217, 227, 240, 0.9);
    box-shadow: 0 -8px 20px rgba(216, 168, 185, 0.07);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.customer-desktop-sidebar-brand {
    display: none;
}

.customer-bottom-nav a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 4px 8px;
    color: var(--customer-bottom-nav-color);
    transition: color 0.18s ease;
}

.customer-bottom-nav .customer-desktop-sidebar-brand {
    display: none;
}

.customer-bottom-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: var(--customer-bottom-nav-color);
    opacity: 0;
    transform: translateX(-50%) scaleX(0.35);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.customer-bottom-nav a svg {
    width: 24px;
    height: 24px;
    color: currentColor;
    flex-shrink: 0;
}

.customer-bottom-nav a span {
    font-size: 11px;
    font-weight: 700;
}

.customer-nav-request-history span {
    font-size: 10px;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.customer-bottom-nav a.active {
    background: transparent;
    color: var(--customer-bottom-nav-color);
}

.customer-bottom-nav a.active::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.customer-menu-user-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.customer-menu-user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d45d88 0%, #ffb1a8 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.customer-menu-user-copy strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 800;
}

.customer-menu-user-copy span {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.customer-menu-list {
    display: grid;
    gap: 12px;
}

.customer-menu-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 22px;
    border: 1px solid rgba(240, 217, 226, 0.95);
    background: #fffdfd;
    color: inherit;
    text-decoration: none;
}

.customer-menu-tile::after {
    content: "›";
    margin-left: auto;
    color: #4a3640;
    font-size: 28px;
    line-height: 1;
}

.customer-menu-icon {
    min-width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffeff5;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.customer-menu-copy strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 800;
}

.customer-menu-copy span {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-menu-logout-form {
    margin-top: auto;
}

.customer-business-info-footer {
    margin-top: 4px;
    padding: 10px 6px 2px;
    color: #9f9a9d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.65;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.customer-business-info-footer p {
    margin: 0 0 7px;
}

.customer-legal-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin: 8px 0 10px;
}

.customer-business-info-copyright {
    margin-top: 22px !important;
}

.customer-legal-page {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.customer-legal-page .mobile-form-card {
    margin-top: 14px;
}

.customer-legal-page h2 {
    margin: 0 0 12px;
    color: var(--text-primary);
    font-size: 18px;
}

.customer-legal-page h3 {
    margin: 24px 0 8px;
    color: var(--text-primary);
    font-size: 15px;
}

.customer-legal-page p,
.customer-legal-page li {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.75;
}

.customer-legal-page ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.customer-legal-page__meta {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
}

.customer-legal-page__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 18px;
}

.customer-side-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    visibility: hidden;
    pointer-events: none;
}

.customer-side-menu[aria-hidden="false"] {
    visibility: visible;
    pointer-events: auto;
}

.customer-side-menu-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(62, 42, 52, 0.24);
    opacity: 0;
    transition: opacity 0.24s ease;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    user-select: none;
}

.customer-side-menu-backdrop:focus,
.customer-side-menu-backdrop:focus-visible,
.customer-side-menu-backdrop:active {
    outline: none;
}

.customer-side-menu-shell {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 430px;
    margin: 0 auto;
    pointer-events: none;
}

.customer-side-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(360px, calc(100vw - 20px));
    max-width: 100%;
    height: 100%;
    padding: calc(18px + env(safe-area-inset-top, 0px)) 16px calc(24px + env(safe-area-inset-bottom, 0px));
    background: radial-gradient(circle at top right, rgba(255, 170, 185, 0.12), transparent 28%),
    linear-gradient(180deg, #fffafb 0%, #fff6f9 100%);
    box-shadow: -16px 0 34px rgba(74, 54, 64, 0.16),
    inset 1px 0 0 rgba(255, 255, 255, 0.72);
    transform: translateX(108%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    pointer-events: auto;
}

.customer-side-menu-header {
    padding: 4px 4px 18px;
}

.customer-side-menu-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
}

.customer-side-menu-user-card {
    margin-bottom: 0;
}

.customer-side-menu[aria-hidden="false"] .customer-side-menu-backdrop {
    opacity: 1;
}

.customer-side-menu[aria-hidden="false"] .customer-side-menu-panel {
    transform: translateX(0);
}

body.mobile-shell.customer-shell-drawer-open {
    overflow: hidden;
}

.customer-notification-drawer {
    z-index: 1210;
}

.customer-notification-drawer[aria-hidden="false"] .customer-side-menu-backdrop {
    opacity: 1;
}

.customer-notification-drawer[aria-hidden="false"] .customer-notification-drawer-panel {
    transform: translateX(0);
}

.customer-notification-drawer-panel {
    width: min(372px, calc(100vw - 18px));
}

.customer-notification-drawer-body {
    gap: 16px;
}

.customer-notification-card {
    margin-bottom: 0;
    display: grid;
    gap: 16px;
}

.customer-notification-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.customer-notification-card-header strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 800;
}

.customer-notification-card-header p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-drawer-link {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.customer-notification-list {
    display: grid;
    gap: 12px;
}

.customer-drawer-notification-item,
.customer-drawer-empty-card {
    margin-bottom: 0;
}

.customer-drawer-notification-item {
    text-decoration: none;
}

.customer-drawer-notification-item .mobile-item-title {
    color: var(--text-primary);
}

.customer-drawer-notification-item .mobile-item-subtitle {
    color: var(--text-secondary);
}

.customer-message-card,
.customer-message-card:hover,
.customer-message-card:focus {
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

.customer-message-card .mobile-item-title {
    color: var(--text-primary);
    text-decoration: none;
}

.customer-message-card .mobile-item-subtitle {
    color: var(--text-secondary);
    text-decoration: none;
}

body.mobile-shell .customer-message-card.is-read {
    background: var(--neutral-background);
    background-image: none;
    border-color: var(--border-soft);
    box-shadow: none;
}

.customer-message-card.is-read .mobile-item-title,
.customer-message-card.is-read .customer-message-comment-count {
    color: var(--text-secondary);
}

.customer-message-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    gap: 12px;
    overflow: hidden;
    text-align: left;
}

.customer-message-title-row {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    flex: 1 1 0;
    flex-wrap: nowrap;
    max-width: 100%;
    min-width: 0;
    gap: 4px;
    overflow: hidden;
}

.customer-message-title {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: normal;
    white-space: nowrap;
}

.customer-message-comment-count {
    flex: 0 0 auto;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.customer-message-meta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 52%;
    gap: 7px;
    margin-top: 0;
    overflow: hidden;
    text-align: right;
    white-space: nowrap;
}

.customer-message-meta span:first-child {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-message-meta span:last-child {
    flex: 0 0 auto;
}

.customer-message-meta-separator {
    flex: 0 0 auto;
    color: var(--text-muted);
}

.customer-message-delete-form {
    margin-top: 18px;
}

.customer-message-delete-form .mobile-secondary-button {
    min-height: 42px;
}

.customer-message-comment-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

body.mobile-shell .customer-message-comment-card {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 14px;
}

.customer-message-comment-header {
    align-items: center;
    margin-bottom: 0;
}

.customer-message-comment-card .mobile-item-title {
    font-size: 14px;
    line-height: 1.25;
}

.customer-message-comment-card .mobile-item-subtitle {
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.customer-message-reply-form {
    margin-top: 28px;
}

.customer-message-reply-form textarea.mobile-input,
.customer-message-reply-form textarea.mobile-textarea {
    min-height: 82px !important;
    resize: vertical;
}

.customer-drawer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}

.customer-toast-stack {
    position: fixed;
    top: max(58px, calc(env(safe-area-inset-top, 0px) + 58px));
    left: 50%;
    z-index: 1400;
    display: grid;
    gap: 8px;
    width: min(calc(100vw - 28px), 380px);
    transform: translateX(-50%);
    pointer-events: none;
}

.customer-toast-stack[data-has-bottom-nav="true"] {
    top: max(42px, calc(env(safe-area-inset-top, 0px) + 42px));
}

.customer-toast {
    position: relative;
    min-height: 48px;
    padding: 13px 16px 13px 42px;
    border-radius: 14px;
    border: 1px solid rgba(217, 226, 241, 0.96);
    background: rgba(255, 255, 255, 0.98);
    color: #24344f;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
    box-shadow: 0 16px 34px rgba(43, 58, 87, 0.14), 0 2px 8px rgba(43, 58, 87, 0.06);
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: auto;
}

.customer-toast::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #7ea2ff;
    box-shadow: 0 0 0 5px rgba(126, 162, 255, 0.14);
    transform: translateY(-50%);
}

.customer-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.customer-toast[data-tone="success"] {
    border-color: rgba(118, 206, 170, 0.74);
    box-shadow: 0 16px 34px rgba(71, 154, 121, 0.14), 0 2px 8px rgba(43, 58, 87, 0.05);
}

.customer-toast[data-tone="success"]::before {
    background: #43c695;
    box-shadow: 0 0 0 5px rgba(67, 198, 149, 0.14);
}

.customer-toast[data-tone="warning"] {
    border-color: rgba(232, 153, 169, 0.7);
    box-shadow: 0 16px 34px rgba(212, 93, 136, 0.13), 0 2px 8px rgba(43, 58, 87, 0.05);
    color: #673547;
}

.customer-toast[data-tone="warning"]::before {
    background: #d45d88;
    box-shadow: 0 0 0 5px rgba(212, 93, 136, 0.14);
}

.customer-menu-tile.active {
    border-color: rgba(212, 93, 136, 0.28);
    background: linear-gradient(180deg, #fff8fb 0%, #fff1f5 100%);
    box-shadow: 0 10px 22px rgba(216, 168, 185, 0.12);
}

.customer-menu-tile.active .customer-menu-icon {
    background: linear-gradient(135deg, #d45d88 0%, #f398a3 100%);
    color: #ffffff;
}

.customer-account-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.customer-account-card-profile {
    align-items: flex-start;
}

.customer-profile-avatar-shell {
    position: relative;
    flex: 0 0 auto;
}

.customer-account-copy strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.customer-account-copy span {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.customer-profile-kv-list {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.customer-profile-kv {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(240, 217, 226, 0.95);
    background: #fffdfd;
}

.customer-profile-kv span {
    min-width: 78px;
    color: #95818a;
    font-size: 13px;
    font-weight: 700;
}

.customer-profile-kv strong {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

.customer-consent-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 18px;
    border-radius: 24px;
    background: #fff4f7;
    margin-bottom: 14px;
}

.customer-consent-copy strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
}

.customer-consent-copy span {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-consent-switch {
    width: 96px;
    height: 54px;
    border-radius: 999px;
    position: relative;
    background: linear-gradient(180deg, #d45d88 0%, #ca5c87 100%);
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.18);
    flex: 0 0 auto;
}

.customer-consent-switch::after {
    content: "";
    position: absolute;
    top: 7px;
    right: 7px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(74, 54, 64, 0.12);
}

body.mobile-shell.customer-chat-shell {
    background: radial-gradient(circle at top left, rgba(212, 93, 136, 0.12), transparent 34%),
    linear-gradient(180deg, #f8edf2 0%, #f5e9ef 100%);
}

body.mobile-shell.customer-chat-shell .mobile-page.customer-chat-page {
    width: 100%;
    max-width: none;
    margin: 0;
    background: radial-gradient(circle at top right, rgba(255, 175, 193, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdfd 0%, #fff9fb 56%, #fff7fa 100%);
    box-shadow: none;
}

body.mobile-shell.customer-chat-shell {
    height: 100vh;
    height: 100dvh;
    position: fixed;
    inset: 0;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

.customer-chat-page {
    --chat-shell-height: 100dvh;
    --chat-shell-offset-top: 0px;
    --chat-layout-transition-duration: 0.18s;
    --chat-layout-transition-easing: cubic-bezier(0.22, 1, 0.36, 1);
    --chat-stage-bottom-gap: 0px;
    --chat-composer-bottom-padding: 16px;
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    height: var(--chat-shell-height, 100dvh);
    min-height: 100vh;
    min-height: 100dvh;
    min-height: var(--chat-shell-height, 100dvh);
    max-height: var(--chat-shell-height, 100dvh);
    padding: calc(10px + env(safe-area-inset-top, 0px)) 0 0;
    display: flex;
    flex-direction: column;
    transform: translate3d(0, var(--chat-shell-offset-top), 0);
    overflow: hidden;
    overscroll-behavior: none;
}

.customer-chat-page[data-chat-keyboard-open="true"] {
    --chat-stage-bottom-gap: 0px;
    --chat-composer-bottom-padding: 16px;
}

.customer-chat-appbar {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 10px;
    padding: 4px 14px 12px;
    flex: 0 0 auto;
}

.customer-chat-appbar-menu {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-primary);
}

.customer-chat-appbar-menu:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 92, 135, 0.14);
}

.customer-chat-appbar-menu svg {
    width: 26px;
    height: 26px;
}

.customer-chat-appbar-copy {
    min-width: 0;
    text-align: center;
}

.customer-chat-appbar-copy strong {
    display: block;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-chat-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    margin-top: 4px;
    color: #8f7480;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.customer-chat-status.is-connecting {
    color: #b26b2b;
}

.customer-chat-status.is-offline {
    color: #8d7580;
}

.customer-chat-status.is-live {
    color: var(--primary);
}

.customer-chat-notice-shell {
    position: relative;
    flex: 0 0 auto;
    padding: 4px 16px 16px;
    overflow: visible;
    z-index: 8;
    isolation: isolate;
    transition: max-height 0.18s ease, opacity 0.18s ease, transform 0.18s ease, padding 0.18s ease;
}

.customer-chat-notice-shell::before {
    content: "";
    position: absolute;
    inset: 2px 12px 10px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 248, 250, 0.92) 0%, rgba(255, 251, 252, 0.42) 72%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.78;
    pointer-events: none;
    z-index: 0;
}

.customer-chat-notice-panel {
    position: relative;
    width: 100%;
    overflow: visible;
}

.customer-chat-notice-panel > summary {
    list-style: none;
}

.customer-chat-notice-panel > summary::-webkit-details-marker {
    display: none;
}

.customer-chat-notice-trigger {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 13px 15px 13px 16px;
    border: 1px solid rgba(239, 224, 230, 0.98);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 254, 254, 0.98) 0%, rgba(255, 249, 251, 0.98) 100%);
    color: inherit;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 18px rgba(216, 168, 185, 0.08);
}

.customer-chat-notice-trigger:focus-visible {
    outline: none;
    border-color: rgba(231, 208, 217, 0.98);
    box-shadow: 0 0 0 3px rgba(202, 92, 135, 0.12), 0 10px 18px rgba(216, 168, 185, 0.08);
}

.customer-chat-notice-trigger::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(245, 211, 224, 0.95) 0%, rgba(236, 194, 210, 0.95) 100%);
}

.customer-chat-notice-panel[open] .customer-chat-notice-trigger {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.customer-chat-notice-trigger-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff3f7;
    color: #b46e8c;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.customer-chat-notice-trigger-mark svg,
.customer-chat-notice-trigger-chevron svg {
    width: 20px;
    height: 20px;
}

.customer-chat-notice-trigger-copy {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.customer-chat-notice-trigger-copy strong {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.2px;
    white-space: pre-line;
}

.customer-chat-notice-trigger-copy small {
    display: block;
    margin-top: 3px;
    color: #816c75;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    white-space: normal;
}

.customer-chat-notice-trigger-chevron {
    color: #927985;
    transition: transform 0.2s ease;
}

.customer-chat-notice-panel[open] .customer-chat-notice-trigger-chevron {
    transform: rotate(180deg);
}

.customer-chat-notice-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    margin-top: 0;
    padding: 10px;
    border: 1px solid rgba(239, 224, 230, 0.92);
    border-radius: 20px;
    background: rgba(255, 252, 253, 0.98);
    box-shadow: 0 14px 24px rgba(216, 168, 185, 0.1);
    z-index: 1;
}

.customer-chat-notice-panel:not([open]) .customer-chat-notice-content {
    display: none;
}

.customer-chat-notice-empty {
    text-align: center;
    padding: 8px 6px 2px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.customer-chat-notice-list {
    display: grid;
    gap: 8px;
    max-height: 235px;
    overflow-y: auto;
}

.customer-chat-notice-item {
    position: relative;
    width: 100%;
    display: grid;
    gap: 3px;
    padding: 12px 13px 12px 15px;
    border-radius: 16px;
    border: 1px solid rgba(241, 231, 235, 0.95);
    background: #ffffff;
    color: inherit;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(216, 168, 185, 0.05);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.customer-chat-notice-item::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, rgba(242, 213, 224, 0.98) 0%, rgba(233, 189, 207, 0.98) 100%);
}

.customer-chat-notice-item:hover,
.customer-chat-notice-item:focus-visible {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(231, 208, 217, 0.98);
    box-shadow: 0 8px 16px rgba(216, 168, 185, 0.08);
}

.customer-chat-notice-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.customer-chat-notice-item-head strong {
    margin: 0;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.customer-chat-notice-item-head span {
    flex: 0 0 auto;
    color: #9a7d89;
    font-size: 11px;
    font-weight: 700;
}

.customer-chat-notice-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.customer-chat-notice-more {
    min-height: 38px;
    border: 1px solid rgba(239, 224, 230, 0.92);
    border-radius: 14px;
    background: #fff9fb;
    color: #a06d84;
    font-size: 12px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.customer-chat-notice-more:focus-visible {
    outline: none;
    border-color: rgba(231, 208, 217, 0.98);
    box-shadow: 0 0 0 3px rgba(202, 92, 135, 0.12);
}

body.customer-chat-notice-modal-open {
    overflow: hidden;
}

.customer-chat-notice-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 14px;
}

.customer-chat-notice-modal[hidden] {
    display: none !important;
}

.customer-chat-notice-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(34, 23, 31, 0.38);
    opacity: 0;
    transition: opacity 0.18s ease;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.customer-chat-notice-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    max-height: min(82dvh, 680px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    padding: 12px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border: 1px solid rgba(241, 215, 225, 0.95);
    border-radius: 26px 26px 0 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -18px 44px rgba(127, 42, 74, 0.2);
    transform: translateY(24px);
    transition: transform 0.18s ease;
}

.customer-chat-notice-modal.is-visible .customer-chat-notice-modal__backdrop {
    opacity: 1;
}

.customer-chat-notice-modal.is-visible .customer-chat-notice-modal__panel {
    transform: translateY(0);
}

.customer-chat-notice-modal__handle {
    width: 42px;
    height: 4px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: #dfcbd4;
}

.customer-chat-notice-modal__header {
    position: relative;
    z-index: 2;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    padding-bottom: 12px;
}

.customer-chat-notice-modal__heading {
    min-width: 0;
}

.customer-chat-notice-modal__heading span {
    display: block;
    margin-bottom: 4px;
    color: #a06d84;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.customer-chat-notice-modal__heading h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.32;
    max-height: 4.8em;
    overflow-y: auto;
    overflow-wrap: anywhere;
}

.customer-chat-notice-modal__heading time {
    display: block;
    margin-top: 6px;
    color: #9a7d89;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.customer-chat-notice-modal__close {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(239, 224, 230, 0.92);
    border-radius: 14px;
    background: #fff9fb;
    color: #8e6b79;
}

.customer-chat-notice-modal__close:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 92, 135, 0.12);
}

.customer-chat-notice-modal__close svg {
    width: 18px;
    height: 18px;
}

.customer-chat-notice-modal__body {
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 16px;
    overflow-y: auto;
    border: 1px solid rgba(241, 231, 235, 0.95);
    border-radius: 18px;
    background: #fffafb;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    white-space: pre-line;
    overflow-wrap: anywhere;
}

.customer-chat-notice-modal__content {
    display: grid;
    gap: 14px;
}

.customer-chat-notice-modal__text {
    margin: 0;
    white-space: pre-line;
}

.customer-chat-notice-modal__body img,
.customer-chat-notice-modal__body video {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.customer-chat-notice-modal__body .customer-tenant-board-rich-media-frame {
    background: transparent;
}

.customer-chat-notice-modal__body .customer-tenant-board-rich-media-frame img,
.customer-chat-notice-modal__body .customer-tenant-board-rich-media-frame video {
    border-radius: 0;
    background: transparent;
}

.customer-chat-notice-modal__body video {
    width: 100%;
}

.customer-chat-notice-modal__media-grid {
    display: grid;
    gap: 12px;
}

.customer-chat-notice-modal__media-card {
    margin: 0;
    display: grid;
    gap: 7px;
}

.customer-chat-notice-modal__media-card figcaption {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.customer-chat-stage {
    flex: 1 1 auto;
    min-height: 0;
    margin: 0 16px var(--chat-stage-bottom-gap);
    margin-bottom: 16px;
    padding-top: 16px;
    position: relative;
    border: 1px solid rgba(240, 217, 226, 0.92);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 253, 254, 0.94) 0%, rgba(255, 249, 251, 0.96) 100%);
    box-shadow: 0 18px 34px rgba(216, 168, 185, 0.1);
    overflow: hidden;
}

.customer-chat-stage-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    position: relative;
}

.customer-chat-log {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    height: var(--chat-log-height, auto);
    padding: 28px 16px 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: touch;
    overflow-anchor: none;
    scrollbar-width: thin;
    scroll-padding-bottom: 20px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.customer-chat-page[data-chat-initializing="true"] .customer-chat-log {
    opacity: 0;
    transform: translateY(8px);
}

.customer-chat-log > :first-child {
    margin-top: auto;
}

.customer-chat-loading-overlay {
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 3;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(240, 217, 226, 0.92);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: #8f7480;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(216, 168, 185, 0.14);
    transform: translateX(-50%);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
}

.customer-chat-loading-overlay.is-hidden {
    opacity: 0;
    transform: translate(-50%, -6px);
}

.customer-chat-loading-spinner {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(202, 92, 135, 0.18);
    border-top-color: #ca5c87;
    animation: customer-chat-upload-pending-spin 0.8s linear infinite;
}

.customer-chat-system-pill {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #8f7480;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(216, 168, 185, 0.14);
}

.customer-chat-guide-bubble {
    max-width: 82%;
    margin-bottom: 18px;
}

.customer-chat-guide-toast-stack {
    position: absolute;
    top: 16px;
    left: 50%;
    z-index: 4;
    width: min(calc(100% - 32px), 360px);
    transform: translateX(-50%);
    pointer-events: none;
}

.customer-chat-guide-toast {
    padding: 15px 18px;
    border-radius: 18px;
    border: 1px solid rgba(205, 217, 238, 0.94);
    background: linear-gradient(135deg, rgba(244, 248, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 18px 30px rgba(31, 42, 58, 0.12);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.customer-chat-guide-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.customer-chat-guide-toast strong {
    display: block;
    margin: 0;
    color: #24344f;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.customer-chat-guide-toast p {
    margin: 4px 0 0;
    color: #61728a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-chat-message {
    display: flex;
    flex: 0 0 auto;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    margin-bottom: 16px;
}

.customer-chat-message.self {
    justify-content: flex-end;
}

.customer-chat-reply-action,
.customer-chat-delete-action {
    display: none;
}

.customer-chat-message-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: fit-content;
    min-width: 0;
    max-width: calc(100% - 48px);
    position: relative;
    touch-action: pan-y;
    transform: translate3d(var(--chat-swipe-reply-offset, 0px), 0, 0);
    transition: transform 0.18s ease;
    will-change: transform;
}

.customer-chat-message-stack.self {
    margin-left: auto;
    align-items: flex-end;
    max-width: min(82%, 292px);
}

.customer-chat-message-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    width: fit-content;
    min-width: 0;
    max-width: 100%;
}

.customer-chat-message-row.self {
    flex-direction: row-reverse;
}

.customer-chat-message-stack.is-chat-swipe-reply-dragging {
    transition: none;
}

.customer-chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd8e3, #ffeef4);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    flex: 0 0 auto;
}

.customer-chat-bubble {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 22px;
    border: 1px solid rgba(240, 217, 226, 0.95);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-primary);
    box-shadow: 0 12px 24px rgba(216, 168, 185, 0.12);
}

.customer-chat-bubble.other {
    border-bottom-left-radius: 10px;
}

.customer-chat-bubble.self {
    border-color: transparent;
    background: linear-gradient(135deg, #d96c93 0%, #ca5c87 100%);
    color: #ffffff;
    border-bottom-right-radius: 10px;
}

.customer-chat-message-stack.other .customer-chat-bubble {
    max-width: calc(100% - 42px);
}

.customer-chat-message.is-chat-reply-focus .customer-chat-bubble {
    box-shadow: 0 0 0 2px rgba(212, 93, 136, 0.24), 0 14px 28px rgba(216, 168, 185, 0.18);
}

.customer-chat-message-stack.is-chat-swipe-reply-active .customer-chat-bubble {
    box-shadow: 0 0 0 1px rgba(212, 93, 136, 0.2), 0 14px 28px rgba(216, 168, 185, 0.18);
}

.customer-chat-message-stack.is-chat-swipe-reply-ready .customer-chat-bubble {
    box-shadow: 0 0 0 2px rgba(212, 93, 136, 0.26), 0 16px 30px rgba(216, 168, 185, 0.2);
}

.customer-chat-bubble strong {
    display: block;
    margin-bottom: 4px;
    color: #7d6570;
    font-size: 12px;
    font-weight: 700;
}

.customer-chat-bubble.self strong {
    color: rgba(255, 255, 255, 0.82);
}

.customer-chat-reply-quote {
    width: 100%;
    margin: 0 0 9px;
    padding: 9px 10px;
    border: 0;
    border-radius: 14px;
    display: grid;
    gap: 2px;
    background: rgba(212, 93, 136, 0.1);
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.customer-chat-reply-quote.is-static {
    cursor: default;
}

.customer-chat-reply-quote:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 92, 135, 0.12);
}

.customer-chat-reply-quote strong,
.customer-chat-reply-quote .customer-chat-reply-preview-text {
    margin: 0;
}

.customer-chat-reply-quote strong {
    color: #c45a84;
    font-size: 12px;
    font-weight: 800;
}

.customer-chat-reply-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.customer-chat-reply-preview-thumb {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border-radius: 10px;
    object-fit: cover;
    background: rgba(212, 93, 136, 0.12);
}

.customer-chat-reply-draft .customer-chat-reply-preview-thumb {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

.customer-chat-reply-preview-text {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: #7f6872;
    font-size: 12px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-chat-bubble.self .customer-chat-reply-quote {
    background: rgba(255, 255, 255, 0.16);
}

.customer-chat-bubble.self .customer-chat-reply-quote strong,
.customer-chat-bubble.self .customer-chat-reply-preview-text {
    color: rgba(255, 255, 255, 0.9);
}

.customer-chat-message-text,
.customer-chat-bubble p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    word-break: break-word;
}

.customer-chat-image-card {
    display: block;
    width: min(100%, 260px);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    cursor: zoom-in;
    position: relative;
}

.customer-chat-image-card.is-pending-upload {
    position: relative;
    cursor: default;
}

.customer-chat-image-card.is-chat-media-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    margin-left: -14px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.56);
    border-top-color: #ca5c87;
    animation: customer-chat-upload-pending-spin 0.8s linear infinite;
    pointer-events: none;
}

.customer-chat-avatar,
.customer-chat-bubble,
.customer-chat-bubble * {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.customer-chat-bubble strong,
.customer-chat-message-text,
.customer-chat-bubble p,
.customer-chat-reply-preview-text {
    pointer-events: auto;
    -webkit-user-select: text !important;
    user-select: text !important;
    -webkit-touch-callout: default;
}

.customer-chat-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    background: rgba(252, 244, 247, 0.94);
}

.customer-chat-upload-pending-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(94, 33, 56, 0.34);
    color: rgba(255, 250, 252, 0.98);
    font-size: 12px;
    font-weight: 700;
    pointer-events: none;
}

.customer-chat-upload-pending-spinner {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.28);
    border-top-color: #fff8fb;
    animation: customer-chat-upload-pending-spin 0.8s linear infinite;
}

.customer-chat-image-viewer {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(37, 16, 27, 0.76);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.customer-chat-image-viewer[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.customer-chat-image-viewer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: none;
}

.customer-chat-image-viewer-panel {
    position: relative;
    z-index: 1;
    width: min(96vw, 1040px);
    max-height: calc(100vh - 48px);
    display: grid;
    gap: 0;
    justify-items: center;
}

.customer-chat-image-viewer-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(72, 35, 54, 0.82);
    color: #fff8fb;
    backdrop-filter: blur(10px);
}

.customer-chat-image-viewer-close:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.customer-chat-image-viewer-close svg {
    width: 16px;
    height: 16px;
}

.customer-chat-image-viewer-figure {
    width: 100%;
    margin: 0;
    display: grid;
    gap: 10px;
    justify-items: center;
}

.customer-chat-image-viewer-media {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding-top: 44px;
}

.customer-chat-image-viewer-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 132px);
    border-radius: 18px;
    object-fit: contain;
    background: rgba(49, 23, 37, 0.96);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.customer-chat-image-viewer-caption {
    max-width: min(92vw, 760px);
    color: rgba(255, 245, 250, 0.98);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    word-break: break-word;
}

.customer-chat-message-time {
    flex: 0 0 auto;
    align-self: flex-end;
    color: #9a7d89;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.customer-chat-message-time:empty {
    display: none;
}

.customer-chat-message-time.is-pending-upload {
    color: rgba(202, 92, 135, 0.82);
}

.customer-chat-message.is-chat-deleted .customer-chat-reply-action {
    display: none !important;
}

.customer-chat-bubble.is-pending-upload {
    box-shadow: 0 0 0 1px rgba(212, 93, 136, 0.18), 0 14px 28px rgba(216, 168, 185, 0.18);
}

.customer-chat-message.is-pending-upload {
    opacity: 0.95;
}

.customer-chat-bubble.is-chat-deleted {
    border-style: dashed;
    border-color: rgba(214, 187, 198, 0.96);
    background: rgba(255, 249, 251, 0.98);
    color: #7f6872;
}

.customer-chat-bubble.self.is-chat-deleted {
    border-color: rgba(214, 187, 198, 0.96);
    background: rgba(255, 249, 251, 0.98);
    color: #7f6872;
}

.customer-chat-bubble.is-chat-deleted .customer-chat-message-text,
.customer-chat-bubble.is-chat-deleted p {
    color: #8d7480;
    font-style: italic;
    white-space: nowrap;
    word-break: keep-all;
}

.customer-chat-bubble.self.is-chat-deleted + .customer-chat-message-time,
.customer-chat-bubble.is-chat-deleted + .customer-chat-message-time,
.customer-chat-bubble.self.is-chat-deleted strong {
    color: #aa8d99;
}

.customer-chat-reply-action,
.customer-chat-delete-action {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: #c45a84;
    box-shadow: 0 10px 22px rgba(216, 168, 185, 0.16);
}

.customer-chat-delete-action {
    color: #c44949;
}

.customer-chat-reply-action:focus-visible,
.customer-chat-delete-action:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 92, 135, 0.12), 0 10px 22px rgba(216, 168, 185, 0.16);
}

.customer-chat-reply-action svg,
.customer-chat-delete-action svg {
    width: 18px;
    height: 18px;
}

.customer-chat-reply-action.self svg {
    transform: scaleX(-1);
    transform-origin: center;
}

@media (min-width: 981px) {
    .customer-chat-reply-action,
    .customer-chat-delete-action {
        display: inline-flex;
    }
}

.customer-chat-delete-sheet {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.customer-chat-delete-sheet[hidden] {
    display: none !important;
}

.customer-chat-delete-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(34, 23, 31, 0.38);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: auto;
}

.customer-chat-delete-sheet__panel {
    position: relative;
    width: min(100%, 420px);
    padding: 12px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 26px 26px 0 0;
    border: 1px solid rgba(241, 215, 225, 0.95);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -20px 40px rgba(83, 55, 69, 0.18);
    transform: translateY(105%);
    transition: transform 0.2s ease;
    pointer-events: auto;
}

.customer-chat-delete-sheet.is-visible .customer-chat-delete-sheet__backdrop {
    opacity: 1;
}

.customer-chat-delete-sheet.is-visible .customer-chat-delete-sheet__panel {
    transform: translateY(0);
}

.customer-chat-delete-sheet__handle {
    width: 42px;
    height: 4px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: #dfcbd4;
}

.customer-chat-delete-sheet__panel strong {
    display: block;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}

.customer-chat-delete-sheet__panel p {
    margin: 6px 0 16px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
}

.customer-chat-delete-sheet__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.customer-chat-delete-sheet__cancel,
.customer-chat-delete-sheet__confirm {
    min-height: 46px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 900;
}

.customer-chat-delete-sheet__cancel {
    border: 1px solid rgba(218, 226, 239, 0.95);
    background: #fff;
    color: var(--text-primary);
}

.customer-chat-delete-sheet__confirm {
    border: 0;
    background: #d65353;
    color: #fff;
    box-shadow: 0 14px 28px rgba(214, 83, 83, 0.22);
}

.customer-chat-alert-sheet {
    position: fixed;
    inset: 0;
    z-index: 1610;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.customer-chat-alert-sheet[hidden] {
    display: none !important;
}

.customer-chat-alert-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(34, 23, 31, 0.38);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: auto;
}

.customer-chat-alert-sheet__panel {
    position: relative;
    width: min(100%, 420px);
    padding: 12px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 26px 26px 0 0;
    border: 1px solid rgba(241, 215, 225, 0.95);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -20px 40px rgba(83, 55, 69, 0.18);
    transform: translateY(105%);
    transition: transform 0.2s ease;
    pointer-events: auto;
}

.customer-chat-alert-sheet.is-visible .customer-chat-alert-sheet__backdrop {
    opacity: 1;
}

.customer-chat-alert-sheet.is-visible .customer-chat-alert-sheet__panel {
    transform: translateY(0);
}

.customer-chat-alert-sheet__handle {
    width: 42px;
    height: 4px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: #dfcbd4;
}

.customer-chat-alert-sheet__panel strong {
    display: block;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}

.customer-chat-alert-sheet__panel p {
    margin: 6px 0 16px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
}

.customer-chat-alert-sheet__actions {
    display: grid;
}

.customer-chat-alert-sheet__confirm {
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--customer-primary, #ca5c87);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(202, 92, 135, 0.22);
}

.customer-chat-empty {
    padding: 48px 0 8px;
    text-align: center;
    color: var(--text-secondary);
}

.customer-chat-empty .mobile-item-title {
    color: var(--text-primary);
}

.customer-chat-empty .mobile-item-subtitle {
    color: var(--text-secondary);
}

.customer-chat-composer-slot {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 16px var(--chat-composer-bottom-padding);
    border-top: 0;
    background: transparent;
}

.customer-chat-reply-draft {
    margin-bottom: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(240, 217, 226, 0.95);
    box-shadow: 0 12px 24px rgba(216, 168, 185, 0.1);
}

.customer-chat-reply-draft[hidden] {
    display: none !important;
}

.customer-chat-reply-draft-copy {
    min-width: 0;
}

.customer-chat-reply-draft-copy strong {
    display: block;
    margin: 0;
    color: #c45a84;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.customer-chat-reply-draft-copy [data-chat-reply-draft-content] {
    display: block;
    margin: 4px 0 0;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.customer-chat-reply-draft-copy .customer-chat-reply-preview {
    gap: 10px;
}

.customer-chat-reply-draft-copy .customer-chat-reply-preview-text {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.customer-chat-reply-draft-cancel {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 93, 136, 0.1);
    color: #c45a84;
}

.customer-chat-reply-draft-cancel svg {
    width: 18px;
    height: 18px;
}

.customer-chat-form {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    background: transparent;
    transition: opacity 0.18s ease;
}

.customer-chat-form .mobile-field {
    margin: 0;
}

.customer-chat-input-shell {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    min-height: 50px;
    padding: 8px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(240, 217, 226, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.customer-chat-upload {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(202, 92, 135, 0.12);
    color: #ca5c87;
    box-shadow: inset 0 0 0 1px rgba(202, 92, 135, 0.16);
    transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.customer-chat-upload[hidden] {
    display: none !important;
}

.customer-chat-upload svg {
    width: 18px;
    height: 18px;
}

.customer-chat-upload:hover,
.customer-chat-upload:focus-visible {
    background: rgba(202, 92, 135, 0.18);
    color: #b64e77;
}

.customer-chat-form .mobile-label {
    display: none;
}

.customer-chat-form .mobile-input {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 24px;
    max-height: 132px;
    padding: 3px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-primary);
    font-size: 16px !important;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    box-shadow: none;
}

.customer-chat-form .customer-chat-input {
    display: block;
    width: 100%;
    resize: none;
    overflow-y: auto;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    field-sizing: content;
}

.customer-chat-form .mobile-input::placeholder {
    color: #b69da8;
}

.customer-chat-form .mobile-input:focus {
    outline: none;
}

.customer-chat-send {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d96c93 0%, #ca5c87 100%);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(202, 92, 135, 0.24);
}

.customer-chat-send svg {
    width: 22px;
    height: 22px;
}

.customer-chat-upload:disabled,
.customer-chat-send:disabled {
    opacity: 0.48;
    cursor: default;
}

@keyframes customer-chat-upload-pending-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Compact sizing refresh for the customer app. */
body.mobile-shell .mobile-form-card,
body.mobile-shell .mobile-item-card,
body.mobile-shell .mobile-link-item {
    box-shadow: 0 12px 24px rgba(216, 168, 185, 0.09),
    0 2px 5px rgba(31, 42, 58, 0.03);
}

body.mobile-shell .mobile-form-card {
    padding: 16px;
}

.customer-splash-page {
    padding: calc(24px + env(safe-area-inset-top, 0px)) 18px calc(28px + env(safe-area-inset-bottom, 0px));
}

.customer-splash-card {
    padding: 28px 22px 22px;
    border-radius: 28px;
    box-shadow: 0 18px 34px rgba(212, 93, 136, 0.2);
}

.customer-splash-mark-wrap {
    gap: 14px;
}

.customer-splash-mark {
    width: 58px;
    height: 58px;
    filter: drop-shadow(0 12px 18px rgba(127, 42, 74, 0.16));
}

.customer-splash-copy h1 {
    font-size: 30px;
}

.customer-splash-message {
    margin: 22px 0 20px;
    font-size: 15px;
    line-height: 1.6;
}

.customer-splash-hint {
    margin-top: 14px;
    font-size: 12px;
}

.customer-splash-skip {
    min-height: 44px;
    margin-top: 16px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 13px;
}

.customer-auth-hero {
    margin-bottom: 16px;
    padding: 20px 18px;
    border-radius: 24px;
    box-shadow: 0 18px 32px rgba(212, 93, 136, 0.18);
}

.customer-auth-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
}

.customer-auth-brand,
.customer-auth-hero h1 {
    font-size: 24px;
}

.customer-auth-kicker {
    gap: 6px;
    margin-top: 8px;
    padding: 6px 10px;
}

.customer-auth-hero h1 {
    margin: 12px 0 8px;
}

.customer-auth-hero p {
    font-size: 13px;
}

.customer-auth-links {
    margin-top: 16px;
    gap: 8px;
}

.customer-auth-links a {
    min-height: 46px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 13px;
}

.customer-home-header {
    gap: 12px;
    margin-bottom: 12px;
}

.customer-home-brand {
    font-size: 24px;
}

.customer-home-header p {
    font-size: 11.5px;
}

.customer-home-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
}

.customer-home-intro {
    gap: 12px;
    margin-bottom: 16px;
}

.customer-summary-card {
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(212, 93, 136, 0.18);
}

.customer-badge {
    padding: 6px 10px;
    font-size: 11.5px;
}

.customer-summary-card h2 {
    margin: 10px 0 6px;
    font-size: 22px;
}

.customer-summary-card p {
    font-size: 13px;
    line-height: 1.55;
}

.customer-summary-grid {
    gap: 8px;
    margin-top: 14px;
}

.customer-summary-metric {
    padding: 10px;
    border-radius: 16px;
}

.customer-summary-metric strong {
    font-size: 17px;
}

.customer-summary-footer {
    margin-top: 14px;
    font-size: 11.5px;
}

.customer-summary-dots span.active {
    width: 24px;
}

.customer-shortcut-row {
    gap: 8px;
}

.customer-shortcut {
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 10px 18px rgba(216, 168, 185, 0.09),
    0 1px 3px rgba(31, 42, 58, 0.03);
}

.customer-shortcut strong {
    margin-bottom: 4px;
    font-size: 14px;
}

.customer-shortcut span {
    font-size: 11.5px;
}

.customer-shortcut-icon {
    min-width: 46px;
    margin-bottom: 10px;
    padding: 7px 9px;
    border-radius: 12px;
    font-size: 11.5px;
}

.customer-section-stack,
.customer-helper-grid,
.customer-notice-list,
.customer-faq-list,
.customer-inline-actions,
.customer-form-actions {
    gap: 10px;
}

.customer-list-header {
    margin: 16px 0 10px;
}

.customer-list-header h2 {
    font-size: 17px;
}

.customer-faq-card p {
    font-size: 12px;
    line-height: 1.55;
}

.customer-verification-block {
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
}

.customer-page-hero,
.customer-profile-hero {
    margin-bottom: 12px;
    padding: 18px 18px;
    border-radius: 22px;
    box-shadow: 0 12px 24px rgba(216, 168, 185, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.customer-page-hero h2,
.customer-profile-hero h2 {
    margin: 10px 0 6px;
    font-size: 22px;
}

.customer-page-hero p,
.customer-profile-hero p {
    font-size: 13px;
    line-height: 1.55;
}

.customer-stage-row {
    gap: 7px;
    margin-top: 16px;
}

.customer-stage-item {
    padding: 10px 8px;
    border-radius: 14px;
    font-size: 11.5px;
}

.customer-stage-item.active {
    box-shadow: 0 8px 16px rgba(212, 93, 136, 0.16);
}

.customer-soft-grid,
.customer-support-overview {
    gap: 10px;
    margin-bottom: 12px;
}

.customer-pwa-panel {
    gap: 10px;
}

.customer-soft-card,
.customer-inline-note {
    padding: 13px 14px;
    border-radius: 16px;
}

.customer-soft-card strong {
    font-size: 13.5px;
}

.customer-card-heading {
    margin-bottom: 14px;
}

.customer-card-heading p {
    font-size: 10px;
}

.customer-pwa-card {
    padding: 16px 14px;
    border-radius: 18px;
    box-shadow: 0 12px 22px rgba(216, 168, 185, 0.1),
    0 2px 5px rgba(31, 42, 58, 0.03);
}

.customer-pwa-card-head {
    gap: 12px;
    margin-bottom: 12px;
}

.customer-pwa-card strong {
    font-size: 14px;
}

.customer-pwa-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.customer-inline-button {
    min-height: 44px;
}

.customer-support-tile {
    gap: 12px;
    padding: 15px 14px;
    border-radius: 18px;
    box-shadow: 0 10px 18px rgba(216, 168, 185, 0.09),
    0 1px 3px rgba(31, 42, 58, 0.03);
}

.customer-support-tile strong {
    font-size: 14px;
}

.customer-support-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.customer-profile-hero {
    gap: 14px;
}

.customer-profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 22px;
    box-shadow: 0 10px 18px rgba(212, 93, 136, 0.16);
}

.customer-info-grid {
    gap: 8px;
    margin-bottom: 16px;
}

.customer-info-tile {
    padding: 12px;
    border-radius: 16px;
}

.customer-info-tile span {
    margin-bottom: 5px;
    font-size: 11.5px;
}

.customer-info-tile strong {
    font-size: 13.5px;
}

.customer-appbar {
    gap: 10px;
    padding: 10px 4px 18px;
}

.customer-appbar-leading {
    gap: 10px;
}

.customer-appbar-actions {
    gap: 8px;
}

.customer-request-history-appbar {
    min-height: 58px;
}

.customer-request-history-appbar .customer-appbar-actions {
    top: 10px;
    right: 4px;
}

.customer-brand {
    gap: 8px;
}

.customer-brand-mark {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(212, 93, 136, 0.14);
}

.customer-brand-text {
    font-size: 17px;
}

.customer-icon-button {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(216, 168, 185, 0.07);
}

.customer-icon-button svg {
    width: 20px;
    height: 20px;
}

.customer-icon-dot {
    top: 7px;
    right: 7px;
    width: 9px;
    height: 9px;
}

.customer-page-title {
    font-size: 22px;
}

.customer-page-subtitle {
    margin-top: 6px;
    font-size: 12px;
}

.customer-home-hero-track {
    border-radius: 28px;
    box-shadow: 0 16px 30px rgba(212, 93, 136, 0.18);
}

.customer-home-hero-slide {
    min-height: 196px;
    padding: 26px 22px 50px;
}

.customer-home-hero-line {
    gap: 0.55em;
    font-size: 13px;
}

.customer-home-hero-line.is-title-line {
    font-size: 24px;
}

.customer-home-hero-line.is-subtitle-line {
    font-size: 13px;
}

.customer-home-hero-line + .customer-home-hero-line {
    margin-top: 12px;
}

.customer-home-hero-icon {
    font-size: 1em;
}

.customer-home-hero-icon:not(.is-svg-icon) {
    padding: 4px 8px;
    font-size: 0.48em;
}

.customer-home-hero-icon.is-svg-icon {
    width: 1.08em;
    min-width: 1.08em;
    height: 1.08em;
}

.customer-home-hero-icon.is-svg-icon::before {
    width: 100%;
    height: 100%;
}

.customer-home-hero-middle-icon {
    margin-top: 12px;
    font-size: 24px;
}

.customer-home-hero-title {
    font-size: 1em;
    line-height: 1.3;
}

.customer-home-hero-subtitle {
    font-size: 1em;
    line-height: 1.55;
}

.customer-home-hero-dots {
    bottom: 14px;
    gap: 8px;
}

.customer-home-hero-dot {
    width: 10px;
    height: 10px;
}

.customer-home-hero-dot.active {
    width: 40px;
}

.customer-home-grid-pagination {
    padding: 0 16px 16px;
}

.mobile-nav.customer-bottom-nav {
    padding: 8px 10px calc(4px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -6px 16px rgba(216, 168, 185, 0.06);
}

.customer-bottom-nav a svg {
    width: 22px;
    height: 22px;
}

.customer-bottom-nav a span {
    font-size: 10.5px;
}

.customer-menu-user-card {
    gap: 12px;
    margin-bottom: 10px;
}

.customer-menu-user-avatar {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 22px;
}

.customer-menu-user-copy strong {
    margin-bottom: 4px;
    font-size: 16px;
}

.customer-menu-user-copy span {
    font-size: 12px;
}

.customer-menu-list {
    gap: 10px;
}

.customer-menu-tile {
    gap: 12px;
    padding: 15px 16px;
    border-radius: 18px;
}

.customer-menu-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 16px;
}

.customer-menu-copy strong {
    font-size: 15px;
}

.customer-menu-copy span {
    font-size: 12px;
}

.customer-menu-tile.active {
    box-shadow: 0 8px 16px rgba(216, 168, 185, 0.1);
}

.customer-account-card {
    gap: 14px;
    margin-bottom: 16px;
}

html.customer-male-theme .customer-appbar {
    color: var(--text-primary);
}

html.customer-male-theme .customer-brand,
html.customer-male-theme .customer-brand-text,
html.customer-male-theme .customer-page-title,
html.customer-male-theme .customer-page-subtitle,
html.customer-male-theme .customer-page-shell-copy,
html.customer-male-theme .customer-page-shell-copy .customer-page-subtitle,
html.customer-male-theme .customer-card-heading,
html.customer-male-theme .customer-card-heading p,
html.customer-male-theme .customer-account-copy strong,
html.customer-male-theme .customer-account-copy span,
html.customer-male-theme .customer-toggle-copy strong,
html.customer-male-theme .customer-toggle-copy p,
html.customer-male-theme .customer-setting-link span,
html.customer-male-theme .customer-setting-link small,
html.customer-male-theme .customer-auth-brand,
html.customer-male-theme .customer-auth-hero h1,
html.customer-male-theme .customer-auth-hero p {
    color: var(--text-primary);
}

html.customer-male-theme .customer-page-subtitle,
html.customer-male-theme .customer-page-shell-copy .customer-page-subtitle,
html.customer-male-theme .customer-card-heading p,
html.customer-male-theme .customer-account-copy span,
html.customer-male-theme .customer-toggle-copy p,
html.customer-male-theme .customer-setting-link small,
html.customer-male-theme .customer-auth-hero p,
html.customer-male-theme .customer-profile-edit-sheet__copy p {
    color: var(--text-secondary);
}

html.customer-male-theme .customer-brand-mark {
    background: linear-gradient(135deg, #FFE08A 0%, #F5C542 54%, #C89B2C 100%);
    box-shadow: 0 8px 18px rgba(10, 10, 10, 0.42);
}

html.customer-male-theme .customer-brand-mark img {
    display: none;
}

html.customer-male-theme .customer-brand-mark::before {
    content: "Lady\A Gangnam";
    color: #FFF7E0;
    font-size: 5px;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    white-space: pre;
}

html.customer-male-theme .customer-brand-text {
    color: #F5C542;
}

html.customer-male-theme .customer-auth-mark {
    box-shadow: 0 14px 28px rgba(10, 10, 10, 0.36);
}

html.customer-male-theme .customer-icon-button {
    border-color: rgba(245, 197, 66, 0.22);
    background: #11110F;
    color: var(--text-primary);
    box-shadow: 0 10px 20px rgba(10, 10, 10, 0.32);
}

html.customer-male-theme .customer-icon-button.plain {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

html.customer-male-theme .customer-icon-button.secondary {
    color: #AFA79B;
}

html.customer-male-theme .customer-page-shell-appbar,
html.customer-male-theme .customer-page-shell-appbar .customer-appbar-leading,
html.customer-male-theme .customer-page-shell-appbar .customer-appbar-actions {
    color: var(--text-primary);
}

html.customer-male-theme .customer-home-hero-track {
    box-shadow: 0 18px 32px rgba(10, 10, 10, 0.42);
}

html.customer-male-theme .customer-home-panel,
html.customer-male-theme .customer-accent-section {
    border-color: rgba(245, 197, 66, 0.18);
    background: #11110F;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 42px rgba(10, 10, 10, 0.42);
}

html.customer-male-theme .customer-side-menu-backdrop {
    background: rgba(10, 10, 10, 0.52);
}

html.customer-male-theme .customer-side-menu-panel {
    background: #3F3934;
    box-shadow:
        -16px 0 34px rgba(10, 10, 10, 0.34),
        inset 1px 0 0 rgba(245, 197, 66, 0.12);
}

html.customer-male-theme .customer-side-menu-user-card {
    background: #11110F;
    box-shadow: 0 12px 24px rgba(10, 10, 10, 0.34);
}

html.customer-male-theme .customer-profile-edit-backdrop {
    background: rgba(10, 10, 10, 0.72);
}

html.customer-male-theme .customer-profile-edit-sheet {
    border-color: rgba(245, 197, 66, 0.18);
    background: #11110F;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 32px 56px rgba(10, 10, 10, 0.5);
}

html.customer-male-theme .customer-home-tab-strip::before,
html.customer-male-theme .customer-accent-section .customer-home-tab-strip::before {
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.98) 28%, rgba(18, 18, 18, 0) 100%);
}

html.customer-male-theme .customer-home-tab-strip::after,
html.customer-male-theme .customer-accent-section .customer-home-tab-strip::after {
    background: linear-gradient(270deg, rgba(18, 18, 18, 0.98) 28%, rgba(18, 18, 18, 0) 100%);
}

html.customer-male-theme .customer-home-grid .mobile-grid-card,
html.customer-male-theme .customer-menu-tile,
html.customer-male-theme .customer-side-menu-panel,
html.customer-male-theme .customer-notification-card {
    border-color: rgba(245, 197, 66, 0.18);
    background: #3F3934;
    box-shadow: 0 14px 26px rgba(10, 10, 10, 0.38);
}

html.customer-male-theme .customer-menu-user-avatar,
html.customer-male-theme .customer-menu-icon {
    background: #F5C542;
    color: #0A0A0A;
    box-shadow: 0 12px 24px rgba(10, 10, 10, 0.34);
}

html.customer-male-theme .customer-menu-tile::after,
html.customer-male-theme .customer-menu-copy span,
html.customer-male-theme .customer-home-grid-pagination p {
    color: var(--text-secondary);
}

html.customer-male-theme .customer-menu-tile.active {
    border-color: rgba(245, 197, 66, 0.44);
    background: #2D281F;
    box-shadow: 0 18px 30px rgba(10, 10, 10, 0.42);
}

html.customer-male-theme .customer-menu-tile.active .customer-menu-icon {
    background: #F5C542;
    color: #0A0A0A;
}

html.customer-male-theme .customer-home-grid-dot {
    background: rgba(245, 197, 66, 0.26);
}

html.customer-male-theme .customer-home-grid-dot.active {
    background: #F5C542;
}

html.customer-male-theme .mobile-nav.customer-bottom-nav {
    border-top-color: rgba(245, 197, 66, 0.18);
    background: #211E1A;
    box-shadow: 0 -10px 24px rgba(10, 10, 10, 0.32);
}

html.customer-male-theme .mobile-nav.customer-bottom-nav a.active {
    border: 1px solid rgba(245, 197, 66, 0.24);
    background: #2D281F;
    color: #F5C542;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html.customer-male-theme .customer-tenant-search-bar {
    border-color: rgba(245, 197, 66, 0.2);
    background: #3F3934;
    box-shadow: 0 14px 24px rgba(10, 10, 10, 0.34);
}

html.customer-male-theme .customer-tenant-search-input.mobile-input {
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #FFF7E0;
}

html.customer-male-theme .customer-tenant-search-input.mobile-input::placeholder {
    color: #AFA79B;
}

html.customer-male-theme .customer-invite-url-input {
    border-color: rgba(245, 197, 66, 0.18);
    background: #3F3934;
    color: #AFA79B;
}

html.customer-male-theme .customer-tenant-search-button,
html.customer-male-theme .customer-tenant-info-card-phone:hover,
html.customer-male-theme .customer-tenant-info-card-phone:focus-visible {
    color: #F5C542;
}

html.customer-male-theme .customer-detail-card {
    border-color: rgba(245, 197, 66, 0.18);
    background: #11110F;
}

html.customer-male-theme .customer-tenant-board-contact-label,
html.customer-male-theme .customer-tenant-board-meta-item > span,
html.customer-male-theme .customer-tenant-board-detail-content {
    color: #AFA79B;
}

html.customer-male-theme .customer-tenant-board-meta-item strong,
html.customer-male-theme .customer-tenant-board-meta-inline span {
    color: #FFF7E0;
}

html.customer-male-theme .customer-tenant-board-meta-inline a {
    color: #F5C542;
}

html.customer-male-theme .customer-tenant-info-card:focus-visible {
    outline-color: rgba(245, 197, 66, 0.54);
}

html.customer-male-theme .customer-page-hero,
html.customer-male-theme .customer-profile-hero,
html.customer-male-theme .customer-soft-card,
html.customer-male-theme .customer-inline-note,
html.customer-male-theme .customer-pwa-card,
html.customer-male-theme .customer-support-tile,
html.customer-male-theme .customer-profile-kv,
html.customer-male-theme .customer-consent-card {
    border-color: rgba(245, 197, 66, 0.18);
    background: #3F3934;
    box-shadow: 0 16px 28px rgba(10, 10, 10, 0.38);
}

html.customer-male-theme .customer-page-hero,
html.customer-male-theme .customer-profile-hero {
    background: #11110F;
}

html.customer-male-theme .customer-page-hero p,
html.customer-male-theme .customer-profile-hero p,
html.customer-male-theme .customer-profile-kv span,
html.customer-male-theme .customer-card-heading p,
html.customer-male-theme .mobile-description {
    color: var(--text-secondary);
}

html.customer-male-theme .customer-profile-kv {
    min-height: 48px;
    padding: 14px 16px;
}

html.customer-male-theme .customer-invite-code-kv {
    min-height: 48px;
    padding: 7px 16px;
}

html.customer-male-theme .customer-invite-url-input {
    min-height: 48px;
    padding: 14px 16px;
}

html.customer-male-theme .customer-profile-avatar,
html.customer-male-theme .customer-shortcut-icon,
html.customer-male-theme .customer-shortcut-icon.alt,
html.customer-male-theme .customer-pwa-icon,
html.customer-male-theme .customer-pwa-icon.alt,
html.customer-male-theme .customer-support-icon,
html.customer-male-theme .customer-support-icon.alt {
    background: #F5C542;
    color: #0A0A0A;
    box-shadow: 0 12px 24px rgba(10, 10, 10, 0.34);
}

html.customer-male-theme .customer-profile-avatar-edit-button,
html.customer-male-theme .customer-profile-image-editor__trigger {
    background: #8A6F25;
    color: #FFF7E0;
    box-shadow: 0 10px 20px rgba(10, 10, 10, 0.34);
}

html.customer-male-theme .customer-home-grid .mobile-grid-card,
html.customer-male-theme .customer-tenant-info-card {
    border-color: rgba(245, 197, 66, 0.18);
    background: #3F3934;
}

html.customer-male-theme body.mobile-shell .customer-accent-section .customer-notice-card,
html.customer-male-theme body.mobile-shell .customer-accent-section .mobile-grid-card,
html.customer-male-theme body.mobile-shell .customer-accent-section .customer-tenant-info-card {
    border-color: rgba(245, 197, 66, 0.18);
    background-color: #3F3934;
    background-image: none;
}

html.customer-male-theme .customer-page-shell-copy,
html.customer-male-theme .customer-account-copy span,
html.customer-male-theme .customer-consent-copy span {
    color: var(--text-secondary);
}

html.customer-male-theme .customer-toggle-row {
    border-color: rgba(245, 197, 66, 0.16);
    background: #3F3934;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 26px rgba(10, 10, 10, 0.3);
}

html.customer-male-theme .customer-toggle-track {
    background: #6F655B;
    box-shadow:
        inset 0 1px 3px rgba(10, 10, 10, 0.36),
        inset 0 0 0 1px rgba(245, 197, 66, 0.08);
}

html.customer-male-theme .customer-toggle-track::after {
    background: #FFF7E0;
    box-shadow:
        0 6px 14px rgba(10, 10, 10, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

html.customer-male-theme .customer-toggle-button[aria-checked="true"] .customer-toggle-track {
    background: #F5C542;
}

html.customer-male-theme .customer-toggle-button:focus-visible .customer-toggle-track {
    outline-color: rgba(245, 197, 66, 0.54);
}

html.customer-male-theme .mobile-helper-text {
    color: #AFA79B;
}

html.customer-male-theme .customer-toggle-row + .mobile-helper-text {
    margin: -2px 2px 12px;
    color: #AFA79B;
}

html.customer-male-theme .customer-setting-link {
    border-color: rgba(245, 197, 66, 0.16);
    background: #3F3934;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 24px rgba(10, 10, 10, 0.28);
}

html.customer-male-theme .customer-setting-link::after,
html.customer-male-theme .customer-menu-tile::after {
    color: #F5C542;
}

.customer-account-copy strong {
    font-size: 16px;
}

.customer-account-copy span {
    font-size: 12px;
}

.customer-profile-kv-list {
    gap: 10px;
    margin-bottom: 16px;
}

.customer-profile-kv {
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
}

.customer-profile-kv span {
    min-width: 72px;
    font-size: 12px;
}

.customer-profile-kv strong {
    font-size: 14px;
}

.customer-profile-summary-actions {
    display: flex;
    justify-content: flex-end;
}

.customer-profile-edit-trigger {
    min-width: 132px;
}

.customer-profile-avatar-large {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    font-size: 28px;
}

.customer-profile-avatar-editor {
    width: 88px;
    height: 88px;
    border-radius: 28px;
    font-size: 32px;
}

.customer-profile-avatar-image {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    display: block;
}

.customer-profile-avatar-image[hidden] {
    display: none !important;
}

.customer-profile-avatar-edit-button,
.customer-profile-image-editor__trigger {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(135deg, #d96c93 0%, #ca5c87 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(202, 92, 135, 0.26);
}

.customer-profile-avatar-edit-button {
    position: absolute;
    top: -6px;
    right: -6px;
}

.customer-profile-avatar-edit-button svg,
.customer-profile-image-editor__trigger svg {
    width: 16px;
    height: 16px;
}

.customer-profile-image-editor {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 22px;
    border: 1px solid rgba(240, 217, 226, 0.95);
    background: linear-gradient(180deg, rgba(255, 252, 253, 0.98) 0%, rgba(250, 243, 246, 0.98) 100%);
}

.customer-profile-image-editor__preview {
    position: relative;
    flex: 0 0 auto;
}

.customer-profile-image-editor__trigger {
    position: absolute;
    right: -6px;
    bottom: -6px;
}

.customer-profile-image-editor__copy {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.customer-profile-image-editor__copy strong {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 800;
}

.customer-profile-image-editor__copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
}

.customer-profile-image-editor__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-top: 4px;
}

.customer-profile-image-editor__action-button {
    min-width: 112px;
}

.customer-profile-image-editor__remove {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}

.customer-profile-image-editor__remove input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.customer-profile-edit-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.customer-profile-edit-modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.customer-profile-edit-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(38, 24, 31, 0.44);
    backdrop-filter: blur(10px);
}

.customer-profile-edit-sheet {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: min(82vh, 760px);
    overflow: auto;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    border-radius: 30px 30px 0 0;
    border: 1px solid rgba(243, 220, 229, 0.88);
    background:
        radial-gradient(circle at top right, rgba(255, 218, 231, 0.7), transparent 34%),
        linear-gradient(180deg, rgba(255, 252, 253, 0.98) 0%, rgba(248, 242, 245, 0.98) 100%);
    box-shadow: 0 30px 48px rgba(82, 47, 62, 0.2);
}

.customer-profile-edit-sheet__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.customer-profile-edit-sheet__copy {
    display: grid;
    gap: 6px;
}

.customer-profile-edit-sheet__copy strong {
    color: var(--text-primary);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.customer-profile-edit-sheet__copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}

.customer-profile-edit-close {
    flex-shrink: 0;
}

.customer-profile-edit-form {
    gap: 14px;
}

.customer-profile-edit-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.customer-consent-card {
    gap: 14px;
    padding: 16px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.customer-consent-copy strong {
    margin-bottom: 6px;
    font-size: 14px;
}

.customer-consent-copy span {
    font-size: 12px;
}

.customer-consent-switch {
    width: 84px;
    height: 48px;
}

.customer-consent-switch::after {
    top: 6px;
    right: 6px;
    width: 36px;
    height: 36px;
}

.customer-page-shell-appbar {
    align-items: flex-start;
}

.customer-page-shell-appbar .customer-appbar-leading {
    align-items: flex-start;
    flex: 1 1 auto;
}

.customer-page-shell-copy {
    min-width: 0;
}

.customer-page-shell-copy .customer-page-subtitle {
    margin-top: 4px;
}

.customer-page-shell-appbar .customer-appbar-actions {
    padding-top: 2px;
}

.customer-toggle-field {
    gap: 8px;
}

.customer-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(240, 217, 226, 0.92);
    border-radius: 16px;
    background: linear-gradient(180deg, #fffdfd 0%, #fff8fb 100%);
}

.customer-toggle-row-soft {
    margin-bottom: 10px;
}

.customer-toggle-row-spaced {
    margin-top: 14px;
}

.customer-toggle-copy {
    min-width: 0;
}

.customer-toggle-copy strong,
.customer-toggle-copy .mobile-label {
    display: block;
    margin: 0;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.customer-toggle-copy p {
    margin: 4px 0 0;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-toggle-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    flex: 0 0 auto;
    cursor: pointer;
}

.customer-toggle-track {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 26px;
    border-radius: 999px;
    background: #ead6de;
    box-shadow: inset 0 1px 3px rgba(122, 78, 96, 0.08);
    transition: background-color 0.18s ease;
}

.customer-toggle-track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(74, 54, 64, 0.16);
    transition: transform 0.18s ease;
}

.customer-toggle-button[aria-checked="true"] .customer-toggle-track {
    background: linear-gradient(135deg, #d96c93 0%, #ca5c87 100%);
}

.customer-toggle-button[aria-checked="true"] .customer-toggle-track::after {
    transform: translateX(18px);
}

.customer-toggle-button:focus-visible .customer-toggle-track {
    outline: 2px solid rgba(202, 92, 135, 0.25);
    outline-offset: 2px;
}

body.mobile-shell.customer-location-consent-open {
    overflow: hidden;
}

.customer-location-consent-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    align-items: end;
}

.customer-location-consent-modal[aria-hidden="true"] {
    visibility: hidden;
    pointer-events: none;
}

.customer-location-consent-modal[aria-hidden="false"] {
    visibility: visible;
    pointer-events: auto;
}

.customer-location-consent-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(51, 34, 42, 0.44);
    backdrop-filter: blur(10px);
}

html.customer-male-theme .customer-location-consent-backdrop {
    background: rgba(10, 10, 10, 0.62);
}

.customer-location-consent-sheet {
    position: relative;
    margin: 0 auto;
    width: min(100%, 560px);
    padding: 28px 22px calc(28px + env(safe-area-inset-bottom, 0px));
    border-radius: 28px 28px 0 0;
    background: radial-gradient(circle at top right, rgba(255, 210, 226, 0.74), transparent 36%),
    linear-gradient(180deg, #fffafb 0%, #fff4f7 100%);
    box-shadow: 0 -16px 48px rgba(83, 53, 66, 0.22);
}

html.customer-male-theme .customer-location-consent-sheet {
    border: 1px solid rgba(245, 197, 66, 0.18);
    border-bottom: 0;
    background: #11110F;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 -18px 48px rgba(10, 10, 10, 0.52);
}

.customer-location-consent-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(202, 92, 135, 0.12);
    color: #b54f79;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

html.customer-male-theme .customer-location-consent-chip {
    border: 1px solid rgba(245, 197, 66, 0.36);
    background: rgba(245, 197, 66, 0.16);
    color: #F5C542;
}

.customer-location-consent-sheet h2 {
    margin: 14px 0 10px;
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.customer-location-consent-sheet p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.customer-location-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

@media (max-width: 430px) {
    .customer-summary-grid,
    .customer-shortcut-row,
    .customer-auth-links.compact,
    .customer-soft-grid,
    .customer-support-overview,
    .customer-pwa-panel,
    .customer-info-grid {
        grid-template-columns: 1fr;
    }

    .customer-home-header {
        align-items: center;
    }

    .customer-summary-footer,
    .customer-profile-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .customer-stage-row {
        grid-template-columns: 1fr;
    }

    .customer-appbar-dual,
    .customer-consent-card,
    .customer-chat-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .customer-request-history-appbar {
        position: relative;
        flex-direction: row;
        align-items: flex-start;
        padding-right: 96px;
    }

    .customer-chat-bubble {
        max-width: 100%;
    }

    .customer-chat-message-stack {
        padding-right: 18px;
        margin-right: -18px;
        box-sizing: border-box;
        width: fit-content;
        min-width: 0;
        max-width: calc(100% - 48px);
    }

    .customer-chat-message-stack.self {
        max-width: calc(100% + 6px);
    }

    .customer-chat-message-stack.other .customer-chat-bubble {
        max-width: calc(100% - 42px);
    }

    .customer-chat-guide-toast-stack {
        top: 14px;
        width: min(calc(100% - 24px), 360px);
    }

    .customer-location-consent-sheet {
        padding: 24px 18px calc(24px + env(safe-area-inset-bottom, 0px));
        border-radius: 24px 24px 0 0;
    }

    .customer-location-consent-sheet h2 {
        font-size: 20px;
    }

    .customer-location-consent-actions {
        grid-template-columns: 1fr;
    }

    .customer-home-panel {
        margin-top: 16px;
        border-radius: 28px;
        box-shadow: 0 14px 24px rgba(216, 168, 185, 0.09);
    }

    .customer-profile-summary-actions {
        justify-content: stretch;
    }

    .customer-profile-edit-trigger {
        width: 100%;
    }

    .customer-profile-image-editor {
        flex-direction: column;
        align-items: flex-start;
    }

    .customer-profile-edit-sheet {
        width: 100%;
        padding: 22px 16px calc(22px + env(safe-area-inset-bottom, 0px));
        border-radius: 26px 26px 0 0;
    }

    .customer-profile-edit-sheet__header {
        margin-bottom: 16px;
    }

    .customer-profile-edit-sheet__copy strong {
        font-size: 18px;
    }

    .customer-profile-edit-actions {
        grid-template-columns: 1fr;
    }

    .customer-home-tab-strip::before,
    .customer-home-tab-strip::after {
        width: 22px;
    }

    .customer-home-tabs {
        gap: 16px;
        padding: 16px 16px 0;
        scroll-padding-inline: 16px;
    }

    .customer-home-board-panel {
        --customer-home-board-item-height: 52px;
        padding: 12px 12px 14px;
    }

    .customer-home-board-panel .customer-tenant-board-list-item {
        padding: 0 10px;
    }

    .customer-home-board-line {
        gap: 6px;
    }

    .customer-home-board-line-title {
        font-size: 13px;
    }

    .customer-home-board-line-comment-count,
    .customer-home-board-line-author,
    .customer-home-board-line-date {
        font-size: 10px;
    }

    .customer-home-board-scroll.is-scrollable {
        height: min(
            calc(
                (var(--customer-home-board-item-height) * var(--customer-home-board-visible-count))
                + (9 * 10px)
            ),
            48dvh
        );
        max-height: min(
            calc(
                (var(--customer-home-board-item-height) * var(--customer-home-board-visible-count))
                + (9 * 10px)
            ),
            48dvh
        );
    }

    .customer-home-board-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 0 2px 12px;
    }

    .customer-home-board-actions {
        width: 100%;
        justify-content: stretch;
    }

    .customer-home-board-action {
        flex: 1 1 0;
        justify-content: center;
        padding: 0 12px;
    }

    .customer-home-grid {
        padding-bottom: 20px;
    }
}

.customer-tenant-board-hero {
    gap: 18px;
}

.customer-tenant-board-identity {
    display: flex;
    align-items: center;
    gap: 14px;
}

.customer-tenant-board-identity .customer-card-heading {
    margin: 0;
}

.customer-tenant-board-identity .mobile-section-title {
    margin-bottom: 0;
}

.customer-tenant-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ff8aa8, #ffbf95);
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    box-shadow: 0 16px 30px rgba(202, 92, 135, 0.16);
}

.customer-tenant-icon > span,
.customer-tenant-icon-image {
    position: relative;
    z-index: 1;
}

.customer-tenant-icon.compact {
    font-size: 14px;
    padding: 0 8px;
}

.customer-tenant-icon.has-image {
    padding: 0;
    background: #ffffff;
    border: 0;
}

.customer-tenant-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.customer-tenant-icon-image[hidden] {
    display: none !important;
}

.customer-tenant-board-banner {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 10px;
    padding: 20px 18px;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(255, 226, 214, 0.9), transparent 36%),
    linear-gradient(135deg, #fff0e5 0%, #ffd6de 52%, #f9bfd0 100%);
    border: 1px solid rgba(202, 92, 135, 0.14);
    box-shadow: 0 18px 36px rgba(202, 92, 135, 0.12);
}

.customer-tenant-board-banner::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -36px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}

.customer-tenant-board-banner-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #a44f70;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.customer-tenant-board-banner strong,
.customer-tenant-board-banner p {
    position: relative;
    z-index: 1;
}

.customer-tenant-board-banner strong {
    color: #332128;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.customer-tenant-board-banner p {
    margin: 0;
    max-width: 320px;
    color: #6f4d5d;
    font-size: 13px;
    line-height: 1.7;
}

.customer-tenant-board-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.customer-tenant-board-meta-item {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(202, 92, 135, 0.12);
}

.customer-tenant-board-meta-item > span {
    display: block;
    color: #9b6b7f;
    font-size: 12px;
    margin-bottom: 6px;
}

.customer-tenant-board-meta-item strong {
    color: #372630;
    font-size: 14px;
    font-weight: 700;
}

.customer-tenant-board-meta-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.customer-tenant-board-meta-inline span {
    color: inherit;
    font-size: inherit;
}

.customer-tenant-board-contact-summary {
    min-width: 0;
    flex: 1 1 auto;
}

.customer-tenant-board-contact-summary .customer-tenant-board-meta-item {
    display: grid;
    gap: 4px;
    margin-bottom: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.customer-tenant-board-contact-summary .customer-tenant-board-meta-inline {
    min-width: 0;
    flex-wrap: wrap;
    gap: 6px;
    white-space: normal;
    line-height: 1.5;
}

.customer-tenant-board-contact-label {
    display: block;
    color: #9b6b7f;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.customer-tenant-board-meta-inline a {
    text-decoration: none;
}

.customer-tenant-board-meta-inline .customer-phone-icon-link {
    width: 30px;
    height: 30px;
}

.customer-tenant-board-meta-inline a:focus-visible {
    outline: 2px solid rgba(202, 92, 135, 0.32);
    outline-offset: 3px;
    border-radius: 8px;
}

.customer-tenant-board-list-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.customer-tenant-board-list-header .customer-card-heading {
    flex: 1 1 auto;
    min-width: 0;
}

.customer-tenant-board-list-compose-button {
    flex-shrink: 0;
    align-self: flex-start;
    width: fit-content;
    min-width: 0;
    min-height: 32px;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.15;
    box-shadow: 0 8px 16px rgba(202, 92, 135, 0.16);
}

.customer-tenant-board-compose-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 14px calc(20px + env(safe-area-inset-bottom, 0px));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.customer-tenant-board-compose-modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.customer-tenant-board-compose-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(34, 21, 28, 0.38);
    backdrop-filter: blur(8px);
}

.customer-tenant-board-compose-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: min(88vh, 900px);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px;
    border: 1px solid rgba(232, 207, 217, 0.96);
    background: radial-gradient(circle at top right, rgba(255, 231, 222, 0.72), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 253, 0.98), rgba(255, 247, 250, 0.98));
    box-shadow: 0 20px 42px rgba(80, 45, 58, 0.16),
    0 6px 16px rgba(31, 42, 58, 0.06);
    display: grid;
    gap: 14px;
}

.customer-tenant-board-compose-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    margin: 0;
    padding: 0;
    border-bottom: 0;
    background: none;
    backdrop-filter: none;
}

.customer-tenant-board-compose-copy {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    margin-bottom: 0;
}

.customer-tenant-board-compose-header .mobile-section-title {
    margin: 0;
    color: var(--text-primary);
    font-size: 18px;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.customer-tenant-board-compose-header p {
    margin: 6px 0 0;
    max-width: 430px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.customer-tenant-board-compose-close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    color: #83596a;
    box-shadow: 0 6px 14px rgba(216, 168, 185, 0.07);
}

.customer-tenant-board-compose-close svg {
    width: 18px;
    height: 18px;
}

.customer-tenant-board-compose-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
}

.customer-tenant-board-compose-body .mobile-banner.warning {
    margin-bottom: 0;
}

.customer-tenant-board-compose-form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
}

.customer-tenant-board-compose-main {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
}

.customer-tenant-board-compose-content-field {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

.customer-tenant-board-compose-editor-shell {
    display: flex;
    flex: 1 1 auto;
    min-height: min(54dvh, 560px);
}

.customer-tenant-board-compose-editor-shell .customer-tenant-board-editor {
    flex: 1 1 auto;
    min-height: 100%;
}

.customer-tenant-board-compose-footer {
    display: grid;
    gap: 10px;
}

.customer-tenant-board-compose-body .mobile-fieldset {
    gap: 14px;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
}

.customer-tenant-board-compose-body .mobile-field {
    gap: 8px;
}

.customer-tenant-board-compose-body .mobile-label {
    color: #7d6470;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.customer-tenant-board-compose-body .mobile-input {
    min-height: 0;
    padding: 14px;
    border-radius: 14px;
    border-color: var(--border);
    background: #ffffff;
    box-shadow: none;
}

.customer-tenant-board-compose-body .mobile-input::placeholder {
    color: var(--text-muted);
}

.customer-tenant-board-compose-body .mobile-helper-text {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.45;
}

.customer-tenant-board-compose-submit-row {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    background: none;
    position: static;
}

.customer-tenant-board-compose-submit-row .mobile-primary-button {
    height: 48px;
    min-height: 48px;
    border-radius: 14px;
}

.customer-tenant-board-check {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    color: #6f4d5d;
    font-size: 14px;
    font-weight: 700;
    margin-top: 6px;
    padding: 0;
}

.customer-tenant-board-check + .customer-tenant-board-compose-submit-row {
    margin-top: 0;
    padding-top: 0;
}

.customer-tenant-board-file-picker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid rgba(202, 92, 135, 0.16);
    background: #ffffff;
}

.customer-tenant-board-file-picker-stack {
    display: grid;
    gap: 8px;
}

.customer-tenant-board-file-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.customer-tenant-board-file-label-row .mobile-label {
    margin: 0;
}

.customer-tenant-board-file-picker-extra {
    display: grid;
    gap: 8px;
}

.customer-tenant-board-file-picker.is-primary {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.customer-tenant-board-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.customer-tenant-board-file-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ca5c87, #e57c9d);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(202, 92, 135, 0.2);
    cursor: pointer;
}

.customer-tenant-board-file-summary {
    min-width: 0;
    color: #7f5a6a;
    font-size: 12px;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-tenant-board-file-add-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(202, 92, 135, 0.18);
    border-radius: 12px;
    background: #ffffff;
    color: #8f3458;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    box-shadow: 0 8px 18px rgba(202, 92, 135, 0.08);
    cursor: pointer;
}

.customer-tenant-board-file-add-button > span[aria-hidden="true"] {
    font-size: 18px;
    line-height: 1;
}

.customer-tenant-board-file-remove-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(202, 92, 135, 0.18);
    border-radius: 12px;
    background: #ffffff;
    color: #8f3458;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    padding: 0;
    box-shadow: 0 8px 18px rgba(202, 92, 135, 0.08);
    cursor: pointer;
}

.customer-tenant-board-file-remove-button svg {
    width: 18px;
    height: 18px;
    display: block;
}

.customer-tenant-board-file-remove-button[hidden] {
    display: none;
}

.customer-tenant-board-file-add-button:disabled {
    opacity: 0.42;
    cursor: default;
}

.customer-tenant-board-file-remove-button:hover,
.customer-tenant-board-file-remove-button:focus-visible,
.customer-tenant-board-file-add-button:hover,
.customer-tenant-board-file-add-button:focus-visible {
    border-color: rgba(202, 92, 135, 0.32);
    box-shadow: 0 10px 24px rgba(202, 92, 135, 0.14);
}

.customer-tenant-board-write-textarea,
.customer-tenant-board-comment-textarea {
    min-height: 150px;
}

.customer-tenant-board-editor-shell {
    border-radius: 24px;
    border: 0;
    background: #ffffff;
    box-shadow: none;
    overflow: hidden;
}

.customer-tenant-board-editor-shell:focus-within {
    box-shadow: none;
}

.customer-tenant-board-toolbar-shell {
    display: block;
    margin-bottom: 10px;
    min-width: 0;
}

.customer-tenant-board-toolbar-nav {
    display: none;
}

.customer-tenant-board-editor-toolbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(202, 92, 135, 0.14);
    border-radius: 16px;
    background: #ffffff;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.customer-tenant-board-editor-toolbar::-webkit-scrollbar {
    display: none;
}

.customer-tenant-board-toolbar-group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.customer-tenant-board-toolbar-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(202, 92, 135, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
    color: #4b2c39;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.customer-tenant-board-toolbar-color {
    overflow: hidden;
    cursor: pointer;
}

.customer-tenant-board-toolbar-color::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 6px;
    height: 3px;
    border-radius: 999px;
    background: var(--toolbar-swatch, #4b2c39);
}

.customer-tenant-board-toolbar-color-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.customer-tenant-board-toolbar-button svg {
    width: 16px;
    height: 16px;
    display: block;
    color: currentColor;
    flex-shrink: 0;
}

.customer-toolbar-button-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.customer-tenant-board-toolbar-button.is-active {
    border-color: rgba(202, 92, 135, 0.34);
    background: rgba(202, 92, 135, 0.12);
    color: #8f3458;
}

.customer-tenant-board-editor {
    min-height: 180px;
    border: 0;
    background: transparent;
    color: #4f3542;
    font-size: 12px;
    line-height: 1.7;
    outline: none;
    -webkit-text-size-adjust: 100%;
    padding: 16px;
    font-family: inherit;
}

.customer-tenant-board-editor .tiptap,
.customer-tenant-board-editor .ProseMirror {
    min-height: 180px;
    background: transparent;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: none !important;
    border: 0 !important;
    box-shadow: none !important;
    white-space: pre-wrap;
}

.customer-tenant-board-editor .tiptap:focus,
.customer-tenant-board-editor .tiptap:focus-visible,
.customer-tenant-board-editor .ProseMirror:focus,
.customer-tenant-board-editor .ProseMirror:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.customer-tenant-board-editor .tiptap.ProseMirror-selectednode,
.customer-tenant-board-editor .ProseMirror.ProseMirror-selectednode,
.customer-tenant-board-editor .ProseMirror-selectednode {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.customer-tenant-board-editor .tiptap > *:first-child,
.customer-tenant-board-editor .ProseMirror > *:first-child {
    margin-top: 0;
}

.customer-tenant-board-editor .tiptap > *:last-child,
.customer-tenant-board-editor .ProseMirror > *:last-child {
    margin-bottom: 0;
}

.customer-tenant-board-editor .tiptap .is-editor-empty:first-child::before,
.customer-tenant-board-editor .ProseMirror .is-editor-empty:first-child::before {
    content: attr(data-placeholder);
    float: left;
    color: #b58b9b;
    pointer-events: none;
    height: 0;
}

.customer-tenant-board-editor p,
.customer-tenant-board-editor ul,
.customer-tenant-board-editor ol,
.customer-tenant-board-editor blockquote {
    margin: 0 0 10px;
    white-space: pre-wrap;
    word-break: break-word;
}

.customer-tenant-board-editor ul,
.customer-tenant-board-editor ol {
    padding-left: 18px;
}

.customer-tenant-board-editor blockquote {
    padding: 8px 12px;
    border-left: 3px solid rgba(202, 92, 135, 0.28);
    border-radius: 12px;
    background: rgba(202, 92, 135, 0.06);
}

.customer-tenant-board-editor-media {
    width: min(100%, var(--editor-media-width, 100%));
    margin: 12px auto;
    display: block;
    transition: width 0.14s ease;
    cursor: grab;
}

.customer-tenant-board-editor-media.is-dragging {
    opacity: 0.58;
    transform: scale(0.99);
}

.customer-tenant-board-editor-media-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(202, 92, 135, 0.14);
    background: linear-gradient(135deg, rgba(111, 58, 80, 0.92), rgba(46, 28, 37, 0.94));
}

.customer-tenant-board-editor-media-frame img,
.customer-tenant-board-editor-media-frame video {
    display: block;
    width: 100%;
    max-height: 380px;
    background: rgba(35, 22, 29, 0.96);
    object-fit: contain;
}

.customer-tenant-board-editor-media-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(35, 22, 29, 0.82);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.customer-tenant-board-editor-media-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: rgba(35, 22, 29, 0.78);
    color: #fff6fa;
    font-size: 0;
    line-height: 1;
    font-weight: 700;
    padding: 0;
}

.customer-tenant-board-editor-media-remove::before {
    content: "×";
    font-size: 18px;
    line-height: 1;
}

.customer-tenant-board-editor-media-handle {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid rgba(255, 248, 252, 0.92);
    background: linear-gradient(135deg, #e06c9b, #9d365d);
    box-shadow: 0 10px 20px rgba(77, 35, 53, 0.34);
    touch-action: none;
}

.customer-tenant-board-editor-media-handle::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-right: 3px solid #fffafd;
    border-bottom: 3px solid #fffafd;
}

.customer-tenant-board-list {
    display: grid;
    gap: 10px;
}

.customer-tenant-board-list-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(202, 92, 135, 0.14);
    box-shadow: 0 10px 22px rgba(202, 92, 135, 0.06);
    color: inherit;
}

.customer-tenant-board-list-item-no-thumb {
    grid-template-columns: minmax(0, 1fr);
}

.customer-tenant-board-thumb-shell {
    position: relative;
}

.customer-tenant-board-thumb {
    position: relative;
    width: 86px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(202, 92, 135, 0.16), rgba(246, 184, 204, 0.56));
    border: 1px solid rgba(202, 92, 135, 0.14);
}

.customer-tenant-board-thumb img,
.customer-tenant-board-thumb video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.customer-tenant-board-thumb video {
    pointer-events: none;
}

.customer-tenant-board-thumb-badge {
    position: absolute;
    right: 6px;
    bottom: 6px;
    padding: 3px 6px;
    border-radius: 999px;
    background: rgba(38, 28, 33, 0.78);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.customer-tenant-board-list-copy {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.customer-tenant-board-list-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
}

.customer-tenant-board-list-title {
    flex: 1 1 auto;
    min-width: 0;
    color: #2f2128;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-tenant-board-list-comment-count {
    flex-shrink: 0;
    color: #e05266;
    font-size: 13px;
    font-weight: 700;
}

.customer-tenant-board-list-meta {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px 10px;
    color: #8f6a79;
    font-size: 11px;
    min-width: 0;
}

.customer-tenant-board-list-meta span {
    min-width: 0;
}

.customer-tenant-board-list-meta span:first-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-tenant-board-list-meta span:last-child {
    white-space: nowrap;
    flex-shrink: 0;
}

.customer-tenant-board-post-content {
    margin: 0;
    color: #43333b;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.customer-tenant-board-lock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    padding: 0;
    border-radius: 999px;
    background: rgba(194, 85, 131, 0.12);
    color: #a43f6b;
    flex-shrink: 0;
}

.customer-tenant-board-lock-badge svg {
    width: 12px;
    height: 12px;
    display: block;
}

.customer-tenant-board-detail-card {
    gap: 12px;
}

.customer-tenant-board-detail-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}

.customer-tenant-board-password-panel {
    display: grid;
    gap: 12px;
}

.customer-tenant-board-password-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.customer-tenant-board-password-prompt {
    margin: 0;
    color: #8f6a79;
    font-size: 12px;
    line-height: 1.6;
}

.customer-tenant-board-detail-copy {
    min-width: 0;
}

.customer-tenant-board-detail-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
}

.customer-tenant-board-detail-copy .mobile-section-title {
    margin: 0;
    line-height: 1.4;
    word-break: break-word;
}

.customer-tenant-board-detail-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.customer-tenant-board-detail-meta strong {
    color: #372630;
    font-size: 13px;
    font-weight: 800;
}

.customer-tenant-board-detail-meta span {
    color: #8f6a79;
    font-size: 11px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.customer-tenant-board-detail-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.customer-tenant-board-delete-form {
    display: flex;
    margin: 0;
}

.customer-tenant-board-detail-action-button {
    width: auto;
    min-width: 64px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: none;
}

.customer-tenant-board-form-page {
    display: grid;
    gap: 14px;
}

.customer-tenant-board-form-overview {
    padding-block: 14px;
}

.customer-tenant-board-form-summary .customer-tenant-board-detail-meta {
    gap: 4px;
    justify-items: start;
    text-align: left;
}

.customer-tenant-board-form-summary .customer-tenant-board-detail-meta strong {
    font-size: 14px;
}

.customer-tenant-board-form-summary .customer-tenant-board-detail-meta span {
    white-space: normal;
    line-height: 1.5;
}

.customer-tenant-board-form-card {
    display: grid;
    gap: 14px;
    background: #ffffff;
}

.customer-tenant-board-form-card .customer-card-heading {
    margin-bottom: 0;
}

.customer-tenant-board-form-title-input {
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 16px;
}

.customer-tenant-board-form-content-card {
    min-height: 0;
}

.customer-tenant-board-form-editor-shell {
    display: flex;
    min-height: clamp(360px, 50dvh, 620px);
    border: 0 !important;
    background: #ffffff;
    box-shadow: none !important;
}

.customer-tenant-board-form-editor-shell .customer-tenant-board-editor {
    flex: 1 1 auto;
    min-height: 100%;
}

.customer-tenant-board-form-helper {
    margin: 0;
}

.customer-tenant-board-form-options-card {
  gap: 12px;
}

.customer-tenant-board-form-field {
  display: grid;
  gap: 8px;
}

.customer-tenant-board-form-check {
  margin-top: 0;
}

.customer-tenant-board-form-actions {
  display: grid;
  gap: 8px;
}

.customer-tenant-board-form-cancel {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  box-shadow: none;
  justify-self: stretch;
}

.customer-tenant-board-form-submit {
  width: 100%;
  height: 48px;
  min-height: 48px;
  border-radius: 14px;
}

.customer-tenant-board-media-grid {
    display: grid;
    gap: 14px;
}

.customer-tenant-board-media-card {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(202, 92, 135, 0.12);
    box-shadow: 0 12px 28px rgba(202, 92, 135, 0.08);
}

.customer-tenant-board-media-card img,
.customer-tenant-board-media-card video {
    width: 100%;
    display: block;
    background: #f9f2f5;
}

.customer-tenant-board-media-caption {
    display: none;
    min-width: 0;
    padding: 10px 14px 12px;
    color: #8f6c7b;
    font-size: 11px;
    line-height: 1.35;
    overflow: hidden;
}

.customer-tenant-board-media-caption span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-tenant-board-media-caption strong,
.customer-tenant-board-rich-media-caption strong {
    display: none;
}

.customer-tenant-board-zoomable-image {
    cursor: zoom-in;
}

.customer-tenant-board-zoomable-image:focus-visible {
    outline: 2px solid rgba(202, 92, 135, 0.92);
    outline-offset: 3px;
}

.customer-tenant-board-detail-content {
    color: #43333b;
    font-size: 12px;
    line-height: 1.72;
    white-space: pre-wrap;
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
}

.customer-tenant-board-rich-content {
    display: grid;
    gap: 14px;
    width: 100%;
    min-width: 0;
}

.customer-tenant-board-rich-content p {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.customer-tenant-board-detail-content > *,
.customer-tenant-board-rich-content > * {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.customer-tenant-board-rich-media {
    width: min(100%, var(--rich-media-width, 100%));
    margin: 0 auto;
    display: grid;
    gap: 8px;
    max-width: 100%;
    min-width: 0;
}

.customer-tenant-board-rich-content figure {
    margin: 0 auto;
}

.customer-tenant-board-rich-media[data-media-align="left"] {
    margin-left: 0;
    margin-right: auto;
}

.customer-tenant-board-rich-media[data-media-align="center"] {
    margin-left: auto;
    margin-right: auto;
}

.customer-tenant-board-rich-media[data-media-align="right"] {
    margin-left: auto;
    margin-right: 0;
}

.customer-tenant-board-rich-content figure.customer-tenant-board-rich-media[data-media-align="left"] {
    margin-left: 0;
    margin-right: auto;
}

.customer-tenant-board-rich-content figure.customer-tenant-board-rich-media[data-media-align="center"] {
    margin-left: auto;
    margin-right: auto;
}

.customer-tenant-board-rich-content figure.customer-tenant-board-rich-media[data-media-align="right"] {
    margin-left: auto;
    margin-right: 0;
}

.customer-tenant-board-rich-media-frame {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(111, 58, 80, 0.92), rgba(46, 28, 37, 0.94));
}

.customer-tenant-board-rich-media-frame img,
.customer-tenant-board-rich-media-frame video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    background: rgba(35, 22, 29, 0.96);
    object-fit: contain;
}

.customer-tenant-board-rich-content img,
.customer-tenant-board-rich-content video {
    max-width: 100%;
}

.customer-tenant-board-rich-media-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(35, 22, 29, 0.82);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.customer-tenant-board-rich-media-caption {
    display: none;
    min-width: 0;
    color: #8f6c7b;
    font-size: 11px;
    line-height: 1.35;
    overflow: hidden;
}

.customer-tenant-board-rich-content figcaption {
    margin: 0;
}

.customer-tenant-board-rich-media-caption span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-tenant-board-comment-form {
    margin-bottom: 14px;
}

.customer-submit-loader {
    position: fixed;
    inset: 0;
    z-index: 1450;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(31, 19, 25, 0.3);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.customer-submit-loader[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.customer-submit-loader-card {
    min-width: min(240px, calc(100vw - 40px));
    padding: 22px 20px;
    border-radius: 24px;
    border: 1px solid rgba(240, 217, 226, 0.96);
    background: rgba(255, 252, 253, 0.96);
    box-shadow: 0 18px 32px rgba(216, 168, 185, 0.18),
    0 4px 10px rgba(31, 42, 58, 0.05);
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.customer-submit-loader-spinner {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 3px solid rgba(202, 92, 135, 0.18);
    border-top-color: #ca5c87;
    animation: customer-submit-loader-spin 0.8s linear infinite;
}

.customer-submit-loader-card strong {
    color: #372630;
    font-size: 14px;
    font-weight: 800;
}

.customer-submit-loader-card p {
    margin: 0;
    color: #8f6a79;
    font-size: 12px;
    line-height: 1.5;
}

.customer-tenant-board-image-viewer {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px calc(24px + env(safe-area-inset-bottom, 0px));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.customer-tenant-board-image-viewer[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.customer-tenant-board-image-viewer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(27, 17, 22, 0.84);
    backdrop-filter: blur(10px);
}

.customer-tenant-board-image-viewer-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    display: grid;
    gap: 12px;
}

.customer-tenant-board-image-viewer-close {
    justify-self: end;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    color: #fff7fb;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.customer-tenant-board-image-viewer-figure {
    margin: 0;
    display: grid;
    gap: 10px;
}

.customer-tenant-board-image-viewer-figure img {
    display: block;
    width: 100%;
    max-height: min(72vh, 680px);
    border-radius: 24px;
    background: rgba(23, 14, 19, 0.96);
    object-fit: contain;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.customer-tenant-board-image-viewer-caption {
    margin: 0;
    color: #fff3f8;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
    overflow-wrap: anywhere;
}

.customer-tenant-board-comment-list {
    display: grid;
    gap: 12px;
}

.customer-tenant-board-comment-item {
    display: grid;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
}

.customer-tenant-board-comment-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    color: #8f6a79;
    font-size: 12px;
}

.customer-tenant-board-comment-header strong {
    color: #372630;
    font-size: 13px;
}

.customer-tenant-board-comment-header span {
    flex-shrink: 0;
    white-space: nowrap;
}

.customer-tenant-board-comment-content {
    margin: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    color: #43333b;
    font-size: 14px;
    line-height: 1.6;
    white-space: normal;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.customer-tenant-board-comment-item.is-expanded .customer-tenant-board-comment-content {
    display: block;
    overflow: visible;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    -webkit-line-clamp: unset;
}

.customer-tenant-board-comment-content[hidden],
.customer-tenant-board-comment-item.is-comment-editing .customer-tenant-board-comment-content {
    display: none;
}

.customer-tenant-board-comment-toggle {
    justify-self: flex-start;
    border: 0;
    background: transparent;
    padding: 0;
    color: #c25583;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.customer-tenant-board-comment-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
    justify-self: stretch;
}

.customer-tenant-board-comment-item.is-comment-editing > .customer-tenant-board-comment-actions {
    display: none;
}

.customer-tenant-board-comment-actions form {
    margin: 0;
}

.customer-tenant-board-comment-edit-form {
    display: grid;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
    box-shadow: none;
}

.customer-tenant-board-comment-reply-form {
    display: grid;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #efd5df;
    border-radius: 12px;
    background: #fff;
    text-align: left;
    box-shadow: 0 8px 18px rgba(203, 130, 158, 0.08);
}

.customer-tenant-board-comment-edit-form[hidden],
.customer-tenant-board-comment-reply-form[hidden] {
    display: none;
}

.customer-tenant-board-comment-edit-textarea,
.customer-tenant-board-comment-reply-textarea {
    min-height: 92px;
    resize: vertical;
}

.customer-tenant-board-comment-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.customer-tenant-board-comment-action-button {
    min-height: 28px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #c25583;
    cursor: pointer;
}

.customer-tenant-board-comment-action-button:hover,
.customer-tenant-board-comment-action-button:focus-visible {
    background: transparent !important;
    box-shadow: none !important;
    color: #a83f70;
}

.customer-tenant-board-comment-action-button.danger {
    color: #b43a56;
}

.customer-tenant-board-comment-replies {
    display: grid;
    gap: 8px;
    margin-top: 4px;
    padding-left: 14px;
    border-left: 2px solid #f3d7e3;
}

.customer-tenant-board-comment-item.is-reply {
    background: #fffafd;
}

@keyframes customer-submit-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 520px) {
    .customer-tenant-board-form-content-card {
        padding: 14px;
        border-radius: 14px;
        gap: 10px;
    }

    .customer-tenant-board-banner {
        padding: 18px 16px;
    }

    .customer-tenant-board-banner strong {
        font-size: 18px;
    }

    .customer-tenant-board-meta-inline {
        gap: 6px;
        font-size: 13px;
    }

    .customer-tenant-board-list-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 10px;
        padding: 9px 10px;
    }

    .customer-tenant-board-list-item-no-thumb {
        grid-template-columns: minmax(0, 1fr);
    }

    .customer-tenant-board-thumb {
        width: 76px;
        height: 54px;
    }

    .customer-tenant-board-detail-meta {
        justify-items: start;
        text-align: left;
        margin-top: 4px;
    }

    .customer-tenant-board-detail-title-row {
        flex-direction: column;
    }

    .customer-tenant-board-detail-actions {
        gap: 6px;
    }

    .customer-tenant-board-detail-action-button {
        min-width: 58px;
        min-height: 32px;
        padding: 0 12px;
        font-size: 11px;
    }

    .customer-tenant-board-form-page {
        gap: 12px;
    }

    .customer-tenant-board-form-overview {
        padding-block: 12px;
    }

    .customer-tenant-board-form-card {
        gap: 12px;
    }

    .customer-tenant-board-form-card .customer-card-heading {
        margin-bottom: -2px;
    }

    .customer-tenant-board-form-title-input {
        min-height: 42px;
        padding: 9px 13px;
        border-radius: 14px;
    }

    .customer-tenant-board-form-editor-shell {
        min-height: clamp(250px, 31dvh, 360px);
        border-radius: 16px;
    }

    .customer-tenant-board-form-editor-shell .customer-tenant-board-editor {
        padding: 12px;
    }

    .customer-tenant-board-toolbar-shell {
        margin-bottom: 8px;
    }

    .customer-tenant-board-editor-toolbar {
        flex-wrap: nowrap;
        align-items: center;
        gap: 6px;
        padding: 8px 10px;
        border-radius: 16px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .customer-tenant-board-toolbar-group {
        gap: 4px;
    }

    .customer-tenant-board-toolbar-button {
        width: 31px;
        height: 31px;
        border-radius: 10px;
    }

    .customer-tenant-board-toolbar-button svg {
        width: 14px;
        height: 14px;
    }

    .customer-tenant-board-editor .tiptap,
    .customer-tenant-board-editor .ProseMirror {
        min-height: 210px;
    }

    .customer-tenant-board-form-field {
        gap: 6px;
    }

    .customer-tenant-board-form-field .customer-tenant-board-file-picker {
        padding: 8px 10px;
        border-radius: 14px;
    }

    .customer-tenant-board-form-field .customer-tenant-board-file-button {
        min-height: 34px;
        padding: 0 14px;
        font-size: 12px;
    }

    .customer-tenant-board-form-field .customer-tenant-board-file-summary {
        font-size: 11px;
        line-height: 1.35;
    }

    .customer-tenant-board-form-field .customer-tenant-board-file-remove-button {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 18px;
    }

    .customer-tenant-board-form-field .customer-tenant-board-file-remove-button svg {
        width: 16px;
        height: 16px;
    }

    .customer-tenant-board-form-field .customer-tenant-board-file-add-button {
        min-height: 30px;
        padding: 0 10px;
        border-radius: 10px;
        font-size: 11px;
    }

    .customer-tenant-board-form-field .customer-tenant-board-file-add-button > span[aria-hidden="true"] {
        font-size: 16px;
    }

    .customer-tenant-board-form-check {
        justify-self: end;
        margin-top: 2px;
    }

    .customer-tenant-board-form-actions {
        gap: 6px;
    }

    .customer-tenant-board-form-submit {
        height: 46px;
        min-height: 46px;
        border-radius: 13px;
    }

    .customer-tenant-board-form-cancel {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
    }

    .customer-tenant-board-compose-modal {
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
    }

    .customer-tenant-board-list-header {
        gap: 10px;
    }

    .customer-tenant-board-list-compose-button {
        min-height: 32px;
        padding: 3px 8px;
        border-radius: 8px;
        font-size: 12px;
    }

    .customer-tenant-board-compose-panel {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: none;
        border-radius: 0;
        border: 0;
        padding: 0;
        box-shadow: none;
        gap: 12px;
    }

    .customer-tenant-board-compose-header {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin: 0;
        padding: calc(14px + env(safe-area-inset-top, 0px)) 16px 0;
        border-bottom: 0;
        background: none;
    }

    .customer-tenant-board-compose-header .mobile-section-title {
        font-size: 17px;
    }

    .customer-tenant-board-compose-header p {
        font-size: 11px;
    }

    .customer-tenant-board-compose-copy {
        padding-right: 52px;
    }

    .customer-tenant-board-compose-close {
        position: absolute;
        top: calc(10px + env(safe-area-inset-top, 0px));
        right: 16px;
        width: 36px;
        height: 36px;
        min-height: 36px;
        border-radius: 12px;
    }

    .customer-tenant-board-compose-body {
        flex: 1 1 auto;
        overflow: auto;
        padding: 0 16px calc(16px + env(safe-area-inset-bottom, 0px));
        gap: 10px;
    }

    .customer-tenant-board-compose-body .mobile-fieldset {
        gap: 14px;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .customer-tenant-board-compose-form {
        gap: 14px;
    }

    .customer-tenant-board-compose-main {
        gap: 14px;
    }

    .customer-tenant-board-compose-body .mobile-field {
        gap: 6px;
    }

    .customer-tenant-board-compose-body .mobile-label {
        font-size: 12px;
        line-height: 1.2;
    }

    .customer-tenant-board-compose-body .mobile-input {
        min-height: 0;
        padding: 14px;
        border-radius: 12px;
    }

    .customer-tenant-board-compose-body #boardTitle.mobile-input {
        min-height: 38px;
        padding: 8px 14px;
    }

    .customer-tenant-board-compose-body .mobile-helper-text {
        font-size: 11px;
        line-height: 1.45;
    }

    .customer-tenant-board-compose-body .customer-tenant-board-editor-shell {
        border-radius: 12px;
    }

    .customer-tenant-board-toolbar-shell {
        gap: 6px;
    }

    .customer-tenant-board-toolbar-nav {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .customer-tenant-board-compose-editor-shell {
        min-height: 0;
    }

    .customer-tenant-board-compose-body .customer-tenant-board-editor {
        min-height: clamp(420px, calc(100dvh - 430px), 560px);
        padding: 16px;
    }

    .customer-tenant-board-compose-body .customer-tenant-board-file-picker {
        padding: 7px 10px;
        border-radius: 12px;
    }

    .customer-tenant-board-compose-body .customer-tenant-board-file-button {
        min-height: 34px;
        padding: 0 14px;
        font-size: 12px;
    }

    .customer-tenant-board-compose-body .customer-tenant-board-file-summary {
        font-size: 11px;
        line-height: 1.35;
    }

    .customer-tenant-board-compose-body .customer-tenant-board-file-remove-button {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 18px;
    }

    .customer-tenant-board-compose-body .customer-tenant-board-file-remove-button svg {
        width: 16px;
        height: 16px;
    }

    .customer-tenant-board-compose-body .customer-tenant-board-file-add-button {
        min-height: 30px;
        padding: 0 10px;
        border-radius: 10px;
        font-size: 11px;
    }

    .customer-tenant-board-compose-body .customer-tenant-board-file-add-button > span[aria-hidden="true"] {
        font-size: 16px;
    }

    .customer-tenant-board-compose-submit-row {
        position: static;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: calc(2px + env(safe-area-inset-bottom, 0px));
        border-top: 0;
        background: none;
    }

    .customer-tenant-board-check + .customer-tenant-board-compose-submit-row {
        margin-top: 0;
        padding-top: 0;
    }

    .customer-tenant-board-check {
        margin-top: 6px;
        padding-top: 0;
    }

    .customer-tenant-board-compose-footer {
        gap: 8px;
    }
}

body.mobile-shell:not(.customer-chat-shell) input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]),
body.mobile-shell:not(.customer-chat-shell) select,
body.mobile-shell:not(.customer-chat-shell) textarea {
    font-size: 12px !important;
}

body.mobile-shell:not(.customer-chat-shell) .mobile-input:not(.customer-tenant-search-input),
body.mobile-shell:not(.customer-chat-shell) .mobile-select,
body.mobile-shell:not(.customer-chat-shell) .mobile-textarea,
body.mobile-shell:not(.customer-chat-shell) .customer-tenant-board-compose-body .mobile-input {
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    font-size: 12px !important;
    line-height: 1.45;
    box-shadow: none;
}

body.mobile-shell:not(.customer-chat-shell) .mobile-input-shell {
    border-radius: 14px;
    box-shadow: none;
}

body.mobile-shell:not(.customer-chat-shell) .mobile-input-shell .mobile-input {
    border: 0;
    background: transparent;
}

body.mobile-shell:not(.customer-chat-shell) input.mobile-input:not(.customer-tenant-search-input) {
    font: inherit !important;
    font-size: 16px !important;
    line-height: 1.45;
}

input.mobile-input:not(.customer-tenant-search-input) {
    font-size: 16px !important;
}

body.mobile-shell:not(.customer-chat-shell) input.mobile-input[type="date"],
body.mobile-shell:not(.customer-chat-shell) input.mobile-input[type="datetime-local"],
body.mobile-shell:not(.customer-chat-shell) input.mobile-input[type="time"] {
    font-size: 16px !important;
}

html.customer-male-theme body.mobile-shell input.mobile-input.customer-invite-url-input {
    min-height: 48px;
    border-color: rgba(245, 197, 66, 0.18);
    background: #3F3934;
    color: #AFA79B;
    padding: 14px 16px;
}

html.customer-male-theme body.mobile-shell .mobile-input:not(.customer-tenant-search-input),
html.customer-male-theme body.mobile-shell .mobile-select,
html.customer-male-theme body.mobile-shell .mobile-textarea,
html.customer-male-theme body.mobile-shell .customer-tenant-board-compose-body .mobile-input {
    border-color: rgba(245, 197, 66, 0.18);
    background: #3F3934;
    color: #FFF7E0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html.customer-male-theme body.mobile-shell .mobile-input::placeholder,
html.customer-male-theme body.mobile-shell .mobile-textarea::placeholder {
    color: #AFA79B;
}

html.customer-male-theme body.mobile-shell .mobile-input:focus,
html.customer-male-theme body.mobile-shell .mobile-select:focus,
html.customer-male-theme body.mobile-shell .mobile-textarea:focus {
    border-color: rgba(245, 197, 66, 0.62);
    box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.18);
}

html.customer-male-theme body.mobile-shell .mobile-input-shell {
    border-color: rgba(245, 197, 66, 0.18);
    background: #3F3934;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html.customer-male-theme body.mobile-shell .mobile-input-shell .mobile-input {
    background: transparent;
    box-shadow: none;
}

html.customer-male-theme body.mobile-shell .customer-tenant-search-input.mobile-input {
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #FFF7E0;
}

html.customer-male-theme body.mobile-shell .customer-profile-edit-sheet {
    border-color: rgba(245, 197, 66, 0.18);
    background: #11110F;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 32px 56px rgba(10, 10, 10, 0.5);
}

html.customer-male-theme body.mobile-shell .customer-profile-image-editor {
    border-color: rgba(245, 197, 66, 0.18);
    background: #3F3934;
    box-shadow: 0 16px 28px rgba(10, 10, 10, 0.34);
}

html.customer-male-theme body.mobile-shell .customer-profile-image-editor__copy strong {
    color: #FFF7E0;
}

html.customer-male-theme body.mobile-shell .customer-profile-image-editor__copy p,
html.customer-male-theme body.mobile-shell .customer-profile-image-editor__remove {
    color: #AFA79B;
}

html.customer-male-theme body.mobile-shell .customer-profile-image-editor__remove input {
    accent-color: #F5C542;
}

html.customer-male-theme body.mobile-shell .mobile-form-card,
html.customer-male-theme body.mobile-shell .mobile-item-card,
html.customer-male-theme body.mobile-shell .mobile-link-item {
    border-color: rgba(245, 197, 66, 0.18);
    background: #11110F;
    box-shadow: 0 16px 28px rgba(10, 10, 10, 0.38);
}

html.customer-male-theme body.mobile-shell input.mobile-input.customer-invite-url-input {
    background: #3F3934;
    color: #AFA79B;
}

body.mobile-shell:not(.customer-chat-shell) .mobile-input.customer-readonly,
body.mobile-shell:not(.customer-chat-shell) .mobile-select.customer-readonly,
body.mobile-shell:not(.customer-chat-shell) .mobile-textarea.customer-readonly {
    background: var(--neutral-background);
}

img[data-image-enhanced="true"] {
    background-color: rgba(229, 231, 235, 0.75);
    background-image: linear-gradient(110deg, rgba(229, 231, 235, 0.75) 0%, rgba(248, 250, 252, 0.95) 42%, rgba(229, 231, 235, 0.75) 74%);
    background-size: 220% 100%;
    transition: filter .22s ease, opacity .22s ease, background-color .18s ease;
}

img[data-image-loading="true"] {
    animation: customer-image-placeholder-shimmer 1.15s ease-in-out infinite;
    color: transparent;
    filter: blur(8px) saturate(.86);
    opacity: .68;
}

img[data-image-loaded="true"] {
    animation: none;
    background-image: none;
    filter: none;
    opacity: 1;
}

img[data-image-error="true"] {
    animation: none;
    background-color: rgba(241, 245, 249, 0.95);
    background-image: repeating-linear-gradient(135deg, rgba(203, 213, 225, 0.55) 0, rgba(203, 213, 225, 0.55) 8px, rgba(241, 245, 249, 0.95) 8px, rgba(241, 245, 249, 0.95) 16px);
    opacity: .72;
}

[data-image-loading-host="true"] {
    position: relative;
}

.customer-image-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 26px;
    height: 26px;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.74);
    border-top-color: var(--customer-brand-accent, #ca5c87);
    box-shadow: 0 4px 12px rgba(55, 38, 48, 0.16);
    animation: customer-chat-upload-pending-spin 0.8s linear infinite;
    pointer-events: none;
}

.customer-image-loading-spinner[hidden] {
    display: none !important;
}

.customer-home-hero-slide .customer-image-loading-spinner {
    z-index: 1;
}

@keyframes customer-image-placeholder-shimmer {
    0% {
        background-position: 180% 0;
    }
    100% {
        background-position: -80% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    img[data-image-loading="true"],
    .customer-image-loading-spinner {
        animation: none;
    }
}

@media (max-width: 768px) {
    body.mobile-shell input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]),
    body.mobile-shell textarea {
        font-size: 16px !important;
    }
}
