/* Plant Finder App Guide — neutral beige & brown with pink accents */

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

:root {
    --bg: #f6efe6;
    --bg-alt: #f1e6dc;
    --surface: #fff8f3;
    --surface-alt: #fbe8ee;
    --text-primary: #3d2d24;
    --text-secondary: #5c4a3f;
    --text-muted: #7b685c;
    --accent: #f2b5d4;
    --accent-strong: #e58ab5;
    --border: #e0d3c5;
    --border-strong: #d6c2b2;
    --shadow-sm: 0 12px 30px rgba(61, 45, 36, 0.08);
    --shadow-lg: 0 32px 60px rgba(61, 45, 36, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --max-width: 1140px;
    --transition: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure smooth transitions for common interactive elements */
button,
a,
[role="button"],
input[type="button"],
input[type="submit"] {
    transition: background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), 
                color 500ms cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 500ms cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1), 
                transform 500ms cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', 'Source Sans 3', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.25;
    margin: 0 0 20px;
}

p {
    margin: 0 0 18px;
    color: var(--text-secondary);
}

ul,
ol {
    margin: 0 0 24px 24px;
    padding: 0;
    color: var(--text-secondary);
}

a {
    color: var(--accent-strong);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover,
a:focus-visible {
    color: var(--text-primary);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

abbr {
    text-decoration: none;
    border-bottom: 1px dotted var(--border-strong);
    cursor: help;
}

code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    background: rgba(242, 181, 212, 0.18);
    color: var(--text-primary);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 0.95em;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: clamp(96px, 13vw, 96px) 0;
}

.section.alt {
    background: var(--surface);
}

.section h2 {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.9rem);
    margin-bottom: 28px;
}

.section h3 {
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    margin-top: 12px;
}

.section .section-headline p {
    max-width: 680px;
    margin-bottom: 36px;
}

.split,
.two-column {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(32px, 8vw, 56px);
}

.split.reverse {
    flex-direction: row-reverse;
}

.section-body,
.section-media,
.panel {
    flex: 1 1 320px;
}

.section-media img,
.section-media picture {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.section-headline {
    display: block;

    align-items: center;


    margin-bottom: 32px;
}

.section-headline img {
    width: clamp(220px, 35vw, 320px);
}

.panel {
    background: var(--surface-alt);
    padding: clamp(32px, 6vw, 44px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1), border-color 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateZ(0);
}

.panel:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: var(--shadow-lg);
    border-color: rgba(229, 138, 181, 0.3);
}

.panel.highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.panel.highlight img {
    max-width: 480px;
}

.panel ul,
.panel ol {
    margin-left: 20px;
}

.section-body p {
    max-width: 620px;
}

.section-body ul {
    margin-left: 20px;
}

/* Meta summary */

.meta-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: clamp(18px, 5vw, 36px) 0;
    padding: 20px 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 248, 243, 0.82);
    border: 1px solid rgba(229, 138, 181, 0.18);
    box-shadow: 0 24px 50px rgba(61, 45, 36, 0.08);
}

.meta-grid span {
    font-weight: 500;
    color: var(--text-secondary);
}

/* Intro */

.intro-wrap {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 4vw, 28px);
}

.intro-lead {
    color: var(--text-secondary);
    margin: clamp(6px, 2vw, 12px) auto 0;
    max-width: 1540px;
}

.intro-body {
    display: flex;
    flex-direction: column;
    /* gap: clamp(12px, 3vw, 18px); */
}

.connect-note {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(242, 181, 212, 0.24);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

.connect-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

/* Apps */

.apps-grid {
    display: grid;
    gap: clamp(24px, 5vw, 32px);
    grid-template-columns: 1fr;
}

.app-card {
    display: flex;
    gap: 44px;
    align-items: stretch;
    background: var(--surface);
    padding: clamp(24px, 4vw, 32px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(224, 211, 197, 0.6);
    box-shadow: var(--shadow-sm);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
    transform: translateZ(0);
}

.app-card:hover,
.app-card:focus-within {
    transform: translateY(-3px) translateZ(0);
    box-shadow: var(--shadow-lg);
}

.app-media {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-media img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateZ(0);
}

.app-card:hover .app-media img {
    transform: scale(1.03) translateZ(0);
    box-shadow: var(--shadow-lg);
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-content h3 {
    margin: 0;
    font-size: 1.4rem;
}

.app-content h4 {
    font-size: 1.08rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.app-content ul {
    margin-left: 20px;
}

/* Tips */

.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(24px, 6vw, 40px);
}

.tips-grid article {
    flex: 1 1 320px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 5vw, 32px);
    border: 1px solid rgba(224, 211, 197, 0.6);
    box-shadow: var(--shadow-sm);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
    transform: translateZ(0);
}

.tips-grid article:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: var(--shadow-lg);
}

.tips-grid ul {
    margin-left: 20px;
}

.pro-tip {
    margin-top: clamp(36px, 8vw, 52px);
    padding: clamp(28px, 6vw, 40px);
    border-radius: var(--radius-lg);
    background: linear-gradient(140deg, rgba(242, 181, 212, 0.3), rgba(255, 248, 243, 0.92));
    border: 1px solid rgba(229, 138, 181, 0.28);
    box-shadow: var(--shadow-lg);
}

.pro-tip h3 {
    margin-bottom: 12px;
}

/* Alternatives */

.faq-intro {
    max-width: 620px;
    margin: -10px auto clamp(32px, 6vw, 48px);
    text-align: center;
    color: var(--text-secondary);
}

#faq h2 {
    text-align: center;
    margin-bottom: clamp(24px, 5vw, 36px);
}

.faq-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 4vw, 28px);
    counter-reset: faq-counter;
}

.faq-item {
    width: 100%;
    max-width: 760px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(224, 211, 197, 0.6);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    padding: 0;
    transition: box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1), border-color 500ms cubic-bezier(0.4, 0, 0.2, 1), transform 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
    transform: translateZ(0);
}

.faq-item:hover,
.faq-item:focus-within {
    transform: translateY(-2px) translateZ(0);
}

.faq-item[open] {
    box-shadow: var(--shadow-lg);
    border-color: rgba(229, 138, 181, 0.4);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: clamp(22px, 4.6vw, 30px) clamp(24px, 5vw, 36px);
    font-weight: 600;
    font-size: 1.08rem;
    cursor: pointer;
    list-style: none;
    background: linear-gradient(135deg, rgba(255, 248, 243, 0.9), rgba(242, 181, 212, 0.22));
    border-radius: var(--radius-lg);
    transition: background var(--transition-smooth);
}

.faq-item summary:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(229, 138, 181, 0.35);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--accent-strong);
    position: relative;
    background:
        linear-gradient(var(--accent-strong), var(--accent-strong)) center/2px 12px no-repeat,
        linear-gradient(var(--accent-strong), var(--accent-strong)) center/12px 2px no-repeat;
    transition: background 500ms cubic-bezier(0.4, 0, 0.2, 1), transform 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
    transform: translateZ(0);
}

.faq-item[open] summary::after {
    background:
        linear-gradient(var(--accent-strong), var(--accent-strong)) center/12px 2px no-repeat;
    transform: rotate(180deg) translateZ(0);
}

.faq-item summary span {
    flex: 1;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.faq-item summary span::before {
    counter-increment: faq-counter;
    content: counter(faq-counter, decimal-leading-zero);
    font-size: 0.85rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-strong);
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(229, 138, 181, 0.14);
}

.faq-answer {
    padding: clamp(16px, 4.2vw, 28px) clamp(24px, 5vw, 36px) clamp(24px, 5vw, 36px);
    color: var(--text-secondary);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    transform: translateZ(0);
}

.faq-answer p {
    margin: 0;
}

/* Recommendations */

.recommendations-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(28px, 6vw, 44px);
}

.recommendations-header {
    max-width: 640px;
    text-align: center;
}

.recommendations-lead {
    color: var(--text-secondary);
    margin: clamp(6px, 1.8vw, 10px) 0 0;
}

.recommendation-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(18px, 4vw, 26px);
}

.recommendation-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: clamp(22px, 4.8vw, 30px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(224, 211, 197, 0.7);
    background: linear-gradient(135deg, rgba(255, 248, 243, 0.92), rgba(242, 181, 212, 0.16));
    box-shadow: var(--shadow-sm);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1), border-color 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
    transform: translateZ(0);
}

.recommendation-card:hover,
.recommendation-card:focus-within {
    transform: translateY(-3px) translateZ(0);
    box-shadow: var(--shadow-lg);
    border-color: rgba(229, 138, 181, 0.38);
}

.recommendation-number {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(229, 138, 181, 0.16);
    color: var(--accent-strong);
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
}

.recommendation-content h3 {
    margin: 0 0 10px;
    font-size: 1.12rem;
}

.recommendation-content p {
    margin: 0;
    color: var(--text-secondary);
}

.recommendations-footer {
    font-style: italic;
    color: var(--text-muted);
}

/* Lists & helpers */

.stacked-list {
    margin-left: 24px;
}

.stacked-list > li {
    margin-bottom: 20px;
}

.stacked-list > li > ol {
    margin-top: 18px;
    margin-left: 22px;
}

.file a {
    font-weight: 600;
    color: var(--text-primary);
}

.file a:hover,
.file a:focus-visible {
    color: var(--accent-strong);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 239, 230, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(224, 211, 197, 0.7);
    transition: box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1), background 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: background, box-shadow;
    transform: translateZ(0);
}

.site-header.elevated {
    background: rgba(255, 248, 243, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 18px 28px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.brand:hover,
.brand:focus-visible {
    color: var(--text-primary);
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateZ(0);
}

.brand:hover .brand-icon,
.brand:focus-visible .brand-icon {
    transform: scale(1.05) translateZ(0);
    box-shadow: var(--shadow-lg);
}

.brand-name {
    font-weight: 600;
}

.primary-navigation ul {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-navigation a {
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 6px 0;
    position: relative;
    transition: color 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform-origin: left;
    transform: scaleX(0) translateZ(0);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
    transform: scaleX(1) translateZ(0);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 500ms cubic-bezier(0.4, 0, 0.2, 1), transform 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateZ(0);
}

.menu-toggle:active {
    transform: scale(0.95) translateZ(0);
}

.menu-toggle:focus-visible,
.menu-toggle:hover {
    background: rgba(229, 138, 181, 0.14);
}

.menu-line {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: var(--text-primary);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateZ(0);
}

.menu-line + .menu-line {
    margin-top: 5px;
}

/* Hero */

.hero {
    background: linear-gradient(135deg, rgba(255, 248, 243, 0.9), rgba(242, 181, 212, 0.25));
    padding: clamp(96px, 18vw, 96px) 0 clamp(72px, 14vw, 128px);
    text-align: center;
}

.hero-title {
    font-size: clamp(2.6rem, 4.6vw, 3.8rem);
    margin: 0;
    color: var(--text-primary);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 140px;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: background 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1), border 500ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1), transform 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: background, transform;
    transform: translateZ(0);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px) translateZ(0);
}

.button.primary {
    background: var(--accent);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.button.primary:hover,
.button.primary:focus-visible {
    background: var(--accent-strong);
    color: #fff;
}

.button.ghost {
    border-color: var(--accent);
    color: var(--text-primary);
    background: transparent;
}

.button.ghost:hover,
.button.ghost:focus-visible {
    background: rgba(242, 181, 212, 0.16);
}

.hero-media {
    flex: 1 1 320px;
}

.hero-figure {
    background: var(--surface-alt);
    padding: 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(229, 138, 181, 0.18);
}

.hero-figure img {
    border-radius: var(--radius-md);
    box-shadow: none;
}

.hero-figure figcaption {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Footer */

.site-footer {
    background: #2d1f19;
    color: #f9f4ef;
    padding: 52px 0;
}

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

.footer-brand {
    color: #f9f4ef;
}

.footer-brand .brand-icon {
    box-shadow: none;
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.footer-navigation a {
    color: rgba(249, 244, 239, 0.78);
    font-weight: 500;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
    color: #fff;
}

/* Accessibility */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */

@media (max-width: 960px) {
        .primary-navigation {
        position: fixed;
        inset: 0 0 auto;
        top: 70px;
        background: rgba(255, 248, 243, 0.98);
        border-bottom: 1px solid var(--border);
        transform: translateY(-140%) translateZ(0);
        transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: var(--shadow-sm);
        will-change: transform;
    }

    .primary-navigation.open {
        transform: translateY(0) translateZ(0);
    }

    .primary-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 24px 28px 32px;
    }

    .primary-navigation a {
        font-size: 1.05rem;
        width: 100%;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .hero-content {
        padding-top: clamp(120px, 24vw, 160px);
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 22px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .panel,
    .section-media img,
    .hero-figure {
        border-radius: var(--radius-md);
    }

    .meta-grid {
        padding: 16px 18px;
        box-shadow: none;
    }

    .apps-grid,
    .tips-grid,
    .faq-list,
    .recommendation-grid {
        gap: 22px;
    }

    .alt-list {
        gap: 12px;
    }

    .connect-note {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .section {
        padding: clamp(56px, 15vw, 90px) 0;
    }

    .panel {
        padding: clamp(26px, 8vw, 36px);
    }

    .footer-navigation ul {
        justify-content: flex-start;
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* Only reduce motion for users who explicitly prefer it */
    *, *::before, *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
    
    /* Keep smooth transitions for interactive elements even with reduced motion preference */
    button,
    a,
    .button,
    .app-card,
    .faq-item,
    .recommendation-card,
    .tips-grid article,
    .panel,
    .brand-icon,
    .primary-navigation a,
    .menu-toggle {
        transition-duration: 500ms !important;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
}