/*
Theme Name: E-Gastro Hendi
Theme URI: https://e-gastro.eu/
Author: E-GASTRO.EU
Author URI: https://e-gastro.eu/
Description: Clean WooCommerce storefront inspired by HENDI's professional catalogue experience. Built for Estonian B2B/B2C sales without changing customers, orders, or products.
Version: 0.9.4
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: egastro-hendi
Domain Path: /languages
License: Proprietary
*/
:root {
    --eg-black: #050505;
    --eg-ink: #171a1f;
    --eg-muted: #626976;
    --eg-line: #dde1e6;
    --eg-soft: #f4f6f7;
    --eg-white: #ffffff;
    --eg-green: #a8c400;
    --eg-green-dark: #7f9800;
    --eg-blue: #1f6f8b;
    --eg-red: #c9362b;
    --eg-radius: 6px;
    --eg-shadow: 0 12px 32px rgba(15, 19, 26, .10);
    --eg-font: Arial, Helvetica, sans-serif;
    --eg-base-font-size: 16px;
    --eg-header-font-size: 10px;
    --eg-category-font-size: 12px;
    --eg-hero-title-size: 70px;
    --eg-section-title-size: 34px;
    --eg-product-title-size: 16px;
    --eg-logo-area-width: 180px;
    --eg-logo-max-width: 160px;
    --eg-logo-max-height: 54px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--eg-ink);
    background: var(--eg-white);
    font-family: var(--eg-font);
    font-size: var(--eg-base-font-size);
    line-height: 1.45;
    letter-spacing: 0;
}

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

a:hover {
    color: var(--eg-green-dark);
}

img {
    max-width: 100%;
    height: auto;
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--eg-green);
    color: var(--eg-black);
}

.topline {
    background: var(--eg-black);
    color: var(--eg-white);
    font-size: 13px;
}

.topline__inner,
.header-main,
.mainnav__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topline__inner {
    min-height: 38px;
    justify-content: space-between;
}

.topline p {
    margin: 0;
    color: #d7dce2;
}

.topline nav {
    display: flex;
    gap: 18px;
}

.topline__country {
    color: var(--eg-green);
    font-weight: 700;
}

.site-header {
    position: relative;
    z-index: 20;
    background: var(--eg-white);
    border-bottom: 1px solid var(--eg-line);
}

.header-main {
    min-height: 92px;
}

.site-branding {
    flex: 0 0 260px;
}

.site-logo {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    color: var(--eg-black);
}

.site-logo img {
    display: block;
    max-width: var(--eg-logo-max-width);
    max-height: var(--eg-logo-max-height);
    width: auto;
    object-fit: contain;
}

.site-logo__mark {
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 54px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--eg-black);
    color: var(--eg-white);
    font-weight: 800;
}

.site-logo__text {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.site-logo__tagline {
    color: var(--eg-green-dark);
    font-weight: 700;
    font-size: 13px;
}

.site-search {
    position: relative;
    display: grid;
    grid-template-columns: minmax(120px, 190px) 1fr 54px;
    flex: 1 1 auto;
    min-width: 280px;
    border: 2px solid var(--eg-black);
    border-radius: var(--eg-radius);
    overflow: visible;
    background: var(--eg-white);
}

.site-search select,
.site-search input {
    width: 100%;
    border: 0;
    min-height: 52px;
    padding: 0 16px;
    color: var(--eg-ink);
    background: var(--eg-white);
    font: inherit;
}

.site-search select {
    border-right: 1px solid var(--eg-line);
    font-weight: 700;
}

.site-search input:focus,
.site-search select:focus {
    outline: 3px solid rgba(168, 196, 0, .3);
    outline-offset: -3px;
}

.site-search button {
    border: 0;
    background: var(--eg-green);
    color: var(--eg-black);
    font-size: 26px;
    cursor: pointer;
}

.site-search__suggestions {
    position: absolute;
    z-index: 160;
    top: calc(100% + 4px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 430px;
    border: 1px solid #cfcfcf;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    overflow: auto;
}

.site-search__suggestions[hidden] {
    display: none;
}

.site-search__suggestion {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--eg-line);
    color: var(--eg-ink);
}

.site-search__suggestion:hover,
.site-search__suggestion:focus {
    background: #f6f7f2;
    color: var(--eg-ink);
}

.site-search__suggestion img,
.site-search__placeholder {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #fff;
}

img.egastro-generated-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--eg-soft);
}

.site-search__suggestion img.egastro-generated-placeholder {
    width: 52px;
    height: 52px;
}

.site-search__suggestion-text {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.site-search__suggestion-text b {
    overflow: hidden;
    font-size: 13px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-search__suggestion-text span {
    color: var(--eg-muted);
    font-size: 12px;
    font-weight: 800;
}

.site-search__suggestion strong {
    color: var(--eg-black);
    font-size: 13px;
    white-space: nowrap;
}

.site-search__empty {
    padding: 14px;
    color: var(--eg-muted);
    font-size: 13px;
}

.site-search__all {
    min-height: 42px;
    border: 0;
    background: #f2f2f2;
    color: var(--eg-black);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-actions a {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 74px;
    min-height: 58px;
    padding: 6px 8px;
    color: var(--eg-ink);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.header-actions span {
    font-size: 22px;
    line-height: 1;
}

.header-cart strong {
    position: absolute;
    top: 4px;
    right: 12px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--eg-green);
    color: var(--eg-black);
    font-size: 12px;
    line-height: 20px;
}

.mainnav {
    background: var(--eg-soft);
    border-top: 1px solid var(--eg-line);
}

.mainnav__inner {
    min-height: 54px;
}

.category-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--eg-radius);
    background: var(--eg-black);
    color: var(--eg-white);
    font-weight: 800;
    cursor: pointer;
}

.category-toggle span {
    color: var(--eg-green);
}

.primary-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    display: block;
    padding: 14px 12px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

.category-drawer {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--eg-white);
    box-shadow: var(--eg-shadow);
    border-top: 1px solid var(--eg-line);
}

.category-panel__inner {
    width: min(100% - 32px, 1440px);
    margin: 0 auto;
    padding: 28px 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.category-panel h2 {
    margin: 0 0 10px;
    font-size: 18px;
}

.category-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-panel li a {
    display: block;
    padding: 4px 0;
    color: var(--eg-muted);
    font-size: 14px;
}

.category-panel__all {
    display: inline-block;
    margin-top: 10px;
    color: var(--eg-green-dark);
    font-weight: 800;
}

.hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    color: var(--eg-white);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .68) 52%, rgba(0, 0, 0, .20)),
        repeating-linear-gradient(135deg, #2d3034 0 10px, #1d2024 10px 20px);
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 640px) 1fr;
    gap: 48px;
    align-items: center;
}

.hero__content h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: .98;
    letter-spacing: 0;
}

.hero__content p {
    max-width: 600px;
    color: #e7ebef;
    font-size: 19px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--eg-green);
    font-weight: 900;
    text-transform: uppercase;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 2px solid var(--eg-black);
    border-radius: var(--eg-radius);
    background: var(--eg-white);
    color: var(--eg-black);
    font-weight: 900;
    cursor: pointer;
}

.button-primary,
.woocommerce a.button.egastro-cart-button,
.woocommerce button.single_add_to_cart_button {
    background: var(--eg-green);
    border-color: var(--eg-green);
    color: var(--eg-black);
}

.button-ghost {
    border-color: var(--eg-white);
    background: transparent;
    color: var(--eg-white);
}

.hero__visual {
    justify-self: end;
    width: min(100%, 520px);
    aspect-ratio: 1.15;
    position: relative;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .23), transparent 34%),
        linear-gradient(155deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .05));
}

.hero__visual span {
    position: absolute;
    inset: 42px;
    border: 12px solid rgba(255, 255, 255, .18);
}

.hero__visual strong {
    font-size: 64px;
    line-height: 1;
}

.hero__visual em {
    position: absolute;
    bottom: 92px;
    color: var(--eg-green);
    font-style: normal;
    font-weight: 800;
}

.hero.hero-slider {
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    background: var(--eg-black);
}

.hero-slider__track {
    position: relative;
    min-height: 500px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 500px;
    opacity: 0;
    visibility: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .58) 52%, rgba(0, 0, 0, .18)),
        repeating-linear-gradient(135deg, #2d3034 0 10px, #1d2024 10px 20px);
    background-position: center;
    background-size: cover;
    transition: opacity .45s ease, visibility .45s ease;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-slide__inner {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-slide__content {
    width: min(100%, 680px);
    padding: 54px 0 74px;
    color: var(--eg-white);
}

.hero-slide__content h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, var(--eg-hero-title-size));
    line-height: .98;
    letter-spacing: 0;
}

.hero-slide__content p:not(.eyebrow) {
    max-width: 620px;
    color: #e7ebef;
    font-size: 19px;
}

.hero-slide__content .button {
    margin-top: 12px;
}

.hero-slider__controls {
    position: absolute;
    left: 50%;
    bottom: 24px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-slider__controls button {
    width: 44px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
}

.hero-slider__controls button.is-active {
    background: var(--eg-green);
}

.hero.hero-slider.hero-image-slider,
.hero-image-slider {
    padding: 18px 0 12px;
    background: #fff;
    color: var(--eg-ink);
}

.hero-image-slider .hero-slider__track {
    width: min(100% - 32px, 1440px);
    min-height: 0;
    margin: 0 auto;
    aspect-ratio: 1240 / 416;
    background: #f3f3f3;
}

.hero-image-slider .hero-slider__track,
.hero-image-slider .hero-slide.is-active {
    background: #fff;
}

.hero-image-slider .hero-slide {
    min-height: 0;
    background: transparent;
}

.hero-image-slider .hero-slide__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-image-slider .hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .18);
    transform: translateY(-50%);
    cursor: pointer;
}

.hero-slider__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border: solid #777;
    border-width: 0 4px 4px 0;
}

.hero-slider__arrow--prev {
    left: max(16px, calc((100% - 1440px) / 2 - 22px));
}

.hero-slider__arrow--next {
    right: max(16px, calc((100% - 1440px) / 2 - 22px));
}

.hero-slider__arrow--prev::before {
    transform: translate(-35%, -50%) rotate(135deg);
}

.hero-slider__arrow--next::before {
    transform: translate(-65%, -50%) rotate(-45deg);
}

.hero-image-slider .hero-slider__controls {
    position: static;
    justify-content: center;
    margin-top: 9px;
    transform: none;
}

.hero-image-slider .hero-slider__controls button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dedede;
}

.hero-image-slider .hero-slider__controls button.is-active {
    background: var(--eg-green);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 0;
    font-size: var(--eg-section-title-size);
}

.section-heading a {
    color: var(--eg-green-dark);
    font-weight: 900;
}

.home-categories,
.featured-products,
.inspiration,
.content-layout,
.shop-main {
    padding: 48px 0;
}

.shop-main {
    overflow: hidden;
    background: var(--eg-white);
}

.shop-main > .container {
    max-width: 1440px;
}

.egastro-shop-main {
    width: 100%;
}

.egastro-shop-container {
    width: calc(100% - 48px) !important;
    max-width: 1250px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.egastro-shop-container > .woocommerce,
.egastro-shop-container .woocommerce-notices-wrapper,
.egastro-shop-container .woocommerce-products-header,
.egastro-shop-container .shop-toolbar,
.egastro-shop-container ul.products,
.egastro-shop-container div.product {
    max-width: 100%;
}

.egastro-shop-container .woocommerce .products ul,
.egastro-shop-container .woocommerce ul.products,
body.woocommerce-page .egastro-shop-container .products ul,
body.woocommerce-page .egastro-shop-container ul.products {
    width: 100% !important;
    max-width: 100% !important;
}

.egastro-shop-container .woocommerce ul.products li.product,
body.woocommerce-page .egastro-shop-container ul.products li.product {
    max-width: none !important;
}

.egastro-shop-container div.product {
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

body.woocommerce-page .egastro-shop-container {
    width: calc(100% - 48px) !important;
    max-width: 1250px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

body.post-type-archive-product .shop-main,
body.tax-product_cat .shop-main {
    padding: 34px 0 56px;
    border-top: 1px solid var(--eg-line);
}

body.post-type-archive-product .shop-main > .container,
body.tax-product_cat .shop-main > .container {
    width: calc(100% - 48px) !important;
    max-width: 1250px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.woocommerce-products-header {
    margin: 0 0 22px;
}

.woocommerce-products-header__title,
.shop-main .page-title {
    margin: 0 0 12px;
    color: var(--eg-ink);
    font-size: 34px;
    line-height: 1.08;
}

body.post-type-archive-product .woocommerce-products-header__title,
body.tax-product_cat .woocommerce-products-header__title,
body.post-type-archive-product .shop-main .page-title,
body.tax-product_cat .shop-main .page-title {
    margin-bottom: 16px;
    font-size: 30px;
    color: #3b3b3b;
}

.term-description {
    max-width: 920px;
    margin: 0 0 24px;
    color: var(--eg-muted);
    font-size: 15px;
    line-height: 1.55;
}

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

.category-tile {
    display: grid;
    gap: 12px;
    min-height: 230px;
    padding: 16px;
    border: 1px solid var(--eg-line);
    border-radius: var(--eg-radius);
    background: var(--eg-white);
}

.category-tile__image {
    display: grid;
    place-items: center;
    height: 132px;
    background: var(--eg-soft);
}

.category-tile__image img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.category-tile__image img.egastro-generated-placeholder {
    width: 100%;
    height: 100%;
    max-height: none;
}

.category-tile__placeholder {
    width: 72px;
    aspect-ratio: 1;
    border: 10px solid var(--eg-green);
    border-radius: 50%;
}

.category-tile strong {
    font-size: 18px;
}

.category-tile small {
    color: var(--eg-muted);
}

.woocommerce .products ul,
.woocommerce ul.products,
.woocommerce-page .products ul,
.woocommerce-page ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    clear: both;
    list-style: none;
}

.woocommerce .products ul::before,
.woocommerce .products ul::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page .products ul::before,
.woocommerce-page .products ul::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    content: none;
    display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: auto !important;
    margin: 0 !important;
    padding: 16px;
    border: 1px solid var(--eg-line);
    border-radius: var(--eg-radius);
    background: var(--eg-white);
    box-sizing: border-box;
    overflow: hidden;
    transition: box-shadow .18s ease, transform .18s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-2px);
    box-shadow: var(--eg-shadow);
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    color: inherit;
}

.woocommerce ul.products li.product a img {
    height: 220px;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    margin: 0 0 14px;
    background: var(--eg-white);
}

.woocommerce ul.products li.product.product-category {
    min-height: 260px;
    text-align: center;
}

.woocommerce ul.products li.product.product-category a {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 12px;
    height: 100%;
    color: inherit;
}

.woocommerce ul.products li.product.product-category img {
    align-self: center;
}

.woocommerce ul.products li.product.product-category h2,
.woocommerce ul.products li.product.product-category h3 {
    margin: 0;
    color: var(--eg-ink);
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
}

.woocommerce ul.products li.product.product-category mark.count {
    display: none;
}

.product-badges {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    z-index: 2;
}

.product-badges span {
    padding: 4px 7px;
    border-radius: 999px;
    background: var(--eg-green);
    color: var(--eg-black);
    font-size: 11px;
    font-weight: 900;
}

.product-badge--sale {
    background: var(--eg-red);
    color: var(--eg-white);
}

.product-code,
.single-product-code {
    margin: 0 0 8px;
    color: var(--eg-muted);
    font-size: 13px;
    font-weight: 800;
}

.woocommerce-loop-product__title {
    min-height: 58px;
    margin: 0 0 12px;
    color: var(--eg-ink);
    font-size: var(--eg-product-title-size);
    line-height: 1.2;
}

.egastro-price {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    column-gap: 8px;
    min-height: 58px;
    margin: 10px 0;
}

.egastro-price strong {
    font-size: 22px;
    color: var(--eg-black);
}

.egastro-price span {
    color: var(--eg-muted);
    font-size: 13px;
    font-weight: 800;
}

.egastro-price small {
    grid-column: 1 / -1;
    color: var(--eg-muted);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 18px 0 24px;
    padding: 14px 0;
    border-top: 1px solid var(--eg-line);
    border-bottom: 1px solid var(--eg-line);
}

.woocommerce-notices-wrapper {
    margin-bottom: 18px;
}

.woocommerce-result-count,
.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering select {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--eg-line);
    border-radius: var(--eg-radius);
    background: var(--eg-white);
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 30px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: grid;
    place-items: center;
    min-width: 38px;
    min-height: 38px;
    border: 1px solid var(--eg-line);
    border-radius: var(--eg-radius);
    color: var(--eg-ink);
    font-weight: 900;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    border-color: var(--eg-green);
    background: var(--eg-green);
    color: var(--eg-black);
}

body.post-type-archive-product .woocommerce .products ul,
body.post-type-archive-product .woocommerce ul.products,
body.post-type-archive-product.woocommerce-page .products ul,
body.post-type-archive-product.woocommerce-page ul.products,
body.tax-product_cat .woocommerce .products ul,
body.tax-product_cat .woocommerce ul.products,
body.tax-product_cat.woocommerce-page .products ul,
body.tax-product_cat.woocommerce-page ul.products {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--eg-line);
    border-left: 1px solid var(--eg-line);
}

body.post-type-archive-product .woocommerce ul.products li.product,
body.post-type-archive-product.woocommerce-page ul.products li.product,
body.tax-product_cat .woocommerce ul.products li.product,
body.tax-product_cat.woocommerce-page ul.products li.product {
    min-height: 440px;
    padding: 12px 10px 16px;
    border: 0;
    border-right: 1px solid var(--eg-line);
    border-bottom: 1px solid var(--eg-line);
    border-radius: 0;
    box-shadow: none;
}

body.post-type-archive-product .woocommerce ul.products li.product:hover,
body.tax-product_cat .woocommerce ul.products li.product:hover {
    transform: none;
    box-shadow: inset 0 0 0 2px rgba(168, 196, 0, .28);
}

body.post-type-archive-product .woocommerce ul.products li.product a img,
body.tax-product_cat .woocommerce ul.products li.product a img {
    display: block;
    width: 100% !important;
    height: 150px !important;
    max-height: 150px !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: 0 0 10px !important;
}

body.post-type-archive-product .woocommerce-loop-product__title,
body.tax-product_cat .woocommerce-loop-product__title {
    min-height: 66px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
}

body.post-type-archive-product .product-code,
body.tax-product_cat .product-code {
    display: grid;
    grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--eg-muted);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

body.post-type-archive-product .product-code::before,
body.post-type-archive-product .product-code::after,
body.tax-product_cat .product-code::before,
body.tax-product_cat .product-code::after {
    content: "";
    display: block;
    height: 1px;
    background: var(--eg-line);
}

body.post-type-archive-product .egastro-price,
body.tax-product_cat .egastro-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    min-height: 32px;
    margin: 14px 0 10px;
    text-align: center;
    white-space: nowrap;
}

body.post-type-archive-product .egastro-price strong,
body.tax-product_cat .egastro-price strong {
    display: inline;
    font-size: 13px;
    font-weight: 500;
}

body.post-type-archive-product .egastro-price span,
body.tax-product_cat .egastro-price span {
    margin-left: 4px;
    font-size: 12px;
}

body.post-type-archive-product .egastro-price small,
body.tax-product_cat .egastro-price small {
    display: inline;
    margin-top: 0;
    color: var(--eg-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
}

body.post-type-archive-product .egastro-price .egastro-gross-price,
body.tax-product_cat .egastro-price .egastro-gross-price,
body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-price .egastro-gross-price {
    color: var(--eg-black);
    font-size: 16px;
    font-weight: 950;
}

body.post-type-archive-product .egastro-price .egastro-price-suffix,
body.tax-product_cat .egastro-price .egastro-price-suffix,
body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-price .egastro-price-suffix {
    color: var(--eg-muted) !important;
    font-size: 12px;
    font-weight: 400 !important;
}

body.post-type-archive-product .egastro-price .egastro-tax-prefix,
body.tax-product_cat .egastro-price .egastro-tax-prefix,
body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-price .egastro-tax-prefix {
    color: var(--eg-muted) !important;
    font-size: 12px;
    font-weight: 400 !important;
}

body.post-type-archive-product .egastro-price .egastro-price-suffix .woocommerce-Price-amount,
body.post-type-archive-product .egastro-price .egastro-price-suffix bdi,
body.tax-product_cat .egastro-price .egastro-price-suffix .woocommerce-Price-amount,
body.tax-product_cat .egastro-price .egastro-price-suffix bdi,
body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-price .egastro-price-suffix .woocommerce-Price-amount,
body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-price .egastro-price-suffix bdi {
    color: var(--eg-black) !important;
    font-size: 16px;
    font-weight: 950 !important;
}

body.post-type-archive-product .egastro-loop-actions,
body.tax-product_cat .egastro-loop-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px 38px;
    gap: 6px;
    align-items: stretch;
    margin-top: auto;
}

body.post-type-archive-product .woocommerce ul.products li.product .egastro-loop-actions .button,
body.tax-product_cat .woocommerce ul.products li.product .egastro-loop-actions .button {
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: auto !important;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    border: 0 !important;
    border-radius: 0;
    background: var(--eg-green);
    color: var(--eg-black);
    font-size: 13px;
    line-height: 1 !important;
}

body.post-type-archive-product .egastro-icon-action,
body.tax-product_cat .egastro-icon-action {
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--eg-line) !important;
    background: var(--eg-white);
    color: var(--eg-black);
    font-size: 22px;
    font-weight: 900;
    line-height: 1 !important;
}

body.post-type-archive-product .egastro-icon-action:hover,
body.tax-product_cat .egastro-icon-action:hover {
    border-color: var(--eg-green);
    background: #f7f9df;
    color: var(--eg-black);
}

body.post-type-archive-product .shop-toolbar,
body.tax-product_cat .shop-toolbar {
    margin: 10px 0 0;
    padding: 0 0 10px;
    border-top: 0;
}

body:not(.single-product) .egastro-shop-container ul.products {
    display: grid !important;
    grid-template-columns: repeat(var(--eg-featured-columns), minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-top: 1px solid var(--eg-line);
    border-left: 1px solid var(--eg-line);
}

body:not(.single-product) .egastro-shop-container ul.products li.product {
    width: auto !important;
    max-width: none !important;
    min-height: 440px;
    margin: 0 !important;
    padding: 12px 10px 16px;
    border: 0;
    border-right: 1px solid var(--eg-line);
    border-bottom: 1px solid var(--eg-line);
    border-radius: 0;
    box-shadow: none;
}

body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    min-height: 32px;
    margin: 14px 0 10px;
    text-align: center;
    white-space: nowrap;
}

body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-price strong,
body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-price small {
    display: inline;
    font-size: 13px;
}

body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-price small:not(.egastro-price-suffix) {
    color: var(--eg-black);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
}

body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-price span {
    font-size: 12px;
}

body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-loop-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px 38px;
    gap: 6px;
    align-items: stretch;
    margin-top: auto;
}

body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-loop-actions .button {
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: auto !important;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    font-size: 13px;
    line-height: 1 !important;
}

body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-loop-actions a.added_to_cart,
.featured-products .egastro-loop-actions a.added_to_cart {
    display: none !important;
}

body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-loop-actions .egastro-view-cart-button,
.featured-products .egastro-loop-actions .egastro-view-cart-button {
    text-align: center;
    white-space: normal;
}

body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-icon-action {
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--eg-line) !important;
    background: var(--eg-white);
    color: var(--eg-black);
    font-size: 22px;
    font-weight: 900;
    line-height: 1 !important;
}

body:not(.single-product) .egastro-shop-container ul.products li.product .egastro-icon-action:hover {
    border-color: var(--eg-green);
    background: #f7f9df;
    color: var(--eg-black);
}

body.woocommerce-cart .content-layout {
    padding: 42px 0 70px;
}

body.woocommerce-cart .content-card {
    width: 100%;
    max-width: 1250px;
    padding: 0;
}

body.woocommerce-cart .content-card > h1 {
    margin: 0 0 28px;
    color: var(--eg-ink);
    font-size: 38px;
    line-height: 1.12;
}

body.woocommerce-cart .entry-content > .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
    gap: 32px;
    align-items: start;
}

body.woocommerce-cart .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
    grid-column: 1 / -1;
}

body.woocommerce-cart .woocommerce-cart-form {
    min-width: 0;
}

body.woocommerce-cart table.shop_table {
    width: 100%;
    margin: 0;
    border: 1px solid var(--eg-line) !important;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0;
    background: var(--eg-white);
    overflow: hidden;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
    border-right: 0;
    border-left: 0;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table thead th {
    padding: 14px 16px;
    border-bottom: 1px solid var(--eg-line);
    background: #f5f6f7;
    color: var(--eg-ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table td {
    padding: 16px;
    border-top: 1px solid var(--eg-line);
    color: var(--eg-ink);
    vertical-align: middle;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr:first-child td {
    border-top: 0;
}

body.woocommerce-cart .woocommerce-cart-form .product-remove {
    width: 46px;
    text-align: center;
}

body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid #f0c5c1;
    border-radius: 50%;
    background: #fff7f6;
    color: var(--eg-red) !important;
    font-size: 0;
    line-height: 1;
}

body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove::before {
    content: "×";
    font-size: 20px;
    font-weight: 800;
}

body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove:hover {
    background: var(--eg-red);
    color: var(--eg-white) !important;
}

body.woocommerce-cart .woocommerce-cart-form .product-thumbnail {
    width: 92px;
}

body.woocommerce-cart .woocommerce-cart-form .product-thumbnail img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
    border: 1px solid var(--eg-line);
    background: var(--eg-soft);
}

body.woocommerce-cart .woocommerce-cart-form .product-name a {
    color: var(--eg-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

body.woocommerce-cart .woocommerce-cart-form .product-price,
body.woocommerce-cart .woocommerce-cart-form .product-subtotal {
    white-space: nowrap;
}

body.woocommerce-cart .woocommerce-cart-form .product-subtotal {
    color: var(--eg-black);
    font-weight: 900;
}

body.woocommerce-cart .woocommerce-cart-form .quantity .qty {
    width: 68px;
    min-height: 36px;
    padding: 0 8px;
    border: 1px solid #cfd5dd;
    border-radius: 0;
    background: var(--eg-white);
    color: var(--eg-black);
    font-weight: 800;
    text-align: center;
}

body.woocommerce-cart .woocommerce-cart-form td.actions {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    background: #fbfcfd;
}

body.woocommerce-cart .woocommerce-cart-form td.actions .coupon {
    display: flex !important;
    flex: 1 1 430px;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    min-width: 0;
}

body.woocommerce-cart .woocommerce-cart-form td.actions .coupon {
    float: none !important;
}

body.woocommerce-cart .woocommerce-cart-form .coupon label {
    display: none;
}

body.woocommerce-cart .woocommerce-cart-form .coupon .input-text {
    float: none !important;
    flex: 1 1 220px;
    width: auto !important;
    max-width: 280px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #cfd5dd;
    border-radius: 0;
    background: var(--eg-white);
    color: var(--eg-ink);
}

body.woocommerce-cart .woocommerce-cart-form td.actions button.button {
    float: none !important;
    position: static !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-width: 1px;
    font-size: 13px;
    line-height: 1.15;
    white-space: normal;
}

body.woocommerce-cart .woocommerce-cart-form td.actions > button.button {
    flex: 0 0 auto;
    justify-self: end;
    margin-left: auto !important;
    border-color: #cfd5dd;
    background: var(--eg-white);
    color: var(--eg-ink);
}

body.woocommerce-cart .woocommerce-cart-form td.actions button[name="apply_coupon"] {
    flex: 0 0 auto;
}

body.woocommerce-cart .cart-collaterals {
    width: 100%;
    min-width: 0;
}

body.woocommerce-cart .cart-collaterals::before,
body.woocommerce-cart .cart-collaterals::after {
    content: none;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
    padding: 24px;
    border: 1px solid var(--eg-line);
    background: var(--eg-white);
    box-shadow: var(--eg-shadow);
}

body.woocommerce-cart .cart_totals h2 {
    margin: 0 0 18px;
    color: var(--eg-ink);
    font-size: 24px;
    line-height: 1.15;
}

body.woocommerce-cart .cart_totals table.shop_table {
    border: 0 !important;
    background: transparent;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
    padding: 14px 0;
    border-top: 1px solid var(--eg-line);
    font-size: 14px;
    line-height: 1.35;
    vertical-align: top;
}

body.woocommerce-cart .cart_totals table.shop_table tr:first-child th,
body.woocommerce-cart .cart_totals table.shop_table tr:first-child td {
    border-top: 0;
}

body.woocommerce-cart .cart_totals table.shop_table th {
    width: 34%;
    color: var(--eg-ink);
    font-weight: 900;
}

body.woocommerce-cart .cart_totals table.shop_table td {
    color: var(--eg-ink);
    text-align: right;
}

body.woocommerce-cart .cart_totals .shipping td {
    text-align: left;
}

body.woocommerce-cart #shipping_method {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.woocommerce-cart #shipping_method li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--eg-line);
    background: #fbfcfd;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

body.woocommerce-cart #shipping_method li.is-selected,
body.woocommerce-cart #shipping_method li:has(input.shipping_method:checked) {
    border-color: var(--eg-green);
    background: #f7f9df;
    box-shadow: inset 0 0 0 1px rgba(168, 196, 0, .55);
}

body.woocommerce-cart #shipping_method input {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid #9aa3ad;
    border-radius: 50%;
    background: var(--eg-white);
    accent-color: var(--eg-green);
    cursor: pointer;
    box-shadow: inset 0 0 0 4px var(--eg-white);
}

body.woocommerce-cart #shipping_method input:checked,
body.woocommerce-cart #shipping_method li.is-selected input,
body.woocommerce-cart #shipping_method li:has(input.shipping_method:checked) input {
    border-color: var(--eg-green) !important;
    background: var(--eg-green) !important;
    box-shadow: inset 0 0 0 4px var(--eg-white), 0 0 0 2px rgba(168, 196, 0, .25);
}

body.woocommerce-cart #shipping_method input:focus-visible {
    outline: 2px solid rgba(168, 196, 0, .42);
    outline-offset: 2px;
}

body.woocommerce-cart #shipping_method label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    color: var(--eg-ink);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

body.woocommerce-cart #shipping_method label img {
    max-width: 56px;
    max-height: 26px;
    object-fit: contain;
}

body.woocommerce-cart .woocommerce-shipping-destination,
body.woocommerce-cart .woocommerce-shipping-calculator {
    margin: 12px 0 0;
    color: var(--eg-muted);
    font-size: 13px;
    line-height: 1.45;
}

body.woocommerce-cart .shipping-calculator-button {
    color: var(--eg-green-dark);
    font-weight: 900;
    text-decoration: underline;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
    padding-top: 18px;
    color: var(--eg-black);
    font-size: 18px;
    font-weight: 900;
}

body.woocommerce-cart .cart_totals .order-total .amount {
    font-size: 21px;
}

body.woocommerce-cart .wc-proceed-to-checkout {
    padding: 18px 0 0;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: flex;
    width: 100%;
    min-height: 54px;
    margin: 0;
    border: 2px solid var(--eg-green) !important;
    border-radius: var(--eg-radius);
    background: var(--eg-green) !important;
    color: var(--eg-black) !important;
    font-size: 17px;
    font-weight: 900;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    border-color: var(--eg-green-dark) !important;
    background: var(--eg-green-dark) !important;
    color: var(--eg-white) !important;
}

body.woocommerce-cart .cart-empty,
body.woocommerce-cart .return-to-shop {
    grid-column: 1 / -1;
}

body.woocommerce-checkout .content-layout {
    padding: 42px 0 72px;
}

body.woocommerce-checkout .content-card {
    width: 100%;
    max-width: 1250px;
    padding: 0;
}

body.woocommerce-checkout .content-card > h1 {
    margin: 0 0 28px;
    color: var(--eg-ink);
    font-size: 38px;
    line-height: 1.12;
}

body.woocommerce-checkout .entry-content > .woocommerce {
    width: 100%;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
    margin: 0 0 22px;
    padding: 14px 18px;
    border: 1px solid var(--eg-line);
    border-left: 4px solid var(--eg-green);
    background: #f7f9df;
    color: var(--eg-ink);
    font-size: 14px;
    font-weight: 700;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
    color: var(--eg-green-dark);
    font-weight: 900;
    text-decoration: underline;
}

body.woocommerce-checkout form.checkout_coupon {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto;
    gap: 10px;
    max-width: 720px;
    margin: 0 0 24px;
    padding: 18px;
    border: 1px solid var(--eg-line);
    background: var(--eg-white);
}

body.woocommerce-checkout form.checkout_coupon p {
    margin: 0;
}

body.woocommerce-checkout form.checkout_coupon > p:first-child {
    grid-column: 1 / -1;
    color: var(--eg-muted);
    font-size: 14px;
}

body.woocommerce-checkout form.checkout_coupon .form-row {
    float: none;
    width: 100%;
    padding: 0;
}

body.woocommerce-checkout form.checkout_coupon .input-text {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid #cfd5dd;
    border-radius: 0;
}

body.woocommerce-checkout form.checkout_coupon .button {
    min-height: 44px;
    border-color: var(--eg-green);
    background: var(--eg-green);
    color: var(--eg-black);
}

body.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    grid-template-rows: auto auto 1fr;
    gap: 0 32px;
    align-items: start;
}

body.woocommerce-checkout #customer_details {
    grid-column: 1;
    grid-row: 1 / span 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    width: 100%;
}

body.woocommerce-checkout #customer_details::before,
body.woocommerce-checkout #customer_details::after {
    content: none;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
    float: none;
    width: 100%;
}

body.woocommerce-checkout #customer_details .col-1 {
    grid-column: 1;
    grid-row: 1;
}

body.woocommerce-checkout #customer_details .col-2 {
    display: contents;
}

body.woocommerce-checkout .woocommerce-shipping-fields {
    grid-column: 1;
    grid-row: 2;
}

body.woocommerce-checkout .woocommerce-additional-fields {
    grid-column: 1;
    grid-row: 3;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields {
    padding: 24px;
    border: 1px solid var(--eg-line);
    background: var(--eg-white);
}

body.woocommerce-checkout .woocommerce-additional-fields {
    margin-top: 0;
}

body.woocommerce-checkout .egastro-checkout-mode {
    margin: 0 0 20px;
    padding: 14px;
    border: 1px solid var(--eg-line);
    background: #fbfcfd;
}

body.woocommerce-checkout .egastro-checkout-mode__option {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #cfd5dd;
    background: var(--eg-white);
    color: var(--eg-ink);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

body.woocommerce-checkout .egastro-checkout-mode__option:has(input:checked) {
    border-color: var(--eg-green);
    background: #f7f9df;
    box-shadow: inset 0 0 0 1px rgba(168, 196, 0, .45);
}

body.woocommerce-checkout .egastro-checkout-mode__option input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--eg-green);
}

body.woocommerce-checkout p.create-account {
    display: none !important;
}

body.woocommerce-checkout div.create-account {
    margin: 14px 0 0;
    padding: 14px;
    border: 1px solid var(--eg-line);
    background: #fbfcfd;
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
    margin: 0 0 20px;
    color: var(--eg-ink);
    font-size: 22px;
    line-height: 1.15;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.woocommerce-checkout form .form-row {
    float: none;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

body.woocommerce-checkout form .form-row-first,
body.woocommerce-checkout form .form-row-last {
    width: 100% !important;
}

body.woocommerce-checkout form .form-row-wide,
body.woocommerce-checkout #billing_company_field,
body.woocommerce-checkout #billing_country_field,
body.woocommerce-checkout #billing_address_1_field,
body.woocommerce-checkout #billing_address_2_field,
body.woocommerce-checkout #shipping_country_field,
body.woocommerce-checkout #shipping_address_1_field,
body.woocommerce-checkout #shipping_address_2_field,
body.woocommerce-checkout #order_comments_field {
    grid-column: 1 / -1;
}

body.woocommerce-checkout form .form-row label {
    display: block;
    margin: 0 0 6px;
    color: var(--eg-ink);
    font-size: 13px;
    font-weight: 900;
}

body.woocommerce-checkout form .form-row .required {
    color: var(--eg-red);
    text-decoration: none;
}

body.woocommerce-checkout form .form-row input.input-text,
body.woocommerce-checkout form .form-row textarea,
body.woocommerce-checkout form .form-row select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid #cfd5dd;
    border-radius: 0;
    background: var(--eg-white);
    color: var(--eg-ink);
    font-size: 14px;
}

body.woocommerce-checkout form .form-row textarea {
    min-height: 104px;
    padding-top: 10px;
    resize: vertical;
}

body.woocommerce-checkout form .form-row input.input-text:focus,
body.woocommerce-checkout form .form-row textarea:focus,
body.woocommerce-checkout form .form-row select:focus {
    border-color: var(--eg-green);
    outline: 2px solid rgba(168, 196, 0, .18);
    outline-offset: 0;
}

body.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 44px;
    border: 1px solid #cfd5dd;
    border-radius: 0;
}

body.woocommerce-checkout .select2-container .select2-selection__rendered {
    padding-right: 32px;
    padding-left: 12px;
    line-height: 42px;
}

body.woocommerce-checkout .select2-container .select2-selection__arrow {
    height: 42px;
}

body.woocommerce-checkout #ship-to-different-address {
    margin: 0 0 18px;
    font-size: 15px;
}

body.woocommerce-checkout #ship-to-different-address label {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 900;
    cursor: pointer;
}

body.woocommerce-checkout #ship-to-different-address input {
    accent-color: var(--eg-green);
}

body.woocommerce-checkout #order_review_heading {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    padding: 24px 24px 0;
    border: 1px solid var(--eg-line);
    border-bottom: 0;
    background: var(--eg-white);
    box-shadow: var(--eg-shadow);
}

body.woocommerce-checkout #order_review {
    grid-column: 2;
    grid-row: 2;
    padding: 18px 24px 24px;
    border: 1px solid var(--eg-line);
    border-top: 0;
    background: var(--eg-white);
    box-shadow: var(--eg-shadow);
}

body.woocommerce-checkout #order_review table.shop_table {
    width: 100%;
    margin: 0 0 20px;
    border: 0 !important;
    background: transparent;
}

body.woocommerce-checkout #order_review table.shop_table thead,
body.woocommerce-checkout #order_review table.shop_table tbody,
body.woocommerce-checkout #order_review table.shop_table tfoot {
    display: block;
    width: 100%;
}

body.woocommerce-checkout #order_review table.shop_table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    column-gap: 16px;
    width: 100%;
}

body.woocommerce-checkout #order_review table.shop_table tr.shipping {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 8px;
}

body.woocommerce-checkout #order_review table.shop_table th,
body.woocommerce-checkout #order_review table.shop_table td {
    padding: 12px 0;
    border-top: 1px solid var(--eg-line);
    color: var(--eg-ink);
    font-size: 13px;
    line-height: 1.35;
    vertical-align: top;
}

body.woocommerce-checkout #order_review table.shop_table thead th {
    border-top: 0;
    color: var(--eg-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

body.woocommerce-checkout #order_review table.shop_table td:last-child,
body.woocommerce-checkout #order_review table.shop_table th:last-child {
    text-align: right;
}

body.woocommerce-checkout #order_review table.shop_table .product-name {
    min-width: 0;
    font-weight: 800;
    overflow-wrap: break-word;
}

body.woocommerce-checkout #order_review table.shop_table .product-total {
    white-space: nowrap;
}

body.woocommerce-checkout #order_review table.shop_table td[colspan],
body.woocommerce-checkout #order_review table.shop_table th[colspan] {
    grid-column: 1 / -1;
}

body.woocommerce-checkout #order_review table.shop_table .cart-subtotal th,
body.woocommerce-checkout #order_review table.shop_table .cart-subtotal td,
body.woocommerce-checkout #order_review table.shop_table .order-total th,
body.woocommerce-checkout #order_review table.shop_table .order-total td {
    color: var(--eg-black);
    font-weight: 900;
}

body.woocommerce-checkout #order_review table.shop_table .order-total th,
body.woocommerce-checkout #order_review table.shop_table .order-total td {
    font-size: 18px;
}

body.woocommerce-checkout #order_review .shipping td {
    text-align: left;
    width: auto;
    padding-left: 0;
}

body.woocommerce-checkout #order_review table.shop_table .shipping th {
    width: 58px;
    min-width: 58px;
    padding-right: 8px;
}

body.woocommerce-checkout #shipping_method {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.woocommerce-checkout #shipping_method li {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 9px;
    border: 1px solid var(--eg-line);
    background: #fbfcfd;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

body.woocommerce-checkout #shipping_method.egastro-checkout-shipping-dropdown:not(.is-open) li:not(.is-selected) {
    display: none !important;
}

body.woocommerce-checkout #shipping_method li:only-child,
body.woocommerce-checkout #shipping_method li:has(input.shipping_method[type="hidden"]),
body.woocommerce-checkout #shipping_method.egastro-checkout-shipping-dropdown li.is-selected {
    grid-template-columns: minmax(0, 1fr);
    cursor: pointer;
}

body.woocommerce-checkout #shipping_method li.is-selected,
body.woocommerce-checkout #shipping_method li:only-child,
body.woocommerce-checkout #shipping_method li:has(input.shipping_method:checked) {
    border-color: var(--eg-green);
    background: #f7f9df;
    box-shadow: inset 0 0 0 1px rgba(168, 196, 0, .55);
}

body.woocommerce-checkout #shipping_method input {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid #9aa3ad;
    border-radius: 50%;
    background: var(--eg-white);
    accent-color: var(--eg-green);
    cursor: pointer;
    box-shadow: inset 0 0 0 4px var(--eg-white);
}

body.woocommerce-checkout #shipping_method input:checked,
body.woocommerce-checkout #shipping_method li.is-selected input,
body.woocommerce-checkout #shipping_method li:has(input.shipping_method:checked) input {
    border-color: var(--eg-green) !important;
    background: var(--eg-green) !important;
    box-shadow: inset 0 0 0 4px var(--eg-white), 0 0 0 2px rgba(168, 196, 0, .25);
}

body.woocommerce-checkout #shipping_method li:only-child input.shipping_method[type="radio"],
body.woocommerce-checkout #shipping_method.egastro-checkout-shipping-dropdown input.shipping_method[type="radio"],
body.woocommerce-checkout #shipping_method li input.shipping_method[type="hidden"] {
    display: none;
}

body.woocommerce-checkout #shipping_method.egastro-checkout-shipping-dropdown {
    position: relative;
}

body.woocommerce-checkout #shipping_method.egastro-checkout-shipping-dropdown li {
    grid-template-columns: minmax(0, 1fr);
}

body.woocommerce-checkout #shipping_method.egastro-checkout-shipping-dropdown li.is-selected {
    grid-template-columns: minmax(0, 1fr) auto;
}

body.woocommerce-checkout #shipping_method.egastro-checkout-shipping-dropdown li.is-selected::after {
    content: "";
    justify-self: end;
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-right: 2px solid var(--eg-ink);
    border-bottom: 2px solid var(--eg-ink);
    transform: rotate(45deg);
    transition: transform .16s ease;
}

body.woocommerce-checkout #shipping_method.egastro-checkout-shipping-dropdown.is-open li.is-selected::after {
    transform: rotate(225deg);
}

body.woocommerce-checkout #shipping_method.egastro-checkout-shipping-dropdown.is-open li:not(.is-selected):hover {
    border-color: var(--eg-green);
    background: #f7f9df;
}

body.woocommerce-checkout #shipping_method label {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
    margin: 0;
    color: var(--eg-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    overflow-wrap: anywhere;
    cursor: pointer;
}

body.woocommerce-checkout #shipping_method label img {
    justify-self: end;
    max-width: 48px;
    max-height: 26px;
    object-fit: contain;
}

body.woocommerce-checkout #shipping_method li select,
body.woocommerce-checkout #shipping_method li .select2-container,
body.woocommerce-checkout #shipping_method li input[type="text"]:not(.shipping_method) {
    grid-column: 1 / -1;
    width: 100% !important;
    max-width: 100%;
    margin-top: 8px;
}

body.woocommerce-checkout #payment {
    border-radius: 0;
    background: transparent;
}

body.woocommerce-checkout #payment ul.payment_methods {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
}

body.woocommerce-checkout #payment ul.payment_methods li {
    padding: 12px;
    border: 1px solid var(--eg-line);
    background: #fbfcfd;
    color: var(--eg-ink);
    font-size: 13px;
    font-weight: 800;
}

body.woocommerce-checkout #payment ul.payment_methods li input {
    margin-right: 8px;
    accent-color: var(--eg-green);
}

body.woocommerce-checkout #payment div.payment_box {
    margin: 12px 0 0;
    padding: 12px;
    border: 1px solid var(--eg-line);
    background: var(--eg-white);
    color: var(--eg-muted);
    font-size: 13px;
}

body.woocommerce-checkout #payment div.payment_box::before {
    content: none;
}

body.woocommerce-checkout #payment .form-row {
    margin-top: 16px;
    padding: 0;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin: 0 0 16px;
    color: var(--eg-muted);
    font-size: 13px;
    line-height: 1.45;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a {
    color: var(--eg-green-dark);
    font-weight: 900;
    text-decoration: underline;
}

body.woocommerce-checkout #place_order {
    float: none;
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--eg-green) !important;
    border-radius: var(--eg-radius);
    background: var(--eg-green) !important;
    color: var(--eg-black) !important;
    font-size: 17px;
    font-weight: 900;
}

body.woocommerce-checkout #place_order:hover {
    border-color: var(--eg-green-dark) !important;
    background: var(--eg-green-dark) !important;
    color: var(--eg-white) !important;
}

.featured-products .woocommerce ul.products,
.featured-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 1px solid var(--eg-line);
    border-left: 1px solid var(--eg-line);
}

.featured-products .woocommerce ul.products li.product,
.featured-products ul.products li.product {
    display: grid !important;
    grid-template-rows: auto auto auto auto 1fr auto;
    float: none !important;
    width: auto !important;
    max-width: none !important;
    min-height: 440px;
    margin: 0 !important;
    padding: 12px 10px 16px !important;
    border: 0 !important;
    border-right: 1px solid var(--eg-line) !important;
    border-bottom: 1px solid var(--eg-line) !important;
    border-radius: 0 !important;
    background: var(--eg-white);
    box-shadow: none !important;
}

.featured-products .woocommerce ul.products li.product:hover,
.featured-products ul.products li.product:hover {
    transform: none;
    box-shadow: inset 0 0 0 2px rgba(168, 196, 0, .28) !important;
}

.featured-products .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.featured-products ul.products li.product .woocommerce-LoopProduct-link {
    display: contents;
    color: inherit;
}

.featured-products .woocommerce ul.products li.product a img,
.featured-products ul.products li.product a img {
    display: block;
    width: 100% !important;
    height: 150px !important;
    max-height: 150px !important;
    object-fit: contain;
    margin: 0 0 10px !important;
}

.featured-products .woocommerce-loop-product__title {
    min-height: 66px;
    margin: 0 0 10px;
    color: var(--eg-ink);
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
}

.featured-products .product-code {
    display: grid;
    grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--eg-muted);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.featured-products .product-code::before,
.featured-products .product-code::after {
    content: "";
    display: block;
    height: 1px;
    background: var(--eg-line);
}

.featured-products .egastro-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    min-height: 32px;
    margin: 14px 0 10px;
    text-align: center;
    white-space: nowrap;
}

.featured-products .egastro-price strong,
.featured-products .egastro-price small {
    display: inline;
    font-size: 13px;
}

.featured-products .egastro-price strong {
    font-weight: 500;
}

.featured-products .egastro-price span,
.featured-products .egastro-price small,
.featured-products .egastro-price .egastro-price-suffix,
.featured-products .egastro-price .egastro-tax-prefix {
    color: var(--eg-muted) !important;
    font-size: 12px;
    font-weight: 400 !important;
}

.featured-products .egastro-price .egastro-gross-price,
.featured-products .egastro-price .egastro-price-suffix .woocommerce-Price-amount,
.featured-products .egastro-price .egastro-price-suffix bdi {
    color: var(--eg-black) !important;
    font-size: 16px;
    font-weight: 950 !important;
}

.featured-products .egastro-loop-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px 38px;
    gap: 6px;
    align-items: stretch;
    margin-top: auto;
}

.featured-products .woocommerce ul.products li.product .egastro-loop-actions .button,
.featured-products ul.products li.product .egastro-loop-actions .button {
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: auto !important;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--eg-green);
    color: var(--eg-black);
    font-size: 13px;
    line-height: 1 !important;
}

.featured-products .egastro-icon-action {
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--eg-line) !important;
    background: var(--eg-white);
    color: var(--eg-black);
    font-size: 22px;
    font-weight: 900;
    line-height: 1 !important;
}

.featured-products .egastro-icon-action:hover {
    border-color: var(--eg-green);
    background: #f7f9df;
    color: var(--eg-black);
}

.single-product .shop-main {
    padding: 32px 0 64px;
    background: #fff;
    overflow-x: clip;
}

.single-product .shop-main > .container {
    width: calc(100% - 48px);
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.single-product .woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(390px, 1fr) minmax(280px, .68fr) 300px;
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 24px;
    row-gap: 24px;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.single-product .egastro-single-header {
    grid-column: 1 / 3;
}

.single-product .woocommerce-breadcrumb {
    margin: 0 0 26px;
    color: #777;
    font-size: 12px;
}

.single-product .egastro-single-header h1 {
    max-width: 900px;
    margin: 0 0 18px;
    color: #3b3b3b;
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: 0;
}

.egastro-single-header__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    color: #555;
    font-size: 13px;
}

.egastro-single-header__meta strong {
    color: #111;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.single-product .woocommerce div.product div.images {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    min-width: 0;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 18px;
    width: 100%;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    border: 1px solid #d7d7d7;
    background: #fff;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image {
    display: grid;
    place-items: center;
    min-height: 390px;
    padding: 24px;
}

.single-product .woocommerce div.product div.images img {
    display: block;
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    align-content: start;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs li {
    float: none;
    width: 64px;
    border: 1px solid #d7d7d7;
    background: #fff;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs img {
    width: 100%;
    height: 64px;
    object-fit: contain;
    padding: 4px;
}

.egastro-single-details {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.55;
}

.egastro-single-details > *:first-child {
    margin-top: 0;
}

.egastro-single-details p {
    margin: 0 0 16px;
}

.egastro-single-details__content {
    overflow: visible;
}

.egastro-single-details ul {
    display: grid;
    gap: 14px;
    margin: 0 0 14px 18px;
    padding: 0;
}

.egastro-single-details li::marker {
    color: #222;
}

.egastro-single-details a,
.egastro-single-details__toggle {
    color: #333;
    font-size: 13px;
    font-weight: 900;
    text-decoration: underline;
}

.egastro-single-details__toggle {
    display: inline;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.single-product .woocommerce div.product div.summary {
    grid-column: 3;
    grid-row: 1 / span 2;
    position: sticky;
    top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.egastro-buy-card {
    display: grid;
    gap: 16px;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 18px;
    border: 1px solid #d7d7d7;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.egastro-buy-card h2 {
    margin: 0 0 18px;
    color: #3b3b3b;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.egastro-buy-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--eg-line);
}

.egastro-buy-card__price span {
    color: #555;
    font-size: 13px;
    font-weight: 800;
}

.egastro-buy-card__price strong {
    color: #333;
    font-size: 15px;
    line-height: 1;
}

.egastro-buy-card__price .egastro-price-suffix {
    color: var(--eg-muted) !important;
    font-size: 13px;
    font-weight: 400 !important;
}

.egastro-buy-card__price .egastro-price-suffix .woocommerce-Price-amount,
.egastro-buy-card__price .egastro-price-suffix bdi,
.egastro-buy-card__price .egastro-gross-price,
.egastro-buy-card__price .egastro-gross-price .woocommerce-Price-amount,
.egastro-buy-card__price .egastro-gross-price bdi {
    color: var(--eg-black);
    font-size: 18px;
    font-weight: 950 !important;
}

.egastro-buy-card__price small {
    color: #333;
    font-size: 13px;
    font-weight: 900;
}

.egastro-buy-card__price em {
    flex: 0 0 100%;
    color: #4b7f24;
    font-size: 12px;
    font-style: normal;
}

.egastro-buy-card__price em::before {
    content: "\2713";
    margin-right: 6px;
    color: #111;
    font-weight: 900;
}

.single-product .woocommerce div.product form.cart {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 8px;
    margin: 0;
}

.egastro-single-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: stretch;
    padding-bottom: 0;
    border-bottom: 0;
}

.single-product .woocommerce div.product .egastro-single-actions form.cart {
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) !important;
    gap: 8px !important;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 !important;
}

.single-product .woocommerce div.product .egastro-single-actions form.cart .stock,
.single-product .woocommerce div.product .egastro-single-actions form.cart [class*="stock"],
.single-product .woocommerce div.product .egastro-single-actions form.cart [class*="availability"] {
    display: none !important;
}

.single-product .woocommerce div.product .egastro-single-actions form.cart .quantity {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
}

.single-product .quantity .qty {
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    height: 46px !important;
    min-height: 46px !important;
    border: 1px solid var(--eg-line);
    border-radius: 0;
    font-weight: 800;
    text-align: center;
}

.single-product .woocommerce div.product form.cart .button.single_add_to_cart_button {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 0 !important;
    border-radius: 0;
    background: var(--eg-green) !important;
    color: var(--eg-black) !important;
    font-size: 15px;
    font-weight: 900;
    text-transform: none;
}

.egastro-single-actions .egastro-wishlist-action {
    flex: 0 0 46px;
}

.egastro-single-actions .egastro-compare-action {
    flex: 0 0 46px;
}

.egastro-single-actions .egastro-icon-action {
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--eg-line) !important;
    background: var(--eg-white);
    color: var(--eg-black);
    font-size: 24px;
    font-weight: 900;
    line-height: 1 !important;
}

.egastro-single-actions .egastro-icon-action span {
    display: block;
    line-height: 1;
}

.egastro-single-actions .egastro-icon-action:hover {
    border-color: var(--eg-green) !important;
    background: #f7f9df;
    color: var(--eg-black);
}

body.single-product .egastro-buy-card .egastro-single-actions {
    display: grid !important;
    grid-template-columns: 52px minmax(116px, 1fr) 46px 46px;
    gap: 8px !important;
    align-items: stretch !important;
    width: 100%;
}

body.single-product .egastro-buy-card .egastro-single-actions form.cart {
    display: contents !important;
    margin: 0 !important;
}

body.single-product .egastro-buy-card .egastro-single-actions form.cart .quantity {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 52px !important;
    margin: 0 !important;
}

body.single-product .egastro-buy-card .egastro-single-actions form.cart .quantity .qty {
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    height: 46px !important;
    min-height: 46px !important;
}

body.single-product .egastro-buy-card .egastro-single-actions form.cart .button.single_add_to_cart_button {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 10px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

body.single-product .egastro-buy-card .egastro-single-actions .egastro-wishlist-action {
    grid-column: 3 !important;
    grid-row: 1 !important;
}

body.single-product .egastro-buy-card .egastro-single-actions .egastro-compare-action {
    grid-column: 4 !important;
    grid-row: 1 !important;
}

.egastro-buy-card__stock-note {
    padding: 0 0 14px;
    border-bottom: 1px solid var(--eg-line);
    color: #8a7a00;
    font-size: 14px;
    line-height: 1.35;
}

.egastro-buy-card__stock-note .stock,
.egastro-buy-card__stock-note p {
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.egastro-single-actions + .egastro-buy-card__info {
    margin-top: 0;
}

.egastro-buy-card__benefits {
    display: grid;
    border: 1px solid #d7d7d7;
}

.egastro-buy-card__benefits div {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px 12px;
    border-bottom: 1px solid #d7d7d7;
}

.egastro-buy-card__benefits div:last-child {
    border-bottom: 0;
}

.egastro-buy-card__benefits span {
    color: #111;
    font-size: 24px;
    line-height: 1;
    text-align: center;
}

.egastro-buy-card__benefits strong {
    color: #333;
    font-size: 13px;
    line-height: 1.2;
}

.egastro-buy-card__benefits small {
    color: #777;
    font-size: 11px;
    white-space: nowrap;
}

.egastro-buy-card__info {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border: 1px solid #d7d7d7;
    background: var(--eg-white);
    overflow: hidden;
}

.egastro-buy-card__info h3 {
    margin: 0;
    padding: 13px 14px;
    border-bottom: 1px solid #d7d7d7;
    color: var(--eg-ink);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.egastro-buy-card__info table,
.egastro-buy-card__info .woocommerce-product-attributes {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: collapse !important;
    table-layout: fixed !important;
    background: transparent !important;
}

.egastro-buy-card__info tr,
.egastro-buy-card__info .woocommerce-product-attributes-item {
    border-bottom: 1px solid #d7d7d7 !important;
}

.egastro-buy-card__info tr:last-child,
.egastro-buy-card__info .woocommerce-product-attributes-item:last-child {
    border-bottom: 0 !important;
}

.egastro-buy-card__info th,
.egastro-buy-card__info td {
    box-sizing: border-box;
    padding: 11px 14px !important;
    border: 0 !important;
    background: transparent !important;
    color: #333;
    font-size: 13px !important;
    line-height: 1.3 !important;
    vertical-align: top;
    overflow-wrap: anywhere;
    word-break: normal;
}

.egastro-buy-card__info th {
    width: 44%;
    font-weight: 900 !important;
}

.egastro-buy-card__info td {
    width: 56%;
    font-weight: 500;
}

.egastro-buy-card__info td p {
    margin: 0 !important;
    padding: 0 !important;
}

.egastro-buy-card__favorite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 32px;
    color: #555;
    font-size: 12px;
}

.egastro-buy-card__favorite::before {
    content: "\2661";
    color: #111;
    font-size: 28px;
    line-height: 1;
}

body.single-product .egastro-buy-card .single_add_to_cart_button,
body.single-product .woocommerce div.product .egastro-buy-card form.cart .button,
body.single-product .woocommerce div.product .egastro-buy-card form.cart button.button {
    border-color: var(--eg-green) !important;
    background-color: var(--eg-green) !important;
    color: var(--eg-black) !important;
    box-shadow: none !important;
}

body.single-product .egastro-buy-card .single_add_to_cart_button:hover,
body.single-product .woocommerce div.product .egastro-buy-card form.cart .button:hover,
body.single-product .woocommerce div.product .egastro-buy-card form.cart button.button:hover {
    filter: brightness(.96);
}

.single-product .woocommerce div.product .woocommerce-tabs,
.single-product .woocommerce div.product .related,
.single-product .woocommerce div.product .upsells {
    grid-column: 1 / -1;
    margin-top: 28px;
}

.single-product .woocommerce div.product .woocommerce-tabs {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    float: none !important;
    width: 100% !important;
    padding: 0;
    border: 0;
    background: transparent;
}

body.single-product .woocommerce div.product > .woocommerce-tabs {
    display: none !important;
}

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

.single-product .woocommerce div.product .woocommerce-tabs .panel {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 24px !important;
    padding: 28px !important;
    border: 1px solid var(--eg-line);
    background: var(--eg-white);
    box-sizing: border-box;
}

.single-product .woocommerce div.product .woocommerce-tabs #tab-description {
    scroll-margin-top: 24px;
}

.single-product .woocommerce div.product .woocommerce-tabs #tab-description p,
.single-product .woocommerce div.product .woocommerce-tabs #tab-description li {
    max-width: 980px;
    font-size: 16px;
    line-height: 1.65;
}

.single-product .woocommerce div.product .woocommerce-tabs #tab-additional_information {
    margin-top: 0 !important;
}

.single-product .woocommerce div.product .woocommerce-tabs .panel > h2 {
    margin: 0 0 22px;
    color: var(--eg-ink);
    font-size: 28px;
    line-height: 1.15;
}

.single-product .woocommerce div.product .egastro-product-sections {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    display: grid;
    gap: 28px;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 28px;
}

.single-product .woocommerce div.product .egastro-product-section {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 30px 34px;
    border: 1px solid var(--eg-line);
    background: var(--eg-white);
    box-sizing: border-box;
}

.single-product .woocommerce div.product .egastro-product-section--description {
    scroll-margin-top: 24px;
}

.single-product .woocommerce div.product .egastro-product-section--description,
.single-product .woocommerce div.product .egastro-product-section--description .egastro-product-description-content,
.single-product .woocommerce div.product .egastro-product-section--description .woocommerce-Tabs-panel,
.single-product .woocommerce div.product .egastro-product-section--description .woocommerce-Tabs-panel--description,
.single-product .woocommerce div.product .egastro-product-section--description .entry-content,
.single-product .woocommerce div.product .egastro-product-section--description div,
.single-product .woocommerce div.product .egastro-product-section--description section,
.single-product .woocommerce div.product .egastro-product-section--description article,
.single-product .woocommerce div.product .egastro-product-section--description p,
.single-product .woocommerce div.product .egastro-product-section--description ul,
.single-product .woocommerce div.product .egastro-product-section--description ol,
.single-product .woocommerce div.product .egastro-product-section--description table {
    width: 100% !important;
    max-width: none !important;
}

.single-product .woocommerce div.product .egastro-product-section--description * {
    max-width: none !important;
}

.single-product .woocommerce div.product .egastro-product-description-content {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
}

body.single-product .egastro-shop-container div.product .egastro-product-sections {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    display: grid !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 28px !important;
}

body.single-product .egastro-shop-container div.product .egastro-product-section {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 30px 34px !important;
    border: 1px solid var(--eg-line) !important;
    background: var(--eg-white) !important;
    box-sizing: border-box !important;
}

body.single-product .egastro-shop-container div.product .egastro-product-section--description,
body.single-product .egastro-shop-container div.product .egastro-product-section--description .egastro-product-description-content,
body.single-product .egastro-shop-container div.product .egastro-product-section--description * {
    width: 100% !important;
    max-width: none !important;
}

body.single-product .egastro-shop-container div.product .egastro-product-section--description p,
body.single-product .egastro-shop-container div.product .egastro-product-section--description li {
    font-size: 16px !important;
    line-height: 1.65 !important;
}

.single-product .woocommerce div.product .egastro-product-section h2 {
    margin: 0 0 22px;
    color: var(--eg-ink);
    font-size: 28px;
    line-height: 1.15;
}

.single-product .woocommerce div.product .egastro-product-section--description p,
.single-product .woocommerce div.product .egastro-product-section--description li {
    font-size: 16px;
    line-height: 1.65;
}

.single-product .woocommerce div.product .egastro-product-section--description br {
    display: none;
}

.single-product .woocommerce div.product .egastro-product-section--additional_information table {
    width: min(100%, 760px);
}

body.single-product .egastro-shop-container div.product > .related,
body.single-product .egastro-shop-container div.product > .upsells {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    clear: both !important;
}

body.single-product .egastro-shop-container div.product > .related {
    margin-top: 36px !important;
}

body.single-product .egastro-shop-container div.product > .related > h2,
body.single-product .egastro-shop-container div.product > .upsells > h2 {
    margin: 0 0 20px;
    color: var(--eg-ink);
    font-size: 28px;
    line-height: 1.15;
}

body.single-product .egastro-shop-container div.product > .related ul.products,
body.single-product .egastro-shop-container div.product > .upsells ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 1px solid var(--eg-line);
    border-left: 1px solid var(--eg-line);
}

body.single-product .egastro-shop-container div.product > .related ul.products li.product,
body.single-product .egastro-shop-container div.product > .upsells ul.products li.product {
    width: auto !important;
    min-width: 0 !important;
    min-height: 440px;
    margin: 0 !important;
    padding: 12px 10px 16px;
    border: 0;
    border-right: 1px solid var(--eg-line);
    border-bottom: 1px solid var(--eg-line);
    border-radius: 0;
    box-shadow: none;
}

body.single-product .egastro-shop-container div.product > .related ul.products li.product:hover,
body.single-product .egastro-shop-container div.product > .upsells ul.products li.product:hover {
    transform: none;
    box-shadow: inset 0 0 0 2px rgba(168, 196, 0, .28);
}

body.single-product .egastro-shop-container div.product > .related ul.products li.product a img,
body.single-product .egastro-shop-container div.product > .upsells ul.products li.product a img {
    height: 150px;
    margin-bottom: 10px;
}

body.single-product .egastro-shop-container div.product > .related .woocommerce-loop-product__title,
body.single-product .egastro-shop-container div.product > .upsells .woocommerce-loop-product__title {
    min-height: 66px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
}

body.single-product .egastro-shop-container div.product > .related .product-code,
body.single-product .egastro-shop-container div.product > .upsells .product-code {
    display: grid;
    grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--eg-muted);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

body.single-product .egastro-shop-container div.product > .related .product-code::before,
body.single-product .egastro-shop-container div.product > .related .product-code::after,
body.single-product .egastro-shop-container div.product > .upsells .product-code::before,
body.single-product .egastro-shop-container div.product > .upsells .product-code::after {
    content: "";
    display: block;
    height: 1px;
    background: var(--eg-line);
}

body.single-product .egastro-shop-container div.product > .related .egastro-price,
body.single-product .egastro-shop-container div.product > .upsells .egastro-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    min-height: 32px;
    margin: 14px 0 10px;
    text-align: center;
    white-space: nowrap;
}

body.single-product .egastro-shop-container div.product > .related .egastro-price strong,
body.single-product .egastro-shop-container div.product > .related .egastro-price small,
body.single-product .egastro-shop-container div.product > .upsells .egastro-price strong,
body.single-product .egastro-shop-container div.product > .upsells .egastro-price small {
    display: inline;
    font-size: 13px;
}

body.single-product .egastro-shop-container div.product > .related .egastro-price span,
body.single-product .egastro-shop-container div.product > .upsells .egastro-price span {
    font-size: 12px;
}

body.single-product .egastro-shop-container div.product > .related .egastro-price .egastro-gross-price,
body.single-product .egastro-shop-container div.product > .related .egastro-price .egastro-price-suffix .woocommerce-Price-amount,
body.single-product .egastro-shop-container div.product > .related .egastro-price .egastro-price-suffix bdi,
body.single-product .egastro-shop-container div.product > .upsells .egastro-price .egastro-gross-price,
body.single-product .egastro-shop-container div.product > .upsells .egastro-price .egastro-price-suffix .woocommerce-Price-amount,
body.single-product .egastro-shop-container div.product > .upsells .egastro-price .egastro-price-suffix bdi {
    color: var(--eg-black) !important;
    font-size: 16px;
    font-weight: 950 !important;
}

body.single-product .egastro-shop-container div.product > .related .egastro-price .egastro-price-suffix,
body.single-product .egastro-shop-container div.product > .related .egastro-price .egastro-tax-prefix,
body.single-product .egastro-shop-container div.product > .upsells .egastro-price .egastro-price-suffix,
body.single-product .egastro-shop-container div.product > .upsells .egastro-price .egastro-tax-prefix {
    color: var(--eg-muted) !important;
    font-size: 12px;
    font-weight: 400 !important;
}

body.single-product .egastro-shop-container div.product > .related .egastro-loop-actions,
body.single-product .egastro-shop-container div.product > .upsells .egastro-loop-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px 38px;
    gap: 6px;
    align-items: stretch;
    margin-top: auto;
}

body.single-product .egastro-shop-container div.product > .related .egastro-loop-actions .button,
body.single-product .egastro-shop-container div.product > .upsells .egastro-loop-actions .button {
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: auto !important;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    font-size: 13px;
    line-height: 1 !important;
}

body.single-product .egastro-shop-container div.product > .related .egastro-icon-action,
body.single-product .egastro-shop-container div.product > .upsells .egastro-icon-action {
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--eg-line) !important;
    background: var(--eg-white);
    color: var(--eg-black);
    font-size: 22px;
    font-weight: 900;
    line-height: 1 !important;
}

body.single-product .egastro-shop-container div.product {
    display: grid !important;
    grid-template-columns: minmax(390px, 1fr) minmax(280px, .68fr) 340px !important;
    grid-template-rows: auto auto auto auto !important;
    align-items: start !important;
    column-gap: 24px !important;
    row-gap: 24px !important;
    width: 100% !important;
    max-width: 1290px !important;
    margin: 0 auto !important;
}

body.single-product .egastro-shop-container .egastro-single-header {
    grid-column: 1 / 3 !important;
    grid-row: 1 !important;
}

body.single-product .egastro-shop-container div.images {
    grid-column: 1 !important;
    grid-row: 2 !important;
    float: none !important;
    width: auto !important;
    min-width: 0 !important;
}

body.single-product .egastro-shop-container .egastro-single-details {
    grid-column: 2 !important;
    grid-row: 2 !important;
    min-width: 0 !important;
}

body.single-product .egastro-shop-container div.summary {
    grid-column: 3 !important;
    grid-row: 1 / span 2 !important;
    float: none !important;
    width: auto !important;
    min-width: 0 !important;
}

.inspiration {
    background: var(--eg-soft);
}

.inspiration__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.inspiration article {
    min-height: 260px;
    padding: 28px;
    border-radius: var(--eg-radius);
    color: var(--eg-white);
    background:
        linear-gradient(120deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .58)),
        repeating-linear-gradient(90deg, #35393e 0 18px, #22262b 18px 36px);
}

.inspiration p {
    margin: 0 0 8px;
    color: var(--eg-green);
    font-weight: 900;
}

.inspiration h2 {
    margin: 0 0 12px;
    font-size: 32px;
}

.inspiration span {
    display: block;
    max-width: 560px;
    color: #e7ebef;
}

.inspiration a {
    display: inline-block;
    margin-top: 24px;
    color: var(--eg-green);
    font-weight: 900;
}

.service-strip {
    border-top: 1px solid var(--eg-line);
    border-bottom: 1px solid var(--eg-line);
    background: var(--eg-white);
}

.service-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
}

.service-strip__grid div {
    min-height: 92px;
    display: grid;
    align-content: center;
    gap: 2px;
    padding: 16px;
    border-left: 1px solid var(--eg-line);
}

.service-strip__grid div:last-child {
    border-right: 1px solid var(--eg-line);
}

.service-strip strong {
    font-size: 17px;
}

.service-strip span {
    color: var(--eg-muted);
}

.site-footer {
    background: var(--eg-black);
    color: var(--eg-white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding: 44px 0;
}

.footer-main h2,
.footer-main h3 {
    margin: 0 0 12px;
}

.footer-main p,
.footer-main a {
    color: #d8dde3;
}

.footer-main ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-main li + li {
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-bottom p {
    margin: 0;
    padding: 16px 0;
    color: #aeb5bf;
}

.content-card {
    max-width: 920px;
    padding: 28px 0;
}

.content-card h1 {
    margin-top: 0;
    font-size: 42px;
}

@media (max-width: 1120px) {
    .header-main {
        flex-wrap: wrap;
        padding: 18px 0;
    }

    .site-branding {
        flex-basis: 220px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .category-panel__inner,
    .category-tiles,
    .woocommerce .products ul,
    .woocommerce ul.products,
    .woocommerce-page .products ul,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.post-type-archive-product .woocommerce .products ul,
    body.post-type-archive-product .woocommerce ul.products,
    body.post-type-archive-product.woocommerce-page .products ul,
    body.post-type-archive-product.woocommerce-page ul.products,
    body.tax-product_cat .woocommerce .products ul,
    body.tax-product_cat .woocommerce ul.products,
    body.tax-product_cat.woocommerce-page .products ul,
    body.tax-product_cat.woocommerce-page ul.products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    body:not(.single-product) .egastro-shop-container ul.products {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .featured-products .woocommerce ul.products,
    .featured-products ul.products {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

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

    .single-product .woocommerce div.product {
        grid-template-columns: minmax(0, 1fr) 290px;
    }

    body.single-product .egastro-shop-container div.product {
        grid-template-columns: minmax(0, 1fr) 290px !important;
    }

    .single-product .egastro-single-header {
        grid-column: 1;
    }

    .single-product .woocommerce div.product div.images {
        grid-column: 1;
        grid-row: 2;
    }

    .egastro-single-details {
        grid-column: 1;
        grid-row: 3;
    }

    .single-product .woocommerce div.product div.summary {
        grid-column: 2;
        grid-row: 1 / span 3;
    }

    body.single-product .egastro-shop-container .egastro-single-header,
    body.single-product .egastro-shop-container div.images,
    body.single-product .egastro-shop-container .egastro-single-details {
        grid-column: 1 !important;
    }

    body.single-product .egastro-shop-container div.summary {
        grid-column: 2 !important;
        grid-row: 1 / span 3 !important;
    }

    .single-product .woocommerce div.product .woocommerce-tabs {
        grid-row: 4 !important;
    }

    body.single-product .egastro-shop-container div.product > .related ul.products,
    body.single-product .egastro-shop-container div.product > .upsells ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .single-product .woocommerce div.product div.images .woocommerce-product-gallery__image {
        min-height: 390px;
    }

    .single-product .woocommerce div.product div.images img {
        max-height: 350px;
    }

    .hero__visual {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 20px, 1440px);
    }

    .topline__inner,
    .mainnav__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 10px 0;
    }

    .topline nav,
    .primary-nav ul {
        gap: 8px;
    }

    .header-main {
        gap: 14px;
    }

    .site-search {
        grid-template-columns: 1fr 48px;
        width: 100%;
    }

    .site-search select {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 1px solid var(--eg-line);
    }

    .header-actions a {
        min-width: 0;
        flex: 1;
    }

    .category-panel__inner,
    .category-tiles,
    .woocommerce .products ul,
    .woocommerce ul.products,
    .woocommerce-page .products ul,
    .woocommerce-page ul.products,
    .inspiration__grid,
    .service-strip__grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .shop-main {
        padding: 28px 0;
    }

    .featured-products .woocommerce ul.products,
    .featured-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .featured-products .woocommerce ul.products li.product,
    .featured-products ul.products li.product {
        min-height: 410px;
    }

    body.post-type-archive-product .shop-main > .container,
    body.tax-product_cat .shop-main > .container {
        width: min(100% - 20px, 1250px);
    }

    .woocommerce-products-header__title,
    .shop-main .page-title {
        font-size: 28px;
    }

    .shop-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .woocommerce-ordering select {
        width: 100%;
    }

    .single-product .shop-main > .container {
        width: calc(100% - 20px);
        max-width: 1250px;
        margin-left: auto;
        margin-right: auto;
    }

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

    body.single-product .egastro-shop-container div.product {
        grid-template-columns: 1fr !important;
    }

    .single-product .egastro-single-header,
    .single-product .woocommerce div.product div.images,
    .egastro-single-details,
    .single-product .woocommerce div.product div.summary {
        grid-column: 1;
        grid-row: auto;
    }

    .single-product .woocommerce div.product div.summary {
        position: static;
    }

    body.single-product .egastro-shop-container .egastro-single-header,
    body.single-product .egastro-shop-container div.images,
    body.single-product .egastro-shop-container .egastro-single-details,
    body.single-product .egastro-shop-container div.summary {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    body.single-product .egastro-shop-container div.summary {
        position: static !important;
    }

    .single-product .woocommerce div.product .woocommerce-tabs {
        grid-row: auto !important;
    }

    body.single-product .egastro-shop-container div.product > .related ul.products,
    body.single-product .egastro-shop-container div.product > .upsells ul.products {
        grid-template-columns: 1fr !important;
    }

    .single-product .woocommerce div.product div.images .woocommerce-product-gallery {
        grid-template-columns: 1fr;
    }

    .single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
        grid-column: 1;
        grid-row: 1;
    }

    .single-product .woocommerce div.product div.images .flex-control-thumbs {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        flex-wrap: wrap;
    }

    .single-product .woocommerce div.product div.images .woocommerce-product-gallery__image {
        min-height: 300px;
    }

    .single-product .woocommerce div.product div.images img {
        max-height: 300px;
    }

    .single-product .egastro-single-header h1 {
        font-size: 26px;
    }

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

    .single-product .woocommerce div.product form.cart {
        grid-template-columns: 58px 1fr;
    }

    body.post-type-archive-product .woocommerce .products ul,
    body.post-type-archive-product .woocommerce ul.products,
    body.post-type-archive-product.woocommerce-page .products ul,
    body.post-type-archive-product.woocommerce-page ul.products,
    body.tax-product_cat .woocommerce .products ul,
    body.tax-product_cat .woocommerce ul.products,
    body.tax-product_cat.woocommerce-page .products ul,
    body.tax-product_cat.woocommerce-page ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body:not(.single-product) .egastro-shop-container ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.post-type-archive-product .woocommerce ul.products li.product,
    body.tax-product_cat .woocommerce ul.products li.product {
        min-height: 390px;
    }

    body.post-type-archive-product .woocommerce ul.products li.product a img,
    body.tax-product_cat .woocommerce ul.products li.product a img {
        height: 135px;
    }

    .hero {
        min-height: auto;
        padding: 54px 0;
    }

    .hero.hero-slider {
        padding: 0;
    }

    .hero-slider__track,
    .hero-slide,
    .hero-slide__inner {
        min-height: 430px;
    }

    .hero__content h1 {
        font-size: 42px;
    }

    .hero-slide__content {
        padding: 42px 0 70px;
    }

    .hero-slide__content h1 {
        font-size: 39px;
    }

    .hero__visual {
        display: none;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-toolbar {
        align-items: stretch;
        flex-direction: column;
    }
}

/* HENDI-like header */
.site-header {
    border-bottom: 1px solid #d9d9d9;
    background: #fff;
}

.topline {
    min-height: 18px;
    background: #f1f1f1;
    color: #111;
    font-size: 12px;
}

.topline__inner {
    min-height: 18px;
    justify-content: flex-end;
    gap: 22px;
}

.topline__inner > span {
    flex: 1;
}

.topline nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.topline a,
.topline__country {
    color: #111;
    font-weight: 400;
}

.topline__claim {
    width: 100%;
    margin: 0;
    color: #2f343a;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.header-main {
    min-height: 84px;
    gap: 18px;
}

.site-branding {
    flex: 0 0 var(--eg-logo-area-width);
}

.site-logo {
    display: grid;
    grid-template-columns: 30px auto 44px;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 7px;
    color: #050505;
}

.site-logo__symbol {
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #050505;
}

.site-logo__symbol i {
    display: block;
    width: 4px;
    height: 18px;
    border-radius: 8px;
    background: #fff;
}

.site-logo__symbol i:first-child {
    height: 22px;
}

.site-logo__word {
    font-size: 26px;
    line-height: .9;
    font-weight: 900;
    letter-spacing: 8px;
}

.site-logo__tagline {
    color: var(--eg-green-dark);
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}

.site-logo__cert {
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #777;
    color: #222;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
}

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

.custom-logo-link img,
img.custom-logo {
    display: block;
    max-width: var(--eg-logo-max-width);
    max-height: var(--eg-logo-max-height);
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-search {
    grid-template-columns: minmax(120px, 190px) 1fr 42px;
    min-width: 320px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}

.site-search--simple {
    grid-template-columns: 1fr 42px;
}

.site-search select,
.site-search input {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
}

.site-search button {
    background: #eee;
    border-left: 1px solid #cfcfcf;
    font-size: 25px;
}

.site-search .site-search__all {
    min-height: 42px;
    border: 0;
    background: #f2f2f2;
    color: #050505;
    font-size: 13px;
    font-weight: 900;
}

.header-actions {
    align-self: stretch;
    gap: 0;
}

.header-actions a {
    min-width: 82px;
    min-height: 84px;
    padding: 8px 12px;
    border-left: 1px solid #d8d8d8;
    color: #111;
    font-size: var(--eg-header-font-size);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.header-actions a:last-child {
    border-right: 1px solid #d8d8d8;
}

.header-action__icon {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin-bottom: 4px;
}

.header-action__icon::before,
.header-action__icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

.header-action__icon--access::before {
    left: 12px;
    top: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #050505;
}

.header-action__icon--access::after {
    left: 13px;
    top: 11px;
    width: 4px;
    height: 17px;
    background: #050505;
    box-shadow: -7px 4px 0 -1px #050505, 7px 4px 0 -1px #050505;
}

.header-action__icon--phone::before {
    left: 7px;
    top: 5px;
    width: 17px;
    height: 17px;
    border: 3px solid #050505;
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    transform: rotate(-35deg);
}

.header-action__icon--user::before {
    left: 10px;
    top: 4px;
    width: 10px;
    height: 10px;
    border: 2px solid #050505;
    border-radius: 50%;
}

.header-action__icon--user::after {
    left: 5px;
    top: 17px;
    width: 20px;
    height: 10px;
    border: 2px solid #050505;
    border-radius: 12px 12px 0 0;
}

.header-action__icon--heart::before {
    left: 5px;
    top: 7px;
    width: 20px;
    height: 17px;
    border: 2px solid #050505;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
}

.header-action__icon--cart::before {
    left: 5px;
    top: 9px;
    width: 20px;
    height: 15px;
    border: 2px solid #050505;
    border-top: 0;
}

.header-action__icon--cart::after {
    left: 9px;
    top: 5px;
    width: 12px;
    height: 8px;
    border: 2px solid #050505;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.header-cart strong {
    top: 12px;
    right: 18px;
    background: var(--eg-green);
    color: #050505;
}

.mainnav {
    background: #fff;
    border-top: 0;
}

.mainnav__inner {
    display: block;
    min-height: auto;
}

.category-tabs {
    position: relative;
    z-index: 80;
}

.category-tabs > ul,
.category-tabs__list {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-tabs__item {
    position: relative;
    min-width: 0;
}

.category-tabs__link,
.category-tabs > ul > li > a {
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: 6px 7px;
    border-bottom: 1px solid #454545;
    border-right: 1px solid #454545;
    background: #5c5c5c;
    color: #fff;
    font-size: var(--eg-category-font-size);
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
}

.category-tabs > ul > li:first-child > a {
    border-left: 1px solid #454545;
}

.category-tabs__link:hover,
.category-tabs__item:hover > .category-tabs__link,
.category-tabs__item:focus-within > .category-tabs__link,
.category-tabs > ul > li > a:hover {
    background: #4f4f4f;
    color: #fff;
}

.category-tabs__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 120;
    display: grid;
    gap: 10px;
    width: min(420px, 92vw);
    max-height: 520px;
    padding: 14px;
    border: 1px solid #d4d4d4;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .14s ease, transform .14s ease;
}

.category-tabs__item:nth-last-child(-n+3) .category-tabs__dropdown {
    right: 0;
    left: auto;
}

.category-tabs__item:hover .category-tabs__dropdown,
.category-tabs__item:focus-within .category-tabs__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.category-tabs__dropdown .category-tabs__all {
    display: block;
    min-height: auto;
    padding: 0 0 10px;
    border: 0;
    border-bottom: 1px solid #d9d9d9;
    background: transparent;
    color: #222;
    font-size: 14px;
    font-weight: 900;
    text-align: left;
}

.category-tabs__dropdown ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-tabs__dropdown li {
    min-width: 0;
}

.category-tabs__dropdown li a {
    display: block;
    min-height: auto;
    padding: 7px 0;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}

.category-tabs__dropdown li a:hover {
    color: var(--eg-green-dark);
    text-decoration: underline;
}

.header-benefits {
    padding: 6px 0 12px;
    background: #fff;
    border-bottom: 1px solid #dedede;
}

.header-benefits__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.header-benefit {
    min-height: 58px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid #e1e1e1;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}

.header-benefit__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 2px solid #050505;
    border-radius: 50%;
    background: var(--eg-green);
    color: #050505;
    font-size: 13px;
    font-weight: 900;
}

.header-benefit strong {
    color: #050505;
    font-size: 14px;
    line-height: 1.08;
}

@media (max-width: 1080px) {
    body.woocommerce-cart .entry-content > .woocommerce {
        grid-template-columns: 1fr;
    }

    body.woocommerce-cart .cart-collaterals .cart_totals {
        max-width: 560px;
    }

    body.woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    body.woocommerce-checkout #customer_details,
    body.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout #order_review {
        grid-column: 1;
        grid-row: auto;
    }

    body.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout #order_review {
        max-width: 620px;
    }
}

@media (max-width: 1200px) {
    .header-main {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .site-search {
        order: 3;
        width: 100%;
        flex-basis: 100%;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-benefits__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-tabs > ul,
    .category-tabs__list {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.woocommerce-cart .content-layout {
        padding: 28px 0 52px;
    }

    body.woocommerce-checkout .content-layout {
        padding: 28px 0 52px;
    }

    body.woocommerce-cart .content-card > h1 {
        font-size: 30px;
    }

    body.woocommerce-checkout .content-card > h1 {
        font-size: 30px;
    }

    body.woocommerce-checkout form.checkout_coupon,
    body.woocommerce-checkout #customer_details,
    body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
    body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    body.woocommerce-checkout #customer_details .col-1,
    body.woocommerce-checkout .woocommerce-shipping-fields,
    body.woocommerce-checkout .woocommerce-additional-fields {
        grid-column: 1;
        grid-row: auto;
    }

    body.woocommerce-checkout .woocommerce-billing-fields,
    body.woocommerce-checkout .woocommerce-shipping-fields,
    body.woocommerce-checkout .woocommerce-additional-fields,
    body.woocommerce-checkout #order_review,
    body.woocommerce-checkout #order_review_heading {
        padding-right: 18px;
        padding-left: 18px;
    }

    body.woocommerce-checkout #order_review table.shop_table th,
    body.woocommerce-checkout #order_review table.shop_table td {
        font-size: 12px;
    }

    body.woocommerce-checkout #shipping_method label,
    body.woocommerce-checkout #payment ul.payment_methods li {
        font-size: 12px;
    }

    body.woocommerce-cart .entry-content > .woocommerce {
        gap: 22px;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td {
        padding: 12px;
    }

    body.woocommerce-cart .woocommerce-cart-form .product-thumbnail img {
        margin-left: auto;
    }

    body.woocommerce-cart .woocommerce-cart-form td.actions,
    body.woocommerce-cart .woocommerce-cart-form td.actions .coupon {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    body.woocommerce-cart .woocommerce-cart-form .coupon .input-text,
    body.woocommerce-cart .woocommerce-cart-form td.actions button.button,
    body.woocommerce-cart .woocommerce-cart-form td.actions > button.button {
        width: 100% !important;
        max-width: none;
        margin-left: 0 !important;
    }

    body.woocommerce-cart .cart-collaterals .cart_totals {
        max-width: none;
        padding: 18px;
    }

    body.woocommerce-cart .cart_totals table.shop_table th,
    body.woocommerce-cart .cart_totals table.shop_table td {
        display: block;
        width: 100%;
        text-align: left;
    }

    body.woocommerce-cart .cart_totals table.shop_table td {
        padding-top: 4px;
    }

    body.woocommerce-cart #shipping_method label {
        align-items: flex-start;
        flex-direction: column;
    }

    .topline__inner {
        flex-direction: row;
        align-items: center;
        padding: 4px 0;
    }

    .topline nav {
        gap: 12px;
        font-size: 11px;
    }

    .header-actions {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .header-actions a {
        min-width: 0;
        min-height: 68px;
        padding: 6px 4px;
        font-size: 9px;
    }

    .category-tabs > ul,
    .category-tabs__list,
    .header-benefits__grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-tabs__dropdown {
        position: static;
        display: none;
        width: 100%;
        max-height: none;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .category-tabs__item:hover .category-tabs__dropdown,
    .category-tabs__item:focus-within .category-tabs__dropdown {
        display: grid;
    }

    .category-tabs__dropdown ul {
        grid-template-columns: 1fr;
    }
}

/* v093 cart actions: strict one-line desktop layout */
@media (min-width: 769px) {
    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions,
    body.woocommerce-cart table.cart td.actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 18px 16px !important;
        background: #fbfcfd !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon,
    body.woocommerce-cart table.cart td.actions .coupon {
        display: contents !important;
        float: none !important;
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon label,
    body.woocommerce-cart table.cart td.actions .coupon label {
        display: none !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon .input-text,
    body.woocommerce-cart table.cart td.actions .coupon .input-text,
    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions input[name="coupon_code"],
    body.woocommerce-cart table.cart td.actions input[name="coupon_code"] {
        float: none !important;
        flex: 0 0 220px !important;
        width: 220px !important;
        max-width: 220px !important;
        min-width: 180px !important;
        height: 42px !important;
        min-height: 42px !important;
        margin: 0 !important;
        padding: 0 12px !important;
        box-sizing: border-box !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions button.button,
    body.woocommerce-cart table.cart td.actions button.button,
    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .button,
    body.woocommerce-cart table.cart td.actions .button {
        float: none !important;
        position: static !important;
        display: inline-flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        min-width: 150px !important;
        max-width: none !important;
        height: 42px !important;
        min-height: 42px !important;
        margin: 0 !important;
        padding: 0 16px !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions > button[name="update_cart"],
    body.woocommerce-cart table.cart td.actions > button[name="update_cart"] {
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions,
    body.woocommerce-cart table.cart td.actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon,
    body.woocommerce-cart table.cart td.actions .coupon {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        width: 100% !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon .input-text,
    body.woocommerce-cart table.cart td.actions .coupon .input-text,
    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions button.button,
    body.woocommerce-cart table.cart td.actions button.button {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }
}

/* v094 cart layout fix: keep cart table inside left grid column and align action buttons without breaking table layout */
@media (min-width: 1081px) {
    body.woocommerce-cart .entry-content > .woocommerce {
        grid-template-columns: minmax(0, calc(100% - 442px)) minmax(330px, 410px) !important;
        gap: 32px !important;
    }

    body.woocommerce-cart .woocommerce-cart-form {
        min-width: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }

    body.woocommerce-cart .woocommerce-cart-form .product-remove {
        width: 46px !important;
    }

    body.woocommerce-cart .woocommerce-cart-form .product-thumbnail {
        width: 92px !important;
    }

    body.woocommerce-cart .woocommerce-cart-form .product-price {
        width: 88px !important;
    }

    body.woocommerce-cart .woocommerce-cart-form .product-quantity {
        width: 98px !important;
    }

    body.woocommerce-cart .woocommerce-cart-form .product-subtotal {
        width: 108px !important;
    }

    body.woocommerce-cart .cart-collaterals,
    body.woocommerce-cart .cart-collaterals .cart_totals {
        min-width: 0 !important;
        max-width: 100% !important;
        position: relative !important;
        z-index: 2 !important;
    }
}

@media (min-width: 769px) {
    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions,
    body.woocommerce-cart table.cart td.actions {
        display: table-cell !important;
        width: auto !important;
        max-width: 100% !important;
        padding: 18px 16px !important;
        background: #fbfcfd !important;
        text-align: left !important;
        vertical-align: middle !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon,
    body.woocommerce-cart table.cart td.actions .coupon {
        display: inline-flex !important;
        float: none !important;
        flex: none !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        width: auto !important;
        min-width: 0 !important;
        margin: 0 10px 0 0 !important;
        padding: 0 !important;
        gap: 10px !important;
        vertical-align: middle !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon label,
    body.woocommerce-cart table.cart td.actions .coupon label {
        display: none !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon .input-text,
    body.woocommerce-cart table.cart td.actions .coupon .input-text,
    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions input[name="coupon_code"],
    body.woocommerce-cart table.cart td.actions input[name="coupon_code"] {
        display: inline-block !important;
        float: none !important;
        flex: none !important;
        width: 220px !important;
        max-width: 220px !important;
        min-width: 180px !important;
        height: 42px !important;
        min-height: 42px !important;
        margin: 0 !important;
        padding: 0 12px !important;
        box-sizing: border-box !important;
        vertical-align: middle !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions button.button,
    body.woocommerce-cart table.cart td.actions button.button,
    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .button,
    body.woocommerce-cart table.cart td.actions .button {
        float: none !important;
        position: static !important;
        display: inline-flex !important;
        flex: none !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        min-width: 150px !important;
        max-width: none !important;
        height: 42px !important;
        min-height: 42px !important;
        margin: 0 10px 0 0 !important;
        padding: 0 16px !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
        vertical-align: middle !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions > button[name="update_cart"],
    body.woocommerce-cart table.cart td.actions > button[name="update_cart"] {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions,
    body.woocommerce-cart table.cart td.actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        width: 100% !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon,
    body.woocommerce-cart table.cart td.actions .coupon {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        width: 100% !important;
        margin: 0 !important;
    }

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon .input-text,
    body.woocommerce-cart table.cart td.actions .coupon .input-text,
    body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions button.button,
    body.woocommerce-cart table.cart td.actions button.button {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }
}

