:root {
    color-scheme: light;
    --sand: #f5efe0;
    --sand-dark: #e8dfc5;
    --terra: #c4622d;
    --terra-dark: #9e4820;
    --charcoal: #1c1a17;
    --charcoal-2: #2e2b26;
    --muted: #7a7060;
    --cream: #faf7f0;
    --white: #ffffff;
    --green: #2d6a4f;
    --green-dark: #235c40;
    --danger: #b91c1c;
    --radius: 4px;
    --radius-lg: 12px;
    --nav-h: 68px;
    --header-h: 0px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--charcoal);
    font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    padding: 14px 3.4vw 0;
}

.site-nav {
    max-width: 1840px;
    margin: 0 auto;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(250, 247, 240, 0.22);
    border-radius: 999px;
    background: rgba(28, 26, 23, 0.54);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
    padding: 0 28px 0 18px;
    backdrop-filter: blur(24px) saturate(145%);
}

.nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    line-height: 1;
    text-decoration: none;
}

.wordmark,
.foot-brand,
.hero-title,
.section-title,
.product-name,
.product-price,
.admin-title,
.admin-card-title,
.login-logo {
    font-family: "Playfair Display", Georgia, serif;
}

.logo-mark {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 214, 166, 0.42);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.15), transparent 35%),
        linear-gradient(135deg, #191512, #4b2b15);
    color: #fff4dc;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    box-shadow: inset 0 0 18px rgba(196, 98, 45, 0.2), 0 7px 20px rgba(0, 0, 0, 0.28);
}

.wordmark {
    color: white;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-align: left;
}

.tagline {
    margin-top: 2px;
    color: var(--terra);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.35rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: #fff;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    margin-top: var(--header-h);
    overflow: hidden;
    background: var(--charcoal);
}

.hero-image {
    display: flex;
    min-height: min(820px, 100svh);
    align-items: center;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-texture {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.015) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, 0.015) 40px);
    pointer-events: none;
}

.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.1) 50%, rgba(255, 255, 255, 0.08)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 45%);
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6vw;
}

.hero-image .hero-left {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 7.2rem 6vw 4.5rem;
}

.hero-eyebrow,
.section-eyebrow,
.product-category {
    color: var(--terra);
    font-weight: 700;
    text-transform: uppercase;
}

.hero-eyebrow {
    margin-bottom: 1.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
}

.hero-title {
    margin: 0 0 1.4rem;
    color: var(--white);
    max-width: 840px;
    font-size: clamp(3.8rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.93;
}

.hero-sub {
    max-width: 620px;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-cta,
.admin-btn,
.btn-primary,
.btn-secondary,
.btn-light,
.btn-dark,
.btn-danger,
.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta,
.admin-btn,
.btn-primary {
    width: fit-content;
    min-height: 48px;
    background: linear-gradient(135deg, #fff4d5, #d7aa62);
    color: #111;
    padding: 14px 32px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-cta.ghost {
    background: rgba(250, 247, 240, 0.82);
    color: #111;
    backdrop-filter: blur(12px);
}

.hero-cta:hover,
.hero-cta:focus-visible,
.admin-btn:hover,
.admin-btn:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
    background: #fff1c2;
    transform: translateY(-1px);
}

.hero-help {
    position: absolute;
    right: 5vw;
    bottom: 34px;
    z-index: 2;
    min-width: 292px;
    border-left: 4px solid var(--terra);
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 18px 20px;
    backdrop-filter: blur(18px);
}

.hero-help span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.hero-help strong {
    display: block;
    font-size: 1rem;
}

.promise-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(245, 239, 224, 0.25);
    border-bottom: 1px solid rgba(245, 239, 224, 0.2);
    background: #10100f;
    color: white;
}

.promise-bar div {
    padding: 26px 6vw;
    border-right: 1px solid rgba(245, 239, 224, 0.18);
}

.promise-bar div:last-child {
    border-right: 0;
}

.promise-bar strong,
.promise-bar span {
    display: block;
}

.promise-bar strong {
    font-weight: 900;
}

.promise-bar span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.42);
}

.section {
    background: var(--cream);
    padding: 6.6rem 6vw 5rem;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.section-eyebrow {
    margin-bottom: 0.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
}

.section-title {
    margin: 0;
    color: var(--charcoal);
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.1;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    border: 1px solid var(--sand-dark);
    border-radius: 8px;
    background: transparent;
    color: #111;
    padding: 12px 18px;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
    border-color: #a96f37;
    background: #a96f37;
    color: white;
}

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

.product-card {
    overflow: hidden;
    border: 1px solid var(--sand-dark);
    border-radius: 8px;
    background: var(--white);
    cursor: default;
    animation: card-in 0.4s ease both;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@keyframes card-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover,
.product-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(28, 26, 23, 0.1);
}

.product-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--sand);
}

.product-body {
    padding: 20px 18px 18px;
}

.product-category {
    margin: 0 0 6px;
    color: #4f5f50;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.product-name {
    margin: 0 0 8px;
    color: var(--charcoal);
    font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.3;
}

.product-desc {
    display: -webkit-box;
    min-height: 2.55rem;
    margin: 0 0 16px;
    overflow: hidden;
    color: #756e65;
    font-size: 0.9rem;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.product-price {
    flex: 1 0 auto;
    color: var(--charcoal);
    font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
}

.wa-btn {
    flex: 0 1 auto;
    min-height: 40px;
    background: #070707;
    color: white;
    padding: 10px 18px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.wa-btn:hover,
.wa-btn:focus-visible {
    background: #242424;
    transform: scale(1.03);
}

.wa-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 5rem 2rem;
    color: var(--muted);
    text-align: center;
}

.empty-state svg {
    margin: 0 auto 1rem;
    opacity: 0.32;
}

.empty-state h3 {
    margin: 0;
    color: var(--charcoal);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.7rem;
}

.empty-state p {
    margin: 0.65rem auto 1.5rem;
    max-width: 460px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.45);
    padding: 3rem 6vw;
}

.foot-brand {
    color: white;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.site-footer p {
    margin: 4px 0 0;
    font-size: 0.78rem;
}

.site-footer a {
    color: var(--terra);
    text-decoration: none;
}

.foot-right {
    text-align: right;
    font-size: 0.75rem;
}

.copyright {
    margin-top: 6px;
}

.wa-float {
    position: fixed;
    z-index: 90;
    right: 1.8rem;
    bottom: 1.8rem;
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.4);
    text-decoration: none;
    animation: bounce-in 0.6s 1s ease both;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover,
.wa-float:focus-visible {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(45, 106, 79, 0.5);
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bg-paper {
    background: var(--cream);
}

.text-ink {
    color: var(--charcoal);
}

.text-brass,
.text-rosecut,
.text-citrus {
    color: var(--terra);
}

.text-wine {
    color: var(--terra-dark);
}

.shadow-soft {
    box-shadow: none;
}

.admin-shell {
    background: var(--cream);
}

.admin-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: var(--nav-h);
    padding: 0 6vw;
    border-bottom: 1px solid var(--sand-dark);
    background: rgba(250, 247, 240, 0.94);
    backdrop-filter: blur(12px);
}

.admin-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 6vw 4rem;
}

.admin-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.admin-title {
    margin: 0;
    color: var(--charcoal);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
}

.admin-sub {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.admin-actions,
.row-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 2rem;
}

.stat-card,
.admin-card,
.login-box {
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    background: white;
}

.stat-card {
    padding: 1.2rem;
}

.stat-label {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stat-value {
    margin: 0;
    color: var(--charcoal);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
}

.admin-card {
    padding: 2rem;
    margin-bottom: 2rem;
}

.admin-card-title {
    margin: 0 0 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--sand-dark);
    color: var(--charcoal);
    font-size: 1.3rem;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    min-height: 46px;
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius);
    outline: none;
    background: var(--cream);
    color: var(--charcoal);
    padding: 11px 14px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: var(--terra);
    background: white;
    box-shadow: none;
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

.img-upload-box {
    position: relative;
    display: flex;
    min-height: 150px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--sand-dark);
    border-radius: var(--radius);
    background: var(--cream);
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.img-upload-box:hover,
.img-upload-box:focus-within {
    border-color: var(--terra);
    background: #fdf8f3;
}

.file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.upload-copy {
    color: var(--muted);
    font-size: 0.82rem;
}

.upload-copy strong {
    display: block;
    margin-bottom: 4px;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.preview-frame {
    overflow: hidden;
    max-width: 240px;
    aspect-ratio: 4 / 5;
    margin-top: 1rem;
    border: 1px solid var(--sand-dark);
    border-radius: 6px;
    background: var(--sand);
}

.preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-btn {
    width: 100%;
    margin-top: 0.5rem;
}

.admin-btn.secondary,
.btn-light {
    width: auto;
    min-height: 40px;
    border: 1.5px solid var(--sand-dark);
    background: transparent;
    color: var(--muted);
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-btn.secondary:hover,
.btn-light:hover,
.btn-light:focus-visible {
    background: var(--sand);
    color: var(--charcoal);
}

.login-box .admin-btn.secondary {
    width: 100%;
}

.btn-dark {
    min-height: 40px;
    background: var(--charcoal);
    color: white;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-dark:hover,
.btn-dark:focus-visible {
    background: var(--charcoal-2);
}

.btn-danger {
    min-height: 38px;
    border: 1px solid #fca5a5;
    background: transparent;
    color: var(--danger);
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-danger:hover,
.btn-danger:focus-visible {
    background: #fef2f2;
}

.flash {
    margin-bottom: 1rem;
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.85rem;
}

.flash.success {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.flash.error {
    border: 1px solid #fca5a5;
    background: #fef2f2;
    color: var(--danger);
}

.admin-product-list {
    display: grid;
    gap: 0;
}

.admin-product-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--sand-dark);
}

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

.admin-thumb {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--sand);
}

.admin-row-main {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-product-row h3 {
    margin: 0;
    overflow: hidden;
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-product-row p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.line-clamp-2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.login-wrap {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--cream);
}

.login-box {
    width: 100%;
    max-width: 380px;
    padding: 2.5rem;
    text-align: center;
}

.login-logo {
    color: var(--charcoal);
    font-size: 2rem;
    font-weight: 900;
}

.login-sub {
    margin: 4px 0 2rem;
    color: var(--terra);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.login-title {
    margin: 0 0 1.5rem;
    color: var(--charcoal);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.3rem;
}

.login-error {
    margin-bottom: 1rem;
    border: 1px solid #fca5a5;
    border-radius: var(--radius);
    background: #fef2f2;
    color: var(--danger);
    padding: 10px 14px;
    font-size: 0.82rem;
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    :root {
        --nav-h: 64px;
    }

    .site-header {
        padding: 10px 4vw 0;
    }

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

    .hero-image {
        min-height: 720px;
        background-position: 62% center;
    }

    .hero-left {
        padding: 4rem 5vw;
    }

    .hero-image .hero-left {
        padding: 8.4rem 5vw 4.5rem;
    }

    .hero-title {
        font-size: clamp(3.15rem, 15vw, 5rem);
    }

    .hero-sub {
        max-width: 94%;
        font-size: 0.98rem;
    }

    .hero-help {
        right: 5vw;
        bottom: 22px;
        left: 5vw;
        min-width: 0;
        padding: 14px 16px;
    }

    .promise-bar {
        grid-template-columns: 1fr;
    }

    .promise-bar div {
        padding: 18px 5vw;
        border-right: 0;
        border-bottom: 1px solid rgba(245, 239, 224, 0.16);
    }

    .site-nav,
    .admin-nav {
        padding: 0 14px;
    }

    .site-nav {
        gap: 1rem;
    }

    .nav-logo {
        gap: 9px;
    }

    .logo-mark {
        width: 42px;
        height: 42px;
        font-size: 0.72rem;
    }

    .wordmark {
        font-size: 0.98rem;
    }

    .nav-links {
        gap: 0.85rem;
    }

    .hide-sm {
        display: none;
    }

    .section,
    .admin-wrap {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .section {
        padding-top: 4rem;
        padding-bottom: 3.5rem;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
    }

    .foot-right {
        text-align: center;
    }

    .admin-row-main {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .wordmark {
        display: none;
    }

    .nav-links {
        gap: 0.7rem;
    }

    .nav-links a {
        font-size: 0.68rem;
    }

    .product-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .wa-btn {
        width: 100%;
    }
}

@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;
    }
}
