/* Shared account UI */
.auth-account-menu,
.auth-account-menu *,
.auth-modal-shell,
.auth-modal-shell * {
    box-sizing: border-box;
}

.nav-desktop .auth-nav-button,
.mobile-nav .auth-nav-button {
    font: inherit;
}

.nav-desktop .auth-nav-button {
    align-items: center;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 999px;
    background: rgba(25, 135, 84, 0.08);
    color: var(--green-700, #158044);
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    gap: 8px;
    max-width: 260px;
    padding: 8px 16px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-desktop .auth-nav-button > span:last-child,
.mobile-nav .auth-nav-button > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auth-nav-avatar {
    align-items: center;
    border: 1px solid rgba(21, 128, 68, 0.22);
    border-radius: 50%;
    display: inline-flex;
    flex: 0 0 auto;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.auth-nav-avatar svg {
    fill: none;
    height: 15px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 15px;
}

.nav-desktop .auth-nav-button:hover,
.nav-desktop .auth-nav-button:focus-visible {
    background: var(--green-600, #43a047);
    border-color: var(--green-600, #43a047);
    color: #fff;
    outline: none;
}

.mobile-nav .auth-nav-button {
    align-items: center;
    background: var(--green-600, #43a047);
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    gap: 8px;
    margin-top: 8px;
    padding: 14px 16px;
    text-align: left;
    width: 100%;
}

.auth-account-menu[hidden] {
    display: none;
}

.auth-account-menu {
    background: #fff;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    color: #17212b;
    display: grid;
    gap: 2px;
    padding: 8px;
    position: fixed;
    width: 224px;
    z-index: 5100;
}

.auth-account-menu button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: #17212b;
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
    min-height: 40px;
    padding: 0 10px;
    text-align: left;
    width: 100%;
}

.auth-account-menu button:hover,
.auth-account-menu button:focus-visible {
    background: #f1f5f9;
    outline: none;
}

.auth-menu-logout-copy {
    display: grid;
    gap: 2px;
}

.auth-menu-logout-copy strong {
    font-size: 14px;
}

.auth-menu-logout-copy small {
    color: #64748b;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
}

.auth-menu-icon {
    align-items: center;
    display: inline-flex;
    flex: 0 0 20px;
    height: 20px;
    justify-content: center;
    width: 20px;
}

.auth-menu-icon svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 18px;
}

.auth-menu-separator {
    background: #e2e8f0;
    height: 1px;
    margin: 5px 0;
}

body.auth-modal-open {
    overflow: hidden;
}

.auth-modal-shell[hidden] {
    display: none;
}

.auth-field[hidden],
.auth-linked-profile[hidden],
.auth-profile-row[hidden] {
    display: none;
}

.auth-modal-shell {
    align-items: center;
    background: rgba(12, 20, 18, 0.58);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 5000;
}

.auth-modal {
    background: #fff;
    border: 1px solid rgba(20, 35, 49, 0.12);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
    color: #17212b;
    max-height: min(760px, calc(100vh - 48px));
    max-width: 520px;
    overflow: auto;
    position: relative;
    width: min(100%, 520px);
}

.auth-modal.wide {
    max-width: 720px;
}

.auth-close {
    align-items: center;
    background: #f1f5f9;
    border: 1px solid #dbe4ee;
    border-radius: 50%;
    color: #334155;
    cursor: pointer;
    display: flex;
    font-size: 24px;
    height: 36px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 36px;
}

.auth-close:hover,
.auth-close:focus-visible {
    background: #e2e8f0;
    outline: none;
}

.auth-view {
    padding: 34px;
}

.auth-view[hidden] {
    display: none;
}

.auth-eyebrow {
    color: var(--green-700, #158044);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.auth-view h2 {
    color: #142331;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.24;
    margin-bottom: 10px;
}

.auth-copy {
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.auth-form {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.auth-social-stack {
    display: grid;
    gap: 10px;
    margin: 0 auto 20px;
    max-width: 400px;
    min-width: 0;
    width: 100%;
}

.auth-social-button {
    align-items: center;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    color: #17212b;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    width: 100%;
}

.auth-social-button.google {
    background: #fff;
}

.auth-social-button:hover,
.auth-social-button:focus-visible {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    outline: none;
    transform: translateY(-1px);
}

.auth-social-button:disabled {
    cursor: not-allowed;
    opacity: 0.58;
    transform: none;
}

.auth-social-button.full {
    margin-top: 4px;
}

.auth-social-symbol {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: #17212b;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 900;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.auth-social-button.google .auth-social-symbol {
    border: 1px solid #e2e8f0;
    color: #4285f4;
}

.auth-social-symbol.google-mark svg {
    display: block;
    height: 18px;
    width: 18px;
}

.auth-google-fallback[hidden] {
    display: none;
}

.auth-divider {
    align-items: center;
    color: #94a3b8;
    display: grid;
    font-size: 12px;
    font-weight: 700;
    gap: 12px;
    grid-template-columns: 1fr auto 1fr;
    margin: 18px 0;
}

.auth-divider::before,
.auth-divider::after {
    background: #e2e8f0;
    content: "";
    height: 1px;
}

.auth-provider-action {
    display: grid;
    gap: 10px;
    max-width: 100%;
    min-width: 0;
}

.auth-provider-action[hidden] {
    display: none;
}

.auth-provider-note {
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
}

.auth-provider-note a,
.auth-term-detail a {
    color: #15803d;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.auth-provider-note a:hover,
.auth-provider-note a:focus-visible,
.auth-term-detail a:hover,
.auth-term-detail a:focus-visible {
    color: #166534;
}

.auth-google-mount {
    align-items: center;
    display: flex;
    justify-content: center;
    max-width: 100%;
    min-height: 44px;
    min-width: 0;
    width: 100%;
}

.auth-google-mount.auth-google-login-mount {
    min-height: 48px;
}

.auth-google-mount > *,
.auth-google-mount iframe {
    max-width: 100% !important;
}

.auth-field {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.auth-field span,
.auth-field > label,
.auth-terms-label strong {
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.auth-field input,
.auth-field select {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #17212b;
    font-size: 15px;
    height: 46px;
    padding: 0 14px;
    width: 100%;
}

.auth-field input:focus,
.auth-field select:focus {
    background: #fff;
    border-color: var(--green-500, #66bb6a);
    box-shadow: 0 0 0 3px rgba(67, 160, 71, 0.14);
    outline: none;
}

.auth-field small {
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

.auth-field small.error {
    color: #b42318;
}

.auth-field small.success {
    color: #166534;
}

.auth-field small.checking {
    color: #0f766e;
}

.auth-field input[aria-invalid="true"] {
    border-color: #fca5a5;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.auth-password-control {
    align-items: center;
    display: flex;
    position: relative;
}

.auth-password-control input {
    padding-right: 48px;
}

.auth-password-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    height: 34px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 6px;
    width: 34px;
}

.auth-password-toggle svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    width: 20px;
}

.auth-password-toggle:hover,
.auth-password-toggle:focus-visible {
    background: #e2e8f0;
    color: #17212b;
    outline: none;
}

.auth-login-options {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: space-between;
    margin-top: 2px;
}

.auth-check-option {
    align-items: center;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 7px;
    line-height: 1.4;
}

.auth-check-option input {
    accent-color: var(--green-600, #43a047);
    height: 16px;
    width: 16px;
}

.auth-check-option:hover {
    color: #17212b;
}

.auth-email-compose {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto minmax(132px, 0.8fr);
}

.auth-email-at {
    color: #64748b;
    font-size: 15px;
    font-weight: 800;
}

.auth-email-custom-domain[hidden] {
    display: none;
}

.auth-inline-control {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.auth-inline-button {
    background: #fff;
    border: 1px solid #b7c7d8;
    border-radius: 8px;
    color: #334155;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    min-height: 46px;
    padding: 0 14px;
    white-space: nowrap;
}

.auth-inline-button:hover,
.auth-inline-button:focus-visible {
    background: #f8fafc;
    border-color: var(--green-500, #66bb6a);
    outline: none;
}

.auth-inline-button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.auth-row {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.auth-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.auth-primary,
.auth-secondary,
.auth-link-button {
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    min-height: 46px;
    padding: 0 16px;
}

.auth-primary {
    background: var(--green-600, #43a047);
    border: 1px solid var(--green-600, #43a047);
    color: #fff;
    flex: 1;
}

.auth-primary:hover,
.auth-primary:focus-visible {
    background: var(--green-700, #2e7d32);
    border-color: var(--green-700, #2e7d32);
    outline: none;
}

.auth-secondary {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #334155;
}

.auth-secondary:hover,
.auth-secondary:focus-visible {
    background: #f8fafc;
    outline: none;
}

.auth-link-button {
    background: transparent;
    border: 0;
    color: var(--green-700, #158044);
    min-height: auto;
    padding: 0;
}

.auth-link-button:hover,
.auth-link-button:focus-visible {
    color: var(--green-800, #1b5e20);
    outline: none;
    text-decoration: underline;
}

.auth-switch {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 18px;
    text-align: center;
}

.auth-message {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
    min-height: 42px;
    padding: 10px 12px;
}

.auth-message.error {
    background: #fff5f5;
    border-color: #fecaca;
    color: #b42318;
}

.auth-message.success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.auth-message.warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

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

.auth-terms-item {
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    padding: 14px;
}

.auth-terms-all {
    background: #f8fafc;
    border-color: #b7c7d8;
}

.auth-terms-label {
    align-items: flex-start;
    display: flex;
    gap: 10px;
}

.auth-terms-label input {
    flex: 0 0 auto;
    height: 18px;
    margin-top: 2px;
    width: 18px;
}

.auth-terms-label p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
    margin-top: 3px;
}

.auth-terms-item details {
    margin-left: 28px;
    margin-top: 10px;
}

.auth-terms-item summary {
    color: #475569;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

.auth-terms-item details div {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    padding-top: 8px;
}

.auth-terms-item details .auth-term-detail {
    display: grid;
    gap: 7px;
}

.auth-term-detail p {
    margin: 0;
}

.auth-term-detail strong {
    color: #334155;
}

.auth-profile {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    padding: 16px;
}

.auth-account-layout {
    display: grid;
    gap: 18px;
}

.auth-account-tabs {
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.auth-account-tabs button {
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: #64748b;
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 800;
    min-height: 38px;
    padding: 0 12px;
}

.auth-account-tabs button:hover,
.auth-account-tabs button:focus-visible {
    background: #f1f5f9;
    color: #17212b;
    outline: none;
}

.auth-account-tabs button.active {
    background: rgba(67, 160, 71, 0.12);
    color: var(--green-700, #158044);
}

.auth-account-panel {
    display: grid;
    gap: 16px;
}

.auth-account-form {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

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

.auth-account-section h3 {
    color: #17212b;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    margin: 0;
}

.auth-reauth-card {
    margin-bottom: 0;
}

.auth-reauth-form {
    border-top: 0;
    padding-top: 0;
}

.auth-inline-full {
    margin-bottom: 4px;
    width: max-content;
}

.auth-empty-state {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    display: grid;
    gap: 6px;
    line-height: 1.55;
    padding: 16px;
}

.auth-empty-state strong {
    color: #17212b;
    font-size: 15px;
}

.auth-empty-state p {
    font-size: 13px;
}

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

.auth-product-card {
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 16px;
}

.auth-product-card strong {
    color: #17212b;
    font-size: 15px;
}

.auth-product-card p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 3px;
}

.auth-product-card .auth-secondary:disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.auth-status-pill {
    background: #f1f5f9;
    border-radius: 999px;
    color: #475569;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    white-space: nowrap;
}

.auth-status-pill.success {
    background: #dcfce7;
    color: #166534;
}

.auth-static-message {
    margin-bottom: 0;
}

.auth-danger-zone {
    border-top: 1px solid #e2e8f0;
    margin-top: 4px;
    padding-top: 14px;
}

.auth-danger-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    min-height: 32px;
    padding: 0;
}

.auth-danger-toggle:hover,
.auth-danger-toggle:focus-visible {
    color: #b42318;
    outline: none;
    text-decoration: underline;
}

.auth-danger-panel {
    display: grid;
    gap: 14px;
    margin-top: 12px;
}

.auth-danger-panel[hidden] {
    display: none;
}

.auth-delete-form {
    border-top: 0;
    padding-top: 0;
}

.auth-complete-panel {
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    padding: 16px;
}

.auth-social-completion {
    padding: 38px 36px 34px;
}

.auth-social-provider-badge {
    align-items: center;
    color: #166534;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    margin-bottom: 16px;
}

.auth-social-provider-mark {
    align-items: center;
    background: #fff;
    border: 1px solid #dbe4ee;
    border-radius: 50%;
    color: #4285f4;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.auth-social-completion h2 {
    font-size: 28px;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.auth-social-completion .auth-copy {
    margin-bottom: 18px;
}

.auth-social-completion .auth-form {
    gap: 18px;
}

.auth-social-completion .auth-row {
    grid-template-columns: 1fr;
}

.auth-social-message {
    margin-bottom: 4px;
}

.auth-social-message:not(.error):not(.success):not(.warning) {
    align-items: center;
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
}

.auth-social-message:not(.error):not(.success):not(.warning)::before {
    background: #22c55e;
    border-radius: 50%;
    content: "";
    flex: 0 0 auto;
    height: 7px;
    width: 7px;
}

.auth-linked-profile {
    background: #fff;
    border: 1px solid #d7e2ed;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 0;
    margin-bottom: 2px;
    overflow: hidden;
}

.auth-linked-profile-header {
    align-items: center;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    gap: 12px;
    padding: 16px;
}

.auth-linked-profile-header strong {
    color: #17212b;
    display: block;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 2px;
}

.auth-linked-profile-header p {
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
    margin: 0;
}

.auth-linked-profile-icon {
    align-items: center;
    background: #dcfce7;
    border-radius: 50%;
    color: #158044;
    display: inline-flex;
    flex: 0 0 auto;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.auth-linked-profile-icon svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
    width: 18px;
}

.auth-linked-profile .auth-profile-row {
    padding: 13px 16px;
}

.auth-linked-profile .auth-profile-row + .auth-profile-row {
    border-top: 1px solid #eef2f7;
}

.auth-profile-row {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.auth-profile-row span {
    color: #64748b;
    font-size: 13px;
}

.auth-profile-row strong {
    color: #17212b;
    font-size: 14px;
    text-align: right;
}

.auth-social-phone-field {
    gap: 8px;
}

.auth-social-phone-field input {
    background: #fff;
    height: 52px;
}

.auth-social-actions {
    display: grid;
    gap: 12px;
    grid-template-columns: 116px minmax(0, 1fr);
    margin-top: 4px;
}

.auth-social-actions .auth-secondary,
.auth-social-actions .auth-primary {
    min-height: 52px;
    width: 100%;
}

.auth-social-actions .auth-primary {
    box-shadow: 0 12px 22px rgba(46, 125, 50, 0.18);
}

.auth-danger {
    background: #fff;
    border: 1px solid #fecaca;
    color: #b42318;
}

.auth-danger:hover,
.auth-danger:focus-visible {
    background: #fff5f5;
}

.auth-modal-shell.is-logout-pending .auth-modal,
.auth-modal-shell.is-logout-pending button,
.auth-modal-shell.is-logout-pending input,
.auth-modal-shell.is-logout-pending select {
    cursor: wait;
}

@media (max-width: 768px) {
    .auth-modal-shell {
        align-items: flex-end;
        padding: 12px;
    }

    .auth-modal {
        max-height: calc(100vh - 24px);
        width: 100%;
    }

    .auth-view {
        padding: 28px 20px 22px;
    }

    .auth-social-completion {
        padding: 30px 20px 22px;
    }

    .auth-social-completion h2 {
        font-size: 25px;
    }

    .auth-close {
        right: 14px;
        top: 14px;
    }

    .auth-row {
        grid-template-columns: 1fr;
    }

    .auth-inline-control {
        grid-template-columns: 1fr;
    }

    .auth-email-compose {
        grid-template-columns: minmax(0, 1fr) auto minmax(118px, 0.9fr);
    }

    .auth-actions {
        flex-direction: column;
    }

    .auth-social-actions {
        grid-template-columns: 1fr;
    }

    .auth-social-actions .auth-primary {
        order: -1;
    }

    .nav-desktop .auth-nav-button {
        max-width: 220px;
    }

    .auth-account-menu {
        left: 12px !important;
        right: 12px;
        top: 72px !important;
        width: auto;
    }

    .auth-product-card {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .auth-inline-full {
        width: 100%;
    }

    .auth-secondary,
    .auth-primary {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .auth-modal-shell {
        padding: 8px;
    }

    .auth-view,
    .auth-social-completion {
        padding-left: 16px;
        padding-right: 16px;
    }

    .auth-login-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .auth-email-compose {
        grid-template-columns: minmax(0, 1fr) auto minmax(96px, 0.9fr);
    }
}
