:root {
    --fnet-green: #54AE00;
    --fnet-green-light: #DAF1C6;
    --fnet-orange: #FF9900;
    --fnet-orange-light: #FFE9C9;
    --fnet-orange-soft: #FFF3DF;
    --fnet-background: #EEEEEE;
    --fnet-white: #FFFFFF;
    --fnet-text: #222222;
    --fnet-border: #222222;
    --fnet-radius: 8px;
    --fnet-radius-small: 5px;
    --fnet-shadow: 0 5px 16px rgba(0, 0, 0, 0.15);
    --fnet-shadow-hover: 0 8px 22px rgba(0, 0, 0, 0.20);
    --fnet-transition: all 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--fnet-text);
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

a {
    transition: var(--fnet-transition);
}

:focus-visible {
    outline: 2px solid var(--fnet-orange);
    outline-offset: 2px;
}

#header {
    position: relative;
    z-index: 100;
    min-height: 110px;
    border-radius: var(--fnet-radius);
    background-color: #DAF1C6;
    background-image:
        radial-gradient(
            ellipse 45% 85% at 8% 50%,
            rgba(84, 174, 0, 0.58),
            rgba(84, 174, 0, 0.20) 42%,
            transparent 75%
        ),
        radial-gradient(
            ellipse 42% 80% at 94% 30%,
            rgba(255, 153, 0, 0.55),
            rgba(255, 153, 0, 0.18) 43%,
            transparent 75%
        ),
        radial-gradient(
            ellipse 65% 55% at 50% 5%,
            rgba(177, 226, 109, 0.45),
            transparent 70%
        ),
        radial-gradient(
            ellipse 40% 70% at 72% 105%,
            rgba(255, 193, 55, 0.28),
            transparent 70%
        ),
        linear-gradient(
            120deg,
            #DAF1C6 0%,
            #EAF6D9 28%,
            #FFF3DF 65%,
            #FFE9C9 100%
        );
    background-size:
        140% 180%,
        135% 170%,
        150% 130%,
        130% 160%,
        100% 100%;
    background-position:
        0% 50%,
        100% 30%,
        50% 0%,
        70% 100%,
        0 0;
    animation: fnet-abstract-clouds 24s ease-in-out infinite alternate;
    overflow: visible !important;
    border: 1px solid rgba(84, 174, 0, 0.20);
}

@keyframes fnet-abstract-clouds {
    0% {
        background-position:
            0% 50%,
            100% 30%,
            50% 0%,
            70% 100%,
            0 0;
    }

    25% {
        background-position:
            18% 35%,
            82% 45%,
            40% 15%,
            55% 85%,
            0 0;
    }

    50% {
        background-position:
            35% 60%,
            65% 20%,
            60% 5%,
            80% 70%,
            0 0;
    }

    75% {
        background-position:
            20% 70%,
            85% 55%,
            35% 20%,
            60% 90%,
            0 0;
    }

    100% {
        background-position:
            45% 40%,
            55% 65%,
            70% 0%,
            40% 75%,
            0 0;
    }
}

#branding {
    position: relative;
    height: auto !important;
    background-image:
        repeating-linear-gradient(
            118deg,
            transparent 0,
            transparent 45px,
            rgba(84, 174, 0, 0.045) 46px,
            rgba(84, 174, 0, 0.045) 48px,
            transparent 49px,
            transparent 95px
        );
    background-size: 240px 240px;
    animation: fnet-data-stream 18s linear infinite;
}

#branding::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 110px;
    left: 3%;
    top: 50%;
    transform: translateY(-50%) rotate(-18deg);
    pointer-events: none;
    z-index: -1;
    border-radius:
        65% 35% 58% 42%
        /
        48% 62% 38% 52%;
    background:
        linear-gradient(
            135deg,
            rgba(84, 174, 0, 0.68),
            rgba(84, 174, 0, 0.20)
        );
    box-shadow:
        0 0 35px rgba(84, 174, 0, 0.28),
        inset 0 0 30px rgba(255,255,255,0.25);
    animation: fnet-blob-green 11s ease-in-out infinite;
}

@keyframes fnet-blob-green {
    0% {
        transform: translate(-5px, -50%) rotate(-18deg) scale(0.90);
        border-radius:
            65% 35% 58% 42%
            /
            48% 62% 38% 52%;
    }

    25% {
        transform: translate(20px, -55%) rotate(-8deg) scale(1.08);
        border-radius:
            45% 55% 35% 65%
            /
            62% 40% 60% 38%;
    }

    50% {
        transform: translate(5px, -44%) rotate(8deg) scale(0.95);
        border-radius:
            70% 30% 48% 52%
            /
            35% 65% 45% 55%;
    }

    75% {
        transform: translate(30px, -52%) rotate(-5deg) scale(1.10);
        border-radius:
            38% 62% 65% 35%
            /
            55% 35% 65% 45%;
    }

    100% {
        transform: translate(-5px, -50%) rotate(-18deg) scale(0.90);
    }
}

#branding::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 105px;
    right: 3%;
    top: 50%;
    transform: translateY(-50%) rotate(16deg);
    pointer-events: none;
    z-index: -1;
    border-radius:
        42% 58% 34% 66%
        /
        60% 40% 60% 40%;
    background:
        linear-gradient(
            135deg,
            rgba(255, 153, 0, 0.62),
            rgba(255, 153, 0, 0.18)
        );
    box-shadow:
        0 0 35px rgba(255, 153, 0, 0.28),
        inset 0 0 30px rgba(255,255,255,0.25);
    animation: fnet-blob-orange 13s ease-in-out infinite;
}

@keyframes fnet-blob-orange {
    0% {
        transform: translate(5px, -50%) rotate(16deg) scale(0.95);
    }

    25% {
        transform: translate(-25px, -45%) rotate(3deg) scale(1.08);
    }

    50% {
        transform: translate(-5px, -55%) rotate(-12deg) scale(0.92);
    }

    75% {
        transform: translate(-35px, -48%) rotate(8deg) scale(1.12);
    }

    100% {
        transform: translate(5px, -50%) rotate(16deg) scale(0.95);
    }
}

@keyframes fnet-data-stream {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 240px 240px;
    }
}

#site-title {
    position: relative;
    z-index: 20;
    width: 100% !important;
    margin: auto !important;
    padding: 5px !important;
    color: #000 !important;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255,255,255,0.9);
}

#site-description {
    position: relative;
    z-index: 20;
    width: 99% !important;
    margin: auto !important;
    padding: 5px !important;
    color: #000 !important;
    text-align: center !important;
    text-shadow: 0 1px 0 rgba(255,255,255,0.9);
}

#access {
    position: relative;
    z-index: 1000;
}

#footer2 {
    position: relative;
    z-index: 2;
    min-height: 120px;
    border-radius: var(--fnet-radius) !important;
    border: 1px solid rgba(255, 153, 0, 0.25);
    overflow: hidden;
    background-color: #FFE9C9;
    background-image:
        radial-gradient(
            ellipse 45% 85% at 7% 45%,
            rgba(255, 153, 0, 0.58),
            rgba(255, 153, 0, 0.20) 42%,
            transparent 75%
        ),
        radial-gradient(
            ellipse 43% 80% at 94% 65%,
            rgba(84, 174, 0, 0.56),
            rgba(84, 174, 0, 0.18) 42%,
            transparent 75%
        ),
        radial-gradient(
            ellipse 65% 55% at 50% 100%,
            rgba(255, 193, 55, 0.30),
            transparent 70%
        ),
        linear-gradient(
            120deg,
            #FFE9C9 0%,
            #FFF3DF 30%,
            #EAF6D9 68%,
            #DAF1C6 100%
        );
    background-size:
        140% 180%,
        135% 170%,
        150% 130%,
        100% 100%;
    background-position:
        0% 50%,
        100% 50%,
        50% 100%,
        0 0;
    animation: fnet-footer-clouds 27s ease-in-out infinite alternate;
}

@keyframes fnet-footer-clouds {
    0% {
        background-position:
            0% 50%,
            100% 50%,
            50% 100%,
            0 0;
    }

    25% {
        background-position:
            20% 35%,
            80% 65%,
            40% 85%,
            0 0;
    }

    50% {
        background-position:
            40% 60%,
            60% 35%,
            70% 100%,
            0 0;
    }

    75% {
        background-position:
            15% 70%,
            85% 45%,
            30% 90%,
            0 0;
    }

    100% {
        background-position:
            45% 40%,
            55% 70%,
            65% 80%,
            0 0;
    }
}

#footer2::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 105px;
    left: 3%;
    top: 50%;
    transform: translateY(-50%) rotate(14deg);
    pointer-events: none;
    border-radius:
        60% 40% 70% 30%
        /
        40% 65% 35% 60%;
    background:
        linear-gradient(
            135deg,
            rgba(255, 153, 0, 0.55),
            rgba(255, 153, 0, 0.15)
        );
    box-shadow:
        0 0 35px rgba(255, 153, 0, 0.28),
        inset 0 0 30px rgba(255,255,255,0.25);
    animation: fnet-footer-blob-orange 12s ease-in-out infinite;
}

#footer2::after {
    content: "";
    position: absolute;
    width: 175px;
    height: 105px;
    right: 3%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    pointer-events: none;
    border-radius:
        35% 65% 45% 55%
        /
        60% 35% 65% 40%;
    background:
        linear-gradient(
            135deg,
            rgba(84, 174, 0, 0.55),
            rgba(84, 174, 0, 0.15)
        );
    box-shadow:
        0 0 35px rgba(84, 174, 0, 0.28),
        inset 0 0 30px rgba(255,255,255,0.25);
    animation: fnet-footer-blob-green 14s ease-in-out infinite;
}

@keyframes fnet-footer-blob-orange {
    0% {
        transform: translate(0, -50%) rotate(14deg) scale(0.90);
    }

    25% {
        transform: translate(25px, -46%) rotate(-4deg) scale(1.10);
    }

    50% {
        transform: translate(-10px, -55%) rotate(-14deg) scale(0.94);
    }

    75% {
        transform: translate(35px, -48%) rotate(8deg) scale(1.08);
    }

    100% {
        transform: translate(0, -50%) rotate(14deg) scale(0.90);
    }
}

@keyframes fnet-footer-blob-green {
    0% {
        transform: translate(0, -50%) rotate(-15deg) scale(1);
    }

    25% {
        transform: translate(-25px, -55%) rotate(8deg) scale(0.90);
    }

    50% {
        transform: translate(15px, -45%) rotate(18deg) scale(1.12);
    }

    75% {
        transform: translate(-35px, -52%) rotate(-5deg) scale(0.94);
    }

    100% {
        transform: translate(0, -50%) rotate(-15deg) scale(1);
    }
}

#footer2 > * {
    position: relative;
    z-index: 10;
}

#main {
    margin: auto;
    position: relative;
    z-index: 1;
}

#access {
    border-radius: var(--fnet-radius-small);
    margin-top: 15px;
    border: 1px solid var(--fnet-border) !important;
    box-shadow: var(--fnet-shadow);
    transition: var(--fnet-transition);
    overflow: visible !important;
    position: relative;
    z-index: 1000;
}

#access:hover {
    box-shadow: var(--fnet-shadow-hover);
}

#access ul,
#access li,
#access .menu,
#access .menu > ul {
    overflow: visible !important;
}

.sub-menu {
    box-shadow: var(--fnet-shadow);
    border-radius: var(--fnet-radius-small);
    position: absolute;
    z-index: 99999 !important;
    overflow: visible !important;
}

#access .sub-menu,
#access ul ul {
    z-index: 99999 !important;
}

#access li {
    position: relative;
}

.breadcrumbs {
    margin: auto;
    background: #ddd;
    padding: 4px 12px;
    float: left;
    text-decoration: none;
    color: #444;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    border-radius: 0 0 var(--fnet-radius-small) 0;
    transition: var(--fnet-transition);
}

.breadcrumbs:hover {
    background: #d4d4d4;
}

.home .breadcrumbs {
    display: none;
}

#cn-accept-cookie,
#cn-more-info {
    padding: 9px 14px;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    background-color: var(--fnet-green);
    color: #000;
    border-radius: var(--fnet-radius-small);
    text-decoration: none;
    border: 1px solid var(--fnet-border) !important;
    transition: var(--fnet-transition);
}

#cn-accept-cookie:hover,
#cn-more-info:hover {
    background-color: var(--fnet-orange);
    transform: translateY(-1px);
}

.woocommerce-product-search {
    text-align: center;
    margin-top: 5px !important;
    margin-bottom: 8px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.woocommerce-product-search input {
    width: min(90%, 600px);
    border-radius: var(--fnet-radius);
    background: var(--fnet-orange-light);
    border: 1px solid var(--fnet-border) !important;
    box-shadow: var(--fnet-shadow);
    transition: var(--fnet-transition);
}

.woocommerce-product-search:hover input {
    background: #FFE2B8;
    border-color: rgba(81, 203, 238, 1) !important;
}

input[type="search"],
textarea {
    transition: all 0.25s ease;
    outline: none;
    padding: 12px;
    margin: 3px 1px 3px 0;
}

input[type="search"]:focus,
textarea:focus {
    box-shadow: 0 0 6px rgba(81, 203, 238, 0.8);
    padding: 13px;
    margin: 3px 1px 3px 0;
    border: 1px solid rgba(81, 203, 238, 1);
    background: #FFD69B;
}

.widget_product_search,
.widget_product_search form {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#main .widget-area ul {
    text-align: center;
}

.woocommerce
.widget_price_filter
.ui-slider-horizontal
.ui-slider-range {
    background-color: var(--fnet-green);
}

.woocommerce
.widget_price_filter
.price_slider_wrapper
.ui-widget-content {
    background-color: var(--fnet-orange);
}

.woocommerce
.widget_price_filter
.ui-slider
.ui-slider-handle {
    background-color: #000;
}

#woocommerce_price_filter-3,
#woocommerce_price_filter-4 {
    margin-top: -30px;
    margin-bottom: 12px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(190, 226, 159, 0.3);
    padding: 10px;
    border-radius: var(--fnet-radius);
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.woocommerce
.widget_price_filter
.price_slider_amount
.button {
    float: right;
}

.price_label {
    text-align: left;
}

button {
    padding: 11px 14px;
    font-size: 14px !important;
    text-align: center;
    font-weight: 700;
    background-color: var(--fnet-green);
    color: #000;
    border-radius: var(--fnet-radius-small);
    text-decoration: none;
    box-shadow: var(--fnet-shadow);
    border: 2px solid var(--fnet-border) !important;
    cursor: pointer;
    transition: var(--fnet-transition);
}

button:hover {
    background-color: var(--fnet-orange) !important;
    transform: translateY(-1px);
    box-shadow: var(--fnet-shadow-hover);
}

.woocommerce #content input.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-page #content input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
    background: var(--fnet-green) !important;
    color: #000 !important;
    text-shadow: none !important;
    border-radius: var(--fnet-radius-small);
    transition: var(--fnet-transition);
}

.woocommerce #content input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce-page #content input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover {
    background: var(--fnet-orange) !important;
    background-color: var(--fnet-orange) !important;
    color: #000 !important;
    text-shadow: none !important;
    box-shadow: none;
    border-color: var(--fnet-orange) !important;
    transform: translateY(-1px);
}

ul.products {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

ul.products::before,
ul.products::after {
    display: none !important;
    content: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    text-align: center;
    float: none;
    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: none;
    margin: 0 auto 15px;
    padding: 10px;
    border-radius: var(--fnet-radius);
    background: #fff;
    box-shadow: var(--fnet-shadow);
    transition: var(--fnet-transition);
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    transform: translateY(-3px);
    box-shadow: var(--fnet-shadow-hover);
}

.woocommerce ul.products li.product a img {
    width: 209px;
    height: 209px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.woocommerce ul.products li.product
.woocommerce-loop-category__title,

.woocommerce ul.products li.product
.woocommerce-loop-product__title,

.woocommerce ul.products li.product h2,

.woocommerce ul.products li.product h3 {
    padding-left: 10px;
    padding-right: 10px;
}

.woocommerce ul.products li.product
.woocommerce-loop-category__title,

.woocommerce ul.products li.product
.woocommerce-loop-product__title,

.woocommerce ul.products li.product h2 {
    max-width: 200px;
    min-height: 132px;
    height: auto;
    margin: auto;
    font-size: 15px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.woocommerce-LoopProduct-link h2 {
    color: #000;
}

.woocommerce ul.products li.product .button {
    margin: auto !important;
    margin-top: auto !important;
    display: block;
    width: 70%;
    border: 1px solid var(--fnet-border) !important;
    font-size: 14px !important;
}

.woocommerce.columns-4
.button.product_type_external {
    display: block;
    width: 70%;
    margin-left: 15%;
    font-weight: 700;
    margin-top: 10px;
}

.related.products .button {
    display: block;
    width: 70%;
    margin: auto !important;
    text-align: center !important;
}

.woocommerce .products li {
    border-radius: var(--fnet-radius);
    box-shadow: var(--fnet-shadow);
}

.woocommerce .type-product {
    background-color: var(--fnet-white);
    padding: 10px 10px 15px !important;
    border-radius: var(--fnet-radius);
}

.product_meta {
    margin-top: -3%;
}

.amount {
    font-size: 24px;
    line-height: normal;
    display: block;
    color: #000;
}

.onsale {
    display: none;
}

.posted_in {
    margin: 10px;
    padding: 7px 20px;
    text-align: center;
    transition: background-position 0.5s ease;
    background-image:
        linear-gradient(
            to right,
            #FFE9C9 0%,
            #FFC137 51%,
            #FFE9C9 100%
        );
    background-size: 200% auto;
    color: #000;
    box-shadow: 0 0 12px #eee;
    border-radius: 10px;
    display: block;
}

.posted_in:hover {
    background-position: right center;
    color: #000;
    text-decoration: none;
}

.border-1 {
    text-align: center;
    margin: 0;
    padding: 15px;
    background-color: #fff;
    border-radius: var(--fnet-radius);
}

.page-title {
    border-radius: var(--fnet-radius);
}

.term-description,
.page-description {
    background: #fff;
    padding: 12px;
    border-radius: var(--fnet-radius);
    border: 1px solid #eee;
}

.related.products h2:first-child {
    background-color: var(--fnet-orange);
    color: #000;
    text-align: center;
    border-radius: var(--fnet-radius);
    margin-bottom: 20px;
    border: 1px solid var(--fnet-border) !important;
    display: block;
    margin-top: 20px;
    width: 100%;
    padding: 8px 10px;
    box-shadow: var(--fnet-shadow);
}

.products {
    background-color: var(--fnet-background);
    margin-bottom: -60px;
    padding: 10px;
}

select {
    background: var(--fnet-orange-light);
    width: min(300px, 100%);
    min-height: 42px;
    padding: 8px 10px;
    box-shadow: var(--fnet-shadow);
    margin-top: 10px;
    border: 1px solid var(--fnet-border) !important;
    border-radius: var(--fnet-radius-small);
    transition: var(--fnet-transition);
}

select:focus {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(81, 203, 238, 0.35),
        var(--fnet-shadow);
}

.woocommerce-tabs {
    padding: 8px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination
ul li a,

.woocommerce nav.woocommerce-pagination
ul li span {
    font-size: 1.1em;
    padding: 0.75em;
    min-width: 3em;
    background-color: var(--fnet-green-light);
    color: #000;
    border-radius: var(--fnet-radius-small);
    transition: var(--fnet-transition);
}

.woocommerce nav.woocommerce-pagination
ul li a:hover {
    background-color: var(--fnet-orange);
    color: #000;
}

.page-numbers {
    border: 1px solid #999;
    color: #000;
}

p.cart {
    font-size: 14px !important;
    text-align: center;
    font-weight: 700;
    background-color: var(--fnet-green);
    color: #000;
    border-radius: var(--fnet-radius-small);
    text-decoration: none;
    box-shadow: var(--fnet-shadow);
    border: 1px solid var(--fnet-border) !important;
    width: min(22%, 300px) !important;
    margin: 10px auto 0;
    transform: scale(1);
    animation: pulse 2s infinite;
}

p.cart:hover {
    background-color: var(--fnet-orange);
}

@keyframes pulse {
    0% {
        transform: scale(0.98);
        box-shadow:
            0 0 0 0
            rgba(24, 144, 35, 0.6);
    }

    70% {
        transform: scale(1);
        box-shadow:
            0 0 0 8px
            rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.98);
        box-shadow:
            0 0 0 0
            rgba(0, 0, 0, 0);
    }
}

#woocommerce_product_categories-6 {
    position: relative;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
    width: 100%;
    max-width: 97%;
    margin: 15px auto 25px;
    padding: 12px;
    list-style: none !important;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--fnet-radius);
    box-shadow: var(--fnet-shadow);
    text-align: left;
    box-sizing: border-box;
}

.product-categories,
.product-categories ul,
.product-categories li {
    list-style: none !important;
    list-style-type: none !important;
}

.product-categories > li.cat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 10px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--fnet-radius-small);
    list-style: none;
    transition: var(--fnet-transition);
}

.product-categories > li.cat-item:hover {
    background: var(--fnet-orange-soft);
    border-color: rgba(255, 153, 0, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.product-categories > li.cat-item > a {
    display: block;
    min-width: 0;
    padding: 2px 0;
    color: var(--fnet-text);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: var(--fnet-transition);
}

.product-categories > li.cat-item > a:hover {
    color: #000;
    text-decoration: none;
}

.product-categories .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 23px;
    margin-left: 7px;
    padding: 0 7px;
    background: #eee;
    color: #555;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    transition: var(--fnet-transition);
}

.product-categories > li.cat-item:hover > a .count,
.product-categories > li.cat-item:hover > .count {
    background: var(--fnet-orange);
    color: #000;
}

.product-categories > li.cat-item:has(> .children) {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafafa 100%
        );
}

.product-categories > li.cat-item:has(> .children) > a {
    color: #111;
}

.product-categories .children {
    display: block !important;
    width: 100%;
    margin: 9px 0 0;
    padding: 8px 0 0 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    list-style: none !important;
}

.product-categories .children > li {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 4px 0 4px 10px;
    list-style: none !important;
    border-left: 2px solid var(--fnet-green-light);
}

.product-categories .children > li::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: translate(-50%, -50%);
    background: var(--fnet-green);
    border-radius: 50%;
}

.product-categories .children > li > a {
    display: inline;
    color: #444;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: var(--fnet-transition);
}

.product-categories .children > li > a:hover {
    color: var(--fnet-green);
    text-decoration: none;
    padding-left: 3px;
}

.product-categories .children .count {
    min-width: 24px;
    height: 20px;
    margin-left: 5px;
    padding: 0 6px;
    font-size: 10px;
    background: #f1f1f1;
}

.product-categories .children > li:hover .count {
    background: var(--fnet-orange);
    color: #000;
}

.product-categories .children .children {
    display: block !important;
    margin-top: 5px;
    padding-top: 5px;
    padding-left: 10px;
    border-top: 0;
    border-left: 1px solid rgba(84, 174, 0, 0.20);
}

.product-categories .children .children > li {
    padding-left: 9px;
    border-left: 1px solid rgba(84, 174, 0, 0.20);
}

.product-categories .children .children > li::before {
    width: 5px;
    height: 5px;
    background: #9aca72;
}

.product-categories::before,
.product-categories::after,
.product-categories li::after {
    box-sizing: border-box;
}

.fnet-category-filter {
    width: 100%;
    margin: 15px 0 25px;
    padding: 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--fnet-radius);
    box-shadow: var(--fnet-shadow);
    position: relative;
    z-index: 2;
}

.fnet-category-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.fnet-category-filter-header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fnet-category-filter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    background: var(--fnet-green-light);
    border: 1px solid rgba(84, 174, 0, 0.35);
    border-radius: 50%;
    font-size: 17px;
}

.fnet-category-filter-heading h3 {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.25;
    color: var(--fnet-text);
}

.fnet-category-filter-heading p {
    margin: 3px 0 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #777;
}

.fnet-category-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.fnet-category-option {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 46px;
    margin: 0;
    padding: 8px 10px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--fnet-radius-small);
    cursor: pointer;
    transition: var(--fnet-transition);
}

.fnet-category-option:hover {
    background: var(--fnet-orange-soft);
    border-color: rgba(255, 153, 0, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.fnet-category-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.fnet-category-radio {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-right: 8px;
    border: 2px solid #999;
    border-radius: 50%;
    background: #fff;
    position: relative;
    transition: var(--fnet-transition);
}

.fnet-category-radio::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--fnet-green);
    border-radius: 50%;
    transition: transform 0.18s ease;
}

.fnet-category-option input[type="radio"]:checked
+ .fnet-category-radio {
    border-color: var(--fnet-green);
}

.fnet-category-option input[type="radio"]:checked
+ .fnet-category-radio::after {
    transform: translate(-50%, -50%) scale(1);
}

.fnet-category-option:has(
    input[type="radio"]:checked
) {
    background: var(--fnet-green-light);
    border-color: var(--fnet-green);
    box-shadow: 0 3px 10px rgba(84, 174, 0, 0.18);
}

.fnet-category-name {
    min-width: 0;
    flex: 1;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fnet-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    margin-left: 7px;
    padding: 0 7px;
    background: #eee;
    color: #555;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: var(--fnet-transition);
}

.fnet-category-option:hover
.fnet-category-count,

.fnet-category-option input[type="radio"]:checked
~ .fnet-category-count {
    background: var(--fnet-orange);
    color: #000;
}

.fnet-category-option:has(
    input[type="radio"]:focus-visible
) {
    outline: 2px solid var(--fnet-orange);
    outline-offset: 2px;
}

.fnet-active-category-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    margin: 15px 0 25px;
    padding: 12px 15px;
    background: var(--fnet-green-light);
    border: 1px solid rgba(84, 174, 0, 0.45);
    border-radius: var(--fnet-radius);
    box-shadow: var(--fnet-shadow);
    position: relative;
    z-index: 2;
}

.fnet-active-category-content {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.fnet-active-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    background: var(--fnet-green);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
}

.fnet-active-category-text {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px 8px;
    min-width: 0;
}

.fnet-active-category-label {
    font-size: 12px;
    color: #555;
}

.fnet-active-category-text strong {
    font-size: 14px;
    color: #000;
    overflow-wrap: anywhere;
}

.fnet-remove-category-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 7px 11px;
    background: var(--fnet-orange);
    color: #000 !important;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: var(--fnet-radius-small);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--fnet-transition);
}

.fnet-remove-category-filter:hover {
    background: #ffad33;
    color: #000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.product-tags {
    width: 100%;
    max-width: 97%;
    margin: 15px auto 25px;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--fnet-radius);
    box-shadow: var(--fnet-shadow);
    box-sizing: border-box;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.product-tags br {
    display: none;
}

.product-tags > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    margin: 0;
    padding: 9px 12px;
    box-sizing: border-box;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--fnet-radius-small);
    color: var(--fnet-text);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: var(--fnet-transition);
}

.product-tags > a:hover {
    background: var(--fnet-orange-soft);
    border-color: rgba(255, 153, 0, 0.55);
    color: #000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.product-tags > a:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.product-tags > a:focus-visible {
    outline: 2px solid var(--fnet-orange);
    outline-offset: 2px;
}

@media (min-width: 1101px) {
    ul.products {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (min-width: 901px)
and (max-width: 1100px) {
    ul.products {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
    }

    .fnet-category-options {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px)
and (max-width: 900px) {
    #site-title {
        font-size: 1.8em;
    }

    #site-description {
        width: 95% !important;
    }

    ul.products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 15px;
    }

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        max-width: none;
    }

    p.cart {
        width: 35% !important;
    }

    .fnet-category-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .product-tags {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
}

@media (max-width: 767px) {
    #header,
    #footer2 {
        border-radius: var(--fnet-radius-small);
    }

    #branding::before,
    #footer2::before {
        width: 115px;
        height: 75px;
    }

    #branding::after,
    #footer2::after {
        width: 105px;
        height: 70px;
    }

    #site-title {
        font-size: 1.5em;
        line-height: 1.25;
    }

    #site-description {
        font-size: 0.95em;
        width: 95% !important;
        line-height: 1.4;
    }

    #access {
        margin-top: 10px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    }

    #access,
    #access ul,
    #access li {
        overflow: visible !important;
    }

    .breadcrumbs {
        float: none;
        display: inline-block;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .woocommerce-product-search {
        margin-top: 3px !important;
        margin-bottom: 6px !important;
    }

    .widget_product_search,
    .widget_product_search form {
        margin-bottom: 6px !important;
    }

    .woocommerce-product-search input {
        width: 100%;
        max-width: none;
    }

    ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 0 !important;
    }

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        width: 100% !important;
        padding: 8px;
        margin: 0 0 12px;
        max-width: none;
    }

    .woocommerce ul.products li.product a img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

    .woocommerce ul.products li.product
    .woocommerce-loop-product__title,

    .woocommerce ul.products li.product h2 {
        max-width: 100%;
        min-height: 90px;
        height: auto;
        font-size: 14px;
        line-height: 1.35;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce.columns-4
    .button.product_type_external {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .amount {
        font-size: 20px;
    }

    .posted_in {
        margin: 8px 0;
        padding: 7px 10px;
    }

    .products {
        margin-bottom: -30px;
        padding: 5px;
    }

    .term-description,
    .page-description {
        padding: 10px;
        font-size: 14px;
    }

    p.cart {
        width: 60% !important;
        max-width: 280px;
    }

    select {
        width: 100%;
    }

    .fnet-category-filter {
        margin: 12px 0 20px;
        padding: 12px;
    }

    .fnet-category-filter-header {
        margin-bottom: 10px;
    }

    .fnet-category-filter-heading h3 {
        font-size: 15px;
    }

    .fnet-category-filter-heading p {
        font-size: 11px;
    }

    .fnet-category-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .fnet-category-option {
        min-height: 44px;
        padding: 7px 8px;
    }

    .fnet-category-name {
        font-size: 12px;
    }

    .fnet-category-count {
        min-width: 25px;
        height: 22px;
        padding: 0 6px;
        font-size: 10px;
    }

    .fnet-active-category-filter {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 10px 12px;
    }

    .fnet-remove-category-filter {
        width: 100%;
    }

    .product-categories {
        max-width: 100%;
        margin: 12px 0 20px;
        padding: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .product-categories > li.cat-item {
        padding: 8px;
    }

    .product-categories > li.cat-item > a {
        font-size: 13px;
    }

    .product-categories .children {
        margin-top: 7px;
        padding-left: 8px;
    }

    .product-categories .children > li {
        padding: 4px 0 4px 8px;
    }

    .product-categories .children > li > a {
        font-size: 11px;
    }

    .product-categories .count {
        min-width: 25px;
        height: 22px;
        padding: 0 6px;
        font-size: 10px;
    }

    .product-tags {
        max-width: 100%;
        margin: 12px 0 20px;
        padding: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .product-tags > a {
        min-height: 40px;
        padding: 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        padding: 6px;
        border-radius: 6px;
    }

    .woocommerce ul.products li.product
    .woocommerce-loop-product__title,

    .woocommerce ul.products li.product h2 {
        min-height: 78px;
        font-size: 13px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .woocommerce ul.products li.product .button {
        width: 95%;
        font-size: 13px !important;
        padding: 8px 5px;
    }

    .amount {
        font-size: 18px;
    }

    .woocommerce nav.woocommerce-pagination
    ul li a,

    .woocommerce nav.woocommerce-pagination
    ul li span {
        font-size: 1em;
        padding: 0.55em;
        min-width: 2.5em;
    }

    p.cart {
        width: 80% !important;
    }

    .fnet-category-filter-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        font-size: 14px;
    }

    .fnet-category-options {
        gap: 6px;
    }

    .fnet-category-option {
        min-height: 42px;
        padding: 6px;
    }

    .fnet-category-radio {
        width: 15px;
        height: 15px;
        flex-basis: 15px;
        margin-right: 6px;
    }

    .fnet-category-radio::after {
        width: 6px;
        height: 6px;
    }

    .fnet-category-name {
        font-size: 11px;
    }

    .fnet-category-count {
        min-width: 22px;
        height: 20px;
        padding: 0 5px;
        font-size: 9px;
    }

    .product-categories {
        padding: 7px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .product-categories > li.cat-item {
        padding: 7px;
        border-radius: 6px;
    }

    .product-categories > li.cat-item > a {
        font-size: 12px;
    }

    .product-categories .children {
        padding-left: 6px;
    }

    .product-categories .children > li {
        padding-left: 7px;
    }

    .product-categories .children > li > a {
        font-size: 10px;
    }

    .product-categories .count {
        min-width: 22px;
        height: 20px;
        padding: 0 5px;
        font-size: 9px;
    }

    .product-tags {
        padding: 7px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .product-tags > a {
        min-height: 38px;
        padding: 7px;
        border-radius: 6px;
        font-size: 11px;
    }
}

@media (max-width: 340px) {
    ul.products {
        grid-template-columns: 1fr;
    }

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        max-width: 260px;
        width: 100% !important;
    }

    p.cart {
        width: 90% !important;
    }

    .fnet-category-options {
        grid-template-columns: 1fr;
    }

    .product-categories {
        grid-template-columns: 1fr;
    }

    .product-tags {
        grid-template-columns: 1fr;
    }
}

#footer2 {
    overflow: visible !important;
}

@media (prefers-reduced-motion: reduce) {
    #header,
    #branding,
    #branding::before,
    #branding::after,
    #footer2,
    #footer2::before,
    #footer2::after {
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

#branding.fnet-robot-host--right #site-description {
    width: calc(
        100% - var(--fnet-robot-reserve, 152px)
    ) !important;

    margin-left: 0 !important;
    margin-right: var(
        --fnet-robot-reserve,
        152px
    ) !important;

    padding: 5px !important;
    text-align: center !important;
}

@media (max-width: 767px) {
    #branding.fnet-robot-host--right #site-description {
        width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 5px !important;
    }
}

/* ================================================================
   FNET catalogue card alignment
   The price-history plugin renders an equal-height insight slot on
   every product card, including an invisible placeholder where needed.
   ================================================================ */

.woocommerce ul.products,
.woocommerce-page ul.products {
    align-items: stretch !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    align-self: stretch;
    height: 100%;
    min-width: 0;
    margin: 0 !important;
    padding: 10px 10px 15px !important;
}

.woocommerce ul.products li.product
> .woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product
> .woocommerce-LoopProduct-link {
    display: flex !important;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.woocommerce ul.products li.product
> .woocommerce-LoopProduct-link > img,
.woocommerce-page ul.products li.product
> .woocommerce-LoopProduct-link > img {
    display: block;
    width: 100%;
    max-width: 209px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto 10px !important;
    object-fit: contain;
}

.woocommerce ul.products li.product
.woocommerce-loop-product__title,
.woocommerce-page ul.products li.product
.woocommerce-loop-product__title {
    display: -webkit-box;
    width: 100%;
    max-width: 200px;
    min-height: 126px;
    height: 126px;
    max-height: 126px;
    margin: 0 auto !important;
    padding: 0 8px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    display: flex !important;
    flex: 0 0 58px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin: auto 0 6px !important;
    line-height: 1.2;
}

.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price del,
.woocommerce-page ul.products li.product .price ins {
    display: block;
    margin: 0;
    line-height: 1.2;
}

.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
    text-decoration: none;
}

.woocommerce ul.products li.product .price .amount,
.woocommerce-page ul.products li.product .price .amount {
    display: inline;
    font-size: 22px;
    line-height: 1.2;
}

.woocommerce ul.products li.product .price del .amount,
.woocommerce-page ul.products li.product .price del .amount {
    font-size: 14px;
}

/*
 * This is one fixed layout slot, whether it contains a real message or the
 * plugin's invisible placeholder. Prices and buttons therefore share the
 * same vertical position throughout each grid row.
 */
.woocommerce ul.products li.product .fnet-catalog-price-insight,
.woocommerce-page ul.products li.product .fnet-catalog-price-insight {
    flex: 0 0 38px;
    width: auto;
    min-height: 38px;
    max-height: 38px;
    margin: 3px auto 7px !important;
    overflow: hidden;
}

.woocommerce ul.products li.product
.fnet-catalog-price-insight--placeholder,
.woocommerce-page ul.products li.product
.fnet-catalog-price-insight--placeholder {
    visibility: hidden !important;
    pointer-events: none !important;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce.columns-4 .button.product_type_external,
.related.products .button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 76% !important;
    min-width: 0;
    min-height: 42px;
    margin: 12px auto 0 !important;
    padding: 9px 10px !important;
    border: 1px solid var(--fnet-border, #222) !important;
    border-radius: var(--fnet-radius-small, 5px);
    font-size: 13px !important;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
}

.woocommerce ul.products li.product-category,
.woocommerce-page ul.products li.product-category {
    height: auto;
}

.woocommerce ul.products li.product-category
> .woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product-category
> .woocommerce-LoopProduct-link {
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        padding: 8px 8px 12px !important;
    }

    .woocommerce ul.products li.product
    .woocommerce-loop-product__title,
    .woocommerce-page ul.products li.product
    .woocommerce-loop-product__title {
        max-width: 100%;
        min-height: 94.5px;
        height: 94.5px;
        max-height: 94.5px;
        padding: 0 5px;
        font-size: 14px;
        line-height: 1.35;
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    .woocommerce ul.products li.product .price,
    .woocommerce-page ul.products li.product .price {
        flex-basis: 52px;
        min-height: 52px;
    }

    .woocommerce ul.products li.product .price .amount,
    .woocommerce-page ul.products li.product .price .amount {
        font-size: 20px;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce-page ul.products li.product .button,
    .woocommerce.columns-4 .button.product_type_external,
    .related.products .button {
        width: 90% !important;
        min-height: 40px;
        padding: 8px 7px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        padding: 6px 6px 10px !important;
    }

    .woocommerce ul.products li.product
    .woocommerce-loop-product__title,
    .woocommerce-page ul.products li.product
    .woocommerce-loop-product__title {
        min-height: 87.75px;
        height: 87.75px;
        max-height: 87.75px;
        padding: 0 3px;
        font-size: 13px;
        line-height: 1.35;
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    .woocommerce ul.products li.product .price,
    .woocommerce-page ul.products li.product .price {
        flex-basis: 48px;
        min-height: 48px;
    }

    .woocommerce ul.products li.product .price .amount,
    .woocommerce-page ul.products li.product .price .amount {
        font-size: 18px;
    }

    .woocommerce ul.products li.product
    .fnet-catalog-price-insight,
    .woocommerce-page ul.products li.product
    .fnet-catalog-price-insight {
        flex-basis: 34px;
        min-height: 34px;
        max-height: 34px;
        margin: 2px auto 6px !important;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce-page ul.products li.product .button,
    .woocommerce.columns-4 .button.product_type_external,
    .related.products .button {
        width: 96% !important;
        min-height: 38px;
        margin-top: 9px !important;
        padding: 7px 4px !important;
        font-size: 11px !important;
    }
}
