
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

/* =========================================
   01. RESET & GLOBAL VARIABLES
========================================= */

:root {
    --color-primary: #24231f;
    --color-secondary: #77736d;
    --color-accent: #a58262;
    --color-accent-dark: #806247;
    --color-background: #ffffff;
    --color-background-soft: #f8f6f2;
    --color-background-muted: #f0ede7;
    --color-border: #e9e5df;
    --color-white: #ffffff;
    --color-danger: #a54c43;

    --font-primary: 'DM Sans', Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --container-width: 1320px;
    --container-padding: 24px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;

    --shadow-sm: 0 4px 16px rgba(35, 30, 25, 0.04);
    --shadow-md: 0 12px 36px rgba(35, 30, 25, 0.08);
    --shadow-lg: 0 24px 65px rgba(35, 30, 25, 0.12);

    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--color-background);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
input,
button,
textarea {
    font-family: var(--font-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition),
                background-color var(--transition),
                border-color var(--transition),
                opacity var(--transition);
}

a:hover {
    color: var(--color-accent);
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

button,
input,
textarea {
    outline: none;
}

button:disabled,
.disabled {
    cursor: not-allowed;
}

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

img {
    height: auto;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    background: var(--color-accent);
    color: var(--color-white);
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

input::placeholder,
textarea::placeholder {
    color: #aaa49c;
    opacity: 1;
}

input:focus,
textarea:focus {
    border-color: var(--color-accent);
}

input[type="hidden"],
.hidden,
.visually-hidden {
    display: none !important;
}


/* =========================================
   02. CONTAINERS & GRID
========================================= */

.container,
.page-width {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding-inline: var(--container-padding);
}

.row,
.row-flex {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
    margin-inline: -12px;
}

.row > *,
.row-flex > * {
    min-width: 0;
}

.col-12,
.col-xs-12,
.col-sm-12 {
    width: 100%;
    padding-inline: 12px;
}

.col-lg-3 {
    width: 25%;
    padding-inline: 12px;
}

.col-lg-4,
.col-md-4 {
    width: 33.333333%;
    padding-inline: 12px;
}

.col-lg-5 {
    width: 41.666667%;
    padding-inline: 12px;
}

.col-lg-7 {
    width: 58.333333%;
    padding-inline: 12px;
}

.col-sm-6 {
    width: 50%;
    padding-inline: 12px;
}

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

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap {
    flex-wrap: wrap;
}

.dp-flex {
    display: flex;
}

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

.text-left {
    text-align: left;
}

.text-uppercase {
    text-transform: uppercase;
}

.padding-0,
.p-0 {
    padding: 0 !important;
}

.margin-0 {
    margin: 0 !important;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-right-0 {
    margin-right: 0 !important;
}

.margin-left-0 {
    margin-left: 0 !important;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

#PageContainer,
#MainContent {
    width: 100%;
    min-width: 0;
}


/* =========================================
   03. BUTTONS
========================================= */

.button,
.btn-primary,
.checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 44px;
    padding: 12px 24px;

    border: 1px solid var(--color-primary);
    border-radius: var(--radius-sm);

    background: var(--color-primary);
    color: var(--color-white);

    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;

    cursor: pointer;

    transition: background-color var(--transition),
                border-color var(--transition),
                color var(--transition),
                transform var(--transition),
                box-shadow var(--transition);
}

.button:hover,
.btn-primary:hover,
.checkout-button:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.button:active,
.btn-primary:active {
    transform: translateY(0);
}

.button.disabled,
.button.sold_out {
    border-color: var(--color-border);
    background: var(--color-background-muted);
    color: var(--color-secondary);
    box-shadow: none;
    pointer-events: none;
    transform: none;
}


/* =========================================
   04. HEADER
========================================= */

#shopify-section-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: var(--color-white);
}

#header {
    position: relative;
    width: 100%;
    background: var(--color-white);
}

#header .top-header {
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
}

#header .top-header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding-block: 20px;
}

#header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

#header .site-header__logo {
    margin: 0;
    font-size: 0;
    line-height: 1;
}

#header .site-header__logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 58px;
}

#header .site-header__logo a:empty::before {
    content: "ELGOO";
    display: block;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 39px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.16em;
}

#header .main-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
}

#header .main-header .container {
    max-width: var(--container-width);
}

.main-menu-wapper {
    width: 100%;
}

.main-menu-wapper > .row-flex {
    min-height: 76px;
    justify-content: space-between;
    align-items: center;
}

.main-menu-wapper > .row-flex > .col-lg-7 {
    display: flex;
    align-items: center;
}

.main-menu-wapper > .row-flex > .col-lg-5 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(16px, 2.1vw, 34px);
}

.main-menu > li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 76px;
}

.main-menu > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;

    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.105em;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-menu > li > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;

    height: 1px;
    background: var(--color-accent);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.main-menu > li:hover > a,
.main-menu > li.active > a {
    color: var(--color-accent);
}

.main-menu > li:hover > a::after,
.main-menu > li.active > a::after {
    transform: scaleX(1);
}

.main-menu > li.site-nav--has-dropdown > a {
    gap: 7px;
}

.main-menu > li.site-nav--has-dropdown > a::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-left: 3px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    order: 2;
}

.main-menu > li:last-child {
    color: var(--color-secondary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.mobile-navigation {
    display: none;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    color: var(--color-primary);
    font-size: 23px;
    cursor: pointer;
}


/* =========================================
   05. HEADER CONTROLS
========================================= */

.box-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    width: 100%;
}

.box-control > .kiti--DropItem {
    position: relative;
    flex-shrink: 0;
}

.box-control .box-search {
    position: relative;
    width: clamp(175px, 18vw, 270px);
}

.box-search > .inner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    background: var(--color-background-soft);
    transition: border-color var(--transition);
}

.box-search > .inner:focus-within {
    border-color: var(--color-accent);
}

.box-search .search {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 10px;

    border: 0;
    background: transparent;

    color: var(--color-primary);
    font-size: 12px;
}

.box-search .search::placeholder {
    color: #99948d;
}

.box-search .iconSearchDrop,
.box-search .button-search {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 42px;

    border: 0;
    background: transparent;
    color: var(--color-primary);
}

.box-search .iconSearchDrop {
    border-right: 1px solid var(--color-border);
}

.box-search .iconSearchDrop svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.box-search .button-search {
    font-size: 17px;
}

.box-search .button-search:hover,
.box-search .iconSearchDrop:hover {
    color: var(--color-accent);
}

.searchDrop {
    position: absolute;
    z-index: 110;
    top: calc(100% + 10px);
    left: 0;

    width: 240px;
    max-height: 350px;
    overflow-y: auto;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);

    background: var(--color-white);
    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition: opacity var(--transition),
                visibility var(--transition),
                transform var(--transition);
}

.box-search:focus-within .searchDrop,
.box-search:hover .searchDrop,
.searchDrop:focus-within {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.searchDrop > ul {
    padding: 8px;
}

.searchDrop li > span {
    display: block;
    padding: 9px 12px;
    border-radius: 5px;
    color: var(--color-secondary);
    font-size: 12px;
    cursor: pointer;
}

.searchDrop li > span:hover,
.searchDrop li > span.selected {
    background: var(--color-background-soft);
    color: var(--color-accent);
}

.searchDrop .titleGroup {
    color: var(--color-primary);
    font-weight: 600;
}

.searchDrop .isGroup > ul {
    padding-left: 12px;
}

.livesearchDrop {
    position: absolute;
    z-index: 105;
    top: calc(100% + 8px);
    right: 0;
    left: 0;

    max-height: 360px;
    overflow-y: auto;

    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.livesearch:empty,
.livesearchDrop:has(.livesearch:empty) {
    display: none;
}


/* =========================================
   06. CART & SETTINGS
========================================= */

.mini-cart .cart-link {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-primary);
}

.mini-cart .icon__count {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 36px;
}

.mini-cart .icon__count > .icon {
    font-size: 26px;
}

.mini-cart .count {
    position: absolute;
    top: -2px;
    right: -7px;

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

    min-width: 17px;
    height: 17px;
    padding-inline: 4px;

    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);

    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.mini-cart .cartCost {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.box-settings {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 44px;
    cursor: pointer;
}

.box-settings > .icon {
    color: var(--color-primary);
    font-size: 25px;
}

.box-settings:hover > .icon,
.mini-cart:hover .cart-link {
    color: var(--color-accent);
}

.show-shopping-cart,
.settings-wrapper {
    position: absolute;
    z-index: 120;
    top: calc(100% + 12px);
    right: 0;

    width: 340px;
    padding: 24px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);

    background: var(--color-white);
    box-shadow: var(--shadow-lg);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: opacity var(--transition),
                visibility var(--transition),
                transform var(--transition);
}

.mini-cart:hover .show-shopping-cart,
.mini-cart:focus-within .show-shopping-cart,
.box-settings:hover .settings-wrapper,
.box-settings:focus-within .settings-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.show-shopping-cart .title {
    margin-bottom: 14px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
}

.show-shopping-cart .empty {
    padding: 20px 0;
    color: var(--color-secondary);
    font-size: 13px;
    text-align: center;
}

.show-shopping-cart .sub-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 0;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    font-weight: 600;
}

.show-shopping-cart .group-button {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px;
}

.show-shopping-cart .group-button .button {
    padding: 10px;
    font-size: 10px;
}

.show-shopping-cart .group-button.no-item {
    grid-template-columns: 1fr;
}

.show-shopping-cart .has-item {
    display: none;
}

.show-shopping-cart .no-item {
    display: block;
}

.settings-wrapper {
    width: 260px;
}

.currency-title {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
}

.currency-list .currency {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.mg-currency-item {
    flex: 1;
    min-width: 0;
}

.mg-currency-item label {
    display: flex;
    justify-content: center;
    padding: 8px 6px;

    border: 1px solid var(--color-border);
    border-radius: 5px;

    color: var(--color-secondary);
    font-size: 11px;
    cursor: pointer;
}

.mg-currency-item.active label,
.mg-currency-item label:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.mg-currency-item label span span {
    margin-left: 4px;
}

.setting-option {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.setting-option li + li {
    margin-top: 8px;
}

.setting-option a {
    font-size: 13px;
}


/* =========================================
   07. MOBILE MENU
========================================= */

#overlay-body {
    position: fixed;
    z-index: 998;
    inset: 0;

    background: rgba(20, 18, 16, 0.55);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity var(--transition),
                visibility var(--transition);
}

#overlay-body.active,
#overlay-body.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#box-mobile-menu {
    position: fixed;
    z-index: 999;
    top: 0;
    bottom: 0;
    left: 0;

    width: min(340px, 88vw);
    height: 100dvh;
    overflow-y: auto;

    background: var(--color-white);
    box-shadow: var(--shadow-lg);

    transform: translateX(-105%);
    visibility: hidden;

    transition: transform var(--transition),
                visibility var(--transition);
}

#box-mobile-menu.active,
#box-mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}

#box-mobile-menu .box-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 70px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--color-border);
}

#box-mobile-menu .close-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 26px;
    cursor: pointer;
}

#box-mobile-menu .close-menu:hover {
    color: var(--color-accent);
}

#box-mobile-menu .main-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px;
}

#box-mobile-menu .main-menu > li {
    min-height: 52px;
    border-bottom: 1px solid var(--color-border);
}

#box-mobile-menu .main-menu > li > a {
    width: 100%;
    min-height: 52px;
}


/* =========================================
   08. HERO SLIDESHOW
========================================= */

#shopify-section-1573477125893 {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--color-background-soft);
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slideshow {
    position: relative;
    display: flex;
    width: 100%;
    min-height: clamp(400px, 43vw, 620px);
}

.slideshow__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-height: clamp(400px, 43vw, 620px);
    overflow: hidden;

    background: linear-gradient(
        115deg,
        #eae4db 0%,
        #f7f3ec 45%,
        #ded4c7 100%
    );
}

.slideshow__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slideshow__slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(30, 27, 24, 0.32),
        rgba(30, 27, 24, 0.05) 75%
    );

    pointer-events: none;
}

.slideshow__text-wrap {
    position: relative;
    z-index: 2;

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

    width: 100%;
    min-height: inherit;
    padding: 60px 24px;
}

.slideshow__text-content {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    text-align: center;
}

.slideshow__title {
    margin-bottom: 18px;

    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.035em;
}

.slideshow__subtitle {
    display: block;
    color: var(--color-white);
    font-size: clamp(13px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.slideshow__pause {
    display: none;
}


/* =========================================
   09. BENEFITS SECTION
========================================= */

#shopify-section-1582574957588 {
    padding: 0;
    background: var(--color-background-soft);
}

#shopify-section-1582574957588 .container-fluid {
    max-width: var(--container-width);
    margin-inline: auto;
}

#shopify-section-1582574957588 .row {
    margin-inline: 0;
}

#shopify-section-1582574957588 .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 126px;
    padding: 26px 20px;
}

#shopify-section-1582574957588 .col-md-4 + .col-md-4 {
    border-left: 1px solid var(--color-border);
}

.band-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.band-icon br {
    display: none;
}

.band-icon .title {
    margin: 0;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.band-icon .sub-title {
    margin-top: 4px;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}


/* =========================================
   10. PRODUCT SECTION
========================================= */

#shopify-section-1555965774827 {
    padding: clamp(60px, 7vw, 110px) 0;
    background: var(--color-white);
}

#Carousel-1555965774827 {
    width: 100%;
}

#Carousel-1555965774827 > .container {
    max-width: var(--container-width);
}

#Carousel-1555965774827 .row {
    display: block;
    margin: 0;
}

.section-title {
    width: 100%;
    margin-bottom: 42px;
}

.section-title h3 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.035em;
}

.section-title .sub-title {
    display: block;
    margin-top: 10px;
    color: var(--color-secondary);
    font-size: 13px;
}

.section-title.style6 h3::after {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    margin: 18px auto 0;
    background: var(--color-accent);
}

.block-top-sell {
    width: 100%;
}


/* =========================================
   11. PRODUCT GRID
========================================= */

.box-product-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 24px;

    width: 100%;
    margin: 0;
    padding: 0;
}

.box-product-list > .grid-item {
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 0;
    margin: 0;
}

.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-width: 0;
}

.product-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-width: 0;
}

.product-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;

    border-radius: var(--radius-sm);
    background: var(--color-background-soft);

    isolation: isolate;
}

.product-thumb > .LoopProduct-link,
.product-thumb > .front-image,
.product-thumb > .back-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.product-thumb > .LoopProduct-link {
    z-index: 3;
}

.product-thumb > .front-image,
.product-thumb > .back-image {
    z-index: 1;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    transition: transform 0.6s ease,
                opacity 0.5s ease;
}

.product-thumb > .back-image {
    z-index: 2;
    opacity: 0;
}

.product-item:hover .front-image {
    transform: scale(1.045);
}

.product-item:hover .back-image {
    opacity: 1;
    transform: scale(1.045);
}

.product-thumb .sold-out {
    position: absolute;
    z-index: 5;
    top: 14px;
    left: 14px;

    padding: 7px 11px;

    border-radius: 3px;
    background: rgba(36, 35, 31, 0.9);
    color: var(--color-white);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-item.outofstock__label .product-thumb {
    opacity: 0.8;
}


/* =========================================
   12. PRODUCT CONTENT
========================================= */

.product-info {
    width: 100%;
    min-width: 0;
    padding-top: 16px;
}

.product-inner > .product-info:first-child {
    padding-top: 0;
    padding-bottom: 12px;
}

.product-info .cl-name {
    margin-bottom: 6px;
    color: var(--color-secondary);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-info .cl-name a {
    color: var(--color-secondary);
}

.product-info .cl-name a:hover {
    color: var(--color-accent);
}

.product-name {
    margin: 0;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.product-name a {
    color: inherit;
}

.product-name a:hover {
    color: var(--color-accent);
}

.product-inner > .product-info:first-child .product-name {
    min-height: 40px;
}

.product-info .price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;

    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.price ins {
    color: var(--color-primary);
    text-decoration: none;
}

.price del {
    color: #a7a19a;
    font-size: 12px;
    font-weight: 400;
}

.price del.hidden {
    display: none !important;
}

.product-thumb > .price {
    display: none;
}

.product-info .button.add_to_cart_button {
    width: 100%;
    min-height: 43px;
    margin-top: 15px;

    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-primary);

    font-size: 11px;
}

.product-info .button.add_to_cart_button:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
}

.product-info .button.sold_out {
    border-color: var(--color-border);
    background: var(--color-background-muted);
    color: var(--color-secondary);
}


/* =========================================
   13. PRODUCT HOVER ACTIONS
========================================= */

.product-thumb .gorup-button {
    position: absolute;
    z-index: 6;
    right: 12px;
    bottom: 12px;
    left: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    opacity: 0;
    transform: translateY(12px);

    transition: opacity var(--transition),
                transform var(--transition);
}

.product-item:hover .gorup-button,
.product-item:focus-within .gorup-button {
    opacity: 1;
    transform: translateY(0);
}

.gorup-button .button {
    flex: 1;
    min-height: 43px;
    padding: 11px 14px;
    border-color: var(--color-white);
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 11px;
}

.gorup-button .button:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
}

.product-thumb .quick-view {
    position: relative;
    z-index: 7;

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

    width: 43px;
    height: 43px;

    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-primary);

    font-size: 18px;
    box-shadow: var(--shadow-sm);
}

.product-thumb .quick-view:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-thumb > .quick-view.visible_7 {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: auto;

    opacity: 0;
    transform: translateY(-8px);

    transition: opacity var(--transition),
                transform var(--transition),
                background-color var(--transition);
}

.product-item:hover .product-thumb > .quick-view.visible_7,
.product-item:focus-within .product-thumb > .quick-view.visible_7 {
    opacity: 1;
    transform: translateY(0);
}

.product-thumb .add-cart-wapper {
    display: none;
}

.product-thumb .quick-view.hidden_7,
.product-info .hidden_10,
.product-info .hidden_9,
.product-info .hidden_4_1,
.product-info .hidden_5,
.product-info .hidden_8_1 {
    display: none;
}


/* =========================================
   14. FOOTER
========================================= */

#shopify-section-footer {
    margin-top: 0;
    background: var(--color-background-soft);
}

.footer {
    width: 100%;
    background: var(--color-background-soft);
}

.footer-top {
    padding: 75px 0 65px;
}

.footer-top .row-flex {
    align-items: flex-start;
    row-gap: 38px;
}

.footer-sidebar {
    min-width: 0;
}

.footer-sidebar .widget {
    width: 100%;
}

.footer-sidebar .widget-title {
    margin-bottom: 22px;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-sidebar .widget-title p {
    margin: 0;
}

.footer-sidebar .content {
    color: var(--color-secondary);
    font-size: 13px;
    line-height: 1.9;
}

.footer-sidebar .content p {
    margin-bottom: 15px;
}

.footer-sidebar .logo {
    display: flex;
    align-items: center;
    min-height: 44px;
    margin-bottom: 22px;
}

.footer-sidebar .logo a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.footer-sidebar .logo a:empty::before {
    content: "ELGOO";
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 29px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.13em;
}

.footer-sidebar .mail a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-secondary);
}

.footer-sidebar .mail a:hover {
    color: var(--color-accent);
}

.footer-sidebar .mail .fa {
    color: var(--color-accent);
    font-size: 15px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 20px;
}

.footer-menu a {
    color: var(--color-secondary);
    font-size: 12px;
    line-height: 1.7;
}

.footer-menu a:hover {
    color: var(--color-accent);
}

.footer-sidebar .address,
.footer-sidebar .phone {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-sidebar .phone a {
    color: var(--color-secondary);
}

.footer-sidebar .phone a:hover {
    color: var(--color-accent);
}


/* =========================================
   15. NEWSLETTER
========================================= */

.widget_newletter {
    margin-bottom: 32px;
}

.newletter {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    margin-top: 16px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);

    background: var(--color-white);
    overflow: hidden;

    transition: border-color var(--transition);
}

.newletter:focus-within {
    border-color: var(--color-accent);
}

.newletter .email-text {
    flex: 1;
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 13px;

    border: 0;
    border-radius: 0;

    background: transparent;
    color: var(--color-primary);
    font-size: 12px;
}

.newletter > span {
    display: flex;
    flex-shrink: 0;
}

.newletter .button {
    min-height: 46px;
    padding-inline: 16px;

    border: 0;
    border-radius: 0;

    background: var(--color-primary);
    color: var(--color-white);

    font-size: 10px;
    white-space: nowrap;
}

.newletter .button:hover {
    background: var(--color-accent);
    transform: none;
    box-shadow: none;
}


/* =========================================
   16. SOCIAL LINKS
========================================= */

.socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.socials li {
    display: flex;
}

.social-icons__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    background: var(--color-white);
    color: var(--color-primary);

    font-size: 14px;

    transition: color var(--transition),
                background-color var(--transition),
                border-color var(--transition),
                transform var(--transition);
}

.social-icons__link:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-bottom {
    margin: 0;
    padding: 22px 24px;

    border-top: 1px solid var(--color-border);
    background: var(--color-background-soft);
}

.footer-bottom .payment {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;

    max-width: var(--container-width);
    margin-inline: auto;
}

.footer-bottom p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.025em;
    text-align: center;
}


/* =========================================
   17. MODALS
========================================= */

.modal {
    position: fixed;
    z-index: 1050;
    inset: 0;

    display: none;
    overflow-x: hidden;
    overflow-y: auto;

    padding: 32px 16px;
    background: rgba(25, 23, 20, 0.62);
}

.modal.show,
.modal.in {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: auto;
}

.modal-lg {
    max-width: 960px;
}

.modal-content {
    position: relative;
    width: 100%;
    padding: 32px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);

    background: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.modal-content > .close {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 15px;

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

    width: 36px;
    height: 36px;

    border: 0;
    border-radius: 50%;

    background: var(--color-background-soft);
    color: var(--color-primary);

    font-size: 25px;
    line-height: 1;
}

.modal-content > .close:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.modal-content .section-title {
    margin-bottom: 26px;
    padding-right: 32px;
}

.modal-content .section-title h3 {
    font-size: 28px;
}

.product-quickview-content {
    width: 100%;
}

.cart__popup-title {
    font-size: 24px;
}

.cart_totals {
    margin-top: 24px;
}

.cart_totals .title {
    margin-bottom: 15px;
    font-size: 16px;
}

.cart-note__input,
.input-text {
    display: block;
    width: 100%;
    padding: 12px 14px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);

    background: var(--color-white);
    color: var(--color-primary);

    font-size: 13px;
    transition: border-color var(--transition);
}

.cart-note__input {
    min-height: 130px;
    resize: vertical;
}

.box-cart-total table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.box-cart-total td {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.box-cart-total td:last-child {
    text-align: right;
}

.box-cart-total .order-total {
    font-weight: 700;
}

.box-coupon {
    margin-top: 20px;
}

.checkout-button {
    width: 100%;
    margin-top: 14px;
}


/* =========================================
   18. PHOTO VIEWER
========================================= */

.pswp {
    position: fixed;
    z-index: 1500;
    inset: 0;
    display: none;
    overflow: hidden;
    touch-action: none;
}

.pswp.pswp--open {
    display: block;
}

.pswp__bg {
    position: absolute;
    inset: 0;
    background: rgba(12, 11, 10, 0.94);
}

.pswp__scroll-wrap,
.pswp__container,
.pswp__item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pswp__ui {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.pswp__top-bar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;

    min-height: 64px;
    padding: 10px 20px;
}

.pswp__button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);

    pointer-events: auto;
}

.pswp__button:hover {
    background: rgba(255, 255, 255, 0.22);
}

.pswp__button--close::before {
    content: "×";
    font-size: 28px;
    line-height: 1;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.pswp__button--arrow--left {
    left: 20px;
}

.pswp__button--arrow--right {
    right: 20px;
}

.pswp__button--arrow--left::before {
    content: "‹";
    font-size: 30px;
}

.pswp__button--arrow--right::before {
    content: "›";
    font-size: 30px;
}

.pswp__counter {
    margin-right: auto;
    color: var(--color-white);
    font-size: 13px;
}

.pswp__caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 20px;
    color: var(--color-white);
    text-align: center;
}


/* =========================================
   19. SCROLL TO TOP
========================================= */

.scroll_top {
    position: fixed;
    z-index: 90;
    right: 25px;
    bottom: 25px;

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

    width: 46px;
    height: 46px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    background: var(--color-primary);
    color: var(--color-white);

    font-size: 16px;
    box-shadow: var(--shadow-md);

    transition: background-color var(--transition),
                transform var(--transition),
                box-shadow var(--transition);
}

.scroll_top:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}


/* =========================================
   20. LOADING
========================================= */

.test-loading {
    position: fixed;
    z-index: 2000;
    inset: 0;

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

    background: rgba(255, 255, 255, 0.92);
}

.test-loading.active {
    display: flex;
}

.kt-bar-loading {
    width: 110px;
    height: 3px;
    overflow: hidden;
    border-radius: 3px;
    background: var(--color-border);
}

.line-loading {
    display: block;
    width: 45%;
    height: 100%;
    background: var(--color-accent);
    animation: elgoo-loading 1s ease-in-out infinite alternate;
}

@keyframes elgoo-loading {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(245%);
    }
}


/* =========================================
   21. TABLET — UP TO 1199px
========================================= */

@media (max-width: 1199px) {

    :root {
        --container-padding: 22px;
    }

    #header .top-header .container {
        min-height: 96px;
    }

    .main-menu {
        gap: 17px;
    }

    .main-menu > li > a {
        font-size: 10px;
        letter-spacing: 0.06em;
    }

    .box-control {
        gap: 15px;
    }

    .box-control .box-search {
        width: 190px;
    }

    .box-product-list {
        gap: 32px 20px;
    }

    .footer-top {
        padding: 60px 0;
    }

}


/* =========================================
   22. TABLET — UP TO 991px
========================================= */

@media (max-width: 991px) {

    :root {
        --container-padding: 20px;
    }

    #header .top-header .container {
        min-height: 88px;
        padding-block: 15px;
    }

    #header .site-header__logo a:empty::before {
        font-size: 34px;
    }

    .main-menu-wapper > .row-flex {
        min-height: 64px;
        flex-wrap: nowrap;
    }

    .main-menu-wapper > .row-flex > .col-lg-7 {
        flex: 0 0 auto;
        width: auto;
    }

    .main-menu-wapper > .row-flex > .col-lg-5 {
        flex: 1;
        width: auto;
        min-width: 0;
    }

    .main-menu-wapper .mobile-navigation {
        display: inline-flex;
    }

    .main-menu-wapper .main-menu {
        display: none;
    }

    #box-mobile-menu .main-menu {
        display: flex;
    }

    .box-control {
        gap: 18px;
    }

    .box-control .box-search {
        width: min(260px, 35vw);
    }

    .slideshow,
    .slideshow__slide {
        min-height: 460px;
    }

    .slideshow__text-wrap {
        min-height: 460px;
    }

    .box-product-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 20px;
    }

    .footer-top .col-lg-5,
    .footer-top .col-lg-4,
    .footer-top .col-lg-3 {
        width: 50%;
    }

    .footer-sidebar:last-child {
        width: 100%;
    }

    .footer-sidebar:last-child .widget_newletter {
        max-width: 480px;
    }

}


/* =========================================
   23. MOBILE — UP TO 767px
========================================= */

@media (max-width: 767px) {

    :root {
        --container-padding: 16px;
    }

    body {
        font-size: 14px;
        line-height: 1.65;
    }

    .container,
    .page-width,
    .container-fluid {
        padding-inline: 16px;
    }

    #header .top-header .container {
        min-height: 76px;
        padding-block: 12px;
    }

    #header .site-header__logo a {
        min-width: 140px;
        min-height: 42px;
    }

    #header .site-header__logo a:empty::before {
        font-size: 29px;
    }

    .main-menu-wapper > .row-flex {
        min-height: 58px;
    }

    .mobile-navigation {
        width: 40px;
        height: 40px;
    }

    .box-control {
        gap: 15px;
    }

    .box-control .box-search {
        width: 180px;
    }

    .box-search > .inner {
        min-height: 38px;
    }

    .box-search .search,
    .box-search .iconSearchDrop,
    .box-search .button-search {
        height: 38px;
    }

    .box-search .search {
        font-size: 11px;
    }

    .box-search .iconSearchDrop {
        width: 31px;
    }

    .box-search .button-search {
        width: 34px;
    }

    .mini-cart .cartCost {
        display: none;
    }

    .mini-cart .icon__count {
        width: 28px;
    }

    .box-settings > .icon {
        font-size: 23px;
    }

    .show-shopping-cart,
    .settings-wrapper {
        width: min(320px, calc(100vw - 32px));
        padding: 20px;
    }

    .slideshow,
    .slideshow__slide {
        min-height: 410px;
    }

    .slideshow__text-wrap {
        min-height: 410px;
        padding: 45px 20px;
    }

    .slideshow__title {
        margin-bottom: 12px;
        font-size: clamp(36px, 8vw, 54px);
    }

    .slideshow__subtitle {
        font-size: 12px;
        letter-spacing: 0.11em;
    }

    #shopify-section-1582574957588 .col-md-4 {
        width: 33.333333%;
        min-height: 108px;
        padding: 20px 8px;
    }

    .band-icon .title {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .band-icon .sub-title {
        font-size: 15px;
    }

    #shopify-section-1555965774827 {
        padding: 55px 0 65px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h3 {
        font-size: 30px;
    }

    .box-product-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 14px;
    }

    .product-inner > .product-info:first-child {
        padding-bottom: 10px;
    }

    .product-info {
        padding-top: 12px;
    }

    .product-info .cl-name {
        font-size: 9px;
    }

    .product-name {
        font-size: 12px;
    }

    .product-info .price {
        margin-top: 7px;
        font-size: 14px;
    }

    .product-thumb .gorup-button {
        position: absolute;
        right: 7px;
        bottom: 7px;
        left: 7px;
        gap: 5px;

        opacity: 1;
        transform: none;
    }

    .gorup-button .button {
        min-height: 38px;
        padding: 8px;
        font-size: 9px;
    }

    .product-thumb .quick-view {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .product-thumb > .quick-view.visible_7 {
        top: 8px;
        right: 8px;
        opacity: 1;
        transform: none;
    }

    .product-info .button.add_to_cart_button {
        min-height: 40px;
        padding: 10px;
        font-size: 10px;
    }

    .footer-top {
        padding: 50px 0 42px;
    }

    .footer-top .row-flex {
        row-gap: 38px;
    }

    .footer-top .col-lg-5,
    .footer-top .col-lg-4,
    .footer-top .col-lg-3 {
        width: 100%;
    }

    .footer-sidebar .logo a:empty::before {
        font-size: 28px;
    }

    .footer-sidebar .widget-title {
        margin-bottom: 16px;
    }

    .footer-sidebar .content {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 16px;
    }

    .modal {
        padding: 16px;
    }

    .modal-content {
        padding: 24px 18px;
    }

    .modal-content .section-title h3 {
        font-size: 24px;
    }

    .cart_totals.col-sm-6 {
        width: 100%;
    }

    .scroll_top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }

}


/* =========================================
   24. SMALL MOBILE — UP TO 480px
========================================= */

@media (max-width: 480px) {

    #header .top-header .container {
        min-height: 68px;
    }

    #header .site-header__logo a:empty::before {
        font-size: 26px;
    }

    .main-menu-wapper > .row-flex {
        min-height: 54px;
    }

    .box-control {
        gap: 12px;
    }

    .box-control .box-search {
        width: 145px;
    }

    .box-search .search {
        padding-inline: 7px;
    }

    .box-search .iconSearchDrop {
        width: 28px;
    }

    .box-search .iconSearchDrop svg {
        width: 13px;
        height: 13px;
    }

    .box-search .button-search {
        width: 29px;
    }

    .slideshow,
    .slideshow__slide {
        min-height: 360px;
    }

    .slideshow__text-wrap {
        min-height: 360px;
    }

    .slideshow__title {
        font-size: 36px;
    }

    .slideshow__subtitle {
        font-size: 11px;
        line-height: 1.8;
    }

    #shopify-section-1582574957588 .col-md-4 {
        min-height: 95px;
        padding: 18px 5px;
    }

    .band-icon .title {
        font-size: 9px;
        letter-spacing: 0.04em;
    }

    .band-icon .sub-title {
        font-size: 13px;
    }

    #shopify-section-1555965774827 {
        padding: 45px 0 55px;
    }

    .section-title h3 {
        font-size: 27px;
    }

    .box-product-list {
        gap: 27px 12px;
    }

    .product-inner > .product-info:first-child .product-name {
        min-height: 36px;
    }

    .product-name {
        font-size: 11px;
        line-height: 1.5;
    }

    .product-info .cl-name {
        font-size: 8px;
    }

    .product-info .price {
        font-size: 13px;
    }

    .gorup-button .button {
        min-height: 35px;
        padding: 7px 5px;
        font-size: 8px;
        letter-spacing: 0;
    }

    .product-thumb .quick-view {
        width: 35px;
        height: 35px;
    }

    .product-info .button.add_to_cart_button {
        font-size: 9px;
        letter-spacing: 0.02em;
    }

    .newletter .email-text {
        font-size: 11px;
    }

    .newletter .button {
        padding-inline: 12px;
        font-size: 9px;
    }

}


/* =========================================
   25. EXTRA SMALL MOBILE — UP TO 360px
========================================= */

@media (max-width: 360px) {

    :root {
        --container-padding: 12px;
    }

    .container,
    .page-width,
    .container-fluid {
        padding-inline: 12px;
    }

    .box-control {
        gap: 9px;
    }

    .box-control .box-search {
        width: 125px;
    }

    .box-search .search {
        font-size: 10px;
    }

    .box-product-list {
        gap: 24px 10px;
    }

    .product-name {
        font-size: 10px;
    }

    .gorup-button .button {
        font-size: 8px;
    }

    .footer-top {
        padding-top: 42px;
    }

}


/* =========================================
   26. ACCESSIBILITY & REDUCED MOTION
========================================= */

@media (hover: none) {

    .product-thumb .gorup-button {
        opacity: 1;
        transform: none;
    }

    .product-thumb > .quick-view.visible_7 {
        opacity: 1;
        transform: none;
    }

    .product-thumb .back-image {
        opacity: 0;
    }

}

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

}