:root {
    --canvas: #f3f6f4;
    --paper: #ffffff;
    --paper-soft: #f8faf9;
    --ink: #151a18;
    --ink-soft: #5c6862;
    --line: #dde5e1;
    --line-strong: #c3d0ca;
    --nav: #111827;
    --nav-soft: #1f2937;
    --primary: #1467c9;
    --primary-strong: #0b4f9e;
    --success: #16845b;
    --success-soft: #e8f6ef;
    --danger: #c8443a;
    --danger-soft: #fbeceb;
    --warning: #b7791f;
    --warning-soft: #fff7e7;
    --accent: #805ad5;
    --shadow: 0 14px 34px rgba(17, 24, 39, 0.09);
}

body[data-theme="blue_clinic"] {
    --canvas: #f2f7fb;
    --paper-soft: #f6f9fc;
    --ink: #172231;
    --ink-soft: #526173;
    --line: #d9e3eb;
    --line-strong: #c2d0dc;
    --nav: #132437;
    --nav-soft: #20384f;
    --primary: #2166c2;
    --primary-strong: #174f99;
    --success: #0f8b86;
    --success-soft: #e4f5f4;
    --accent: #c58a28;
}

body[data-theme="graphite_gold"] {
    --canvas: #f4f4f1;
    --paper-soft: #f8f7f2;
    --ink: #1d1f20;
    --ink-soft: #5a5d5b;
    --line: #dfddd3;
    --line-strong: #cbc8bb;
    --nav: #202322;
    --nav-soft: #313735;
    --primary: #7f651d;
    --primary-strong: #634d13;
    --success: #587a55;
    --success-soft: #edf5eb;
    --accent: #b5892d;
}

body[data-theme="coral_fresh"] {
    --canvas: #f7f5f3;
    --paper-soft: #fbf8f6;
    --ink: #251d1a;
    --ink-soft: #685b56;
    --line: #eaded8;
    --line-strong: #d8c8c0;
    --nav: #27342f;
    --nav-soft: #394a44;
    --primary: #1d6f82;
    --primary-strong: #155568;
    --success: #c85c4a;
    --success-soft: #faedea;
    --accent: #9f7b2f;
}

body[data-theme="optikplus"] {
    --canvas: #0f1018e0;
    --paper: #14141e60;
    --paper-soft: #1e1e28;
    --ink: #f7f8fb;
    --ink-soft: #bec3cf;
    --line: #303342;
    --line-strong: #474b5e;
    --nav: #14141e;
    --nav-soft: #1e1e28;
    --primary: #ff6600;
    --primary-strong: #ff8800;
    --success: #5cb85c;
    --success-soft: rgba(92, 184, 92, 0.18);
    --danger: #d04f4f;
    --danger-soft: rgba(208, 79, 79, 0.18);
    --warning: #e49400;
    --warning-soft: rgba(228, 148, 0, 0.18);
    --accent: #e49400;
    --shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

body[data-theme="kolens"] {
    --canvas: #0a0e16dd;
    --paper: #404143f4;
    --paper-soft: #202636;
    --ink: #ffffff;
    --ink-soft: #c2d6e5;
    --line: #30394a;
    --line-strong: #465369;
    --nav: #101723;
    --nav-soft: #181c26;
    --primary: #48bcff;
    --primary-strong: #8fd8ff;
    --success: #6be28b;
    --success-soft: rgba(107, 226, 139, 0.16);
    --danger: #ff8b8b;
    --danger-soft: rgba(255, 92, 92, 0.14);
    --warning: #ffcc66;
    --warning-soft: rgba(255, 204, 102, 0.16);
    --accent: #ffcc66;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--canvas);
    color: var(--ink);
    font-family: "Manrope", "Trebuchet MS", sans-serif;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

button:disabled {
    cursor: wait;
    opacity: 0.64;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(20, 103, 201, 0.24);
    outline-offset: 2px;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
dl,
dd {
    margin: 0;
}

.admin-app {
    min-height: 100vh;
}

.loading-panel,
.login-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.loading-panel {
    align-content: center;
    justify-items: start;
    width: min(100% - 40px, 620px);
    margin: 0 auto;
    gap: 12px;
}

.loading-panel span {
    width: 44px;
    height: 4px;
    border-radius: 2px;
    background: var(--success);
    animation: loading-pulse 1.1s ease-in-out infinite alternate;
}

.loading-panel p,
.eyebrow {
    color: var(--success);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.loading-panel h1 {
    max-width: 15ch;
    margin: 0;
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.02;
}

.login-panel {
    display: grid;
    width: min(100%, 430px);
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.login-panel h1,
.workspace-title h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
}

.admin-form {
    display: grid;
    gap: 14px;
}

.admin-form label {
    display: grid;
    gap: 7px;
    font-size: 12px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px 11px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    outline: none;
}

textarea {
    min-height: 96px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 103, 201, 0.1);
}

.shell {
    display: grid;
    grid-template-columns: 288px minmax(0, 1fr);
    min-height: 100vh;
}

.sidebar {
    position: sticky;
    top: 0;
    display: grid;
    height: 100vh;
    grid-template-rows: auto 1fr auto;
    gap: 24px;
    padding: 24px 18px;
    overflow-y: auto;
    background: var(--nav);
    color: #f6fbf8;
}

.brand {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 8px;
    background: #f6fbf8;
    color: var(--nav);
    font-weight: 900;
}

.brand-logo {
    display: block;
    width: 46px;
    height: 46px;
    padding: 4px;
    border-radius: 8px;
    background: #f6fbf8;
    object-fit: contain;
}

.brand strong,
.brand small,
.account-strip strong,
.account-strip small {
    display: block;
    overflow-wrap: anywhere;
}

.brand small,
.account-strip small {
    margin-top: 4px;
    color: rgba(246, 251, 248, 0.66);
    font-size: 11px;
    font-weight: 700;
}

.shop-switch {
    display: grid;
    gap: 7px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.shop-switch span {
    color: rgba(246, 251, 248, 0.66);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.shop-switch select {
    min-height: 38px;
    border-color: rgba(255, 255, 255, 0.14);
    background: var(--nav-soft);
    color: #f6fbf8;
    font-size: 13px;
    font-weight: 800;
}

.nav-list {
    display: grid;
    align-content: start;
    gap: 6px;
}

.nav-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 42px;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(246, 251, 248, 0.76);
    text-align: left;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.nav-icon {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 900;
}

.nav-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidebar-footer {
    display: grid;
    gap: 14px;
}

.account-strip {
    display: grid;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.workspace {
    display: grid;
    align-content: start;
    gap: 22px;
    padding: 26px 30px 42px;
}

.topbar {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.workspace-title {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.workspace-title h1 {
    overflow-wrap: anywhere;
}

.top-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.primary,
.secondary {
    display: inline-grid;
    min-height: 40px;
    place-items: center;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.primary {
    border: 0;
    background: var(--primary);
    color: #fff;
}

.primary:hover {
    background: var(--primary-strong);
}

.secondary {
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--ink);
}

.sidebar .secondary {
    color: #f6fbf8;
}

.notice {
    min-height: 42px;
    padding: 11px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.notice.empty {
    display: none;
}

.notice.success {
    background: var(--success-soft);
    color: var(--success);
}

.notice.error {
    background: var(--danger-soft);
    color: var(--danger);
}

.section {
    display: none;
    gap: 18px;
}

.section.active {
    display: grid;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.section-heading h2 {
    margin: 0;
    font-size: 20px;
}

.section-heading p {
    color: var(--ink-soft);
    font-size: 12px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.metric-tile,
.panel,
.service-card,
.theme-option {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 7px 18px rgba(17, 24, 39, 0.04);
}

.metric-tile {
    display: grid;
    min-height: 116px;
    align-content: space-between;
    gap: 16px;
    padding: 16px;
}

.metric-tile span {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.metric-tile strong {
    font-size: 30px;
    line-height: 1;
}

.metric-tile i {
    width: 34px;
    height: 4px;
    border-radius: 2px;
    background: var(--accent);
}

.panel {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.panel h3 {
    margin: 0;
    font-size: 15px;
}

.stats-panel {
    overflow: hidden;
}

.chart-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.chart-kpi {
    display: grid;
    min-height: 78px;
    align-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    border-left: 4px solid var(--line-strong);
}

.chart-kpi span {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.chart-kpi strong {
    font-size: 22px;
    line-height: 1;
}

.chart-kpi.views {
    border-left-color: var(--primary);
}

.chart-kpi.bookings {
    border-left-color: var(--success);
}

.chart-kpi.conversion {
    border-left-color: var(--accent);
}

.bar-chart {
    display: grid;
    grid-template-columns: repeat(30, minmax(0, 1fr));
    gap: clamp(2px, 0.6vw, 8px);
    min-height: 210px;
    overflow: hidden;
    padding: 10px 2px 2px;
}

.chart-column {
    display: grid;
    grid-template-rows: 168px 18px;
    gap: 7px;
    min-width: 0;
    align-items: end;
}

.chart-bars {
    display: flex;
    height: 168px;
    align-items: end;
    justify-content: center;
    gap: 3px;
    padding-top: 6px;
    border-bottom: 1px solid var(--line);
}

.chart-bar {
    display: block;
    width: clamp(3px, 32%, 8px);
    min-height: 0;
    border-radius: 4px 4px 0 0;
    opacity: 0.24;
    transition: height 180ms ease, opacity 180ms ease;
}

.chart-bar.active {
    min-height: 3px;
    opacity: 0.96;
}

.chart-bar.visits,
.legend-views {
    background: var(--primary);
}

.chart-bar.bookings,
.legend-bookings {
    background: var(--success);
}

.chart-column small {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.chart-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.chart-legend i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.booking-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 160px 160px 150px auto;
    gap: 12px;
    align-items: end;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.booking-filter-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.booking-pagination {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
}

.booking-pagination span {
    min-width: 120px;
    text-align: center;
}

.table {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.table-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1.1fr) minmax(0, 1fr) 100px;
    gap: 12px;
    align-items: center;
    min-height: 54px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

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

.table-row.header {
    min-height: 42px;
    background: var(--paper-soft);
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.table-row strong,
.table-row span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.status {
    display: inline-grid;
    width: fit-content;
    min-height: 26px;
    place-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--paper-soft);
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.status.booked,
.status.available {
    background: var(--success-soft);
    color: var(--success);
}

.status.cancelled {
    background: var(--danger-soft);
    color: var(--danger);
}

.status.pending {
    background: var(--warning-soft);
    color: var(--warning);
}

.empty-state {
    display: grid;
    min-height: 120px;
    place-items: center;
    border: 1px dashed var(--line-strong);
    border-radius: 8px;
    color: var(--ink-soft);
    font-weight: 700;
    text-align: center;
}

.settings-form {
    display: grid;
    gap: 14px;
}

.settings-group {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 7px 18px rgba(17, 24, 39, 0.04);
}

.settings-group h3 {
    margin: 0;
    font-size: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

.form-field {
    display: grid;
    align-content: start;
    gap: 7px;
    min-width: 0;
}

.form-field.wide {
    grid-column: 1 / -1;
}

.form-field span,
.form-field small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.form-field small {
    line-height: 1.45;
    text-transform: none;
}

.duration-editor {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-soft);
}

.language-settings-editor,
.checkbox-panel {
    display: grid;
    gap: 12px;
}

.checkbox-panel {
    min-width: 0;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-soft);
}

.checkbox-panel legend {
    padding: 0 6px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.checkbox-panel small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.45;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.checkbox-field {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--paper);
    font-size: 12px;
    font-weight: 800;
}

.checkbox-field input {
    width: auto;
    margin: 0;
}

.duration-editor > div:first-child {
    display: grid;
    gap: 4px;
}

.duration-editor > div:first-child span,
.duration-editor > div:first-child small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.duration-editor > div:first-child small {
    line-height: 1.45;
    text-transform: none;
}

.duration-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 42px;
    align-items: center;
}

.duration-chip-list em {
    color: var(--ink-soft);
    font-size: 12px;
}

.duration-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.duration-chip i {
    color: var(--danger);
    font-style: normal;
}

.duration-add-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.service-grid,
.theme-grid,
.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.service-card {
    display: grid;
    min-height: 124px;
    align-content: start;
    gap: 10px;
    padding: 14px;
}

.service-card header {
    display: grid;
    grid-template-columns: 6px minmax(0, 1fr);
    gap: 10px;
}

.service-color {
    width: 6px;
    min-height: 42px;
    border-radius: 3px;
    background: var(--primary);
}

.service-card strong,
.service-card span {
    overflow-wrap: anywhere;
}

.service-card small,
.detail-card dt,
.service-meta {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.theme-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.theme-option {
    display: grid;
    min-height: 112px;
    align-content: space-between;
    gap: 12px;
    padding: 12px;
    color: var(--ink);
    text-align: left;
}

.theme-option:hover,
.theme-option.selected {
    border-color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--primary);
}

.theme-swatches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 38px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.theme-swatches i {
    display: block;
}

.compact-heading {
    margin-top: 28px;
}

.branding-form {
    margin-top: 8px;
}

.branding-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.branding-card {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.branding-card h4 {
    margin: 0;
    font-size: 14px;
}

.branding-preview {
    display: grid;
    min-height: 128px;
    place-items: center;
    padding: 16px;
    border: 1px dashed var(--line-strong);
    border-radius: 8px;
    background: var(--paper-soft);
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

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

.favicon-preview {
    min-height: 88px;
}

.favicon-preview img {
    width: 42px;
    height: 42px;
}

.detail-card {
    display: grid;
    min-height: 86px;
    align-content: start;
    gap: 7px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.detail-card dd {
    overflow-wrap: anywhere;
    font-weight: 800;
}

@keyframes loading-pulse {
    from { width: 44px; opacity: 0.55; }
    to { width: 118px; opacity: 1; }
}

@media (max-width: 1120px) {
    .metric-grid,
    .chart-summary,
    .theme-grid,
    .form-grid.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid,
    .detail-grid,
    .branding-grid,
    .booking-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .sidebar {
        position: static;
        height: auto;
        grid-template-rows: auto auto auto;
        padding: 18px;
    }

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

    .workspace {
        padding: 22px 18px 34px;
    }

    .topbar,
    .section-heading {
        display: grid;
        align-items: stretch;
    }

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

@media (max-width: 620px) {
    .login-shell {
        padding: 14px;
    }

    .login-panel {
        padding: 22px 18px;
    }

    .nav-list,
    .checkbox-grid,
    .metric-grid,
    .chart-summary,
    .service-grid,
    .theme-grid,
    .detail-grid,
    .branding-grid,
    .booking-filters,
    .form-grid,
    .form-grid.compact {
        grid-template-columns: 1fr;
    }

    .table-row,
    .table-row.header {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .table-row.header {
        display: none;
    }

    .top-actions,
    .booking-filter-actions,
    .booking-pagination {
        display: grid;
        justify-content: stretch;
    }

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

    .bar-chart {
        gap: 2px;
    }

    .chart-column {
        grid-template-rows: 148px 0;
    }

    .chart-bars {
        height: 148px;
    }

    .chart-column small {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
