/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Hello Elementor
Author: DarkSlon
Author URI: 
Template: hello-elementor
Version: 1.0.59
Text Domain: hello-elementor-child
*/

.flow-switchers {
    --flow-switcher-accent: var(--flow-header-accent, #0abab5);
    --flow-switcher-text: var(--flow-header-strong, #111827);
    --flow-switcher-muted-line: var(--flow-header-line, rgba(10, 186, 181, 0.16));
    --flow-switcher-font-size: 12px;
    --flow-switcher-icon-size: 14px;
    --flow-switcher-arrow-size: 9px;
    --flow-switcher-control-height: 22px;
    --flow-switcher-gap: 4px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.flow-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: "Roboto Flex", Sans-serif;
    font-size: var(--flow-switcher-font-size);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--flow-switcher-text);
    white-space: nowrap;
}

.flow-switcher + .flow-switcher::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    width: 1px;
    height: 14px;
    background: var(--flow-switcher-muted-line);
    transform: translateY(-50%);
}

.flow-switcher__toggle {
    all: unset;
    box-sizing: border-box;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    gap: var(--flow-switcher-gap);
    min-height: var(--flow-switcher-control-height) !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    color: var(--flow-switcher-text);
    font-family: "Roboto Flex", Sans-serif;
    font-size: var(--flow-switcher-font-size) !important;
    line-height: 1 !important;
    font-weight: 700;
    letter-spacing: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.flow-switcher__toggle:disabled {
    cursor: default;
    opacity: 1;
}

.flow-switcher__icon {
    display: grid;
    place-items: center;
    flex: 0 0 var(--flow-switcher-icon-size);
    inline-size: var(--flow-switcher-icon-size);
    block-size: var(--flow-switcher-icon-size);
    color: var(--flow-switcher-accent);
    line-height: 0;
}

.flow-switcher__icon svg {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    stroke: currentColor;
}

.flow-switcher__icon .switcher-icon {
    fill: currentColor;
    stroke: none;
}

.flow-switcher__value {
    display: inline-flex;
    align-items: center;
    min-block-size: var(--flow-switcher-icon-size);
    color: var(--flow-switcher-text);
    font-size: var(--flow-switcher-font-size);
    font-weight: 700;
    line-height: var(--flow-switcher-icon-size);
    letter-spacing: 0;
}

.flow-switcher__arrow {
    display: grid;
    place-items: center;
    flex: 0 0 var(--flow-switcher-arrow-size);
    inline-size: var(--flow-switcher-arrow-size);
    block-size: var(--flow-switcher-arrow-size);
    color: var(--flow-switcher-accent);
    line-height: 0;
    transform-origin: 50% 50%;
    transition: transform 0.2s ease;
}

.flow-switcher.is-open .flow-switcher__arrow {
    transform: rotate(180deg);
}

.flow-switcher__arrow svg {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    stroke: currentColor;
}

.flow-switcher__toggle:hover,
.flow-switcher__toggle:focus-visible {
    color: var(--flow-switcher-text);
    outline: none;
}

.flow-switcher__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 50;
    min-width: 180px;
    display: none;
    background: #ffffff;
    border: 1px solid var(--flow-header-line, rgba(10, 186, 181, 0.16));
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(18, 32, 47, 0.1);
    overflow: hidden;
}

.flow-switcher--currency .flow-switcher__menu {
    min-width: 200px;
}

.flow-switcher--language .flow-switcher__menu {
    min-width: 148px;
}

.flow-switcher.is-open .flow-switcher__menu {
    display: block;
}

.flow-switcher__item,
.flow-switcher__item--current {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0;
    color: #2f2f2f;
    text-decoration: none;
    background: #ffffff;
    white-space: nowrap;
}

.flow-switcher__item + .flow-switcher__item,
.flow-switcher__item + .flow-switcher__item--current,
.flow-switcher__item--current + .flow-switcher__item {
    border-top: 1px solid #f1f4f6;
}

.flow-switcher__item:hover,
.flow-switcher__item:focus {
    background: var(--flow-header-soft, #f5fbfb);
    color: var(--flow-header-strong, #111827);
}

.flow-switcher__item--current {
    cursor: default;
    color: var(--flow-header-strong, #111827);
    background: var(--flow-header-soft, #f5fbfb);
}

.flow-switcher__item-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.flow-switcher__item-code {
    color: var(--flow-header-accent, #0abab5);
    font-weight: 600;
    text-align: right;
}

@media (max-width: 767px) {
    .flow-switchers {
        gap: 16px;
    }

    .flow-switcher__menu {
        left: auto;
        right: 0;
    }
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx {
    --ff-search-accent: var(--flow-header-accent, #0abab5);
    --ff-search-accent-dark: var(--flow-header-accent-dark, #07918d);
    --ff-search-bg: #ffffff;
    --ff-search-bg-hover: #fcfefe;
    --ff-search-border: var(--flow-header-line, rgba(10, 186, 181, 0.16));
    --ff-search-border-strong: rgba(10, 186, 181, 0.34);
    --ff-search-text: var(--flow-header-text, #18202f);
    --ff-search-muted: #98a2b3;
    --ff-search-divider: #edf3f5;
    --ff-search-shadow: 0 16px 36px rgba(18, 32, 47, 0.1);
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-search-form {
    margin: 0;
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
    min-height: 44px;
    padding: 11px 18px 11px 48px;
    border: 1px solid var(--ff-search-border);
    border-radius: 22px;
    background: #ffffff;
    color: var(--ff-search-text);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:hover {
    background: var(--ff-search-bg-hover);
    border-color: rgba(10, 186, 181, 0.24);
    box-shadow: none;
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:focus {
    background: #ffffff;
    border-color: var(--ff-search-border-strong);
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.08);
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input::placeholder {
    color: var(--ff-search-muted);
    font-style: normal;
    font-weight: 400;
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp .dgwt-wcas-ico-magnifier,
.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit svg,
.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit svg path,
.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx.dgwt-wcas-has-submit .dgwt-wcas-search-submit svg path {
    fill: var(--ff-search-accent-dark);
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    left: 18px;
    top: 50%;
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: -9px;
    background: transparent;
    box-shadow: none;
    opacity: 0.95;
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    right: 20px;
    left: auto;
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-close:not(.dgwt-wcas-inner-preloader) path {
    fill: var(--ff-search-muted);
}

.elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-preloader {
    margin-right: 28px;
}

.elementor-location-header .dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp,
.elementor-location-header .dgwt-wcas-open-pirx .dgwt-wcas-details-wrapp {
    margin-top: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    border: 1px solid var(--flow-header-line, rgba(10, 186, 181, 0.16));
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--ff-search-shadow);
}

.elementor-location-header .dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp {
    overflow: hidden;
}

.elementor-location-header .dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp > .dgwt-wcas-suggestion,
.elementor-location-header .dgwt-wcas-open-pirx .dgwt-wcas-details-inner {
    padding-left: 18px;
    padding-right: 18px;
}

.elementor-location-header .dgwt-wcas-suggestion {
    min-height: 66px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom-color: var(--ff-search-divider);
    align-items: center;
}

.elementor-location-header .dgwt-wcas-suggestion-selected,
.elementor-location-header .dgwt-wcas-suggestion:hover {
    background: #f2fbfb;
}

.elementor-location-header .dgwt-wcas-si {
    width: 58px;
    flex: 0 0 58px;
}

.elementor-location-header .dgwt-wcas-si img {
    border: 1px solid #f1f3f5;
    border-radius: 12px;
    padding: 4px;
}

.elementor-location-header .dgwt-wcas-content-wrapp {
    padding-left: 14px;
}

.elementor-location-header .dgwt-wcas-st {
    color: var(--ff-search-text);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.28;
}

.elementor-location-header .dgwt-wcas-sd,
.elementor-location-header .dgwt-wcas-st-breadcrumbs,
.elementor-location-header .dgwt-wcas-sku {
    color: #8f949b;
}

.elementor-location-header .dgwt-wcas-sp {
    color: var(--ff-search-accent-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    padding-left: 16px;
}

.elementor-location-header .dgwt-wcas-sp del {
    color: #98a0a8;
}

.elementor-location-header .dgwt-wcas-suggestion.dgwt-wcas-suggestion-more {
    min-height: 54px;
    color: var(--ff-search-accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.elementor-location-header .dgwt-wcas-suggestion-nores {
    padding: 18px;
}

@media (max-width: 1024px) {
    .elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
        min-height: 42px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
        min-height: 42px;
        padding-left: 52px;
        padding-right: 20px;
        font-size: 15px;
        border-radius: 22px;
    }

    .elementor-location-header .dgwt-wcas-search-wrapp.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
        left: 18px;
    }

    .elementor-location-header .dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp,
    .elementor-location-header .dgwt-wcas-open-pirx .dgwt-wcas-details-wrapp {
        border-radius: 16px;
    }
}

.flow-city-selector {
    position: relative;
    z-index: 40;
    min-width: 0;
    font-family: "Roboto Flex", Sans-serif;
}

.flow-city-selector__trigger {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: auto;
    max-width: 248px;
    min-height: 52px;
    padding: 8px 14px 8px 12px;
    border: 1px solid rgba(10, 186, 181, 0.14) !important;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(10, 186, 181, 0.08) 0%, rgba(10, 186, 181, 0.03) 100%) !important;
    box-shadow: 0 10px 24px rgba(10, 186, 181, 0.08) !important;
    color: var(--flow-header-text, #18202f);
    text-align: left;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    appearance: none;
}

.flow-city-selector__trigger:hover {
    transform: translateY(-1px);
    border-color: rgba(10, 186, 181, 0.22) !important;
    box-shadow: 0 14px 28px rgba(10, 186, 181, 0.12) !important;
}

.flow-city-selector__trigger:focus-visible {
    outline: none;
    border-color: rgba(10, 186, 181, 0.28) !important;
    box-shadow: 0 0 0 4px rgba(10, 186, 181, 0.08) !important;
}

.flow-city-selector__icon {
    display: grid;
    place-items: center;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin: 0;
    align-self: center;
    color: var(--flow-header-accent, #0abab5);
}

.flow-city-selector__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    margin-left: 0;
    stroke: currentColor;
}

.flow-city-selector__trigger-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    text-align: left;
}

.flow-city-selector__trigger-label {
    display: block;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 600;
    color: #6b7a88;
}

.flow-city-selector__trigger-city {
    display: block;
    margin-top: 0;
    font-size: 17px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1f2c37;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flow-city-selector__trigger-delivery {
    display: block;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--flow-header-accent, #0abab5);
}

.flow-city-selector__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 32, 0.36);
}

.flow-city-selector__panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: min(396px, calc(100vw - 24px));
    padding: 18px 18px 16px;
    border: 1px solid rgba(10, 186, 181, 0.14);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(18, 29, 38, 0.18);
    overflow: hidden;
}

.flow-city-selector__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.flow-city-selector__title {
    font-size: 22px;
    line-height: 1.06;
    font-weight: 700;
    color: #202228;
    letter-spacing: -0.03em;
}

.flow-city-selector__summary {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.35;
    color: #7f8790;
}

.flow-city-selector__close {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin: -4px -4px 0 0;
    border: 0 !important;
    border-radius: 50% !important;
    background: #f5f7f8 !important;
    box-shadow: none !important;
    cursor: pointer;
}

.flow-city-selector__close svg {
    display: block;
    width: 18px;
    height: 18px;
    color: #202228;
    stroke: currentColor;
}

.flow-city-selector__search {
    position: relative;
    margin-bottom: 8px;
}

.flow-city-selector__search-icon {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 18px;
    width: 14px;
    height: 14px;
    margin-top: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.flow-city-selector__search-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    color: #9aa2ab;
    stroke: currentColor;
}

.flow-city-selector__search-input {
    display: block;
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 0 16px 0 46px !important;
    border: 1px solid #d8e1e6 !important;
    border-radius: 12px !important;
    background: #fbfcfc !important;
    color: #25282f;
    font: 500 15px/1 "Roboto Flex", Sans-serif !important;
    box-shadow: none !important;
    appearance: none;
}

.flow-city-selector__search-input::placeholder {
    color: #a0a7af;
}

.flow-city-selector__search-input:focus {
    outline: none;
    border-color: rgba(10, 186, 181, 0.3);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(10, 186, 181, 0.08);
}

.flow-city-selector__search-input::-webkit-search-decoration,
.flow-city-selector__search-input::-webkit-search-cancel-button,
.flow-city-selector__search-input::-webkit-search-results-button,
.flow-city-selector__search-input::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.flow-city-selector__search-hint {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.35;
    color: #8b929b;
}

.flow-city-selector__results {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-height: 372px;
    overflow: auto;
    padding: 8px 4px 0 0;
    border-top: 1px solid #eef3f5;
}

.flow-city-selector__results::-webkit-scrollbar {
    width: 8px;
}

.flow-city-selector__results::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(10, 186, 181, 0.55);
}

.flow-city-selector__results::-webkit-scrollbar-track {
    background: #f3f5f6;
    border-radius: 999px;
}

.flow-city-selector__option {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    width: 100% !important;
    min-width: 100%;
    max-width: none !important;
    flex: 0 0 auto;
    margin: 0;
    padding: 12px 8px;
    border: 0 !important;
    border-bottom: 1px solid #eef2f4;
    border-radius: 12px;
    background: transparent !important;
    box-shadow: none !important;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.flow-city-selector__option:hover,
.flow-city-selector__option:focus-visible {
    background: #f3fbfb !important;
    outline: none;
}

.flow-city-selector__option.is-selected {
    background: #f5fbf9 !important;
    border-bottom-color: rgba(10, 186, 181, 0.14);
}

.flow-city-selector__option:last-child {
    border-bottom: 0;
}

.flow-city-selector__option-marker {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--flow-header-accent, #0abab5);
    border-radius: 50%;
    box-sizing: border-box;
}

.flow-city-selector__option.is-selected .flow-city-selector__option-marker::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--flow-header-accent, #0abab5);
}

.flow-city-selector__option-content {
    display: grid;
    gap: 2px;
    min-width: 0;
    width: 100%;
    justify-items: start;
    text-align: left;
}

.flow-city-selector__option-name {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #21242a;
    text-align: left;
}

.flow-city-selector__option-region {
    display: block;
    width: 100%;
    font-size: 12px;
    line-height: 1.3;
    color: #89909a;
    text-align: left;
}

.flow-city-selector__empty {
    padding: 22px 8px 8px;
    color: #79808a;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 1024px) {
    .flow-city-selector__trigger-city {
        font-size: 16px;
    }

    .flow-city-selector__panel {
        width: min(372px, calc(100vw - 24px));
    }
}

@media (max-width: 767px) {
    .flow-city-selector {
        min-width: 0;
    }

    .flow-city-selector__trigger {
        max-width: none;
    }

    .flow-city-selector__trigger-city {
        font-size: 16px;
    }

    .flow-city-selector__panel {
        position: fixed;
        top: 50%;
        left: 50%;
        width: min(392px, calc(100vw - 20px));
        max-height: min(80vh, 720px);
        transform: translate(-50%, -50%);
        border-radius: 18px;
    }

    .flow-city-selector__results {
        max-height: calc(80vh - 176px);
    }
}

.flow-site-header {
    --flow-header-accent: #0abab5;
    --flow-header-accent-dark: #07918d;
    --flow-header-text: #18202f;
    --flow-header-muted: #667085;
    --flow-header-soft: #f5fbfb;
    --flow-header-line: rgba(10, 186, 181, 0.16);
    --flow-header-hairline: rgba(10, 186, 181, 0.09);
    --flow-header-icon: #0abab5;
    --flow-header-strong: #111827;
    --flow-header-left-column: 15rem;
    --flow-header-center-width: 31.25rem;
    --flow-header-search-width: 27rem;
    --flow-header-right-column: 22.5rem;
    --flow-header-column-gap: clamp(0.875rem, 1.6vw, 1.5rem);
    position: relative;
    z-index: 90;
    width: 100%;
    background: #ffffff;
    color: var(--flow-header-text);
    font-family: "Roboto Flex", Sans-serif;
    box-shadow: 0 1px 0 rgba(18, 32, 47, 0.05);
}

.flow-site-header__inner {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding-right: 24px;
    padding-left: 24px;
}

.flow-site-header__top {
    border-bottom: 1px solid var(--flow-header-hairline);
    background: rgba(10, 186, 181, 0.1);
}

.flow-site-header__top-inner {
    display: grid;
    grid-template-columns:
        var(--flow-header-left-column)
        minmax(0, 1fr)
        var(--flow-header-right-column);
    align-items: center;
    column-gap: var(--flow-header-column-gap);
    min-height: 64px;
}

.flow-site-header__top-left,
.flow-site-header__top-center,
.flow-site-header__top-right,
.flow-site-header__contacts,
.flow-site-header__actions {
    display: flex;
    align-items: center;
}

.flow-site-header__top-center {
    justify-content: center;
    justify-self: center;
    width: 100%;
    max-width: var(--flow-header-search-width);
    min-width: 0;
}

.flow-site-header__top-right {
    justify-content: flex-end;
    gap: 22px;
    min-width: 0;
}

.flow-site-header__main {
    background: rgba(10, 186, 181, 0.1);
}

.flow-site-header__main-inner {
    display: grid;
    grid-template-columns:
        var(--flow-header-left-column)
        minmax(0, 1fr)
        var(--flow-header-right-column);
    align-items: center;
    column-gap: var(--flow-header-column-gap);
    min-height: clamp(5.75rem, 8vw, 6.75rem);
}

.flow-site-header__brand {
    min-width: 0;
    line-height: 0;
}

.flow-site-header__brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.flow-site-header__brand .custom-logo {
    display: block;
    inline-size: auto;
    block-size: auto;
    max-inline-size: 240px;
    object-fit: contain;
}

.flow-site-header__site-title {
    display: inline-flex;
    color: var(--flow-header-accent-dark);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
}

.flow-site-header__tagline {
    display: block;
    margin-top: 4px;
    color: var(--flow-header-muted);
    font-size: 12px;
    line-height: 1.2;
}

.flow-site-header__benefits {
    width: 100%;
    max-width: var(--flow-header-center-width);
    min-width: 0;
    justify-self: center;
}

.flow-site-header__main-right,
.flow-site-header__contacts {
    gap: clamp(0.625rem, 1.2vw, 1rem);
    justify-content: flex-end;
    min-width: max-content;
}

.flow-site-header__main-right {
    display: flex;
    align-items: center;
}

.flow-site-header .flow-city-selector__trigger {
    max-width: none;
    min-height: 38px;
    padding: 6px 10px;
    border-color: transparent !important;
    border-radius: 10px;
    background: transparent !important;
    box-shadow: none !important;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.flow-site-header .flow-city-selector__trigger:hover,
.flow-site-header .flow-city-selector__trigger:focus-visible {
    transform: none;
    border-color: rgba(10, 186, 181, 0.26) !important;
    background: rgba(10, 186, 181, 0.04) !important;
    box-shadow: none !important;
}

.flow-site-header .flow-city-selector__trigger-text {
    flex-direction: row;
    align-items: baseline;
    gap: 5px;
}

.flow-site-header .flow-city-selector__trigger-label {
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    color: var(--flow-header-muted);
}

.flow-site-header .flow-city-selector__trigger-city {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--flow-header-strong);
}

.flow-site-header .flow-city-selector__trigger-delivery {
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    color: var(--flow-header-accent);
}

.flow-site-header__actions {
    justify-content: flex-end;
}

.flow-header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: clamp(2.625rem, 3.4vw, 3rem);
    block-size: clamp(2.625rem, 3.4vw, 3rem);
    margin: 0;
    padding: 0 !important;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--flow-header-accent-dark);
    box-shadow: none;
    overflow: visible;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.flow-header-cart:hover,
.flow-header-cart:focus-visible {
    color: #066f6c;
    background: rgba(10, 186, 181, 0.09);
    box-shadow: 0 6px 16px rgba(7, 145, 141, 0.11);
    transform: translateY(-1px);
    outline: none;
}

.flow-header-cart:focus-visible {
    box-shadow:
        0 0 0 3px rgba(10, 186, 181, 0.16),
        0 6px 16px rgba(7, 145, 141, 0.11);
}

.flow-header-cart__icon {
    display: inline-flex;
    align-items: stretch;
    justify-content: stretch;
    inline-size: 82%;
    block-size: 82%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.flow-header-cart__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    stroke: currentColor;
}

.flow-header-cart__count {
    position: absolute;
    top: -3px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border: 2px solid #e7f8f7;
    border-radius: 999px;
    background: var(--flow-header-accent);
    color: #ffffff;
    font-size: 11px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 3px 8px rgba(7, 145, 141, 0.16);
    pointer-events: none;
}

.flow-site-header__nav {
    background: var(--flow-header-accent);
}

.flow-site-header__nav-inner {
    min-height: 50px;
}

.flow-site-header__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 50px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-site-header__menu li {
    position: relative;
    margin: 0;
}

.flow-site-header__menu a,
.flow-site-header__menu-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease, opacity 0.18s ease;
}

.flow-site-header__menu-placeholder-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    line-height: 0;
}

.flow-site-header__menu-placeholder-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flow-site-header__menu a:hover,
.flow-site-header__menu a:focus-visible {
    color: #ffffff;
    opacity: 0.78;
    outline: none;
}

.flow-header-benefits {
    --ff-benefits-accent: var(--flow-header-accent, #0abab5);
    --ff-benefits-accent-dark: var(--flow-header-accent, #0abab5);
    --ff-benefits-text: var(--flow-header-strong, #111827);
    width: 100%;
    max-width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.flow-header-benefits__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-header-benefit {
    display: grid;
    grid-template-columns: auto minmax(0, max-content);
    align-items: center;
    justify-content: center;
    gap: clamp(0.375rem, 0.7vw, 0.625rem);
    flex: 0 1 auto;
    min-height: 3.375rem;
    min-width: 0;
    padding-inline: clamp(0.5rem, 1vw, 0.875rem);
}

.flow-header-benefit + .flow-header-benefit {
    border-left: 1px solid var(--flow-header-line);
}

.flow-header-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: clamp(1.5rem, 2vw, 1.75rem);
    block-size: clamp(1.5rem, 2vw, 1.75rem);
    color: var(--ff-benefits-accent-dark);
}

.flow-header-benefit__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: currentColor;
}

.flow-header-benefit__icon svg [fill="none"] {
    fill: none;
}

.flow-header-benefit__icon svg [stroke] {
    stroke: currentColor;
}

.flow-header-benefit__label {
    display: block;
    color: var(--ff-benefits-text);
    font-family: "Roboto Flex", Sans-serif;
    font-size: clamp(0.8125rem, 1vw, 0.875rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: balance;
    white-space: nowrap;
}

.flow-header-search {
    width: 100%;
    max-width: none;
}

.flow-header-messengers {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.375rem, 0.8vw, 0.625rem);
}

.flow-header-messenger {
    --ff-messenger-bg: var(--flow-header-accent);
    --ff-messenger-bg-hover: var(--flow-header-accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: clamp(2rem, 2.7vw, 2.25rem);
    block-size: clamp(2rem, 2.7vw, 2.25rem);
    border: 0;
    border-radius: 12px;
    background: var(--ff-messenger-bg);
    color: #ffffff;
    box-shadow: none;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.flow-header-messenger:hover,
.flow-header-messenger:focus-visible {
    background: var(--ff-messenger-bg-hover);
    color: #ffffff;
    box-shadow: none;
    outline: none;
}

.flow-header-messenger--telegram {
    --ff-messenger-bg: #229ed9;
    --ff-messenger-bg-hover: #1d8ec4;
}

.flow-header-messenger--viber {
    --ff-messenger-bg: #7360f2;
    --ff-messenger-bg-hover: #6652df;
}

.flow-header-messenger--whatsapp {
    --ff-messenger-bg: #25d366;
    --ff-messenger-bg-hover: #20bd5a;
}

.flow-header-messenger__icon {
    display: block;
    inline-size: 58%;
    block-size: 58%;
    fill: currentColor;
    stroke: none;
}

.flow-header-messenger__icon path {
    fill: currentColor;
}

.flow-header-phones {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    font-family: "Roboto Flex", Sans-serif;
}

.flow-header-phones__item {
    display: inline-flex;
    color: var(--flow-header-muted);
    font-size: clamp(0.875rem, 1.25vw, 1.0625rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.flow-header-phones__item:hover,
.flow-header-phones__item:focus-visible {
    color: var(--flow-header-accent-dark);
    outline: none;
}

.flow-header-account {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--flow-header-muted);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.flow-header-account:hover,
.flow-header-account:focus-visible {
    color: var(--flow-header-accent-dark);
    outline: none;
}

.flow-header-account__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: currentColor;
}

.flow-header-account__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* WooCommerce product card badges and sale price */
.woocommerce ul.products li.product,
.elementor-widget-woocommerce-products ul.products li.product,
.elementor-widget-wc-archive-products ul.products li.product {
    --flow-product-card-accent: var(--e-global-color-primary, #08b0ac);
    --flow-product-card-accent-dark: #07918d;
    --flow-product-card-text: var(--e-global-color-text, #121212);
    --flow-product-card-muted: var(--e-global-color-secondary, #717186);
    --flow-product-card-border: rgba(113, 113, 134, 0.23);
    --flow-product-card-bg: var(--e-global-color-88ac8ae, #ffffff);
    --flow-product-card-sale: var(--e-global-color-8182641, #ee7d7d);
    position: relative;
    box-sizing: border-box;
    padding: 12px !important;
    border: 1px solid var(--flow-product-card-border) !important;
    border-radius: 8px !important;
    background: var(--flow-product-card-bg) !important;
    color: var(--flow-product-card-text);
    text-align: center;
    box-shadow: none !important;
    overflow: hidden;
    transition: border-color 0.18s ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce ul.products li.product:focus-within,
.elementor-widget-woocommerce-products ul.products li.product:hover,
.elementor-widget-woocommerce-products ul.products li.product:focus-within,
.elementor-widget-wc-archive-products ul.products li.product:hover,
.elementor-widget-wc-archive-products ul.products li.product:focus-within {
    border-color: var(--flow-product-card-accent) !important;
}

.woocommerce ul.products li.product a img,
.elementor-widget-woocommerce-products ul.products li.product a img,
.elementor-widget-wc-archive-products ul.products li.product a img {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.elementor-widget-woocommerce-products ul.products li.product .woocommerce-loop-product__title,
.elementor-widget-wc-archive-products ul.products li.product .woocommerce-loop-product__title {
    color: var(--flow-product-card-text) !important;
    font-family: "Roboto Flex", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
}

.woocommerce ul.products li.product .flow-product-badge,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-badge,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    max-width: 100%;
    padding: 4px 7px;
    border-radius: 4px;
    color: #ffffff;
    font-family: "Roboto Flex", Sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none;
    pointer-events: none;
}

.woocommerce ul.products li.product .flow-product-badge--bestseller,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-badge--bestseller,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-badge--bestseller {
    background: var(--flow-product-card-accent);
}

.woocommerce ul.products li.product .flow-product-badge--new,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-badge--new,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-badge--new {
    background: var(--flow-product-card-sale);
}

.woocommerce ul.products li.product .flow-product-card__purchase,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__purchase,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__purchase {
    display: grid;
    gap: 10px;
    width: 100%;
    margin-top: 14px;
}

.woocommerce ul.products li.product .flow-product-card__price,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__price,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__price {
    display: block;
    width: 100%;
    min-width: 0;
}

.woocommerce ul.products li.product .flow-product-card__purchase .price,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__purchase .price,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__purchase .price {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0 !important;
    color: var(--flow-product-card-accent);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.05;
    text-align: center !important;
}

.woocommerce ul.products li.product .flow-product-card__actions,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

.woocommerce ul.products li.product .flow-product-card__actions--single,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions--single,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions--single {
    grid-template-columns: minmax(0, 1fr);
}

.woocommerce ul.products li.product .flow-product-card__actions .woocommerce-loop-product__buttons,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .woocommerce-loop-product__buttons,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .woocommerce-loop-product__buttons {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    height: 100%;
    line-height: 0;
}

.woocommerce ul.products li.product .flow-product-card__actions .woocommerce-loop-product__buttons > .button,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .woocommerce-loop-product__buttons > .button,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .woocommerce-loop-product__buttons > .button {
    height: 100%;
}

.woocommerce ul.products li.product .flow-product-card__actions .button,
.woocommerce ul.products li.product .flow-product-card__actions .added_to_cart,
.woocommerce ul.products li.product .flow-product-card__quick-order,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .added_to_cart,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__quick-order,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .added_to_cart,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__quick-order {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    margin: 0 !important;
    padding: 9px 10px !important;
    border-radius: 4px;
    font-family: "Roboto Flex", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: none !important;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.woocommerce ul.products li.product .flow-product-card__actions .button,
.woocommerce ul.products li.product .flow-product-card__actions .added_to_cart,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .added_to_cart,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .added_to_cart {
    border: 1px solid rgba(8, 176, 172, 0.28) !important;
    background: rgba(8, 176, 172, 0.08) !important;
    color: var(--flow-product-card-accent-dark) !important;
}

.woocommerce ul.products li.product .flow-product-card__actions .button:hover,
.woocommerce ul.products li.product .flow-product-card__actions .button:focus-visible,
.woocommerce ul.products li.product .flow-product-card__actions .added_to_cart:hover,
.woocommerce ul.products li.product .flow-product-card__actions .added_to_cart:focus-visible,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button:hover,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button:focus-visible,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .added_to_cart:hover,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .added_to_cart:focus-visible,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button:hover,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button:focus-visible,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .added_to_cart:hover,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .added_to_cart:focus-visible {
    border-color: rgba(8, 176, 172, 0.42) !important;
    background: rgba(8, 176, 172, 0.14) !important;
    color: #067a76 !important;
    outline: none;
}

.woocommerce ul.products li.product .flow-product-card__quick-order,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__quick-order,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__quick-order {
    border: 1px solid var(--flow-product-card-accent) !important;
    background: var(--flow-product-card-accent) !important;
    color: #ffffff !important;
}

.woocommerce ul.products li.product .flow-product-card__quick-order:hover,
.woocommerce ul.products li.product .flow-product-card__quick-order:focus-visible,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__quick-order:hover,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__quick-order:focus-visible,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__quick-order:hover,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__quick-order:focus-visible {
    border-color: var(--flow-product-card-accent-dark) !important;
    background: var(--flow-product-card-accent-dark) !important;
    color: #ffffff !important;
    outline: none;
}

.woocommerce ul.products li.product.flow-product-card--in-cart a img,
.elementor-widget-woocommerce-products ul.products li.product.flow-product-card--in-cart a img,
.elementor-widget-wc-archive-products ul.products li.product.flow-product-card--in-cart a img {
    opacity: 0.42;
    filter: saturate(0.72);
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.woocommerce ul.products li.product .flow-product-card__cart-overlay,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__cart-overlay,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__cart-overlay {
    position: absolute;
    top: var(--flow-cart-overlay-top, 125px);
    left: 50%;
    z-index: 6;
    display: grid;
    justify-items: center;
    gap: 5px;
    width: calc(100% - 40px);
    min-width: 124px;
    max-width: 172px;
    padding: 11px 14px;
    border: 1px solid rgba(8, 176, 172, 0.48);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.96);
    font-family: "Roboto Flex", Sans-serif;
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: none;
    animation: flow-product-cart-overlay-in 0.2s ease both;
}

.woocommerce ul.products li.product .flow-product-card__cart-overlay-status,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__cart-overlay-status,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__cart-overlay-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--flow-product-card-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.woocommerce ul.products li.product .flow-product-card__cart-overlay-actions,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__cart-overlay-actions,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__cart-overlay-actions {
    display: grid;
    justify-items: center;
    gap: 4px;
}

.woocommerce ul.products li.product .flow-product-card__cart-overlay-status::before,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__cart-overlay-status::before,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__cart-overlay-status::before {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--flow-product-card-accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    content: "✓";
}

.woocommerce ul.products li.product .flow-product-card__view-cart,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__view-cart,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__view-cart {
    display: inline !important;
    width: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 0 2px !important;
    border: 0 !important;
    border-bottom: 1px solid currentColor !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--flow-product-card-accent-dark) !important;
    font-family: "Roboto Flex", Sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none !important;
    white-space: normal;
    box-shadow: none !important;
}

.woocommerce ul.products li.product .flow-product-card__view-cart:hover,
.woocommerce ul.products li.product .flow-product-card__view-cart:focus-visible,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__view-cart:hover,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__view-cart:focus-visible,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__view-cart:hover,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__view-cart:focus-visible {
    color: #066f6c !important;
    outline: none;
}

.woocommerce ul.products li.product.flow-product-card--removing .flow-product-card__cart-overlay,
.elementor-widget-woocommerce-products ul.products li.product.flow-product-card--removing .flow-product-card__cart-overlay,
.elementor-widget-wc-archive-products ul.products li.product.flow-product-card--removing .flow-product-card__cart-overlay {
    opacity: 0.76;
}

.woocommerce ul.products li.product.flow-product-card--remove-error .flow-product-card__cart-overlay,
.elementor-widget-woocommerce-products ul.products li.product.flow-product-card--remove-error .flow-product-card__cart-overlay,
.elementor-widget-wc-archive-products ul.products li.product.flow-product-card--remove-error .flow-product-card__cart-overlay {
    border-color: rgba(216, 74, 83, 0.46);
}

.woocommerce ul.products li.product.flow-product-card--remove-error .flow-product-card__cart-overlay-status,
.elementor-widget-woocommerce-products ul.products li.product.flow-product-card--remove-error .flow-product-card__cart-overlay-status,
.elementor-widget-wc-archive-products ul.products li.product.flow-product-card--remove-error .flow-product-card__cart-overlay-status {
    color: #bd3842;
    font-size: 12px;
}

.woocommerce ul.products li.product.flow-product-card--remove-error .flow-product-card__cart-overlay-status::before,
.elementor-widget-woocommerce-products ul.products li.product.flow-product-card--remove-error .flow-product-card__cart-overlay-status::before,
.elementor-widget-wc-archive-products ul.products li.product.flow-product-card--remove-error .flow-product-card__cart-overlay-status::before {
    background: #d84a53;
    content: "!";
}

.woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state {
    position: relative;
    isolation: isolate;
    gap: 0;
    min-width: 0;
    overflow: hidden;
    border-color: rgba(8, 176, 172, 0.4) !important;
    background: rgba(8, 176, 172, 0.08) !important;
    color: var(--flow-product-card-accent-dark) !important;
    cursor: pointer;
    transition:
        color 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover,
.woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible {
    border-color: rgba(216, 74, 83, 0.68) !important;
    background: rgba(216, 74, 83, 0.08) !important;
    color: #bd3842 !important;
    box-shadow: 0 0 0 2px rgba(216, 74, 83, 0.08);
    transform: translateY(-1px);
    outline: none;
}

.woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state::after,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state::after,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state::after {
    display: none !important;
    content: none !important;
}

.woocommerce ul.products li.product .flow-product-card__add-state-view,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-view,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-view {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    max-width: 100%;
    padding: 0 5px;
    white-space: nowrap;
    pointer-events: none;
    transition:
        opacity 220ms ease,
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 220ms ease;
}

.woocommerce ul.products li.product .flow-product-card__add-state-view--in-cart,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-view--in-cart,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-view--in-cart {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    animation: flow-product-card-state-in 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.woocommerce ul.products li.product .flow-product-card__add-state-view--remove,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-view--remove,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-view--remove {
    opacity: 0;
    transform: translateY(55%) scale(0.94);
    filter: blur(2px);
}

.woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover .flow-product-card__add-state-view--in-cart,
.woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible .flow-product-card__add-state-view--in-cart,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover .flow-product-card__add-state-view--in-cart,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible .flow-product-card__add-state-view--in-cart,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover .flow-product-card__add-state-view--in-cart,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible .flow-product-card__add-state-view--in-cart {
    opacity: 0;
    transform: translateY(-55%) scale(0.94);
    filter: blur(2px);
}

.woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover .flow-product-card__add-state-view--remove,
.woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible .flow-product-card__add-state-view--remove,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover .flow-product-card__add-state-view--remove,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible .flow-product-card__add-state-view--remove,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover .flow-product-card__add-state-view--remove,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible .flow-product-card__add-state-view--remove {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.woocommerce ul.products li.product .flow-product-card__add-state-view--progress,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-view--progress,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-view--progress {
    gap: 4px;
    padding-right: 2px;
    padding-left: 2px;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    animation: flow-product-card-progress-in 180ms ease-out;
}

.woocommerce ul.products li.product .flow-product-card__add-state-view--progress .flow-product-card__add-state-label,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-view--progress .flow-product-card__add-state-label,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-view--progress .flow-product-card__add-state-label {
    font-size: 11px;
}

.woocommerce ul.products li.product .flow-product-card__add-state-label,
.woocommerce ul.products li.product .flow-product-card__add-state-icon,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-label,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-icon,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-label,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-icon {
    pointer-events: none;
}

.woocommerce ul.products li.product .flow-product-card__add-state-label,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-label,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.woocommerce ul.products li.product .flow-product-card__add-state-icon,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-icon,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-icon {
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.woocommerce ul.products li.product .flow-product-card__add-state-check,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-check,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-check {
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    animation: flow-product-card-check-in 320ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.woocommerce ul.products li.product .flow-product-card__add-state-trash,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-trash,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-trash {
    width: 15px;
    height: 15px;
    transform: rotate(-8deg) scale(0.9);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover .flow-product-card__add-state-trash,
.woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible .flow-product-card__add-state-trash,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover .flow-product-card__add-state-trash,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible .flow-product-card__add-state-trash,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:hover .flow-product-card__add-state-trash,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state:focus-visible .flow-product-card__add-state-trash {
    transform: rotate(0) scale(1);
}

.woocommerce ul.products li.product .flow-product-card__add-state-trash svg,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-trash svg,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-trash svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.woocommerce ul.products li.product .flow-product-card__add-state-spinner,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-spinner,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-spinner {
    box-sizing: border-box;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: flow-product-card-spin 650ms linear infinite;
    pointer-events: none;
}

.woocommerce ul.products li.product.flow-product-card--removing .flow-product-card__actions .button.flow-product-card__add-state,
.elementor-widget-woocommerce-products ul.products li.product.flow-product-card--removing .flow-product-card__actions .button.flow-product-card__add-state,
.elementor-widget-wc-archive-products ul.products li.product.flow-product-card--removing .flow-product-card__actions .button.flow-product-card__add-state {
    border-color: rgba(216, 74, 83, 0.42) !important;
    background: rgba(216, 74, 83, 0.06) !important;
    color: #bd3842 !important;
    cursor: wait;
    pointer-events: none;
}

@keyframes flow-product-card-state-in {
    from {
        opacity: 0;
        transform: translateY(35%) scale(0.96);
        filter: blur(2px);
    }
}

@keyframes flow-product-card-check-in {
    from {
        opacity: 0;
        transform: scale(0.45) rotate(-18deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes flow-product-card-progress-in {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
}

@keyframes flow-product-card-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes flow-product-cart-overlay-in {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 5px));
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .woocommerce ul.products li.product .flow-product-card__cart-overlay,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__cart-overlay,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__cart-overlay {
        animation: none;
    }

    .woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state,
    .woocommerce ul.products li.product .flow-product-card__add-state-view,
    .woocommerce ul.products li.product .flow-product-card__add-state-check,
    .woocommerce ul.products li.product .flow-product-card__add-state-trash,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-view,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-check,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-trash,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-view,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-check,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-trash {
        transition: none;
        animation: none;
    }

    .woocommerce ul.products li.product .flow-product-card__add-state-spinner,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-spinner,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-spinner {
        animation: none;
    }
}

@media (max-width: 767px) {
    .woocommerce ul.products li.product .flow-product-card__actions,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions {
        gap: 4px;
    }

    .woocommerce ul.products li.product .flow-product-card__actions .button,
    .woocommerce ul.products li.product .flow-product-card__quick-order,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__quick-order,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__quick-order {
        padding-right: 4px !important;
        padding-left: 4px !important;
        font-size: 12px;
    }

    .woocommerce ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions .button.flow-product-card__add-state {
        gap: 2px;
        padding-right: 2px !important;
        padding-left: 2px !important;
    }

    .woocommerce ul.products li.product .flow-product-card__add-state-view,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-view,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-view {
        gap: 2px;
        padding-right: 1px;
        padding-left: 1px;
    }

    .woocommerce ul.products li.product .flow-product-card__add-state-label--remove,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-label--remove,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-label--remove {
        font-size: 10px;
    }

    .woocommerce ul.products li.product .flow-product-card__add-state-view--remove,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-view--remove,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-view--remove {
        gap: 1px;
    }

    .woocommerce ul.products li.product .flow-product-card__add-state-trash,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-trash,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-trash {
        width: 12px;
        height: 12px;
    }

    .woocommerce ul.products li.product .flow-product-card__add-state-view--progress,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-view--progress,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-view--progress {
        gap: 0;
        padding: 0;
    }

    .woocommerce ul.products li.product .flow-product-card__add-state-view--progress .flow-product-card__add-state-label,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-view--progress .flow-product-card__add-state-label,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-view--progress .flow-product-card__add-state-label {
        display: none;
    }

    .woocommerce ul.products li.product .flow-product-card__add-state-check,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__add-state-check,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__add-state-check {
        font-size: 12px;
    }
}

@media (max-width: 359px) {
    .woocommerce ul.products li.product .flow-product-card__actions,
    .elementor-widget-woocommerce-products ul.products li.product .flow-product-card__actions,
    .elementor-widget-wc-archive-products ul.products li.product .flow-product-card__actions {
        grid-template-columns: minmax(0, 1fr);
        gap: 6px;
    }
}

.woocommerce ul.products li.product .price .flow-sale-price,
.elementor-widget-woocommerce-products ul.products li.product .price .flow-sale-price,
.elementor-widget-wc-archive-products ul.products li.product .price .flow-sale-price,
.elementor-widget-woocommerce-product-price .price .flow-sale-price,
.single-product div.product p.price .flow-sale-price,
.single-product div.product span.price .flow-sale-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 100%;
    color: var(--flow-product-card-accent, var(--e-global-color-primary, #08b0ac));
    font-family: "Roboto Flex", Sans-serif;
    line-height: 1.1;
    letter-spacing: 0;
}

.woocommerce ul.products li.product .price .flow-sale-price__regular,
.elementor-widget-woocommerce-products ul.products li.product .price .flow-sale-price__regular,
.elementor-widget-wc-archive-products ul.products li.product .price .flow-sale-price__regular,
.elementor-widget-woocommerce-product-price .price .flow-sale-price__regular,
.single-product div.product p.price .flow-sale-price__regular,
.single-product div.product span.price .flow-sale-price__regular {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--flow-product-card-muted, #717186);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    opacity: 1;
}

.woocommerce ul.products li.product .price .flow-sale-price__regular *,
.elementor-widget-woocommerce-products ul.products li.product .price .flow-sale-price__regular *,
.elementor-widget-wc-archive-products ul.products li.product .price .flow-sale-price__regular *,
.elementor-widget-woocommerce-product-price .price .flow-sale-price__regular *,
.single-product div.product p.price .flow-sale-price__regular *,
.single-product div.product span.price .flow-sale-price__regular * {
    color: var(--flow-product-card-muted, #717186) !important;
}

.woocommerce ul.products li.product .price .flow-sale-price__regular::after,
.elementor-widget-woocommerce-products ul.products li.product .price .flow-sale-price__regular::after,
.elementor-widget-wc-archive-products ul.products li.product .price .flow-sale-price__regular::after,
.elementor-widget-woocommerce-product-price .price .flow-sale-price__regular::after,
.single-product div.product p.price .flow-sale-price__regular::after,
.single-product div.product span.price .flow-sale-price__regular::after {
    content: "";
    position: absolute;
    right: -2px;
    left: -2px;
    top: 50%;
    height: 2px;
    background: var(--flow-product-card-muted, #717186);
    transform: translateY(-50%);
}

.woocommerce ul.products li.product .price .flow-sale-price__discount,
.elementor-widget-woocommerce-products ul.products li.product .price .flow-sale-price__discount,
.elementor-widget-wc-archive-products ul.products li.product .price .flow-sale-price__discount,
.elementor-widget-woocommerce-product-price .price .flow-sale-price__discount,
.single-product div.product p.price .flow-sale-price__discount,
.single-product div.product span.price .flow-sale-price__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 3px 6px;
    border-radius: 4px;
    background: var(--flow-product-card-sale, #ee7d7d);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.woocommerce ul.products li.product .price .flow-sale-price__current,
.elementor-widget-woocommerce-products ul.products li.product .price .flow-sale-price__current,
.elementor-widget-wc-archive-products ul.products li.product .price .flow-sale-price__current,
.elementor-widget-woocommerce-product-price .price .flow-sale-price__current,
.single-product div.product p.price .flow-sale-price__current,
.single-product div.product span.price .flow-sale-price__current {
    flex: 0 0 100%;
    display: block;
    margin-top: 2px;
    color: var(--flow-product-card-accent, var(--e-global-color-primary, #08b0ac));
    font-size: 26px;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    text-decoration: none;
}

.woocommerce ul.products li.product .price .flow-sale-price__current .woocommerce-Price-currencySymbol,
.elementor-widget-woocommerce-products ul.products li.product .price .flow-sale-price__current .woocommerce-Price-currencySymbol,
.elementor-widget-wc-archive-products ul.products li.product .price .flow-sale-price__current .woocommerce-Price-currencySymbol,
.elementor-widget-woocommerce-product-price .price .flow-sale-price__current .woocommerce-Price-currencySymbol,
.single-product div.product p.price .flow-sale-price__current .woocommerce-Price-currencySymbol,
.single-product div.product span.price .flow-sale-price__current .woocommerce-Price-currencySymbol {
    font-size: 0.8em;
    font-weight: 700;
}

.woocommerce ul.products li.product .price .flow-sale-price__regular .woocommerce-Price-currencySymbol,
.elementor-widget-woocommerce-products ul.products li.product .price .flow-sale-price__regular .woocommerce-Price-currencySymbol,
.elementor-widget-wc-archive-products ul.products li.product .price .flow-sale-price__regular .woocommerce-Price-currencySymbol,
.elementor-widget-woocommerce-product-price .price .flow-sale-price__regular .woocommerce-Price-currencySymbol,
.single-product div.product p.price .flow-sale-price__regular .woocommerce-Price-currencySymbol,
.single-product div.product span.price .flow-sale-price__regular .woocommerce-Price-currencySymbol {
    font-size: 0.82em;
}

.single-product div.product p.price .flow-sale-price,
.single-product div.product span.price .flow-sale-price,
.elementor-widget-woocommerce-product-price .price .flow-sale-price {
    justify-content: flex-start;
}

.single-product div.product p.price .flow-sale-price__current,
.single-product div.product span.price .flow-sale-price__current,
.elementor-widget-woocommerce-product-price .price .flow-sale-price__current {
    text-align: left;
}

/* WooCommerce shop and product taxonomy archives */
body.woocommerce-shop,
body.tax-product_cat,
body.tax-product_tag {
    --flow-catalog-accent: var(--e-global-color-primary, #08b0ac);
    --flow-catalog-accent-dark: #07918d;
    --flow-catalog-text: var(--e-global-color-text, #121212);
    --flow-catalog-strong: #111827;
    --flow-catalog-muted: var(--e-global-color-secondary, #717186);
    --flow-catalog-border: rgba(113, 113, 134, 0.23);
    --flow-catalog-bg: var(--e-global-color-88ac8ae, #ffffff);
    --flow-catalog-soft: #f5fbfb;
    color: var(--flow-catalog-text);
    font-family: "Roboto Flex", Sans-serif;
}

body.woocommerce-shop .site-main,
body.tax-product_cat .site-main,
body.tax-product_tag .site-main {
    box-sizing: border-box;
    width: min(100%, 1200px);
    margin-inline: auto;
    padding: 32px 24px 64px;
}

body.woocommerce-shop .flow-catalog-intro,
body.tax-product_cat .flow-catalog-intro,
body.tax-product_tag .flow-catalog-intro {
    box-sizing: border-box;
    width: min(100%, 1200px);
    margin-inline: auto;
    padding: 32px 24px 28px;
}

body.woocommerce-shop .flow-catalog-intro__main,
body.tax-product_cat .flow-catalog-intro__main,
body.tax-product_tag .flow-catalog-intro__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

body.woocommerce-shop .flow-catalog-intro__main .woocommerce-products-header,
body.tax-product_cat .flow-catalog-intro__main .woocommerce-products-header,
body.tax-product_tag .flow-catalog-intro__main .woocommerce-products-header {
    min-width: 0;
}

body.woocommerce-shop .flow-catalog-intro .woocommerce-products-header__title.page-title,
body.tax-product_cat .flow-catalog-intro .woocommerce-products-header__title.page-title,
body.tax-product_tag .flow-catalog-intro .woocommerce-products-header__title.page-title {
    margin-bottom: 0;
}

body.woocommerce-shop .flow-catalog-intro__main .woocommerce-ordering,
body.tax-product_cat .flow-catalog-intro__main .woocommerce-ordering,
body.tax-product_tag .flow-catalog-intro__main .woocommerce-ordering {
    flex: 0 0 auto;
    float: none;
    margin: 0;
}

body.woocommerce-shop .flow-catalog-pagination,
body.tax-product_cat .flow-catalog-pagination,
body.tax-product_tag .flow-catalog-pagination {
    display: flow-root;
    box-sizing: border-box;
    width: min(100%, 1200px);
    margin-inline: auto;
    padding: 0 24px 64px;
}

body.woocommerce-shop .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-breadcrumb,
body.tax-product_tag .woocommerce-breadcrumb {
    margin: 0 0 18px;
    color: var(--flow-catalog-muted);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
}

body.woocommerce-shop .woocommerce-breadcrumb a,
body.tax-product_cat .woocommerce-breadcrumb a,
body.tax-product_tag .woocommerce-breadcrumb a {
    color: var(--flow-catalog-accent-dark);
    text-decoration: none;
    transition: color 180ms ease;
}

body.woocommerce-shop .woocommerce-breadcrumb a:hover,
body.woocommerce-shop .woocommerce-breadcrumb a:focus-visible,
body.tax-product_cat .woocommerce-breadcrumb a:hover,
body.tax-product_cat .woocommerce-breadcrumb a:focus-visible,
body.tax-product_tag .woocommerce-breadcrumb a:hover,
body.tax-product_tag .woocommerce-breadcrumb a:focus-visible {
    color: var(--flow-catalog-accent);
}

body.woocommerce-shop .woocommerce-breadcrumb a:focus-visible,
body.tax-product_cat .woocommerce-breadcrumb a:focus-visible,
body.tax-product_tag .woocommerce-breadcrumb a:focus-visible {
    border-radius: 2px;
    outline: 2px solid rgba(10, 186, 181, 0.3);
    outline-offset: 3px;
}

body.woocommerce-shop .woocommerce-products-header__title.page-title,
body.tax-product_cat .woocommerce-products-header__title.page-title,
body.tax-product_tag .woocommerce-products-header__title.page-title {
    margin: 0 0 28px;
    color: var(--flow-catalog-strong);
    font-family: inherit;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

body.woocommerce-shop .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_tag .woocommerce-result-count {
    display: flex;
    align-items: center;
    float: left;
    min-height: 42px;
    margin: 0 0 28px;
    padding: 0;
    color: var(--flow-catalog-muted);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
}

body.woocommerce-shop .woocommerce-ordering,
body.tax-product_cat .woocommerce-ordering,
body.tax-product_tag .woocommerce-ordering {
    position: relative;
    float: right;
    margin: 0 0 28px;
}

body.woocommerce-shop .woocommerce-ordering::after,
body.tax-product_cat .woocommerce-ordering::after,
body.tax-product_tag .woocommerce-ordering::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--flow-catalog-accent-dark);
    border-bottom: 1.5px solid var(--flow-catalog-accent-dark);
    pointer-events: none;
    transform: translateY(-68%) rotate(45deg);
}

body.woocommerce-shop .woocommerce-ordering select,
body.tax-product_cat .woocommerce-ordering select,
body.tax-product_tag .woocommerce-ordering select {
    width: auto;
    min-width: 240px;
    height: 42px;
    margin: 0;
    padding: 0 40px 0 12px;
    border: 1px solid var(--flow-catalog-border);
    border-radius: 4px;
    outline: none;
    appearance: none;
    background: var(--flow-catalog-bg);
    color: var(--flow-catalog-text);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

body.woocommerce-shop .woocommerce-ordering select:hover,
body.tax-product_cat .woocommerce-ordering select:hover,
body.tax-product_tag .woocommerce-ordering select:hover {
    border-color: var(--flow-catalog-accent);
}

body.woocommerce-shop .woocommerce-ordering select:focus-visible,
body.tax-product_cat .woocommerce-ordering select:focus-visible,
body.tax-product_tag .woocommerce-ordering select:focus-visible {
    border-color: var(--flow-catalog-accent-dark);
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.14);
}

body.woocommerce-shop .flow-catalog-intro__main .woocommerce-ordering.flow-catalog-ordering--enhanced,
body.tax-product_cat .flow-catalog-intro__main .woocommerce-ordering.flow-catalog-ordering--enhanced,
body.tax-product_tag .flow-catalog-intro__main .woocommerce-ordering.flow-catalog-ordering--enhanced {
    width: min(320px, 100%);
}

body.woocommerce-shop .woocommerce-ordering.flow-catalog-ordering--enhanced::after,
body.tax-product_cat .woocommerce-ordering.flow-catalog-ordering--enhanced::after,
body.tax-product_tag .woocommerce-ordering.flow-catalog-ordering--enhanced::after {
    content: none;
    display: none;
}

.woocommerce-ordering.flow-catalog-ordering--enhanced > select[name="orderby"] {
    display: none !important;
}

.flow-catalog-ordering {
    position: relative;
    width: 100%;
    font-family: "Roboto Flex", Sans-serif;
}

.flow-catalog-ordering__trigger {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-sizing: border-box;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 42px;
    margin: 0 !important;
    padding: 9px 14px !important;
    border: 1px solid var(--flow-catalog-border) !important;
    border-radius: 4px !important;
    outline: none;
    appearance: none;
    background: var(--flow-catalog-bg) !important;
    color: var(--flow-catalog-text) !important;
    font: inherit !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    text-align: left;
    cursor: pointer;
    box-shadow: none !important;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.flow-catalog-ordering__trigger:hover {
    border-color: var(--flow-catalog-accent) !important;
}

.flow-catalog-ordering__trigger:focus-visible,
.flow-catalog-ordering__trigger[aria-expanded="true"] {
    border-color: var(--flow-catalog-accent-dark) !important;
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.14) !important;
}

.flow-catalog-ordering__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flow-catalog-ordering__arrow {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin: -4px 2px 0 0;
    border-right: 1.5px solid var(--flow-catalog-accent-dark);
    border-bottom: 1.5px solid var(--flow-catalog-accent-dark);
    transform: rotate(45deg);
    transition: margin 180ms ease, transform 180ms ease;
}

.flow-catalog-ordering__trigger[aria-expanded="true"] .flow-catalog-ordering__arrow {
    margin-top: 4px;
    transform: rotate(225deg);
}

.flow-catalog-ordering__list {
    position: absolute;
    z-index: 30;
    top: calc(100% + 6px);
    right: 0;
    box-sizing: border-box;
    width: 100%;
    max-height: min(320px, 60vh);
    overflow-y: auto;
    padding: 4px;
    border: 1px solid var(--flow-catalog-border);
    border-radius: 4px;
    background: var(--flow-catalog-bg);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
    animation: flow-catalog-ordering-open 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-catalog-ordering__list[hidden] {
    display: none !important;
}

.flow-catalog-ordering__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-sizing: border-box;
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 3px;
    color: var(--flow-catalog-text);
    font-size: 14px;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
}

.flow-catalog-ordering__option[aria-selected="true"] {
    background: var(--flow-catalog-soft);
    color: var(--flow-catalog-accent-dark);
    font-weight: 600;
}

.flow-catalog-ordering__option[aria-selected="true"]::after {
    content: "\2713";
    flex: 0 0 auto;
    color: var(--flow-catalog-accent-dark);
    font-size: 14px;
    font-weight: 700;
}

.flow-catalog-ordering__option:hover,
.flow-catalog-ordering__option:focus-visible {
    outline: none;
    background: var(--flow-catalog-accent);
    color: #ffffff;
}

.flow-catalog-ordering__option[aria-selected="true"]:hover,
.flow-catalog-ordering__option[aria-selected="true"]:focus-visible,
.flow-catalog-ordering__option[aria-selected="true"]:hover::after,
.flow-catalog-ordering__option[aria-selected="true"]:focus-visible::after {
    color: #ffffff;
}

@keyframes flow-catalog-ordering-open {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

/* Match the product grid already used by the Elementor product widgets on the homepage. */
body.woocommerce-shop ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    clear: both;
    column-gap: 20px;
    row-gap: 20px;
    margin: 0;
    padding: 0;
}

body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after,
body.tax-product_tag ul.products::before,
body.tax-product_tag ul.products::after {
    display: none;
    content: none;
}

body.woocommerce-shop ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product {
    float: none;
    width: auto;
    margin: 0 !important;
}

body.woocommerce-shop nav.woocommerce-pagination,
body.tax-product_cat nav.woocommerce-pagination,
body.tax-product_tag nav.woocommerce-pagination {
    clear: both;
    margin: 36px 0 0;
    text-align: center;
}

body.woocommerce-shop nav.woocommerce-pagination ul.page-numbers,
body.tax-product_cat nav.woocommerce-pagination ul.page-numbers,
body.tax-product_tag nav.woocommerce-pagination ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

body.woocommerce-shop nav.woocommerce-pagination ul.page-numbers > li,
body.tax-product_cat nav.woocommerce-pagination ul.page-numbers > li,
body.tax-product_tag nav.woocommerce-pagination ul.page-numbers > li {
    float: none;
    margin: 0;
    padding: 0;
    border: 0;
}

body.woocommerce-shop nav.woocommerce-pagination .page-numbers li > a,
body.woocommerce-shop nav.woocommerce-pagination .page-numbers li > span,
body.tax-product_cat nav.woocommerce-pagination .page-numbers li > a,
body.tax-product_cat nav.woocommerce-pagination .page-numbers li > span,
body.tax-product_tag nav.woocommerce-pagination .page-numbers li > a,
body.tax-product_tag nav.woocommerce-pagination .page-numbers li > span {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid var(--flow-catalog-border);
    border-radius: 4px;
    background: var(--flow-catalog-bg);
    color: var(--flow-catalog-text);
    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

body.woocommerce-shop nav.woocommerce-pagination .page-numbers li > a:hover,
body.woocommerce-shop nav.woocommerce-pagination .page-numbers li > a:focus-visible,
body.tax-product_cat nav.woocommerce-pagination .page-numbers li > a:hover,
body.tax-product_cat nav.woocommerce-pagination .page-numbers li > a:focus-visible,
body.tax-product_tag nav.woocommerce-pagination .page-numbers li > a:hover,
body.tax-product_tag nav.woocommerce-pagination .page-numbers li > a:focus-visible {
    border-color: var(--flow-catalog-accent);
    background: var(--flow-catalog-soft);
    color: var(--flow-catalog-accent-dark);
}

body.woocommerce-shop nav.woocommerce-pagination .page-numbers li > a:focus-visible,
body.tax-product_cat nav.woocommerce-pagination .page-numbers li > a:focus-visible,
body.tax-product_tag nav.woocommerce-pagination .page-numbers li > a:focus-visible {
    outline: 2px solid rgba(10, 186, 181, 0.3);
    outline-offset: 2px;
}

body.woocommerce-shop nav.woocommerce-pagination .page-numbers li > span.current,
body.tax-product_cat nav.woocommerce-pagination .page-numbers li > span.current,
body.tax-product_tag nav.woocommerce-pagination .page-numbers li > span.current {
    border-color: var(--flow-catalog-accent);
    background: var(--flow-catalog-accent);
    color: #ffffff;
}

body.woocommerce-shop nav.woocommerce-pagination .page-numbers li > span.dots,
body.tax-product_cat nav.woocommerce-pagination .page-numbers li > span.dots,
body.tax-product_tag nav.woocommerce-pagination .page-numbers li > span.dots {
    min-width: 24px;
    padding-inline: 4px;
    border-color: transparent;
    background: transparent;
}

@media (max-width: 1024px) {
    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 40px;
    }
}

@media (max-width: 767px) {
    body.woocommerce-shop .site-main,
    body.tax-product_cat .site-main,
    body.tax-product_tag .site-main {
        padding: 24px 16px 48px;
    }

    body.woocommerce-shop .flow-catalog-intro,
    body.tax-product_cat .flow-catalog-intro,
    body.tax-product_tag .flow-catalog-intro {
        padding: 24px 16px 20px;
    }

    body.woocommerce-shop .flow-catalog-intro__main,
    body.tax-product_cat .flow-catalog-intro__main,
    body.tax-product_tag .flow-catalog-intro__main {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    body.woocommerce-shop .flow-catalog-intro__main .woocommerce-ordering,
    body.tax-product_cat .flow-catalog-intro__main .woocommerce-ordering,
    body.tax-product_tag .flow-catalog-intro__main .woocommerce-ordering {
        width: 100%;
        margin: 0;
    }

    body.woocommerce-shop .flow-catalog-intro__main .woocommerce-ordering.flow-catalog-ordering--enhanced,
    body.tax-product_cat .flow-catalog-intro__main .woocommerce-ordering.flow-catalog-ordering--enhanced,
    body.tax-product_tag .flow-catalog-intro__main .woocommerce-ordering.flow-catalog-ordering--enhanced {
        width: 100%;
    }

    body.woocommerce-shop .flow-catalog-pagination,
    body.tax-product_cat .flow-catalog-pagination,
    body.tax-product_tag .flow-catalog-pagination {
        padding: 0 16px 48px;
    }

    body.woocommerce-shop .woocommerce-breadcrumb,
    body.tax-product_cat .woocommerce-breadcrumb,
    body.tax-product_tag .woocommerce-breadcrumb {
        margin-bottom: 14px;
        font-size: 13px;
    }

    body.woocommerce-shop .woocommerce-products-header__title.page-title,
    body.tax-product_cat .woocommerce-products-header__title.page-title,
    body.tax-product_tag .woocommerce-products-header__title.page-title {
        margin-bottom: 20px;
        font-size: 26px;
    }

    body.woocommerce-shop .woocommerce-result-count,
    body.tax-product_cat .woocommerce-result-count,
    body.tax-product_tag .woocommerce-result-count {
        float: none;
        min-height: 0;
        margin-bottom: 12px;
        font-size: 13px;
    }

    body.woocommerce-shop .woocommerce-ordering,
    body.tax-product_cat .woocommerce-ordering,
    body.tax-product_tag .woocommerce-ordering {
        float: none;
        width: 100%;
        margin-bottom: 24px;
    }

    body.woocommerce-shop .woocommerce-ordering select,
    body.tax-product_cat .woocommerce-ordering select,
    body.tax-product_tag .woocommerce-ordering select {
        width: 100%;
        min-width: 0;
    }

    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.woocommerce-shop nav.woocommerce-pagination,
    body.tax-product_cat nav.woocommerce-pagination,
    body.tax-product_tag nav.woocommerce-pagination {
        margin-top: 28px;
    }

    body.woocommerce-shop nav.woocommerce-pagination ul.page-numbers,
    body.tax-product_cat nav.woocommerce-pagination ul.page-numbers,
    body.tax-product_tag nav.woocommerce-pagination ul.page-numbers {
        gap: 4px;
    }

    body.woocommerce-shop nav.woocommerce-pagination .page-numbers li > a,
    body.woocommerce-shop nav.woocommerce-pagination .page-numbers li > span,
    body.tax-product_cat nav.woocommerce-pagination .page-numbers li > a,
    body.tax-product_cat nav.woocommerce-pagination .page-numbers li > span,
    body.tax-product_tag nav.woocommerce-pagination .page-numbers li > a,
    body.tax-product_tag nav.woocommerce-pagination .page-numbers li > span {
        min-width: 36px;
        height: 36px;
        padding-inline: 10px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.woocommerce-shop .woocommerce-breadcrumb a,
    body.tax-product_cat .woocommerce-breadcrumb a,
    body.tax-product_tag .woocommerce-breadcrumb a,
    body.woocommerce-shop .woocommerce-ordering select,
    body.tax-product_cat .woocommerce-ordering select,
    body.tax-product_tag .woocommerce-ordering select,
    body.woocommerce-shop nav.woocommerce-pagination .page-numbers li > a,
    body.tax-product_cat nav.woocommerce-pagination .page-numbers li > a,
    body.tax-product_tag nav.woocommerce-pagination .page-numbers li > a {
        transition: none;
    }

    .flow-catalog-ordering__trigger,
    .flow-catalog-ordering__arrow {
        transition: none;
    }

    .flow-catalog-ordering__list {
        animation: none;
    }
}

/* WooCommerce single product page */
body.single-product {
    --flow-product-page-accent: var(--e-global-color-primary, #08b0ac);
    --flow-product-page-accent-dark: #07918d;
    --flow-product-page-text: var(--e-global-color-text, #121212);
    --flow-product-page-muted: var(--e-global-color-secondary, #717186);
    --flow-product-page-border: rgba(113, 113, 134, 0.23);
    --flow-product-page-bg: var(--e-global-color-88ac8ae, #ffffff);
    --flow-product-page-soft: #f5fbfb;
    --flow-product-page-sale: var(--e-global-color-8182641, #ee7d7d);
}

body.single-product .site-main {
    width: min(100%, 1140px);
    padding: 32px 24px 56px;
}

body.single-product .woocommerce-breadcrumb {
    margin: 0 0 18px;
    color: var(--flow-product-page-muted);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 14px;
    line-height: 1.3;
}

body.single-product .woocommerce-breadcrumb a {
    color: var(--flow-product-page-accent-dark);
    text-decoration: none;
}

body.single-product .woocommerce-breadcrumb a:hover,
body.single-product .woocommerce-breadcrumb a:focus-visible {
    color: var(--flow-product-page-accent);
}

body.single-product .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
}

body.single-product .woocommerce-notices-wrapper:empty {
    display: none;
}

body.single-product .woocommerce-message,
body.single-product .woocommerce-info,
body.single-product .woocommerce-error {
    border-top: 0;
    border-radius: 8px;
    background: var(--flow-product-page-bg);
    color: var(--flow-product-page-text);
    box-shadow: inset 0 0 0 1px var(--flow-product-page-border);
    font-family: "Roboto Flex", Sans-serif;
}

body.single-product .woocommerce-notices-wrapper > .woocommerce-message {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
    width: 100%;
    min-height: 64px;
    margin: 0 0 24px !important;
    padding: 12px 14px 12px 48px !important;
    border: 0 !important;
    border-left: 4px solid var(--flow-product-page-accent) !important;
    border-radius: 4px !important;
    background: var(--flow-product-page-soft) !important;
    color: var(--flow-product-page-text) !important;
    font-family: "Roboto Flex", Sans-serif !important;
    font-size: 15px;
    line-height: 1.4;
    list-style: none;
    text-align: left !important;
    box-shadow: none !important;
}

html body.single-product.woocommerce .site-main .woocommerce-notices-wrapper > .woocommerce-message,
html body.single-product.woocommerce-page .site-main .woocommerce-notices-wrapper > .woocommerce-message {
    border-top: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 4px solid var(--flow-product-page-accent) !important;
    outline: 0 !important;
    box-shadow: none !important;
}

body.single-product .woocommerce-notices-wrapper > .woocommerce-message::before {
    content: "\2713" !important;
    position: absolute !important;
    top: 50% !important;
    left: 16px !important;
    display: grid !important;
    place-items: center;
    width: 20px;
    height: 20px;
    margin: 0 !important;
    border-radius: 50%;
    background: var(--flow-product-page-accent);
    color: #ffffff !important;
    font-family: "Roboto Flex", Sans-serif !important;
    font-size: 13px !important;
    font-weight: 800;
    line-height: 1 !important;
    transform: translateY(-50%);
}

body.single-product .woocommerce-notices-wrapper > .woocommerce-message::after {
    content: none !important;
    display: none !important;
}

body.single-product .woocommerce-notices-wrapper > .woocommerce-message > a.button.wc-forward {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    float: none !important;
    box-sizing: border-box;
    min-height: 40px;
    margin: 0 0 0 auto !important;
    padding: 9px 14px !important;
    border: 1px solid var(--flow-product-page-accent) !important;
    border-radius: 4px !important;
    background: var(--flow-product-page-accent) !important;
    color: #ffffff !important;
    font-family: "Roboto Flex", Sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: none !important;
    transition: border-color 180ms ease, background-color 180ms ease;
}

body.single-product .woocommerce-notices-wrapper > .woocommerce-message > a.button.wc-forward:hover {
    border-color: var(--flow-product-page-accent-dark) !important;
    background: var(--flow-product-page-accent-dark) !important;
    color: #ffffff !important;
}

body.single-product .woocommerce-notices-wrapper > .woocommerce-message > a.button.wc-forward:focus-visible {
    border-color: var(--flow-product-page-accent-dark) !important;
    background: var(--flow-product-page-accent-dark) !important;
    color: #ffffff !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 176, 172, 0.2) !important;
}

@media (prefers-reduced-motion: reduce) {
    body.single-product .woocommerce-notices-wrapper > .woocommerce-message > a.button.wc-forward {
        transition: none;
    }
}

.woocommerce.single-product div.product,
.single-product .woocommerce div.product,
.single-product div.product {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    align-items: start;
    gap: 28px;
    color: var(--flow-product-page-text);
}

.woocommerce.single-product div.product::before,
.woocommerce.single-product div.product::after,
.single-product .woocommerce div.product::before,
.single-product .woocommerce div.product::after,
.single-product div.product::before,
.single-product div.product::after {
    content: none;
}

.woocommerce.single-product div.product div.images,
.woocommerce.single-product div.product div.summary,
.single-product .woocommerce div.product div.images,
.single-product .woocommerce div.product div.summary,
.single-product div.product div.images,
.single-product div.product div.summary {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.single-product .woocommerce-product-gallery {
    overflow: hidden;
    padding: 16px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
}

.single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.single-product .woocommerce-product-gallery img {
    display: block;
    width: 100%;
    border-radius: 6px;
}

.single-product .woocommerce-product-gallery__trigger {
    top: 24px !important;
    right: 24px !important;
    border-radius: 999px;
    background: var(--flow-product-page-soft);
    color: var(--flow-product-page-accent-dark);
    box-shadow: inset 0 0 0 1px rgba(8, 176, 172, 0.18);
}

.single-product div.product .summary.entry-summary {
    padding: 24px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
}

.single-product div.product .product_title {
    margin: 0 0 14px;
    color: var(--flow-product-page-text);
    font-family: "Roboto Flex", Sans-serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
}

.single-product div.product p.price,
.single-product div.product span.price {
    margin: 0 0 18px;
    color: var(--flow-product-page-accent);
    font-family: "Roboto Flex", Sans-serif;
    font-size: clamp(28px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.1;
}

.single-product div.product p.price .flow-sale-price,
.single-product div.product span.price .flow-sale-price {
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.single-product div.product p.price .flow-sale-price__current,
.single-product div.product span.price .flow-sale-price__current {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    font-size: clamp(28px, 3vw, 34px);
    font-weight: 600;
}

.single-product div.product .woocommerce-product-details__short-description {
    margin: 0 0 22px;
    color: var(--flow-product-page-muted);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.single-product div.product form.cart {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    margin: 22px 0 0 !important;
}

.single-product div.product form.cart .quantity {
    display: flex;
    flex: 0 0 92px;
    margin: 0 !important;
}

.single-product div.product form.cart .qty {
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 0 8px 0 12px;
    border: 1px solid rgba(8, 176, 172, 0.24);
    border-radius: 8px;
    background: var(--flow-product-page-soft);
    color: var(--flow-product-page-text);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    box-shadow: none;
    appearance: auto;
}

.single-product div.product form.cart .qty::-webkit-outer-spin-button,
.single-product div.product form.cart .qty::-webkit-inner-spin-button {
    margin: 0;
    opacity: 1;
    appearance: auto;
}

.single-product div.product form.cart .qty:focus {
    border-color: rgba(8, 176, 172, 0.42);
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 176, 172, 0.08);
}

.single-product div.product form.cart .button,
.single-product div.product form.cart .single_add_to_cart_button,
.single-product div.product form.cart .flow-single-product__quick-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 48px;
    margin: 0 !important;
    padding: 12px 22px !important;
    border-radius: 8px !important;
    font-family: "Roboto Flex", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none !important;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.single-product div.product form.cart .button,
.single-product div.product form.cart .single_add_to_cart_button {
    flex: 1 1 auto;
    border: 1px solid var(--flow-product-page-accent) !important;
    background: var(--flow-product-page-accent) !important;
    color: #ffffff !important;
}

.single-product div.product form.cart .button:hover,
.single-product div.product form.cart .button:focus-visible,
.single-product div.product form.cart .single_add_to_cart_button:hover,
.single-product div.product form.cart .single_add_to_cart_button:focus-visible {
    border-color: var(--flow-product-page-accent-dark) !important;
    background: var(--flow-product-page-accent-dark) !important;
    color: #ffffff !important;
    outline: none;
}

.single-product div.product form.cart .flow-single-product__quick-order {
    flex: 0 1 148px;
    border: 1px solid rgba(8, 176, 172, 0.28) !important;
    background: rgba(8, 176, 172, 0.08) !important;
    color: var(--flow-product-page-accent-dark) !important;
    cursor: pointer;
}

.single-product div.product form.cart .flow-single-product__quick-order:hover,
.single-product div.product form.cart .flow-single-product__quick-order:focus-visible {
    border-color: rgba(8, 176, 172, 0.42) !important;
    background: rgba(8, 176, 172, 0.14) !important;
    color: #067a76 !important;
    outline: none;
}

.single-product div.product .flow-product-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    margin: 26px 0 0;
    padding: 22px 0 20px;
    border-top: 1px solid rgba(8, 176, 172, 0.14);
    border-bottom: 1px solid rgba(8, 176, 172, 0.1);
}

.single-product div.product .flow-product-delivery {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--flow-product-page-text);
    font-family: "Roboto Flex", Sans-serif;
    box-shadow: none;
}

.single-product div.product .flow-product-delivery::before {
    display: none;
}

.single-product div.product .flow-product-delivery__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    color: var(--flow-product-page-text);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.single-product div.product .flow-product-delivery__icon {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    inline-size: 28px;
    block-size: 28px;
    border-radius: 7px;
    background: rgba(8, 176, 172, 0.1);
    color: var(--flow-product-page-accent-dark);
    box-shadow: none;
}

.single-product div.product .flow-product-delivery__icon-svg {
    display: block;
    inline-size: 17px;
    block-size: 17px;
    stroke: currentColor;
}

.single-product div.product .flow-product-delivery__body {
    display: grid;
    gap: 7px;
}

.single-product div.product .flow-product-delivery p {
    position: relative;
    display: block;
    margin: 0;
    padding: 0 0 0 22px;
    color: var(--flow-product-page-muted);
    font-size: 14px;
    line-height: 1.45;
}

.single-product div.product .flow-product-delivery p + p {
    border-top: 0;
}

.single-product div.product .flow-product-delivery p::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 2px;
    display: block;
    inline-size: 8px;
    block-size: 8px;
    margin: 0;
    border-radius: 999px;
    background: var(--flow-product-page-accent);
    box-shadow: 0 0 0 4px rgba(8, 176, 172, 0.1);
}

.single-product div.product .flow-product-delivery p:first-child::before {
    margin-left: 0;
}

.single-product div.product .flow-product-delivery strong {
    display: inline-block;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(8, 176, 172, 0.1);
    color: var(--flow-product-page-accent-dark);
    font-weight: 700;
}

.single-product div.product .flow-product-payment {
    margin: 0;
    padding: 18px 0 0;
    border: 0;
    border-top: 1px solid rgba(8, 176, 172, 0.1);
    border-radius: 0;
    background: transparent;
    color: var(--flow-product-page-text);
    font-family: "Roboto Flex", Sans-serif;
    box-shadow: none;
}

.single-product div.product .flow-product-payment__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--flow-product-page-text);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.single-product div.product .flow-product-payment__icon {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    inline-size: 28px;
    block-size: 28px;
    border-radius: 7px;
    background: rgba(8, 176, 172, 0.1);
    color: var(--flow-product-page-accent-dark);
}

.single-product div.product .flow-product-payment__icon-svg {
    display: block;
    inline-size: 17px;
    block-size: 17px;
    stroke: currentColor;
}

.single-product div.product .flow-product-payment__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.single-product div.product .flow-product-payment__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 7px 10px;
    border: 0;
    border-radius: 8px;
    background: rgba(8, 176, 172, 0.045);
}

.single-product div.product .flow-product-payment__logo {
    display: block;
    width: auto;
    height: 22px;
    max-width: 112px;
    max-height: 24px;
    object-fit: contain;
}

.single-product div.product .flow-product-payment__item--visa .flow-product-payment__logo,
.single-product div.product .flow-product-payment__item--western_union .flow-product-payment__logo {
    height: 24px;
}

.single-product div.product .flow-product-payment__item--mastercard .flow-product-payment__logo {
    height: 24px;
}

.single-product div.product .stock {
    color: var(--flow-product-page-accent-dark);
    font-family: "Roboto Flex", Sans-serif;
    font-weight: 600;
}

.single-product div.product .stock.in-stock {
    display: none;
}

.single-product div.product .out-of-stock {
    color: var(--flow-product-page-sale);
}

.single-product div.product .summary.entry-summary > .wSelect,
.single-product div.product .summary.entry-summary > select[name="alg_currency"],
.single-product div.product .summary.entry-summary > form[action*="alg_currency"],
.single-product div.product .summary.entry-summary > .alg-wc-currency-switcher,
.single-product div.product .summary.entry-summary > .alg_currency_switcher,
.single-product div.product .summary.entry-summary > .woocommerce-currency-switcher,
.single-product div.product .summary.entry-summary > [id^="alg_currency"],
.single-product div.product .summary.entry-summary > [class^="alg_currency"] {
    display: none !important;
}

.single-product div.product .product_meta {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding-top: 0;
    border-top: 0;
    color: var(--flow-product-page-muted);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.single-product div.product .product_meta .sku_wrapper {
    display: none !important;
}

.single-product div.product .product_meta a {
    color: var(--flow-product-page-accent-dark);
    text-decoration: none;
}

.single-product div.product .product_meta a:hover,
.single-product div.product .product_meta a:focus-visible {
    color: var(--flow-product-page-accent);
}

.single-product div.product .woocommerce-tabs,
.single-product div.product .related.products,
.single-product div.product .upsells.products {
    grid-column: 1 / -1;
}

.single-product div.product .woocommerce-tabs {
    margin-top: 28px;
    border: 1px solid var(--flow-product-page-border);
    border-radius: 8px;
    background: var(--flow-product-page-bg);
    overflow: hidden;
}

.single-product div.product .woocommerce-tabs ul.tabs {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid var(--flow-product-page-border);
}

.single-product div.product .woocommerce-tabs ul.tabs::before,
.single-product div.product .woocommerce-tabs ul.tabs li::before,
.single-product div.product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.single-product div.product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.single-product div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 14px 18px;
    color: var(--flow-product-page-muted);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.single-product div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--flow-product-page-text);
    background: var(--flow-product-page-soft);
    box-shadow: inset 0 -2px 0 var(--flow-product-page-accent);
}

.single-product div.product .woocommerce-Tabs-panel {
    margin: 0 !important;
    padding: 22px 24px;
    color: var(--flow-product-page-text);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.single-product div.product .woocommerce-Tabs-panel > h2,
.single-product div.product .related.products > h2,
.single-product div.product .upsells.products > h2 {
    margin: 0 0 18px;
    color: var(--flow-product-page-text);
    font-family: "Roboto Flex", Sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.single-product div.product .related.products,
.single-product div.product .upsells.products {
    margin-top: 34px;
}

.single-product div.product .woocommerce-tabs li.reviews_tab,
.single-product div.product .woocommerce-tabs #tab-reviews,
.single-product div.product #reviews,
.single-product div.product #comments,
.single-product div.product #review_form_wrapper {
    display: none !important;
}

.single-product div.product .related.products ul.products,
.single-product div.product .upsells.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-product div.product .related.products ul.products::before,
.single-product div.product .related.products ul.products::after,
.single-product div.product .upsells.products ul.products::before,
.single-product div.product .upsells.products ul.products::after {
    display: none !important;
    content: none !important;
}

.single-product div.product .related.products ul.products li.product,
.single-product div.product .upsells.products ul.products li.product {
    display: flex !important;
    float: none !important;
    flex-direction: column;
    width: auto !important;
    margin: 0 !important;
    padding: 12px !important;
}

.single-product div.product .related.products ul.products li.product .woocommerce-LoopProduct-link,
.single-product div.product .upsells.products ul.products li.product .woocommerce-LoopProduct-link {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.single-product div.product .related.products ul.products li.product a img,
.single-product div.product .upsells.products ul.products li.product a img {
    width: 100%;
    max-width: 100%;
    height: clamp(220px, 20vw, 255px);
    margin: 0 auto 12px !important;
    object-fit: contain;
}

.single-product div.product .related.products ul.products li.product .woocommerce-loop-product__title,
.single-product div.product .upsells.products ul.products li.product .woocommerce-loop-product__title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin: 0 !important;
    padding: 0 !important;
}

.single-product div.product .related.products ul.products li.product .flow-product-card__purchase,
.single-product div.product .upsells.products ul.products li.product .flow-product-card__purchase {
    margin-top: 14px;
}

@media (max-width: 900px) {
    .woocommerce.single-product div.product,
    .single-product .woocommerce div.product,
    .single-product div.product {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .single-product div.product .summary.entry-summary {
        padding: 18px;
    }

    .single-product div.product .related.products ul.products,
    .single-product div.product .upsells.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-product div.product .related.products ul.products li.product a img,
    .single-product div.product .upsells.products ul.products li.product a img {
        height: clamp(210px, 40vw, 245px);
    }
}

@media (max-width: 767px) {
    body.single-product .site-main {
        padding: 20px 12px 40px;
    }

    body.single-product .woocommerce-notices-wrapper > .woocommerce-message {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        min-height: 0;
        margin-bottom: 20px !important;
        padding: 14px 14px 14px 44px !important;
        font-size: 14px;
    }

    body.single-product .woocommerce-notices-wrapper > .woocommerce-message::before {
        top: 14px !important;
        left: 14px !important;
        transform: none;
    }

    body.single-product .woocommerce-notices-wrapper > .woocommerce-message > a.button.wc-forward {
        width: 100%;
        margin: 0 !important;
    }

    .single-product .woocommerce-product-gallery {
        padding: 12px;
    }

    .single-product div.product form.cart {
        flex-wrap: wrap;
        gap: 10px;
    }

    .single-product div.product form.cart .quantity {
        flex-basis: 82px;
    }

    .single-product div.product form.cart .qty {
        width: 100%;
    }

    .single-product div.product form.cart .button,
    .single-product div.product form.cart .single_add_to_cart_button {
        flex: 1 1 calc(100% - 92px);
    }

    .single-product div.product form.cart .flow-single-product__quick-order {
        flex: 1 1 100%;
    }

    .single-product div.product .flow-product-info-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        margin-top: 22px;
        padding: 18px 0;
    }

    .single-product div.product .flow-product-payment__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .single-product div.product .flow-product-payment__item {
        min-height: 40px;
        padding-right: 8px;
        padding-left: 8px;
    }

    .single-product div.product .woocommerce-tabs ul.tabs {
        overflow-x: auto;
    }

    .single-product div.product .woocommerce-tabs ul.tabs li {
        flex: 0 0 auto;
    }

    .single-product div.product .woocommerce-Tabs-panel {
        padding: 18px;
    }
}

@media (max-width: 520px) {
    .single-product div.product .flow-product-payment__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-product div.product .related.products ul.products,
    .single-product div.product .upsells.products ul.products {
        grid-template-columns: minmax(0, 1fr);
    }
}

.woocommerce ul.products li.product .flow-product-card__purchase .price .flow-sale-price,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__purchase .price .flow-sale-price,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__purchase .price .flow-sale-price {
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
}

.woocommerce ul.products li.product .flow-product-card__purchase .price .flow-sale-price__current,
.elementor-widget-woocommerce-products ul.products li.product .flow-product-card__purchase .price .flow-sale-price__current,
.elementor-widget-wc-archive-products ul.products li.product .flow-product-card__purchase .price .flow-sale-price__current {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 767px) {
    .woocommerce ul.products li.product .price .flow-sale-price__regular,
    .elementor-widget-woocommerce-products ul.products li.product .price .flow-sale-price__regular,
    .elementor-widget-wc-archive-products ul.products li.product .price .flow-sale-price__regular {
        font-size: 14px;
    }

    .woocommerce ul.products li.product .price .flow-sale-price__current,
    .elementor-widget-woocommerce-products ul.products li.product .price .flow-sale-price__current,
    .elementor-widget-wc-archive-products ul.products li.product .price .flow-sale-price__current {
        font-size: 23px;
    }
}

@media (max-width: 1100px) {
    .flow-header-account__label {
        display: none;
    }
}

@media (max-width: 1024px) {
    .flow-header-messenger {
        border-radius: 12px;
    }

    .flow-header-account {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .flow-header-messengers {
        gap: 6px;
    }

    .flow-header-messenger {
        inline-size: 2.25rem;
        block-size: 2.25rem;
    }

    .flow-header-messenger__icon {
        inline-size: 58%;
        block-size: 58%;
    }

    .flow-header-account__label {
        display: none;
    }
}

@media (max-width: 1024px) {
    .flow-site-header {
        --flow-header-left-column: 13.125rem;
        --flow-header-right-column: 21rem;
        --flow-header-column-gap: 0.875rem;
    }

    .flow-site-header__inner {
        padding-right: 18px;
        padding-left: 18px;
    }

    .flow-site-header__top-inner {
        grid-template-columns:
            var(--flow-header-left-column)
            minmax(0, 1fr)
            var(--flow-header-right-column);
    }

    .flow-site-header__top-right {
        gap: 18px;
    }

    .flow-site-header__main-inner {
        grid-template-columns:
            var(--flow-header-left-column)
            minmax(0, 1fr)
            var(--flow-header-right-column);
    }

    .flow-site-header__contacts {
        gap: 10px;
    }

    .flow-site-header__brand .custom-logo {
        max-inline-size: 210px;
    }

    .flow-header-benefit {
        min-height: 3.125rem;
    }
}

@media (max-width: 767px) {
    .flow-site-header__inner {
        padding-right: 14px;
        padding-left: 14px;
    }

    .flow-site-header__top-inner {
        grid-template-columns: 1fr auto;
        min-height: 64px;
    }

    .flow-site-header__top-center {
        display: none;
    }

    .flow-site-header__top-right .flow-switchers {
        display: none;
    }

    .flow-site-header__main-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 82px;
    }

    .flow-site-header__brand .custom-logo {
        max-inline-size: 170px;
    }

    .flow-site-header__benefits {
        display: none;
    }

    .flow-site-header__contacts {
        display: none;
    }

    .flow-site-header__main-right {
        min-width: 0;
    }

    .flow-site-header__nav {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .flow-site-header__nav::-webkit-scrollbar {
        display: none;
    }

    .flow-site-header__nav-inner {
        width: max-content;
        min-width: 100%;
        min-height: 44px;
    }

    .flow-site-header__menu {
        justify-content: flex-start;
        gap: 24px;
        min-width: max-content;
        min-height: 44px;
    }

    .flow-site-header__menu a,
    .flow-site-header__menu-placeholder {
        min-height: 44px;
        font-size: 14px;
    }

    .flow-header-cart {
        inline-size: 2.625rem;
        block-size: 2.625rem;
    }

    .flow-header-cart__icon {
        inline-size: 82%;
        block-size: 82%;
    }

}

.elementor-element-f7e21b8 .woocommerce-loop-category__title .count {
    display: none;
}

/* Тут можна додавати власні стилі */
