:root {
    --navy: #05264c;
    --navy-2: #07477d;
    --blue: #00a9e8;
    --blue-soft: #e4f8ff;
    --sky: #71dbff;
    --mint: #26e3b3;
    --lime: #d8ff5f;
    --white: #ffffff;
    --ink: #071f3b;
    --muted: #5b6d82;
    --line: #cfe8f5;
    --surface: #f5fbff;
    --surface-strong: #e9f8ff;
    --shadow: 0 22px 60px rgba(5, 38, 76, 0.14);
    --shadow-hover: 0 30px 80px rgba(5, 38, 76, 0.22);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(233, 248, 255, 0.95), rgba(255, 255, 255, 0.98) 460px),
        var(--white);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 12%, rgba(0, 169, 232, 0.14), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(38, 227, 179, 0.14), transparent 26%),
        linear-gradient(90deg, rgba(5, 38, 76, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5, 38, 76, 0.035) 1px, transparent 1px);
    background-size: auto, auto, 46px 46px, 46px 46px;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 38, 76, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 34px rgba(5, 38, 76, 0.16);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
    color: var(--white);
    font-weight: 900;
}

.brand-logo {
    width: clamp(64px, 7vw, 82px);
    height: clamp(64px, 7vw, 82px);
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(0, 169, 232, 0.24);
    transition: transform 180ms ease, filter 180ms ease;
}

.brand:hover .brand-logo {
    transform: translateY(-1px) scale(1.03);
    filter: saturate(1.08);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 15px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 7px;
    left: 14px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sky), var(--mint));
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: clamp(64px, 9vw, 118px) 0 clamp(56px, 8vw, 96px);
    background:
        linear-gradient(135deg, rgba(5, 38, 76, 0.98), rgba(7, 71, 125, 0.92)),
        radial-gradient(circle at top right, rgba(0, 169, 232, 0.34), transparent 36%);
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -70px 38%;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(113, 219, 255, 0.22), rgba(38, 227, 179, 0.18));
    filter: blur(24px);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2.28rem, 6vw, 4.9rem);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 900;
}

.hero-copy p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.9vw, 1.16rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--sky);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--mint);
}

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

.btn,
.product-cta {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 21px;
    border: 0;
    border-radius: var(--radius);
    font: inherit;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn::before,
.product-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    transform: translateX(-120%);
    transition: transform 420ms ease;
}

.btn:hover,
.product-cta:hover {
    transform: translateY(-2px);
}

.btn:hover::before,
.product-cta:hover::before {
    transform: translateX(120%);
}

.btn:focus-visible,
.product-cta:focus-visible,
.nav-links a:focus-visible,
.chat-toggle:focus-visible,
.chat-close:focus-visible,
.chat-options button:focus-visible,
.chat-input button:focus-visible {
    outline: 3px solid rgba(216, 255, 95, 0.84);
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sky), var(--mint));
    color: var(--navy);
    box-shadow: 0 16px 34px rgba(0, 169, 232, 0.28);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 16px 34px rgba(255, 255, 255, 0.12);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
}

.btn-whatsapp {
    width: 100%;
    background: #25d366;
    color: #062b15;
}

.hero-panel {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero-panel div {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.metric {
    color: var(--lime);
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 900;
    line-height: 1;
}

.hero-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.section {
    padding: clamp(52px, 7vw, 86px) 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(228, 248, 255, 0.66), rgba(255, 255, 255, 0.86));
}

.section-title {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--navy);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
}

.brand-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.brand-strip span,
.steps-grid article {
    border: 1px solid rgba(207, 232, 245, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 28px rgba(5, 38, 76, 0.08);
}

.brand-strip span {
    display: grid;
    place-items: center;
    min-height: 70px;
    color: var(--navy);
    font-weight: 900;
    font-size: 1.15rem;
}

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

.steps-grid article {
    padding: 24px;
}

.steps-grid span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--navy);
    background: linear-gradient(135deg, var(--sky), var(--mint));
    font-weight: 900;
}

.steps-grid h3 {
    margin: 16px 0 8px;
    color: var(--navy);
}

.steps-grid p {
    margin: 0;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) 1.28fr;
    gap: clamp(28px, 5vw, 54px);
    align-items: start;
}

.split h2,
.contact-card h2,
.about-grid h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    line-height: 1.1;
}

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

.feature,
.about-grid article,
.contact-card,
.product-card,
.contact-form {
    border: 1px solid rgba(207, 232, 245, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 28px rgba(5, 38, 76, 0.08);
}

.feature,
.about-grid article,
.contact-card {
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature:hover,
.about-grid article:hover,
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 169, 232, 0.44);
    box-shadow: var(--shadow);
}

.feature h3,
.product-body h2 {
    margin: 0 0 10px;
    color: var(--navy);
}

.feature p,
.about-grid p,
.contact-card p,
.product-body p {
    margin: 0;
    color: var(--muted);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 8vw, 94px) 0;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(5, 38, 76, 0.98), rgba(7, 71, 125, 0.9)),
        radial-gradient(circle at 82% 18%, rgba(38, 227, 179, 0.18), transparent 34%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: clamp(16px, 2.4vw, 26px);
    align-items: stretch;
}

.catalog-tools {
    display: grid;
    gap: 16px;
    margin-bottom: 26px;
    padding: clamp(18px, 3vw, 26px);
    border: 1px solid rgba(207, 232, 245, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(5, 38, 76, 0.08);
}

.catalog-search {
    display: grid;
    gap: 8px;
    color: var(--navy);
    font-weight: 900;
}

.catalog-search input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 16px;
    color: var(--ink);
    background: var(--surface);
}

.catalog-search input:focus {
    outline: 0;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 169, 232, 0.16);
    background: var(--white);
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-filters button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 15px;
    color: var(--navy);
    background: var(--white);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.catalog-filters button:hover,
.catalog-filters button.active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--sky), var(--mint));
}

.catalog-count {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.product-card[hidden] {
    display: none;
}

.product-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 169, 232, 0.55);
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(228, 248, 255, 0.95), rgba(255, 255, 255, 0.95)),
        var(--surface-strong);
    transition: transform 220ms ease;
}

.product-card:hover img {
    transform: scale(1.045);
}

.product-body {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 13px;
    padding: 20px;
}

.product-body h2 {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.25;
}

.product-body p {
    font-size: 0.92rem;
}

.product-body strong {
    justify-self: start;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 900;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--blue-soft);
}

.product-cta {
    width: 100%;
    min-height: 44px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--sky), var(--mint));
    box-shadow: 0 12px 24px rgba(0, 169, 232, 0.2);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
    align-items: start;
}

.contact-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 251, 255, 0.92)),
        var(--white);
}

.contact-logo {
    width: min(172px, 58vw);
    height: auto;
    margin: 0 0 18px;
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(5, 38, 76, 0.12);
}

.contact-card a {
    color: var(--navy-2);
    font-weight: 800;
    border-bottom: 2px solid rgba(0, 169, 232, 0.28);
}

.contact-card a:hover {
    color: var(--blue);
    border-bottom-color: currentColor;
}

.contact-form {
    display: grid;
    gap: 10px;
    padding: clamp(20px, 4vw, 30px);
}

.visually-hidden,
.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.contact-form label {
    color: var(--navy);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 15px;
    color: var(--ink);
    background: var(--surface);
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 169, 232, 0.18);
}

.form-status {
    min-height: 24px;
    margin: 2px 0 0;
    color: var(--navy-2);
    font-size: 0.92rem;
    font-weight: 700;
}

.site-footer {
    background: linear-gradient(135deg, var(--navy), #031a34);
    color: rgba(255, 255, 255, 0.78);
    padding: 28px 0;
}

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

.footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.footer-content p {
    margin: 0;
}

.footer-content a {
    color: var(--sky);
    font-weight: 900;
}

.chat-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
}

.chat-toggle {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #b8ff7a);
    color: #062b15;
    box-shadow: 0 16px 36px rgba(6, 43, 21, 0.34);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.chat-toggle:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 46px rgba(6, 43, 21, 0.4);
}

.chat-window {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: min(330px, calc(100vw - 44px));
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-hover);
    transform-origin: bottom right;
    animation: chat-in 180ms ease both;
}

.chat-window[hidden] {
    display: none;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
}

.chat-header div {
    display: grid;
    gap: 2px;
}

.chat-header span {
    color: var(--lime);
    font-size: 0.85rem;
}

.chat-close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.chat-messages {
    display: grid;
    gap: 10px;
    max-height: 230px;
    overflow: auto;
    padding: 16px;
    background:
        linear-gradient(180deg, rgba(244, 251, 255, 0.92), rgba(255, 255, 255, 0.96)),
        var(--white);
}

.chat-bubble {
    margin: 0;
    max-width: 88%;
    padding: 11px 13px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.chat-bubble.bot {
    justify-self: start;
    background: var(--white);
    border: 1px solid var(--line);
}

.chat-bubble.user {
    justify-self: end;
    color: var(--navy);
    background: var(--blue-soft);
}

.chat-products {
    display: grid;
    gap: 8px;
}

.chat-product {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--white);
}

.chat-product:hover {
    border-color: var(--blue);
    background: var(--blue-soft);
}

.chat-product img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--surface);
}

.chat-product span {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.chat-product strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.82rem;
}

.chat-product small {
    color: var(--muted);
    font-weight: 800;
}

.chat-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 16px 16px;
    background: var(--white);
}

.chat-options button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--surface);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.chat-options button:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 169, 232, 0.55);
    background: var(--blue-soft);
}

.chat-input {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 0 16px 16px;
    background: var(--white);
}

.chat-input input {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 11px;
    color: var(--ink);
    background: var(--surface);
}

.chat-input input:focus {
    outline: 0;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 169, 232, 0.15);
}

.chat-input button {
    border: 0;
    border-radius: var(--radius);
    padding: 0 13px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--sky), var(--mint));
    cursor: pointer;
    font-weight: 900;
}

.chat-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 16px 16px;
    background: var(--white);
}

.chat-email {
    width: 100%;
    min-height: 42px;
    color: var(--navy);
    background: var(--blue-soft);
    border: 1px solid var(--line);
}

.chat-window .btn {
    border-radius: 0;
}

.chat-window .chat-actions .btn {
    border-radius: var(--radius);
}

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

@media (max-width: 980px) {
    .hero-grid,
    .split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 620px;
    }

    .feature-grid,
    .about-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .navbar {
        min-height: auto;
        padding: 14px 0;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .brand {
        justify-content: center;
    }

    .brand-logo {
        width: 68px;
        height: 68px;
    }

    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .nav-links a {
        justify-content: center;
        min-height: 44px;
        padding: 0 10px;
        background: rgba(255, 255, 255, 0.08);
    }

    .hero-actions,
    .btn,
    .product-cta {
        width: 100%;
    }

    .hero-panel div {
        grid-template-columns: 74px 1fr;
    }

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

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .chat-widget {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 460px) {
    .nav-links {
        grid-template-columns: 1fr;
    }

    .brand-logo {
        width: 62px;
        height: 62px;
    }

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

    .hero-panel div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .chat-toggle {
        width: 60px;
        height: 60px;
    }
}

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