/*
Theme Name: Ecozomoroda
Theme URI:
Author: SI DOX
Author URI:
Description: قالب متجر إلكتروني عربي احترافي وخفيف مبني على WordPress و WooCommerce.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: ecozomoroda
*/

:root {
    --eco-primary: #b58b68;
    --eco-primary-dark: #946d4e;
    --eco-primary-light: #f3e8df;

    --eco-bg: #faf8f6;
    --eco-white: #ffffff;

    --eco-text: #29221e;
    --eco-text-light: #6f655f;
    --eco-border: #e9e0d9;

    --eco-success: #2e8b57;
    --eco-danger: #d9534f;

    --eco-container: 1240px;
    --eco-radius: 16px;
    --eco-radius-small: 10px;

    --eco-shadow:
        0 10px 30px rgba(41, 34, 30, 0.07);

    --eco-shadow-hover:
        0 18px 45px rgba(41, 34, 30, 0.12);

    --eco-transition: 0.25s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: var(--eco-bg);
    color: var(--eco-text);

    font-family: "Tajawal", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;

    direction: rtl;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--eco-transition);
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    line-height: 1.3;
}


/* =========================================================
   CONTAINER
========================================================= */

.eco-container {
    width: min(
        calc(100% - 40px),
        var(--eco-container)
    );

    margin-inline: auto;
}


/* =========================================================
   GLOBAL BUTTON
========================================================= */

.eco-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 48px;
    padding: 0 24px;

    border: 0;
    border-radius: 10px;

    background: var(--eco-primary);
    color: #fff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform var(--eco-transition),
        background var(--eco-transition),
        box-shadow var(--eco-transition);
}

.eco-btn:hover {
    background: var(--eco-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181, 139, 104, 0.25);
}

.eco-btn-outline {
    background: transparent;
    color: var(--eco-primary);
    border: 1px solid var(--eco-primary);
}

.eco-btn-outline:hover {
    background: var(--eco-primary);
    color: #fff;
}


/* =========================================================
   TOP BAR
========================================================= */

.eco-topbar {
    background: var(--eco-text);
    color: #fff;

    font-size: 13px;
}

.eco-topbar-inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.eco-topbar-text {
    opacity: 0.9;
}

.eco-topbar-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.eco-topbar-links a {
    opacity: 0.85;
}

.eco-topbar-links a:hover {
    opacity: 1;
    color: #fff;
}


/* =========================================================
   HEADER
========================================================= */

.eco-header {
    position: relative;
    z-index: 1000;

    background: var(--eco-white);
    border-bottom: 1px solid var(--eco-border);
}

.eco-header-inner {
    min-height: 82px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.eco-logo {
    display: flex;
    align-items: center;
}

.eco-logo img {
    width: auto;
    max-width: 190px;
    max-height: 58px;
}

.eco-logo-text {
    font-size: 25px;
    font-weight: 900;
    color: var(--eco-primary);
}


/* =========================================================
   NAVIGATION
========================================================= */

.eco-navigation {
    display: flex;
    justify-content: center;
}

.eco-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.eco-menu > li {
    position: relative;
}

.eco-menu > li > a {
    display: flex;
    align-items: center;

    min-height: 82px;

    color: var(--eco-text);
    font-size: 15px;
    font-weight: 600;
}

.eco-menu > li > a:hover,
.eco-menu > li.current-menu-item > a,
.eco-menu > li.current_page_item > a {
    color: var(--eco-primary);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.eco-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eco-header-action {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;

    border-radius: 50%;

    background: #f7f3f0;
    color: var(--eco-text);

    font-size: 17px;
}

.eco-header-action:hover {
    background: var(--eco-primary-light);
    color: var(--eco-primary);
}

.eco-cart-count {
    position: absolute;

    top: -3px;
    left: -3px;

    min-width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 4px;

    border-radius: 50%;

    background: var(--eco-primary);
    color: #fff;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.eco-mobile-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 10px;

    background: #f7f3f0;
    color: var(--eco-text);

    font-size: 20px;
}


/* =========================================================
   HERO
========================================================= */

.eco-hero {
    position: relative;
    overflow: hidden;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(181, 139, 104, 0.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #fff,
            #f7eee7
        );
}

.eco-hero-inner {
    min-height: 420px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 60px;
}

.eco-hero-content {
    max-width: 650px;
}

.eco-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 18px;

    padding: 8px 14px;

    border-radius: 50px;

    background: var(--eco-primary-light);
    color: var(--eco-primary);

    font-size: 13px;
    font-weight: 800;
}

.eco-hero-title {
    margin-bottom: 20px;

    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;

    letter-spacing: -1.5px;
}

.eco-hero-title span {
    color: var(--eco-primary);
}

.eco-hero-description {
    max-width: 580px;

    margin-bottom: 30px;

    color: var(--eco-text-light);

    font-size: 17px;
}

.eco-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.eco-hero-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-hero-image img {
    width: 100%;
    max-height: 420px;

    object-fit: contain;

    border-radius: 25px;
}


/* =========================================================
   SECTION
========================================================= */

.eco-section {
    padding: 80px 0;
}

.eco-section-header {
    margin-bottom: 35px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.eco-section-heading {
    margin: 0;
}

.eco-section-title {
    margin-bottom: 6px;

    font-size: 30px;
    font-weight: 900;
}

.eco-section-description {
    margin: 0;

    color: var(--eco-text-light);
    font-size: 14px;
}

.eco-section-link {
    color: var(--eco-primary);
    font-size: 14px;
    font-weight: 800;
}

.eco-section-link:hover {
    color: var(--eco-primary-dark);
}


/* =========================================================
   CATEGORIES
========================================================= */

.eco-categories {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 16px;
}

.eco-category-card {
    position: relative;

    min-height: 160px;

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    padding: 18px;

    border-radius: var(--eco-radius);

    background: var(--eco-white);

    box-shadow: var(--eco-shadow);

    isolation: isolate;
}

.eco-category-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.55),
            transparent 65%
        );

    z-index: 1;
}

.eco-category-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.eco-category-card:hover img {
    transform: scale(1.06);
}

.eco-category-name {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 17px;
    font-weight: 800;
}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.eco-products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.eco-product-card {
    position: relative;

    overflow: hidden;

    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);

    background: var(--eco-white);

    transition:
        transform var(--eco-transition),
        box-shadow var(--eco-transition),
        border-color var(--eco-transition);
}

.eco-product-card:hover {
    transform: translateY(-5px);

    border-color: transparent;

    box-shadow: var(--eco-shadow-hover);
}

.eco-product-image {
    position: relative;

    overflow: hidden;

    aspect-ratio: 1 / 1;

    background: #f7f4f1;
}

.eco-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}

.eco-product-card:hover .eco-product-image img {
    transform: scale(1.05);
}

.eco-sale-badge {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 3;

    padding: 6px 10px;

    border-radius: 7px;

    background: var(--eco-danger);
    color: #fff;

    font-size: 11px;
    font-weight: 800;
}

.eco-product-content {
    padding: 18px;
}

.eco-product-category {
    margin-bottom: 5px;

    color: var(--eco-primary);

    font-size: 12px;
    font-weight: 700;
}

.eco-product-title {
    margin-bottom: 10px;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.5;
}

.eco-product-title a:hover {
    color: var(--eco-primary);
}

.eco-product-price {
    margin-bottom: 15px;

    display: flex;
    align-items: center;
    gap: 9px;

    flex-wrap: wrap;
}

.eco-product-price ins {
    color: var(--eco-primary);

    font-size: 18px;
    font-weight: 900;

    text-decoration: none;
}

.eco-product-price del {
    color: #999;

    font-size: 13px;
}

.eco-product-button {
    width: 100%;
}

.eco-product-button .button {
    width: 100%;

    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 9px;

    background: var(--eco-primary);
    color: #fff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    transition: var(--eco-transition);
}

.eco-product-button .button:hover {
    background: var(--eco-primary-dark);
    color: #fff;
}


/* =========================================================
   FEATURES
========================================================= */

.eco-features-section {
    background: var(--eco-white);
    border-block: 1px solid var(--eco-border);
}

.eco-features {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.eco-feature {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 24px;

    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius-small);

    background: #fff;
}

.eco-feature-icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: var(--eco-primary-light);
    color: var(--eco-primary);

    font-size: 20px;
}

.eco-feature-title {
    margin-bottom: 3px;

    font-size: 15px;
    font-weight: 900;
}

.eco-feature-text {
    margin: 0;

    color: var(--eco-text-light);

    font-size: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

.eco-footer {
    padding-top: 65px;

    background: #241e1a;
    color: #fff;
}

.eco-footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 45px;
}

.eco-footer-title {
    margin-bottom: 20px;

    font-size: 17px;
    font-weight: 900;
}

.eco-footer-about {
    color: rgba(255,255,255,.68);

    font-size: 14px;
}

.eco-footer-links {
    display: grid;
    gap: 10px;
}

.eco-footer-links a {
    color: rgba(255,255,255,.68);

    font-size: 14px;
}

.eco-footer-links a:hover {
    color: #fff;
    padding-right: 4px;
}

.eco-footer-social {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;
}

.eco-footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);
    color: #fff;
}

.eco-footer-social a:hover {
    background: var(--eco-primary);
}

.eco-footer-bottom {
    margin-top: 55px;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.55);

    font-size: 12px;

    text-align: center;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.eco-breadcrumb {
    padding: 18px 0;

    border-bottom: 1px solid var(--eco-border);

    background: #fff;

    color: var(--eco-text-light);

    font-size: 13px;
}

.eco-breadcrumb a:hover {
    color: var(--eco-primary);
}


/* =========================================================
   PAGE CONTENT
========================================================= */

.eco-page-content {
    padding: 70px 0;
}

.eco-page-title {
    margin-bottom: 30px;

    font-size: 38px;
    font-weight: 900;
}

.eco-content {
    background: #fff;

    padding: 35px;

    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);
}


/* =========================================================
   SEARCH
========================================================= */

.eco-search-form {
    display: flex;

    max-width: 650px;

    margin: 0 auto;
}

.eco-search-form input {
    flex: 1;

    min-height: 52px;

    padding: 0 18px;

    border: 1px solid var(--eco-border);
    border-radius: 10px 0 0 10px;

    outline: none;
}

.eco-search-form input:focus {
    border-color: var(--eco-primary);
}

.eco-search-form button {
    min-width: 110px;

    border: 0;
    border-radius: 0 10px 10px 0;

    background: var(--eco-primary);
    color: #fff;

    font-weight: 800;
}


/* =========================================================
   WOOCOMMERCE GENERAL
========================================================= */

.woocommerce {
    color: var(--eco-text);
}

.woocommerce a {
    color: var(--eco-primary);
}

.woocommerce a:hover {
    color: var(--eco-primary-dark);
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    min-height: 46px;

    padding: 0 20px;

    border: 0;
    border-radius: 9px;

    background: var(--eco-primary);
    color: #fff;

    font-family: inherit;
    font-weight: 800;

    transition: var(--eco-transition);
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
    background: var(--eco-primary-dark);
    color: #fff;
}


/* =========================================================
   SHOP PAGE
========================================================= */

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-bottom: 25px;
}

.woocommerce .woocommerce-ordering select {
    min-height: 42px;

    padding: 0 14px;

    border: 1px solid var(--eco-border);
    border-radius: 8px;

    background: #fff;

    font-family: inherit;
}


/* =========================================================
   SINGLE PRODUCT
========================================================= */

.woocommerce div.product {
    background: #fff;

    padding: 30px;

    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);
}

.woocommerce div.product .product_title {
    font-size: 34px;
    font-weight: 900;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--eco-primary);

    font-size: 24px;
    font-weight: 900;
}

.woocommerce div.product form.cart {
    margin-top: 25px;
}

.woocommerce div.product form.cart .quantity input {
    min-height: 46px;

    border: 1px solid var(--eco-border);
    border-radius: 8px;

    font-family: inherit;
}


/* =========================================================
   CART
========================================================= */

.woocommerce-cart table.cart {
    border-collapse: collapse;
}

.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th {
    border-color: var(--eco-border);
}

.woocommerce-cart .cart-collaterals .cart_totals {
    padding: 25px;

    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);

    background: #fff;
}


/* =========================================================
   CHECKOUT
========================================================= */

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    padding: 25px;

    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);

    background: #fff;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    min-height: 46px;

    padding: 10px 14px;

    border: 1px solid var(--eco-border);
    border-radius: 8px;

    background: #fff;

    font-family: inherit;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--eco-primary);
    outline: none;
}

#order_review,
.woocommerce-checkout #payment {
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);
    background: #fff;
}


/* =========================================================
   NOTICES
========================================================= */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 9px;

    font-family: inherit;
}

.woocommerce-message {
    border-top-color: var(--eco-primary);
}


/* =========================================================
   PAGINATION
========================================================= */

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
    margin: 0 3px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #fff;

    border: 1px solid var(--eco-border);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: var(--eco-primary);
    color: #fff;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.eco-back-top {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 999;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: var(--eco-primary);
    color: #fff;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: var(--eco-transition);
}

.eco-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.eco-back-top:hover {
    background: var(--eco-primary-dark);
}


/* =========================================================
   EMPTY / 404
========================================================= */

.eco-empty {
    padding: 80px 20px;

    text-align: center;
}

.eco-empty-icon {
    margin-bottom: 15px;

    font-size: 50px;

    color: var(--eco-primary);
}

.eco-empty h1 {
    margin-bottom: 10px;

    font-size: 35px;
    font-weight: 900;
}

.eco-empty p {
    margin-bottom: 25px;

    color: var(--eco-text-light);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .eco-products-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .eco-categories {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .eco-features {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .eco-footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .eco-header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }

    .eco-menu {
        gap: 18px;
    }

    .eco-menu > li > a {
        font-size: 14px;
    }
}


@media (max-width: 800px) {

    .eco-container {
        width: min(
            calc(100% - 30px),
            var(--eco-container)
        );
    }

    .eco-topbar-links {
        display: none;
    }

    .eco-header-inner {
        min-height: 70px;
        grid-template-columns: auto 1fr auto;
    }

    .eco-navigation {
        position: absolute;

        top: 100%;
        right: 15px;
        left: 15px;

        display: none;

        padding: 15px;

        border: 1px solid var(--eco-border);
        border-radius: 12px;

        background: #fff;

        box-shadow: var(--eco-shadow);
    }

    .eco-navigation.is-open {
        display: block;
    }

    .eco-menu {
        display: grid;
        gap: 0;
    }

    .eco-menu > li > a {
        min-height: 48px;

        border-bottom: 1px solid var(--eco-border);
    }

    .eco-menu > li:last-child > a {
        border-bottom: 0;
    }

    .eco-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .eco-header-actions .eco-account {
        display: none;
    }

    .eco-hero {
        padding: 60px 0;
    }

    .eco-hero-inner {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .eco-hero-content {
        margin: 0 auto;
    }

    .eco-hero-buttons {
        justify-content: center;
    }

    .eco-hero-description {
        margin-inline: auto;
    }

    .eco-section {
        padding: 60px 0;
    }
}


@media (max-width: 600px) {

    .eco-container {
        width: min(
            calc(100% - 24px),
            var(--eco-container)
        );
    }

    .eco-logo img {
        max-width: 145px;
    }

    .eco-logo-text {
        font-size: 21px;
    }

    .eco-header-actions {
        gap: 5px;
    }

    .eco-header-action {
        width: 39px;
        height: 39px;
    }

    .eco-mobile-toggle {
        width: 39px;
        height: 39px;
    }

    .eco-hero-title {
        font-size: 36px;
    }

    .eco-hero-description {
        font-size: 15px;
    }

    .eco-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .eco-product-content {
        padding: 13px;
    }

    .eco-product-title {
        font-size: 14px;
    }

    .eco-product-price ins {
        font-size: 16px;
    }

    .eco-product-button .button {
        min-height: 40px;

        font-size: 12px;
    }

    .eco-categories {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .eco-category-card {
        min-height: 135px;
    }

    .eco-features {
        grid-template-columns: 1fr;
    }

    .eco-feature {
        padding: 18px;
    }

    .eco-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .eco-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .eco-section-title {
        font-size: 25px;
    }

    .eco-page-content {
        padding: 45px 0;
    }

    .eco-content {
        padding: 20px;
    }

    .woocommerce div.product {
        padding: 18px;
    }

    .woocommerce div.product .product_title {
        font-size: 27px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}