:root {
    color-scheme: light;
    --ink: #121a18;
    --muted: #50615c;
    --soft: #6d7b76;
    --line: rgba(18, 26, 24, 0.12);
    --panel: rgba(255, 255, 255, 0.88);
    --panel-strong: #ffffff;
    --wash: #f2f5f2;
    --admin-bg: #e8eeeb;
    --accent: #0d7f68;
    --accent-strong: #075f50;
    --accent-2: #d45a38;
    --accent-3: #f3c64e;
    --deep: #14211d;
    --deep-2: #20342e;
    --shadow-tight: 0 8px 16px rgba(18, 26, 24, 0.10);
    --shadow-float: 0 16px 32px rgba(18, 26, 24, 0.14);
    --radius: 12px;
    font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    background: var(--wash);
    animation: page-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 84% 12%, rgba(13, 127, 104, 0.16), transparent 28%),
        linear-gradient(120deg, rgba(20, 33, 29, 0.04), rgba(212, 90, 56, 0.06) 48%, rgba(13, 127, 104, 0.05));
}

body.auth-body,
body.shop-body {
    overflow-x: hidden;
    background:
        linear-gradient(132deg, #111b18 0%, #20352f 44%, #edf4ef 44.2%, #f7f9f5 100%);
}

button,
input,
select {
    font: inherit;
}

button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 0.72rem 1rem;
    color: #fff;
    background: var(--accent);
    cursor: pointer;
    font-weight: 750;
    transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1), background-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

button:hover {
    transform: translateY(-1px);
    background: var(--accent-strong);
    box-shadow: 0 7px 12px rgba(13, 127, 104, 0.20);
}

button:active {
    transform: translateY(0);
}

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

button.ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.78);
}

button.ghost:hover {
    background: #fff;
    box-shadow: none;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

input,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.75rem 0.8rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
}

input::placeholder {
    color: #65736f;
}

input:focus,
select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 127, 104, 0.16);
    outline: none;
}

.glass {
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: var(--panel);
    box-shadow: var(--shadow-tight);
}

.muted-line,
.form-message {
    color: var(--muted);
}

.text-link {
    color: var(--accent-strong);
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: var(--deep);
    font-weight: 900;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 0.82rem;
}

.icon-current {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    height: 110px;
    pointer-events: none;
}

.icon-track {
    display: flex;
    width: max-content;
    min-width: 200%;
    gap: 0.75rem;
    align-items: center;
    padding: 1.8rem 0;
    animation: icon-flow 18s linear infinite;
}

.icon-track span {
    display: inline-grid;
    place-items: center;
    min-width: 116px;
    height: 48px;
    border: 1px solid rgba(18, 26, 24, 0.10);
    border-radius: 999px;
    color: rgba(18, 26, 24, 0.38);
    background: rgba(255, 255, 255, 0.44);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.user-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.45rem 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    font-size: 0.88rem;
}

.role-badge {
    border-radius: 999px;
    padding: 0.28rem 0.58rem;
    color: #fff;
    background: var(--deep);
    font-size: 0.72rem;
    letter-spacing: 0;
}

.role-badge[data-role="CUSTOMER"] {
    background: var(--accent);
}

.role-badge[data-role="ADMIN"] {
    background: var(--deep);
}

.pulse {
    animation: pulse-pop 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Login, 8/6/7 */

.auth-body {
    display: grid;
    place-items: center;
    padding: 1rem;
}

.auth-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 440px);
    gap: 1rem;
    width: min(1060px, 100%);
    min-height: min(660px, calc(100vh - 2rem));
    align-items: stretch;
}

.login-story {
    position: relative;
    display: grid;
    align-content: space-between;
    overflow: hidden;
    border-radius: 18px;
    padding: 1.4rem;
    color: #f5fff9;
    background:
        linear-gradient(145deg, rgba(20, 33, 29, 0.96), rgba(19, 72, 61, 0.92)),
        radial-gradient(circle at 20% 10%, rgba(243, 198, 78, 0.22), transparent 32%);
    animation: skew-rise 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.login-story::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
}

.login-kicker {
    width: max-content;
    border-radius: 999px;
    padding: 0.38rem 0.7rem;
    color: #fff7dc;
    background: rgba(243, 198, 78, 0.16);
    font-size: 0.82rem;
    font-weight: 800;
}

.login-story h1 {
    max-width: 10ch;
    margin-top: 1.2rem;
    font-size: 4.8rem;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.login-story p {
    max-width: 48ch;
    margin-top: 1rem;
    color: rgba(245, 255, 249, 0.78);
    line-height: 1.65;
}

.login-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 2rem;
}

.login-tiles span {
    display: grid;
    min-height: 88px;
    align-content: end;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 850;
}

.login-panel {
    display: grid;
    gap: 1rem;
    align-content: center;
    border-radius: 18px;
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.92);
    animation: panel-snap 560ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

.auth-brand {
    padding: 0;
}

.login-panel h2 {
    max-width: 12ch;
    font-size: 2rem;
    line-height: 1.05;
}

.auth-form,
.demo-users {
    display: grid;
    gap: 0.75rem;
}

.auth-form label {
    display: grid;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.auth-form button {
    width: 100%;
}

.demo-users {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.demo-users strong,
.demo-users span {
    color: var(--ink);
}

.demo-users span {
    font-weight: 850;
}

/* Customer shop, 8/6/7 */

.shop-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
    grid-template-areas:
        "hero cart"
        "products cart";
    gap: 1rem;
    min-height: 100vh;
    padding: 1rem;
}

.shop-hero {
    grid-area: hero;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
    overflow: hidden;
    border-radius: 18px;
    padding: 1.3rem 1.4rem;
    color: #f7fff9;
    background:
        linear-gradient(135deg, rgba(20, 33, 29, 0.96), rgba(13, 127, 104, 0.86)),
        radial-gradient(circle at 82% 10%, rgba(243, 198, 78, 0.28), transparent 30%);
    animation: skew-rise 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.shop-hero h1 {
    max-width: 11ch;
    font-size: 4.2rem;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.shop-hero .muted-line {
    margin-top: 0.75rem;
    color: rgba(247, 255, 249, 0.76);
}

.shop-actions,
.top-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.shop-hero .text-link {
    color: #fff7dc;
}

.shop-grid {
    display: contents;
}

.shop-grid > .panel:not(.cart-panel) {
    grid-area: products;
}

.cart-panel {
    grid-area: cart;
    position: sticky;
    top: 1rem;
    max-height: calc(100vh - 2rem);
    overflow: auto;
    align-self: start;
}

.panel {
    border-radius: var(--radius);
    padding: 1rem;
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.panel-title h2 {
    font-size: 1.1rem;
}

.panel-title span {
    color: var(--muted);
    font-size: 0.82rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.75rem;
}

.product-card,
.cart-item,
.signal,
.supplier-card,
.order-card {
    display: grid;
    gap: 0.58rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.82rem;
    background: rgba(255, 255, 255, 0.68);
    transition: transform 170ms cubic-bezier(0.22, 1, 0.36, 1), background-color 170ms ease, border-color 170ms ease;
}

.product-card {
    min-height: 178px;
    align-content: space-between;
    color: var(--ink);
}

.product-card:hover,
.cart-item:hover,
.signal:hover,
.supplier-card:hover,
.order-card:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 127, 104, 0.28);
    background: #fff;
}

.product-card strong,
.product-card span {
    display: block;
}

.product-card p {
    font-size: 1.5rem;
    font-weight: 900;
}

.product-card span,
.product-card small,
.order-card small {
    color: var(--muted);
}

.cart-list,
.signal-list,
.bars,
.card-grid,
.order-list {
    display: grid;
    gap: 0.65rem;
}

.cart-list {
    margin-bottom: 1rem;
}

.cart-item div {
    display: flex;
    gap: 0.5rem;
}

.cart-item button {
    width: 40px;
    min-height: 34px;
    padding: 0;
}

.order-title {
    margin-top: 1.1rem;
}

/* Customer engagement pages */

.engage-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(340px, 1.22fr);
    gap: 1rem;
    min-height: 100vh;
    padding: 1rem;
}

.reviews-shell {
    grid-template-columns: 1fr;
}

.engage-hero {
    display: grid;
    align-content: space-between;
    min-height: calc(100vh - 2rem);
    overflow: hidden;
    border-radius: 18px;
    padding: 1.35rem;
    color: #f7fff9;
    background:
        linear-gradient(145deg, rgba(20, 33, 29, 0.96), rgba(13, 127, 104, 0.84)),
        radial-gradient(circle at 84% 16%, rgba(243, 198, 78, 0.24), transparent 32%);
    animation: skew-rise 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.engage-hero h1 {
    max-width: 11ch;
    font-size: 4rem;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.engage-hero .muted-line {
    max-width: 48ch;
    margin-top: 0.8rem;
    color: rgba(247, 255, 249, 0.76);
    line-height: 1.55;
}

.engage-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.engage-nav .text-link {
    color: #fff7dc;
}

.chat-panel {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0.8rem;
    min-height: calc(100vh - 2rem);
    border-radius: 18px;
    padding: 1rem;
}

.chat-list {
    display: grid;
    align-content: start;
    gap: 0.7rem;
    overflow: auto;
    padding-right: 0.2rem;
}

.chat-message,
.chat-empty,
.review-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.72);
}

.chat-message {
    max-width: min(620px, 88%);
}

.chat-message.mine {
    justify-self: end;
    color: #fff;
    background: var(--accent);
}

.chat-message.support {
    justify-self: start;
}

.chat-message span,
.chat-empty strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    font-weight: 850;
}

.chat-message.mine span {
    color: rgba(255, 255, 255, 0.78);
}

.chat-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: end;
}

.chat-form label,
.review-form label {
    display: grid;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 750;
}

.review-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 1rem;
}

.review-form {
    display: grid;
    gap: 0.75rem;
    align-self: start;
    border-radius: 14px;
    padding: 1rem;
}

.review-list {
    display: grid;
    gap: 0.7rem;
}

.review-card {
    display: grid;
    gap: 0.45rem;
}

.review-card div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.review-card span {
    color: #9b6d00;
    font-weight: 900;
}

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

.advisor-shell {
    grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
}

.advisor-panel {
    align-content: stretch;
}

.ai-key-form {
    display: grid;
    gap: 0.7rem;
    border-top: 1px solid var(--line);
    padding-top: 0.9rem;
}

.ai-key-form[hidden] {
    display: none;
}

.ai-key-form label {
    display: grid;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 750;
}

/* Admin dashboard, 5/3/8 */

.shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 232px minmax(0, 1fr);
    gap: 0.8rem;
    min-height: 100vh;
    padding: 0.8rem;
    background: var(--admin-bg);
}

.side {
    position: sticky;
    top: 0.8rem;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 1.6rem);
    border-radius: 12px;
    padding: 0.85rem;
    background: #f8faf8;
    animation: slide-in-left 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.side nav {
    display: grid;
    gap: 0.25rem;
    margin-top: 1rem;
}

.nav-item {
    width: 100%;
    min-height: 38px;
    color: var(--ink);
    background: transparent;
    text-align: left;
    transition: transform 120ms ease, background-color 120ms ease, color 120ms ease;
}

.nav-item:hover {
    transform: translateX(2px);
    background: rgba(13, 127, 104, 0.08);
    box-shadow: none;
}

.nav-item.active {
    color: #fff;
    background: var(--deep);
}

.side-note {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 0.85rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.side-note span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--accent-strong);
    font-weight: 850;
}

.workspace {
    display: grid;
    gap: 0.8rem;
    align-content: start;
    animation: rise-in 420ms cubic-bezier(0.22, 1, 0.36, 1) 40ms both;
}

.topbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 1rem;
    align-items: center;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    background: #f8faf8;
}

.eyebrow {
    margin-bottom: 0.24rem;
    color: var(--accent-strong);
    font-size: 0.8rem;
    font-weight: 850;
}

.topbar h1 {
    max-width: none;
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: 0;
}

.search {
    display: grid;
    gap: 0.25rem;
    min-width: 220px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.view {
    display: none;
}

.active-view {
    display: grid;
    gap: 0.8rem;
    animation: view-in 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.metric {
    display: grid;
    gap: 0.42rem;
    min-height: 104px;
    border-radius: 12px;
    padding: 0.85rem;
    background: #f8faf8;
}

.metric span,
th {
    color: var(--muted);
    font-size: 0.8rem;
}

.metric strong {
    font-size: 2rem;
    line-height: 1;
}

.warning strong {
    color: var(--accent-2);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 0.8rem;
}

.signal {
    grid-template-columns: minmax(0, 1fr) auto;
}

.badge {
    width: max-content;
    border-radius: 999px;
    padding: 0.22rem 0.55rem;
    color: #fff;
    background: var(--accent);
    font-size: 0.74rem;
    font-weight: 850;
}

.badge.RESTOCK {
    background: var(--accent-2);
}

.badge.EXPIRING {
    background: #876112;
}

.bar {
    display: grid;
    gap: 0.3rem;
}

.bar span {
    color: var(--muted);
    font-size: 0.86rem;
}

.bar-track {
    overflow: hidden;
    height: 9px;
    border-radius: 999px;
    background: rgba(18, 26, 24, 0.12);
}

.bar-fill {
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
}

.table-wrap {
    overflow: auto;
}

table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 0.68rem 0.5rem;
    text-align: left;
}

td {
    font-size: 0.93rem;
}

td button {
    min-height: 34px;
    padding: 0.45rem 0.65rem;
}

.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.supplier-card strong,
.order-card strong {
    display: block;
}

.modal {
    width: min(560px, calc(100vw - 2rem));
    border: 0;
    border-radius: 12px;
    padding: 1.1rem;
}

.modal[open] {
    animation: modal-in 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal::backdrop {
    background: rgba(13, 18, 16, 0.45);
}

.modal form {
    display: grid;
    gap: 0.72rem;
}

.modal label {
    display: grid;
    gap: 0.32rem;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

menu {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
}

.reveal-item {
    animation: rise-in 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--delay, 0ms);
}

.reveal-row {
    animation: row-in 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--delay, 0ms);
}

@media (max-width: 1020px) {
    .auth-shell,
    .shop-shell,
    .shell,
    .engage-shell,
    .review-layout {
        grid-template-columns: 1fr;
    }

    .shop-shell {
        grid-template-areas:
            "hero"
            "products"
            "cart";
    }

    .side,
    .cart-panel,
    .engage-hero,
    .chat-panel {
        position: static;
        height: auto;
        max-height: none;
        min-height: auto;
    }

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

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

@media (max-width: 720px) {
    body.auth-body,
    body.shop-body {
        background: #f4f7f3;
    }

    .auth-body,
    .shop-shell,
    .shell {
        padding: 0.65rem;
    }

    .login-story {
        min-height: 360px;
    }

    .login-story h1,
    .shop-hero h1 {
        max-width: 13ch;
        font-size: 2.7rem;
    }

    .login-tiles,
    .metric-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .shop-hero {
        grid-template-columns: 1fr;
    }

    .side nav {
        grid-template-columns: 1fr 1fr;
    }

    .top-actions,
    .shop-actions,
    .chat-form {
        grid-template-columns: 1fr;
        justify-content: flex-start;
    }
}

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

    .icon-track {
        animation: none;
    }
}

@keyframes icon-flow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes page-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes skew-rise {
    from {
        opacity: 0;
        transform: translateY(16px) skewY(-1.2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) skewY(0);
    }
}

@keyframes panel-snap {
    from {
        opacity: 0;
        transform: translateX(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes view-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes row-in {
    from {
        opacity: 0;
        transform: translateX(6px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse-pop {
    0% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}
