/* =========================================================
   PRIORIZE MODA
   VISUAL BASEADO NO CATÁLOGO
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #151515;
    color: #f4f0e8;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

:root {
    --black: #111111;
    --background: #151515;
    --background-two: #181818;
    --background-three: #1c1c1c;

    --gold: #d4aa58;
    --gold-light: #edc96f;
    --gold-bright: #f2d27c;
    --gold-dark: #9d7835;

    --gold-border: rgba(212, 170, 88, 0.28);
    --gold-glow: rgba(212, 170, 88, 0.16);

    --white: #f4f0e8;
    --gray: #97938c;
    --gray-dark: #65625e;

    --serif: "Cormorant Garamond", serif;
    --sans: "Montserrat", sans-serif;
}


/* =========================================================
   LOADER
   ========================================================= */

#loader {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 170, 88, 0.08),
            transparent 40%
        ),
        #111111;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    width: min(330px, 82vw);

    text-align: center;

    animation: loaderAppear 1s ease both;
}

.loader-logo-wrap {
    width: 175px;
    height: 175px;

    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 900px;

    position: relative;
}

.loader-logo-wrap::before {
    content: "";

    position: absolute;
    inset: 8px;

    border: 1px solid rgba(212, 170, 88, 0.38);

    border-radius: 50%;

    box-shadow:
        0 0 20px rgba(212, 170, 88, 0.08),
        inset 0 0 25px rgba(212, 170, 88, 0.04);

    animation: ringRotate 4s linear infinite;
}

.loader-logo {
    width: 125px;
    height: 125px;

    object-fit: contain;

    filter:
        drop-shadow(0 0 8px rgba(212, 170, 88, 0.28))
        drop-shadow(0 0 22px rgba(212, 170, 88, 0.12));

    animation: logo3d 3.5s ease-in-out infinite;
}

.loader-line {
    height: 1px;

    width: 100%;

    background: rgba(212, 170, 88, 0.12);

    overflow: hidden;

    margin-bottom: 17px;
}

.loader-line span {
    display: block;

    height: 100%;

    width: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold-bright),
            transparent
        );

    animation: loadingLine 2s ease forwards;
}

.loader-content p {
    color: var(--gold-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.38em;

    margin-bottom: 7px;
}

.loader-content small {
    color: #6d6962;

    font-size: 7px;

    letter-spacing: 0.35em;
}


/* =========================================================
   DECORAÇÕES DE FUNDO
   ========================================================= */

.background-decoration {
    position: fixed;

    z-index: -1;

    pointer-events: none;

    border: 1px solid rgba(212, 170, 88, 0.13);

    border-radius: 50%;
}

.decoration-left {
    width: 470px;
    height: 470px;

    left: -215px;
    top: 65px;
}

.decoration-right {
    width: 370px;
    height: 370px;

    right: -185px;
    top: 345px;
}

.gold-spark {
    position: fixed;

    z-index: -1;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--gold-light);

    box-shadow:
        0 0 7px rgba(237, 201, 111, 0.7),
        0 0 16px rgba(212, 170, 88, 0.28);

    animation: sparkle 4s ease-in-out infinite;
}

.spark-one {
    top: 30%;
    left: 20%;
}

.spark-two {
    top: 42%;
    right: 28%;

    animation-delay: 1.2s;
}

.spark-three {
    top: 70%;
    left: 72%;

    animation-delay: 2.1s;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 15px 5%;

    background: rgba(17, 17, 17, 0.72);

    border-bottom: 1px solid rgba(212, 170, 88, 0.08);

    backdrop-filter: blur(12px);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        padding 0.35s ease;
}

.header.scrolled {
    padding: 11px 5%;

    background: rgba(15, 15, 15, 0.94);

    border-bottom-color: rgba(212, 170, 88, 0.16);
}

.header-inner {
    max-width: 1020px;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 108px;

    filter:
        drop-shadow(0 0 7px rgba(212, 170, 88, 0.15));

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.brand:hover img {
    transform: scale(1.03);

    filter:
        drop-shadow(0 0 12px rgba(212, 170, 88, 0.3));
}

.nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

.nav a {
    position: relative;

    color: #89857e;

    font-size: 9px;
    font-weight: 400;

    transition:
        color 0.3s ease;
}

.nav a::after {
    content: "";

    position: absolute;

    bottom: -7px;
    left: 50%;

    width: 0;
    height: 1px;

    transform: translateX(-50%);

    background: var(--gold);

    box-shadow:
        0 0 8px rgba(212, 170, 88, 0.5);

    transition:
        width 0.3s ease;
}

.nav a:hover {
    color: var(--gold-light);
}

.nav a:hover::after {
    width: 100%;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 100vh;

    padding: 135px 20px 90px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    background:
        radial-gradient(
            ellipse at center 25%,
            rgba(212, 170, 88, 0.075),
            transparent 40%
        );
}

.hero::before {
    content: "";

    position: absolute;

    top: 60px;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 170, 88, 0.13),
            transparent
        );
}

.hero::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    width: 75%;

    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 170, 88, 0.18),
            transparent
        );
}

.hero-content {
    width: 100%;
    max-width: 850px;

    animation:
        heroAppear 1.1s 0.2s ease both;
}

.hero-logo {
    margin-bottom: 24px;
}

.hero-logo img {
    width: 135px;
    height: 135px;

    object-fit: contain;

    margin: auto;

    filter:
        drop-shadow(0 0 10px rgba(212, 170, 88, 0.2))
        drop-shadow(0 0 25px rgba(212, 170, 88, 0.07));

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);

    filter:
        drop-shadow(0 0 16px rgba(212, 170, 88, 0.42));
}

.eyebrow {
    color: var(--gold-light);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.4em;

    margin-bottom: 18px;
}

.hero h1 {
    max-width: 800px;

    margin: auto;

    color: var(--white);

    font-family: var(--serif);

    font-size: clamp(62px, 8vw, 105px);

    line-height: 0.82;

    font-weight: 500;

    letter-spacing: -0.035em;
}

.hero h1 span {
    color: var(--gold-bright);

    font-style: italic;

    text-shadow:
        0 0 25px rgba(212, 170, 88, 0.12);
}

.hero-description {
    max-width: 540px;

    margin: 32px auto 28px;

    color: #89857f;

    font-size: 10px;

    line-height: 1.8;

    font-weight: 300;
}


/* =========================================================
   BOTÃO
   ========================================================= */

.buy-button {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    min-width: 175px;

    padding: 14px 22px;

    border: 1px solid var(--gold);

    border-radius: 50px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #e2b965,
            #c99d4c
        );

    color: #171717;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.03em;

    box-shadow:
        0 8px 25px rgba(212, 170, 88, 0.15),
        0 0 18px rgba(212, 170, 88, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

.buy-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 75%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.42),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.7s ease;
}

.buy-button span,
.buy-button strong {
    position: relative;

    z-index: 2;
}

.buy-button strong {
    font-size: 13px;

    font-weight: 500;
}

.buy-button:hover {
    transform: translateY(-4px);

    filter: brightness(1.06);

    box-shadow:
        0 12px 35px rgba(212, 170, 88, 0.25),
        0 0 25px rgba(212, 170, 88, 0.15);
}

.buy-button:hover::before {
    left: 140%;
}

.buy-helper {
    margin-top: 13px;

    color: #5f5c57;

    font-size: 8px;
}


/* =========================================================
   SEÇÕES
   ========================================================= */

.section {
    position: relative;

    padding: 125px 5%;

    border-bottom: 1px solid rgba(212, 170, 88, 0.07);
}

.section-container {
    width: 100%;
    max-width: 1080px;

    margin: auto;
}

.section-heading {
    max-width: 720px;
}

.section-heading.centered {
    margin: auto;

    text-align: center;
}

.section-heading h2,
.collection-header h2,
.shop-content h2,
.instagram-content h2 {
    color: var(--white);

    font-family: var(--serif);

    font-size: clamp(48px, 6vw, 76px);

    line-height: 0.9;

    font-weight: 500;

    letter-spacing: -0.025em;
}

.section-heading h2 span,
.collection-header h2 span,
.shop-content h2 span,
.instagram-content h2 span {
    color: var(--gold-bright);

    font-style: italic;

    text-shadow:
        0 0 22px rgba(212, 170, 88, 0.12);
}


/* =========================================================
   SOBRE
   ========================================================= */

.about {
    background:
        linear-gradient(
            180deg,
            #151515,
            #171717
        );
}

.about .section-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-text {
    padding-left: 35px;

    border-left: 1px solid rgba(212, 170, 88, 0.22);
}

.about-text p {
    color: #85817b;

    font-size: 11px;

    line-height: 2;

    font-weight: 300;

    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   DESTAQUES
   ========================================================= */

.highlights {
    background: #151515;
}

.highlight-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 60px;
}

.highlight-card {
    position: relative;

    min-height: 225px;

    padding: 35px 30px;

    overflow: hidden;

    border: 1px solid rgba(212, 170, 88, 0.17);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.006)
        );

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
}

.highlight-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 65%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold-light),
            transparent
        );

    transition:
        left 0.8s ease;
}

.highlight-card:hover {
    transform: translateY(-7px);

    border-color: rgba(212, 170, 88, 0.42);

    background: #1c1c1c;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(212, 170, 88, 0.07);
}

.highlight-card:hover::after {
    left: 135%;
}

.highlight-card h3 {
    color: var(--gold-bright);

    font-family: var(--serif);

    font-size: 39px;

    font-weight: 500;

    margin-bottom: 17px;
}

.highlight-card p {
    color: #85817b;

    font-size: 10px;

    line-height: 1.9;

    font-weight: 300;
}

.card-shine {
    position: absolute;

    width: 100px;
    height: 100px;

    right: -50px;
    bottom: -50px;

    border-radius: 50%;

    background: rgba(212, 170, 88, 0.08);

    filter: blur(30px);
}


/* =========================================================
   COLEÇÃO
   ========================================================= */

.collection {
    background:
        linear-gradient(
            180deg,
            #171717,
            #151515
        );
}

.collection-header {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 55px;
}

.collection-description {
    max-width: 340px;

    color: #85817b;

    font-size: 10px;

    line-height: 1.9;

    font-weight: 300;
}


/* =========================================================
   PAINÉIS
   ========================================================= */

.fashion-showcase {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 13px;
}

.fashion-panel {
    position: relative;

    min-height: 410px;

    overflow: hidden;

    border: 1px solid rgba(212, 170, 88, 0.16);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #242424,
            #171717
        );

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.fashion-panel::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(212, 170, 88, 0.12),
            transparent 42%
        );
}

.fashion-panel::after {
    content: "";

    position: absolute;

    top: 0;
    left: -130%;

    width: 55%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent
        );

    transform: skewX(-15deg);

    transition:
        left 0.9s ease;
}

.fashion-panel:hover {
    transform: translateY(-7px);

    border-color: rgba(212, 170, 88, 0.4);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(212, 170, 88, 0.07);
}

.fashion-panel:hover::after {
    left: 145%;
}

.panel-one {
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(212, 170, 88, 0.12),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #292929,
            #171717
        );
}

.panel-two {
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(212, 170, 88, 0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #252525,
            #161616
        );
}

.panel-three {
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(212, 170, 88, 0.1),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #2b2b2b,
            #171717
        );
}

.panel-content {
    position: absolute;

    z-index: 2;

    left: 28px;
    right: 28px;
    bottom: 28px;
}

.panel-label {
    color: var(--gold);

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 0.35em;

    margin-bottom: 10px;
}

.panel-content h3 {
    color: var(--white);

    font-family: var(--serif);

    font-size: 43px;

    font-weight: 500;

    line-height: 0.95;

    margin-bottom: 8px;
}

.panel-content > p:last-child {
    color: #85817b;

    font-size: 9px;
}


/* =========================================================
   CATÁLOGO
   ========================================================= */

.shop {
    padding-top: 145px;
    padding-bottom: 145px;

    background:
        radial-gradient(
            ellipse at center,
            rgba(212, 170, 88, 0.07),
            transparent 48%
        ),
        #151515;
}

.shop-container {
    max-width: 950px;

    margin: auto;

    padding: 85px 40px;

    text-align: center;

    border-top: 1px solid rgba(212, 170, 88, 0.18);
    border-bottom: 1px solid rgba(212, 170, 88, 0.18);
}

.shop-content > p:last-child {
    max-width: 530px;

    margin: 28px auto 0;

    color: #85817b;

    font-size: 10px;

    line-height: 1.9;
}


/* =========================================================
   LOJA
   ========================================================= */

.store {
    background: #181818;
}

.store-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.store-title h2 {
    color: var(--white);

    font-family: var(--serif);

    font-size: clamp(60px, 7vw, 85px);

    font-weight: 500;

    line-height: 0.9;
}

.store-info {
    padding: 38px;

    border: 1px solid rgba(212, 170, 88, 0.19);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            transparent
        );

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.store-info:hover {
    border-color: rgba(212, 170, 88, 0.4);

    box-shadow:
        0 0 28px rgba(212, 170, 88, 0.06);
}

.store-label {
    color: var(--gold-light);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.3em;

    margin-bottom: 17px;
}

.address {
    color: var(--white);

    font-family: var(--serif);

    font-size: 27px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.store-note {
    color: #77736c;

    font-size: 9px;

    line-height: 1.8;
}


/* =========================================================
   INSTAGRAM
   ========================================================= */

.instagram {
    background: #151515;

    text-align: center;
}

.instagram-content {
    max-width: 700px;

    margin: auto;
}

.instagram-content > p:not(.eyebrow) {
    max-width: 520px;

    margin: 25px auto 30px;

    color: #85817b;

    font-size: 10px;

    line-height: 1.9;
}

.instagram-link {
    display: inline-flex;

    padding: 13px 27px;

    border: 1px solid rgba(212, 170, 88, 0.38);

    border-radius: 50px;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 0.08em;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.instagram-link:hover {
    transform: translateY(-3px);

    background: rgba(212, 170, 88, 0.08);

    box-shadow:
        0 0 22px rgba(212, 170, 88, 0.1);
}


/* =========================================================
   FINAL
   ========================================================= */

.final-message {
    padding: 155px 5%;

    text-align: center;

    background:
        radial-gradient(
            ellipse at center,
            rgba(212, 170, 88, 0.08),
            transparent 48%
        ),
        #111111;
}

.final-content h2 {
    color: var(--gold-bright);

    font-family: var(--serif);

    font-size: clamp(70px, 9vw, 110px);

    font-weight: 500;

    line-height: 0.85;

    text-shadow:
        0 0 28px rgba(212, 170, 88, 0.13);
}

.final-content > p:last-child {
    margin-top: 22px;

    color: #77736c;

    font-size: 10px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 32px 5%;

    background: #101010;

    border-top: 1px solid rgba(212, 170, 88, 0.1);
}

.footer-inner {
    max-width: 1080px;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 13px;
}

.footer-brand img {
    width: 55px;

    filter:
        drop-shadow(0 0 8px rgba(212, 170, 88, 0.18));
}

.footer-brand p,
.footer-right p {
    color: #66625c;

    font-size: 8px;

    letter-spacing: 0.08em;
}

.footer-right {
    text-align: right;
}

.footer-right p + p {
    margin-top: 6px;
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   ANIMAÇÕES
   ========================================================= */

@keyframes loaderAppear {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

}

@keyframes logo3d {

    0% {
        transform:
            rotateY(-12deg)
            rotateX(4deg)
            scale(0.97);
    }

    50% {
        transform:
            rotateY(12deg)
            rotateX(-3deg)
            scale(1.03);
    }

    100% {
        transform:
            rotateY(-12deg)
            rotateX(4deg)
            scale(0.97);
    }

}

@keyframes ringRotate {

    0% {
        transform: rotate(0deg) scale(0.97);
    }

    50% {
        transform: rotate(180deg) scale(1.02);
    }

    100% {
        transform: rotate(360deg) scale(0.97);
    }

}

@keyframes loadingLine {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}

@keyframes heroAppear {

    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.7);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 900px) {

    .about .section-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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

    .fashion-showcase {
        grid-template-columns: 1fr;
    }

    .fashion-panel {
        min-height: 330px;
    }

    .collection-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .store-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .store-title {
        text-align: center;
    }

}


@media (max-width: 650px) {

    .header {
        padding: 13px 18px;
    }

    .header-inner {
        justify-content: center;
    }

    .brand {
        display: none;
    }

    .nav {
        gap: 18px;
    }

    .nav a {
        font-size: 8px;
    }

    .hero {
        padding:
            120px
            20px
            80px;
    }

    .hero-logo img {
        width: 110px;
        height: 110px;
    }

    .hero h1 {
        font-size: clamp(54px, 15vw, 76px);
    }

    .hero-description {
        font-size: 10px;
    }

    .section {
        padding: 90px 20px;
    }

    .section-heading h2,
    .collection-header h2,
    .shop-content h2,
    .instagram-content h2 {
        font-size: 50px;
    }

    .highlight-card {
        min-height: 205px;

        padding: 30px 25px;
    }

    .shop {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .shop-container {
        padding: 60px 20px;
    }

    .store-info {
        padding: 28px 23px;
    }

    .address {
        font-size: 22px;
    }

    .final-message {
        padding: 110px 20px;
    }

    .final-content h2 {
        font-size: 72px;
    }

    .footer-inner {
        flex-direction: column;

        text-align: center;
    }

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

    .decoration-left {
        width: 330px;
        height: 330px;

        left: -210px;
    }

    .decoration-right {
        width: 280px;
        height: 280px;

        right: -190px;
    }

}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}