/*
Theme Name: GO E-Motion Shell
Theme URI: https://goemotion.si/
Author: Flash Power AI
Description: Lightweight WordPress/WooCommerce shell theme using the supplied GO E-Motion design, WordPress menus, modern theme dashboard, flexible search, B2B pricing, WooCommerce account dropdown and mini cart.
Version: 1.0.118
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: goemotion-shell
License: GPL-2.0-or-later
*/

/* WordPress shell alignment */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.wp-site-blocks,
.goemotion-content,
.goemotion-loop,
.woocommerce-content {
    width: var(--container);
    margin-inline: auto;
}

.goemotion-content {
    padding-block: clamp(34px, 6vw, 92px);
}

.goemotion-content-box {
    padding: clamp(22px, 4vw, 54px);
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 22px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 24px 70px rgba(21,28,34,.1), inset 0 1px 0 rgba(255,255,255,.72);
    backdrop-filter: blur(16px) saturate(135%);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.entry-title,
.entry-title a,
.goemotion-content h1,
.goemotion-content h2,
.woocommerce-products-header__title,
.product_title {
    color: var(--graphite);
    font-family: var(--display-font);
    letter-spacing: -.045em;
}

.entry-content a:not(.button),
.goemotion-content-box a:not(.button) {
    color: var(--accent-dark);
    font-weight: 850;
}

/* Keep the WordPress menu output visually identical to the direct ZIP header links. */
.main-nav > a {
    text-decoration: none;
}

.main-nav .sub-menu,
.main-nav .children {
    display: none ;
}

.footer-column .menu,
.footer-column .sub-menu {
    display: contents;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin: 0;
    padding: 0;
}

/* [ge_smart_search] integration inside the original header search shell. */
.header-search-panel,
.site-header .header-search-panel,
.page-video-hero .site-header:not(.is-scrolled) .header-search-panel,
.site-header.is-scrolled .header-search-panel {
    grid-template-columns: minmax(0, 1fr) 48px ;
}

.goemotion-shortcode-search {
    min-width: 0;
    width: 100%;
}

.goemotion-shortcode-search form,
.goemotion-shortcode-search .search-form,
.goemotion-shortcode-search .ge-smart-search,
.goemotion-shortcode-search .ge-smart-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    width: 100%;
    margin: 0;
}

.goemotion-shortcode-search input[type="search"],
.goemotion-shortcode-search input[type="text"],
.goemotion-shortcode-search input[name="s"],
.goemotion-shortcode-search input:not([type]) {
    width: 100% ;
    min-width: 0 ;
    height: 42px ;
    border: 0 ;
    border-radius: 7px ;
    background: rgba(255,255,255,.6) ;
    outline: 0 ;
    color: var(--graphite) ;
    font-size: 15px ;
    font-weight: 760 ;
}

.goemotion-shortcode-search button,
.goemotion-shortcode-search input[type="submit"] {
    min-width: 86px;
    height: 42px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--graphite);
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(175,203,32,.28), inset 0 1px 0 rgba(255,255,255,.4);
}

.header-search-close {
    justify-self: end;
}

@media (max-width: 920px) {
    .header-search-panel,
    .site-header .header-search-panel,
    .page-video-hero .site-header:not(.is-scrolled) .header-search-panel,
    .site-header.is-scrolled .header-search-panel {
        grid-template-columns: minmax(0, 1fr) 44px ;
    }

    .goemotion-shortcode-search form,
    .goemotion-shortcode-search .search-form,
    .goemotion-shortcode-search .ge-smart-search,
    .goemotion-shortcode-search .ge-smart-search-form {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .goemotion-shortcode-search button,
    .goemotion-shortcode-search input[type="submit"] {
        min-width: 66px;
        padding-inline: 12px;
    }
}

/* Premium WooCommerce account dropdown */
.account-menu {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    z-index: 42;
}

.account-menu .account-button {
    gap: 7px;
}

.account-chevron {
    width: 7px;
    height: 7px;
    margin-left: -2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: .72;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .22s ease, opacity .22s ease;
}

.account-menu.is-open .account-chevron {
    opacity: 1;
    transform: rotate(225deg) translate(-2px, -1px);
}

.account-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(318px, calc(100vw - 24px));
    padding: 10px;
    border: 1px solid rgba(255,255,255,.68);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,244,247,.9)),
        radial-gradient(circle at 100% 0%, rgba(175,203,32,.22), transparent 13rem);
    box-shadow: 0 28px 74px rgba(7,11,14,.22), inset 0 1px 0 rgba(255,255,255,.82);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -8px, 0) scale(.96);
    transform-origin: right top;
    transition: opacity .18s ease, transform .28s cubic-bezier(.16,1,.3,1);
}

.account-menu.is-open .account-dropdown,
.account-menu:focus-within .account-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (hover:hover) {
    .account-menu:hover .account-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.account-dropdown-head {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 10px;
    border-radius: 13px;
    background: rgba(21,28,34,.05);
}

.account-avatar {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--graphite);
    font-weight: 950;
    letter-spacing: -.04em;
    box-shadow: 0 14px 28px rgba(175,203,32,.24), inset 0 1px 0 rgba(255,255,255,.46);
}

.account-dropdown-head strong,
.account-dropdown-head small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-dropdown-head strong {
    color: var(--graphite);
    font-size: 14px;
    font-weight: 950;
}

.account-dropdown-head small {
    margin-top: 2px;
    color: rgba(83,96,107,.82);
    font-size: 12px;
    font-weight: 750;
}

.account-dropdown-links {
    display: grid;
    gap: 4px;
    padding-top: 8px;
}

.account-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px 10px 36px;
    border-radius: 12px;
    color: rgba(32,42,50,.86);
    font-size: 14px;
    font-weight: 850;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.account-menu-item::before {
    content: "";
    position: absolute;
    left: 13px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(175,203,32,.85);
    box-shadow: 0 0 0 4px rgba(175,203,32,.1);
}

.account-menu-item:hover,
.account-menu-item:focus-visible {
    background: rgba(175,203,32,.14);
    color: var(--graphite);
    outline: 0;
    transform: translateX(2px);
}

.account-menu-item--customer-logout::before {
    background: rgba(217,72,58,.86);
    box-shadow: 0 0 0 4px rgba(217,72,58,.1);
}

@media (max-width: 920px) {
    .account-dropdown {
        position: fixed;
        top: 76px;
        right: 12px;
        left: 12px;
        width: auto;
        transform-origin: center top;
    }

    .account-chevron,
    .account-label-full {
        display: none;
    }
}

/* Modern WooCommerce mini-cart drawer. */
.cart-drawer {
    z-index: 360 ;
    display: flex ;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 80% 16%, rgba(175,203,32,.18), transparent 24rem),
        rgba(7, 11, 14, .58) ;
    backdrop-filter: blur(14px) saturate(130%) ;
    -webkit-backdrop-filter: blur(14px) saturate(130%) ;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.cart-drawer.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-panel {
    width: min(468px, 100vw) ;
    height: 100% ;
    display: grid ;
    grid-template-rows: auto minmax(0, 1fr) ;
    gap: 0 ;
    padding: 0 ;
    overflow: hidden;
    border-left: 1px solid rgba(255,255,255,.42);
    background:
        linear-gradient(160deg, rgba(255,255,255,.98), rgba(239,244,247,.96) 64%, rgba(229,235,238,.98)),
        radial-gradient(circle at 70% 10%, rgba(175,203,32,.18), transparent 18rem) ;
    box-shadow: -34px 0 90px rgba(0,0,0,.34), inset 1px 0 0 rgba(255,255,255,.7) ;
    transform: translateX(22px);
    transition: transform .32s cubic-bezier(.16,1,.3,1);
    animation: none ;
}

.cart-drawer.open .cart-panel {
    transform: translateX(0);
}

.cart-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 18px;
    border-bottom: 1px solid rgba(21,28,34,.1);
    background: rgba(255,255,255,.48);
}

.cart-panel-head p {
    margin: 0 0 5px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cart-panel-head h2 {
    margin: 0;
    color: var(--graphite);
    font-family: var(--display-font);
    font-size: clamp(24px, 4vw, 34px);
    letter-spacing: -.055em;
    line-height: 1;
}

.cart-close {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.64);
    border-radius: 12px;
    background: linear-gradient(145deg, var(--graphite), var(--graphite-2));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(21,28,34,.22), inset 0 1px 0 rgba(255,255,255,.12);
}

.cart-close span {
    position: absolute;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.cart-close span:first-child {
    transform: rotate(45deg);
}

.cart-close span:last-child {
    transform: rotate(-45deg);
}

.goemotion-mini-cart {
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: 18px 20px 20px;
    overflow: hidden;
}

.goemotion-mini-cart-summary {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 16px;
    background: rgba(255,255,255,.68);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.goemotion-mini-cart-summary span {
    color: rgba(83,96,107,.82);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.goemotion-mini-cart-summary strong {
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 28px;
    border-radius: 999px;
    background: var(--graphite);
    color: #fff;
    font-size: 13px;
}

.goemotion-mini-cart-summary em {
    color: var(--graphite);
    font-style: normal;
    font-weight: 950;
}

.goemotion-mini-cart-body {
    min-height: 0;
    overflow-y: auto;
    padding-right: 4px;
}

.goemotion-mini-cart ul.woocommerce-mini-cart {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.goemotion-mini-cart .woocommerce-mini-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 96px;
    padding: 10px 42px 10px 10px;
    border: 1px solid rgba(21,28,34,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 14px 36px rgba(21,28,34,.07), inset 0 1px 0 rgba(255,255,255,.72);
}

.goemotion-mini-cart .woocommerce-mini-cart-item a:not(.remove) {
    color: var(--graphite);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.24;
}

.goemotion-mini-cart .woocommerce-mini-cart-item img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    border-radius: 14px;
    background: var(--silver-2);
}

.goemotion-mini-cart .remove_from_cart_button {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(21,28,34,.06);
    color: rgba(83,96,107,.82) ;
    font-size: 21px;
    line-height: 1;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.goemotion-mini-cart .remove_from_cart_button:hover {
    background: rgba(217,72,58,.12);
    color: rgb(170,42,36) ;
    transform: scale(1.06);
}

.goemotion-mini-cart .quantity {
    display: block;
    margin-top: 6px;
    color: rgba(83,96,107,.8);
    font-size: 13px;
    font-weight: 800;
}

.goemotion-mini-cart .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 16px 0 12px;
    padding: 16px 2px 0;
    border-top: 1px solid rgba(21,28,34,.1);
    color: var(--graphite);
    font-size: 18px;
    font-weight: 950;
}

.goemotion-mini-cart .woocommerce-mini-cart__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
}

.goemotion-mini-cart .woocommerce-mini-cart__buttons a {
    display: grid;
    place-items: center;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--graphite), var(--graphite-2));
    color: #fff;
    font-weight: 950;
    text-align: center;
    box-shadow: 0 16px 34px rgba(21,28,34,.18), inset 0 1px 0 rgba(255,255,255,.12);
}

.goemotion-mini-cart .woocommerce-mini-cart__buttons a.checkout {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--graphite);
    box-shadow: 0 18px 36px rgba(175,203,32,.24), inset 0 1px 0 rgba(255,255,255,.4);
}

.goemotion-mini-cart .woocommerce-mini-cart__empty-message {
    margin: 10px 0;
    padding: 28px 18px;
    border: 1px dashed rgba(21,28,34,.16);
    border-radius: 18px;
    background: rgba(255,255,255,.58);
    color: rgba(83,96,107,.9);
    font-weight: 850;
    text-align: center;
}

.goemotion-cart-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 14px;
}

.goemotion-cart-benefits span {
    flex: 1 1 auto;
    min-width: max-content;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(175,203,32,.12);
    color: rgba(32,42,50,.86);
    font-size: 11px;
    font-weight: 900;
    text-align: center;
}

.goemotion-cart-fragment {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cart-button .cart-total {
    display: none;
}

@media (max-width: 560px) {
    .cart-panel {
        width: 100vw ;
    }

    .cart-panel-head {
        padding: 20px 18px 16px;
    }

    .goemotion-mini-cart {
        padding-inline: 14px;
        padding-bottom: 86px;
    }

    .goemotion-mini-cart .woocommerce-mini-cart__buttons {
        grid-template-columns: 1fr;
    }
}

/* WooCommerce product/content polish without replacing Woo templates. */
.woocommerce-content {
    padding-block: clamp(30px, 5vw, 74px);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--graphite);
    font-weight: 950;
    box-shadow: 0 14px 32px rgba(175,203,32,.22), inset 0 1px 0 rgba(255,255,255,.4);
}

/* Version 1.0.6: WooCommerce shop/product one-to-one shell + widget filters. */
.goemotion-shop-main,
.goemotion-product-main {
    padding-top: clamp(18px, 3vw, 42px);
    padding-bottom: clamp(36px, 6vw, 88px);
}

.goemotion-wc-catalog.catalog-layout,
.goemotion-wc-product-detail.product-detail {
    width: var(--container);
    margin-inline: auto;
}

.goemotion-wc-catalog .products-section {
    min-width: 0;
}

.goemotion-shop-head {
    align-items: flex-end;
    gap: 18px;
}

.goemotion-shop-head .term-description,
.goemotion-shop-head .page-description {
    max-width: 760px;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 650;
}

.goemotion-shop-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.goemotion-shop-tools .woocommerce-result-count {
    margin: 0;
    padding: 11px 14px;
    border: 1px solid rgba(21,28,34,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.68);
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.goemotion-shop-tools .woocommerce-ordering {
    margin: 0;
}

.goemotion-shop-tools .orderby,
.goemotion-shop-filters select,
.goemotion-shop-filters input[type="text"],
.goemotion-shop-filters input[type="search"],
.goemotion-shop-filters input[type="number"],
.goemotion-shop-filters input[type="email"],
.goemotion-shop-filters input[type="url"],
.goemotion-shop-filters textarea,
.woocommerce .quantity .qty,
.woocommerce div.product form.cart .variations select {
    min-height: 44px;
    width: 100%;
    border: 1px solid rgba(21,28,34,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.86);
    color: var(--graphite);
    font-weight: 800;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.78);
}

.goemotion-shop-tools .orderby {
    width: auto;
    min-width: 208px;
    padding: 0 38px 0 14px;
}

.goemotion-shop-widget-zone {
    display: grid;
    gap: 12px;
    margin: 14px 0 18px;
}

.goemotion-shop-widget-zone--bottom {
    margin-top: 24px;
}

.goemotion-widget-filter-panel {
    display: grid;
    gap: 13px;
    border: 1px solid rgba(21,28,34,.08);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.54)),
        radial-gradient(circle at 0 0, rgba(175,203,32,.18), transparent 48%);
    box-shadow: 0 22px 54px rgba(21,28,34,.1);
}

.goemotion-widget-card {
    min-width: 0;
    padding: 13px;
    border: 1px solid rgba(21,28,34,.08);
    border-radius: 10px;
    background: rgba(255,255,255,.58);
}

.goemotion-widget-card .widget-title,
.goemotion-widget-card h2,
.goemotion-widget-card h3 {
    margin: 0 0 10px;
    color: var(--graphite);
    font-family: var(--display-font);
    font-size: 14px;
    letter-spacing: -.025em;
}

.goemotion-widget-card ul,
.goemotion-widget-card ol {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.goemotion-widget-card li {
    margin: 0;
}

.goemotion-shop-filters .widget a,
.goemotion-widget-card a:not(.btn),
.woocommerce .widget_layered_nav_filters ul li a,
.woocommerce .widget_layered_nav ul li a,
.woocommerce .widget_product_categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
    padding: 10px 11px;
    border: 1px solid rgba(21,28,34,.08);
    border-radius: 8px;
    background: rgba(255,255,255,.62);
    color: var(--graphite);
    font-size: 13px;
    font-weight: 850;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.goemotion-shop-filters .widget a:hover,
.goemotion-widget-card a:not(.btn):hover {
    transform: translateY(-1px);
    border-color: rgba(175,203,32,.48);
    background: rgba(175,203,32,.14);
}

.goemotion-shop-filters .button,
.goemotion-shop-filters button,
.goemotion-shop-filters input[type="submit"],
.goemotion-widget-card .wp-block-search__button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--graphite);
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(175,203,32,.22), inset 0 1px 0 rgba(255,255,255,.45);
}

.goemotion-empty-widget p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.goemotion-wc-product-card .goemotion-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    padding: 7px 9px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--graphite);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: 0 12px 24px rgba(175,203,32,.28);
}

.goemotion-wc-product-card .product-media img {
    max-width: 92%;
    max-height: 88%;
    object-fit: contain;
}

.goemotion-wc-product-card .product-category {
    min-height: 0;
}

.goemotion-wc-product-card .price-stack .woocommerce-Price-amount,
.goemotion-wc-product-detail .detail-price .woocommerce-Price-amount {
    white-space: nowrap;
}

.goemotion-wc-product-card .product-actions a.button,
.goemotion-wc-product-card .product-actions .button,
.goemotion-single-actions .button,
.goemotion-single-actions button.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--graphite);
    font-weight: 950;
    text-align: center;
    box-shadow: 0 14px 30px rgba(175,203,32,.2), inset 0 1px 0 rgba(255,255,255,.42);
}

.goemotion-wc-product-card .product-actions .added_to_cart {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 9px 10px;
    border-radius: 8px;
    background: rgba(21,28,34,.08);
    color: var(--graphite);
    font-size: 12px;
    font-weight: 900;
}

.goemotion-wc-product-card .product-actions .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination,
.woocommerce-pagination {
    margin-top: 24px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    border: 0;
    margin: 0;
}

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 42px;
    min-height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(21,28,34,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.68);
    color: var(--graphite);
    font-weight: 900;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
    border: 1px solid rgba(21,28,34,.1);
    border-top: 3px solid var(--accent);
    border-radius: 14px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 18px 42px rgba(21,28,34,.08);
}

.goemotion-wc-product-detail .detail-gallery,
.goemotion-wc-product-detail .detail-info,
.goemotion-scroll-tabs {
    border: 1px solid rgba(21,28,34,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.68);
    box-shadow: 0 22px 55px rgba(21,28,34,.08);
    backdrop-filter: blur(14px);
}

.goemotion-wc-product-detail .detail-copy p:first-child {
    margin-top: 0;
}

.goemotion-wc-product-detail .detail-copy p:last-child {
    margin-bottom: 0;
}

.goemotion-single-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
}

.goemotion-single-actions form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    margin: 0;
}

.goemotion-single-actions form.cart .quantity {
    margin: 0 ;
}

.goemotion-single-actions form.cart .variations {
    flex: 1 1 100%;
    margin-bottom: 4px;
}

.goemotion-single-actions form.cart .variations th,
.goemotion-single-actions form.cart .variations td {
    display: block;
    padding: 0 0 8px;
    background: transparent;
}

.goemotion-single-actions .reset_variations {
    display: inline-flex;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
}

.goemotion-product-widget-zone {
    margin-top: 16px;
}

.goemotion-scroll-tabs {
    width: var(--container);
    margin: 8px auto 0;
    padding: clamp(18px, 3vw, 30px);
}

.goemotion-scroll-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0 0 18px;
}

.goemotion-scroll-tabs ul.tabs::before,
.goemotion-scroll-tabs ul.tabs li::before,
.goemotion-scroll-tabs ul.tabs li::after {
    display: none ;
}

.goemotion-scroll-tabs ul.tabs li {
    border: 0;
    border-radius: 999px;
    background: rgba(21,28,34,.07);
    margin: 0;
    padding: 0;
}

.goemotion-scroll-tabs ul.tabs li.active {
    background: var(--accent);
}

.goemotion-scroll-tabs ul.tabs li a {
    padding: 11px 14px;
    color: var(--graphite);
    font-weight: 900;
}

.goemotion-scroll-tabs h2,
.goemotion-scroll-tabs h3 {
    font-family: var(--display-font);
    color: var(--graphite);
    letter-spacing: -.035em;
}

@media (max-width: 1180px) {
    .goemotion-wc-product-grid.product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .goemotion-wc-catalog.catalog-layout {
        grid-template-columns: 1fr;
    }

    .goemotion-shop-filters.filters {
        position: relative;
        top: auto;
    }

    .goemotion-shop-head,
    .goemotion-shop-tools {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .goemotion-shop-tools .orderby {
        width: 100%;
    }

    .goemotion-wc-product-grid.product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .goemotion-shop-main,
    .goemotion-product-main {
        padding-top: 12px;
    }

    .goemotion-wc-product-grid.product-grid {
        grid-template-columns: 1fr;
    }

    .goemotion-shop-head .woocommerce-products-header__title {
        font-size: clamp(28px, 9vw, 38px);
    }

    .goemotion-wc-product-detail .detail-price,
    .goemotion-wc-product-detail .detail-price.has-promo {
        grid-template-columns: 1fr;
    }

    .goemotion-single-actions,
    .goemotion-single-actions form.cart {
        display: grid;
        width: 100%;
    }

    .goemotion-single-actions .button,
    .goemotion-single-actions .btn {
        width: 100%;
    }
}

/* v1.0.6 fixes: robust shop widgets, exact source-style product page and optimized homepage shell. */
.goemotion-default-shop-filters-slot {
    width: var(--container);
    margin: 24px auto 16px;
}

.goemotion-default-shop-filters-slot .goemotion-shop-filters {
    position: static;
}

.goemotion-filter-widgets {
    display: grid;
    gap: 12px;
}

.goemotion-widget-filter-panel .widget,
.goemotion-widget-filter-panel .goemotion-widget-card {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-widget-filter-panel .widget + .widget {
    padding-top: 12px;
    border-top: 1px solid rgba(21,28,34,.08);
}

.goemotion-widget-filter-panel .widget-title,
.goemotion-widget-filter-panel h2,
.goemotion-widget-filter-panel h3 {
    margin: 0 0 10px;
    color: var(--graphite);
    font-family: var(--display-font);
    font-size: 14px;
    letter-spacing: -.02em;
}

.goemotion-widget-filter-panel ul,
.goemotion-widget-filter-panel ol {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.goemotion-widget-filter-panel li {
    margin: 0;
}

.goemotion-widget-filter-panel a,
.goemotion-widget-filter-panel .wc-block-components-filter-reset-button,
.goemotion-widget-filter-panel button:not(.btn),
.goemotion-widget-filter-panel input[type="submit"] {
    min-height: 38px;
    border-radius: var(--radius);
    font-weight: 850;
}

.goemotion-widget-filter-panel input[type="search"],
.goemotion-widget-filter-panel input[type="text"],
.goemotion-widget-filter-panel input[type="number"],
.goemotion-widget-filter-panel select {
    width: 100%;
    min-height: 43px;
    border: 1px solid rgba(21,28,34,.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,.78);
    padding: 10px 11px;
    outline: 0;
}

.goemotion-widget-filter-panel .wc-block-price-filter,
.goemotion-widget-filter-panel .wc-block-attribute-filter,
.goemotion-widget-filter-panel .wp-block-woocommerce-filter-wrapper {
    display: grid;
    gap: 10px;
}

.goemotion-shop-main,
.goemotion-product-main,
.goemotion-home-main {
    padding-top: 1px;
}

.goemotion-products-section .product-grid,
.woocommerce .goemotion-wc-product-grid.products {
    margin: 0;
    padding: 0;
    list-style: none;
}

.goemotion-wc-product-card .button,
.goemotion-wc-product-card .added_to_cart,
.goemotion-single-actions .button,
.goemotion-single-actions .single_add_to_cart_button {
    display: inline-flex ;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px ;
    border: 0 ;
    border-radius: var(--radius) ;
    background: linear-gradient(135deg, var(--accent), var(--accent-2)) ;
    color: var(--graphite) ;
    font-weight: 950 ;
    line-height: 1 ;
    box-shadow: 0 12px 26px rgba(175,203,32,.24), inset 0 1px 0 rgba(255,255,255,.45);
}

.goemotion-wc-product-card .added_to_cart {
    background: var(--graphite) ;
    color: #fff ;
}

.goemotion-wc-product-detail .detail-gallery,
.goemotion-wc-product-detail .detail-info {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.goemotion-wc-product-detail .detail-gallery > img,
.goemotion-wc-product-detail .detail-gallery .product-placeholder-large {
    width: 100%;
    min-height: clamp(280px, 42vw, 560px);
    object-fit: contain;
}

.goemotion-wc-product-detail .detail-info h1 {
    margin: 0;
    color: var(--graphite);
    font-family: var(--display-font);
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -.045em;
}

.goemotion-wc-product-detail .detail-copy p {
    margin: 0 0 12px;
}

.goemotion-wc-product-detail .detail-actions .quantity input.qty {
    min-height: 46px;
    border: 1px solid rgba(21,28,34,.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,.78);
    color: var(--graphite);
    font-weight: 900;
}

.goemotion-wc-product-detail .variations select {
    min-height: 43px;
    border: 1px solid rgba(21,28,34,.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,.78);
    padding: 10px;
}

.goemotion-home-main .hero-shop.hero-video-stage .hero-video-bg:not([src]) {
    background: #0c1217;
}

.goemotion-home-main .hero-product-slide .woocommerce-Price-amount,
.goemotion-home-main .promo-media .woocommerce-Price-amount {
    color: inherit;
    font-weight: inherit;
}

.goemotion-home-main .brand-card {
    text-decoration: none;
}

.goemotion-home-main .brand-logo-box img {
    filter: none;
}

.goemotion-home-main .category-band.home-categories a {
    text-decoration: none;
}

.goemotion-home-main .category-band.home-categories a strong {
    text-transform: none;
}

.goemotion-home-main .product-rail .product-card .product-actions {
    grid-template-columns: 1fr 1fr;
}

.goemotion-home-main .zoom-hotspot-popover {
    left: var(--popover-left, 24px);
    top: var(--popover-top, 24px);
    max-height: var(--popover-max-height, 360px);
}

@media (max-width: 920px) {
    .goemotion-default-shop-filters-slot {
        width: auto;
        margin-inline: 14px;
    }

    .goemotion-shop-filters.filters {
        overflow: visible;
        margin-inline: 0;
        padding: 0;
    }

    .goemotion-shop-filters .filter-panel {
        flex: 1 1 auto;
        width: 100%;
    }

    .goemotion-wc-product-detail.product-detail {
        grid-template-columns: 1fr;
    }
}

.goemotion-shortcode-product-layout {
    width: var(--container);
    margin-inline: auto;
}

.goemotion-shortcode-products-section ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
}

@media (max-width: 1180px) {
    .goemotion-shortcode-products-section ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .goemotion-shortcode-product-layout {
        grid-template-columns: 1fr;
    }

    .goemotion-shortcode-products-section ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .goemotion-shortcode-products-section ul.products {
        grid-template-columns: 1fr;
    }
}

/* v1.0.6: strict WooCommerce template routing, real sidebar filters and stable responsive product cards. */
.woocommerce-page .site-main.goemotion-shop-main,
.woocommerce-page .site-main.goemotion-product-main {
    width: 100%;
    max-width: none;
}

.goemotion-wc-catalog.catalog-layout {
    display: grid ;
    grid-template-columns: minmax(258px, 304px) minmax(0, 1fr) ;
    align-items: start ;
    gap: clamp(14px, 2vw, 24px) ;
    width: var(--container) ;
    max-width: var(--container) ;
    margin: clamp(16px, 3vw, 34px) auto clamp(34px, 6vw, 86px) ;
}

.goemotion-wc-catalog .goemotion-shop-filters.filters {
    position: sticky ;
    top: calc(var(--header-h, 88px) + 18px) ;
    width: 100% ;
    min-width: 0 ;
    max-width: 304px ;
    display: grid ;
    gap: 10px ;
    align-self: start ;
    grid-column: 1 ;
}

.goemotion-wc-catalog .goemotion-products-section {
    grid-column: 2 ;
    min-width: 0 ;
    width: 100% ;
}

.goemotion-filter-toggle {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(21,28,34,.1);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(246,248,249,.84));
    color: var(--graphite);
    font-weight: 950;
    box-shadow: 0 16px 34px rgba(21,28,34,.08), inset 0 1px 0 rgba(255,255,255,.7);
    cursor: pointer;
}

.goemotion-filter-toggle em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.goemotion-wc-catalog .goemotion-widget-filter-panel {
    width: 100%;
    padding: 15px ;
    overflow: hidden;
}

.goemotion-wc-catalog .goemotion-filter-widgets,
.goemotion-wc-catalog .goemotion-widget-filter-panel form,
.goemotion-wc-catalog .goemotion-widget-filter-panel .widget {
    min-width: 0;
}

.goemotion-wc-catalog .goemotion-widget-filter-panel select,
.goemotion-wc-catalog .goemotion-widget-filter-panel input,
.goemotion-wc-catalog .goemotion-widget-filter-panel textarea,
.goemotion-wc-catalog .goemotion-widget-filter-panel button {
    max-width: 100%;
}

.goemotion-products-section .product-grid,
.woocommerce .goemotion-wc-product-grid.products,
.woocommerce .goemotion-wc-product-grid {
    display: grid ;
    grid-template-columns: repeat(4, minmax(0, 1fr)) ;
    gap: clamp(10px, 1.25vw, 14px) ;
    width: 100% ;
    margin: 0 ;
    padding: 0 ;
    list-style: none ;
}

.goemotion-wc-product-card.product-card,
.woocommerce .goemotion-wc-product-grid .goemotion-wc-product-card.product-card {
    float: none ;
    clear: none ;
    width: auto ;
    min-width: 0 ;
    margin: 0 ;
    display: flex ;
    flex-direction: column ;
    border-radius: var(--radius);
    contain: layout paint;
    content-visibility: auto;
    contain-intrinsic-size: 360px;
}

.goemotion-wc-product-card .product-media {
    aspect-ratio: 4 / 3 ;
    min-height: 0 ;
    width: 100% ;
    padding: clamp(8px, 1.1vw, 14px) ;
}

.goemotion-wc-product-card .product-media img,
.goemotion-wc-product-card .product-media .goemotion-product-image,
.woocommerce .goemotion-wc-product-card a img {
    display: block ;
    width: 100% ;
    height: 100% ;
    max-width: 100% ;
    max-height: 100% ;
    margin: 0 auto ;
    padding: 0 ;
    object-fit: contain ;
    object-position: center ;
    border-radius: 0 ;
    box-shadow: none ;
}

.goemotion-wc-product-card .product-body {
    min-width: 0 ;
    flex: 1 1 auto ;
    display: flex ;
    flex-direction: column ;
    gap: 8px ;
}

.goemotion-wc-product-card h3,
.goemotion-wc-product-card h3 a,
.goemotion-wc-product-card .product-category,
.goemotion-wc-product-card .product-meta span {
    min-width: 0 ;
    overflow-wrap: anywhere;
}

.goemotion-wc-product-card h3 a {
    color: inherit;
    text-decoration: none;
}

.goemotion-wc-product-card .price-stack {
    display: grid ;
    grid-template-columns: repeat(2, minmax(0, 1fr)) ;
    gap: 7px ;
    width: 100% ;
    min-width: 0 ;
}

.goemotion-wc-product-card .price-line,
.goemotion-wc-product-card .price-line strong,
.goemotion-wc-product-card .price-line span,
.goemotion-wc-product-card .price-line em,
.goemotion-wc-product-card .price-line .amount,
.goemotion-wc-product-card .price-line .woocommerce-Price-amount {
    min-width: 0 ;
    max-width: 100% ;
}

.goemotion-wc-product-card .price-line {
    overflow: hidden ;
}

.goemotion-wc-product-card .price-line strong,
.goemotion-wc-product-card .price-line .amount,
.goemotion-wc-product-card .price-line .woocommerce-Price-amount {
    white-space: normal ;
    overflow-wrap: anywhere ;
    word-break: normal ;
}

.goemotion-wc-product-card .price-line-full {
    grid-column: 1 / -1;
}

.goemotion-wc-product-card .product-status-row {
    margin-top: auto;
}

.goemotion-wc-product-card .product-actions {
    display: grid ;
    grid-template-columns: 1fr 1fr ;
    gap: 7px ;
    align-items: stretch ;
}

.goemotion-wc-product-card .product-actions .button,
.goemotion-wc-product-card .product-actions .btn,
.goemotion-wc-product-card .product-actions .added_to_cart {
    min-width: 0 ;
    width: 100% ;
    white-space: normal ;
    text-decoration: none ;
}

.goemotion-wc-product-detail.product-detail {
    display: grid ;
    grid-template-columns: minmax(320px, 560px) minmax(0, 1fr) ;
    gap: clamp(14px, 2vw, 20px) ;
    width: var(--container) ;
    max-width: var(--container) ;
    margin: clamp(16px, 3vw, 32px) auto clamp(28px, 5vw, 70px) ;
    padding: 0 ;
}

.goemotion-wc-product-detail .detail-gallery,
.goemotion-wc-product-detail .detail-info {
    min-width: 0 ;
    padding: clamp(14px, 2vw, 18px) ;
    border-radius: var(--radius) ;
}

.goemotion-wc-product-detail .detail-gallery {
    display: grid ;
    align-content: start ;
    gap: 12px ;
}

.goemotion-wc-product-detail .detail-gallery > img,
.goemotion-wc-product-detail .detail-gallery .product-placeholder-large {
    width: 100% ;
    height: auto ;
    min-height: 0 ;
    max-height: min(58vh, 620px) ;
    object-fit: contain ;
    object-position: center ;
    background: linear-gradient(180deg, #fff, #f4f5f6) ;
    border-radius: var(--radius) ;
}

.goemotion-wc-product-detail .detail-thumbs {
    display: grid ;
    grid-template-columns: repeat(5, minmax(0, 1fr)) ;
    gap: 8px ;
}

.goemotion-wc-product-detail .detail-thumbs img {
    width: 100% ;
    aspect-ratio: 1 ;
    height: auto ;
    object-fit: contain ;
    background: var(--silver-2) ;
    border: 1px solid var(--line) ;
    border-radius: var(--radius) ;
}

.goemotion-wc-product-detail .detail-copy {
    color: rgba(83,96,107,.96);
    font-weight: 650;
    line-height: 1.68;
}

.goemotion-wc-product-detail .detail-price {
    display: grid ;
    grid-template-columns: repeat(2, minmax(0, 220px)) ;
    gap: 12px ;
}

.goemotion-wc-product-detail .detail-price.has-promo {
    grid-template-columns: repeat(2, minmax(0, 220px)) ;
}

.goemotion-wc-product-detail .detail-price div {
    min-width: 0;
    overflow: hidden;
}

.goemotion-wc-product-detail .detail-price strong,
.goemotion-wc-product-detail .detail-price .amount,
.goemotion-wc-product-detail .detail-price .woocommerce-Price-amount {
    white-space: normal ;
    overflow-wrap: anywhere ;
}

.goemotion-wc-product-detail .detail-actions {
    display: flex ;
    flex-wrap: wrap ;
    gap: 10px ;
    align-items: stretch ;
}

.goemotion-wc-product-detail .detail-actions form.cart,
.goemotion-wc-product-detail .detail-actions .cart {
    display: flex ;
    flex-wrap: wrap ;
    gap: 10px ;
    align-items: stretch ;
    margin: 0 ;
}

.goemotion-wc-product-detail .single_variation_wrap,
.goemotion-wc-product-detail .woocommerce-variation-add-to-cart {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.goemotion-wc-product-detail .variations_form.cart {
    display: grid ;
    width: 100%;
}

.goemotion-wc-product-detail .variations,
.goemotion-wc-product-detail .variations tbody,
.goemotion-wc-product-detail .variations tr,
.goemotion-wc-product-detail .variations th,
.goemotion-wc-product-detail .variations td {
    display: block ;
    width: 100% ;
}

.goemotion-scroll-tabs {
    width: var(--container) ;
    max-width: var(--container) ;
}

@media (max-width: 1320px) {
    .goemotion-products-section .product-grid,
    .woocommerce .goemotion-wc-product-grid.products,
    .woocommerce .goemotion-wc-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) ;
    }
}

@media (max-width: 1040px) {
    .goemotion-wc-catalog.catalog-layout {
        grid-template-columns: 246px minmax(0, 1fr) ;
    }

    .goemotion-products-section .product-grid,
    .woocommerce .goemotion-wc-product-grid.products,
    .woocommerce .goemotion-wc-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) ;
    }

    .goemotion-wc-product-detail.product-detail {
        grid-template-columns: minmax(280px, 45%) minmax(0, 1fr) ;
    }
}

@media (max-width: 920px) {
    .goemotion-wc-catalog.catalog-layout {
        grid-template-columns: 1fr ;
        gap: 12px ;
        margin-top: 12px ;
    }

    .goemotion-wc-catalog .goemotion-shop-filters.filters,
    .goemotion-wc-catalog .goemotion-products-section {
        grid-column: 1 ;
        max-width: none ;
    }

    .goemotion-wc-catalog .goemotion-shop-filters.filters {
        position: static ;
    }

    .goemotion-filter-toggle {
        display: flex;
    }

    .goemotion-wc-catalog .goemotion-widget-filter-panel {
        display: none;
    }

    .goemotion-wc-catalog .goemotion-shop-filters.is-open .goemotion-widget-filter-panel {
        display: grid;
    }

    .goemotion-shop-head {
        display: grid ;
        align-items: start ;
    }

    .goemotion-shop-tools {
        justify-content: stretch ;
        width: 100%;
    }

    .goemotion-shop-tools .woocommerce-result-count,
    .goemotion-shop-tools .woocommerce-ordering,
    .goemotion-shop-tools .orderby {
        width: 100% ;
    }

    .goemotion-wc-product-detail.product-detail {
        grid-template-columns: 1fr ;
        margin-top: 12px ;
    }

    .goemotion-wc-product-detail .detail-gallery > img,
    .goemotion-wc-product-detail .detail-gallery .product-placeholder-large {
        max-height: 520px ;
    }
}

@media (max-width: 640px) {
    .goemotion-products-section .product-grid,
    .woocommerce .goemotion-wc-product-grid.products,
    .woocommerce .goemotion-wc-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) ;
        gap: 10px ;
    }

    .goemotion-wc-product-card .product-body {
        padding: 9px ;
        gap: 7px ;
    }

    .goemotion-wc-product-card h3 {
        font-size: 12px ;
    }

    .goemotion-wc-product-card .product-category,
    .goemotion-wc-product-card .product-meta {
        font-size: 10.5px ;
    }

    .goemotion-wc-product-card .price-stack {
        grid-template-columns: 1fr ;
    }

    .goemotion-wc-product-card .product-actions {
        grid-template-columns: 1fr ;
    }

    .goemotion-wc-product-detail .detail-price,
    .goemotion-wc-product-detail .detail-price.has-promo {
        grid-template-columns: 1fr ;
    }

    .goemotion-wc-product-detail .detail-actions,
    .goemotion-wc-product-detail .detail-actions form.cart,
    .goemotion-wc-product-detail .single_variation_wrap,
    .goemotion-wc-product-detail .woocommerce-variation-add-to-cart {
        display: grid ;
        width: 100% ;
    }

    .goemotion-wc-product-detail .detail-actions .button,
    .goemotion-wc-product-detail .detail-actions .btn,
    .goemotion-wc-product-detail .single_add_to_cart_button {
        width: 100% ;
    }
}

@media (max-width: 420px) {
    .goemotion-products-section .product-grid,
    .woocommerce .goemotion-wc-product-grid.products,
    .woocommerce .goemotion-wc-product-grid {
        grid-template-columns: 1fr ;
    }
}

/* v1.0.6: Smooth sticky header performance pass.
   Keep the normal -> sticky transition on compositor-friendly properties only. */
body:not(.goemotion-header-ready) .site-header,
body:not(.goemotion-header-ready) .site-header * {
    transition: none ;
}

.site-header,
.site-header.is-scrolled {
    pointer-events: auto ;
    transform: translate3d(0, 0, 0) ;
    will-change: transform;
    backface-visibility: hidden;
    contain: paint;
    transition: background-color .18s ease, box-shadow .18s ease, transform .22s cubic-bezier(.2,.8,.2,1) ;
}

body:not(.page-video-hero) .site-header,
body:not(.page-video-hero) .site-header.is-scrolled {
    position: sticky ;
    top: 0 ;
    right: auto ;
    left: auto ;
}

body.admin-bar:not(.page-video-hero) .site-header,
body.admin-bar:not(.page-video-hero) .site-header.is-scrolled {
    top: 32px ;
}

@media (max-width: 782px) {
    body.admin-bar:not(.page-video-hero) .site-header,
    body.admin-bar:not(.page-video-hero) .site-header.is-scrolled {
        top: 46px ;
    }
}

.page-video-hero .site-header,
.page-video-hero .site-header.is-scrolled {
    position: fixed ;
    top: 0 ;
    right: 0 ;
    left: 0 ;
}

.admin-bar.page-video-hero .site-header,
.admin-bar.page-video-hero .site-header.is-scrolled {
    top: 32px ;
}

@media (max-width: 782px) {
    .admin-bar.page-video-hero .site-header,
    .admin-bar.page-video-hero .site-header.is-scrolled {
        top: 46px ;
    }
}

.topbar,
.page-video-hero .site-header:not(.is-scrolled) .topbar,
.site-header.is-scrolled .topbar {
    max-height: 42px ;
    overflow: hidden ;
    will-change: opacity, transform;
    transition: opacity .16s ease, transform .22s cubic-bezier(.2,.8,.2,1) ;
}

.site-header.is-scrolled .topbar {
    padding: 2px 12px 7px ;
    opacity: 0 ;
    transform: translate3d(0, -10px, 0) ;
    pointer-events: none ;
}

.nav-shell,
.site-header.is-scrolled .nav-shell,
.page-video-hero .site-header:not(.is-scrolled) .nav-shell,
.page-video-hero .site-header.is-scrolled .nav-shell {
    min-height: 74px ;
    margin-top: 0 ;
    padding: 9px 12px ;
    transform: translate3d(0, 0, 0) scale(1) ;
    transform-origin: top center ;
    will-change: transform;
    backface-visibility: hidden;
    transition:
        transform .24s cubic-bezier(.2,.8,.2,1),
        opacity .16s ease,
        box-shadow .18s ease,
        border-color .18s ease ;
}

.site-header.is-scrolled .nav-shell,
.page-video-hero .site-header.is-scrolled .nav-shell {
    width: min(1180px, calc(100vw - 28px)) ;
    transform: translate3d(0, -30px, 0) scale(.985) ;
    background:
        linear-gradient(135deg, rgba(249,251,252,.92), rgba(238,244,246,.78)),
        radial-gradient(circle at 14% 50%, rgba(175,203,32,.17), transparent 24rem) ;
    box-shadow:
        0 14px 38px rgba(21,28,34,.13),
        inset 0 1px 0 rgba(255,255,255,.72) ;
    backdrop-filter: blur(12px) saturate(122%) ;
    -webkit-backdrop-filter: blur(12px) saturate(122%) ;
}

.brand img,
.site-header.is-scrolled .brand img,
.page-video-hero .site-header:not(.is-scrolled) .brand img {
    width: 104px ;
    max-height: 58px ;
    transition: filter .18s ease ;
}

.main-nav a,
.site-header.is-scrolled .main-nav a {
    padding: 11px clamp(3px, .45vw, 7px) 16px ;
    font-size: clamp(12px, .92vw, 14px) ;
}

.header-search,
.site-header.is-scrolled .header-search,
.site-header.is-scrolled .header-search.is-open,
.header-search-toggle,
.header-search-submit,
.header-search-close,
.cart-button,
.site-header.is-scrolled .header-search-toggle,
.site-header.is-scrolled .header-search-submit,
.site-header.is-scrolled .header-search-close,
.site-header.is-scrolled .cart-button {
    width: 44px ;
    height: 44px ;
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease ;
}

.site-header.is-scrolled .account-button {
    min-height: 44px ;
    padding: 8px 12px 8px 8px ;
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease ;
}

.site-header.is-scrolled .header-search-panel {
    height: 62px ;
    padding: 7px ;
}

.site-header.is-scrolled .header-search-panel input {
    height: 48px ;
}

@media (max-width: 920px) {
    .site-header,
    .site-header.is-scrolled,
    .page-video-hero .site-header,
    .page-video-hero .site-header.is-scrolled {
        padding: 0 ;
    }

    .nav-shell,
    .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header:not(.is-scrolled) .nav-shell,
    .page-video-hero .site-header.is-scrolled .nav-shell {
        width: 100vw ;
        min-height: 58px ;
        padding: 7px 10px ;
        border-right: 0 ;
        border-left: 0 ;
        transform: translate3d(0, 0, 0) scale(1) ;
        backdrop-filter: none ;
        -webkit-backdrop-filter: none ;
        transition: background-color .16s ease, box-shadow .16s ease, transform .18s ease ;
    }

    .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header.is-scrolled .nav-shell {
        background: rgba(249, 251, 252, .96) ;
        box-shadow: 0 10px 26px rgba(21, 28, 34, .12) ;
    }

    .brand img,
    .site-header.is-scrolled .brand img,
    .page-video-hero .site-header:not(.is-scrolled) .brand img {
        width: 88px ;
        max-height: 42px ;
    }

    .topbar,
    .site-header.is-scrolled .topbar {
        display: none ;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-header *,
    .nav-shell,
    .topbar {
        transition: none ;
        animation: none ;
    }
}

/* Keep the shortcode search expansion intact after the sticky-header performance overrides. */
.header-search.is-open,
.site-header.is-scrolled .header-search.is-open {
    width: min(520px, calc(100vw - 32px)) ;
}

@media (max-width: 920px) {
    .header-search.is-open,
    .site-header.is-scrolled .header-search.is-open {
        width: min(320px, calc(100vw - 128px)) ;
    }
}


/* v1.0.9 Price stack: regular and GO price full width */
.goemotion-wc-product-card .price-stack,
.goemotion-wc-product-detail .detail-price,
.goemotion-wc-product-detail .detail-price.has-promo {
    display: flex ;
    flex-direction: column ;
    align-items: stretch ;
    grid-template-columns: none ;
    width: 100% ;
    gap: 8px ;
}

.goemotion-wc-product-card .price-stack > *,
.goemotion-wc-product-card .price-line,
.goemotion-wc-product-detail .detail-price > div,
.goemotion-wc-product-detail .detail-price .regular-price-line,
.goemotion-wc-product-detail .detail-price .go-price-line,
.goemotion-wc-product-detail .detail-price .promo-old,
.goemotion-wc-product-detail .detail-price .promo-detail,
.goemotion-wc-product-detail .detail-price .detail-price-full {
    width: 100% ;
    max-width: 100% ;
    flex: 0 0 auto ;
    grid-column: 1 / -1 ;
    min-width: 0 ;
}

.goemotion-wc-product-card .price-line,
.goemotion-wc-product-detail .detail-price > div {
    display: flex ;
    align-items: center ;
    justify-content: space-between ;
    gap: 10px ;
    min-height: 44px ;
    box-sizing: border-box ;
}

.goemotion-wc-product-card .price-line span,
.goemotion-wc-product-detail .detail-price span {
    flex: 0 0 auto ;
    white-space: nowrap ;
}

.goemotion-wc-product-card .price-line strong,
.goemotion-wc-product-detail .detail-price strong,
.goemotion-wc-product-card .price-line .amount,
.goemotion-wc-product-detail .detail-price .amount,
.goemotion-wc-product-card .price-line .woocommerce-Price-amount,
.goemotion-wc-product-detail .detail-price .woocommerce-Price-amount {
    flex: 1 1 auto ;
    min-width: 0 ;
    text-align: right ;
    white-space: normal ;
    overflow-wrap: anywhere ;
}

@media (max-width: 420px) {
    .goemotion-wc-product-card .price-line,
    .goemotion-wc-product-detail .detail-price > div {
        align-items: flex-start ;
        flex-direction: column ;
        gap: 4px ;
    }

    .goemotion-wc-product-card .price-line strong,
    .goemotion-wc-product-detail .detail-price strong,
    .goemotion-wc-product-card .price-line .amount,
    .goemotion-wc-product-detail .detail-price .amount,
    .goemotion-wc-product-card .price-line .woocommerce-Price-amount,
    .goemotion-wc-product-detail .detail-price .woocommerce-Price-amount {
        width: 100% ;
        text-align: left ;
    }
}


/* v1.0.9: GO price meta, fixed sticky header and full product-image containment. */
:root {
    --ge-header-desktop-offset: 116px;
    --ge-header-mobile-offset: 62px;
}

body:not(.page-video-hero) {
    padding-top: var(--ge-header-desktop-offset) ;
}

.site-header,
.site-header.is-scrolled,
body:not(.page-video-hero) .site-header,
body:not(.page-video-hero) .site-header.is-scrolled,
.page-video-hero .site-header,
.page-video-hero .site-header.is-scrolled {
    position: fixed ;
    top: 0 ;
    right: 0 ;
    left: 0 ;
    z-index: 9999 ;
    width: 100% ;
    max-width: none ;
    pointer-events: auto ;
    transform: translate3d(0, 0, 0) ;
    opacity: 1 ;
    visibility: visible ;
    contain: none ;
    will-change: transform;
}

.admin-bar .site-header,
.admin-bar .site-header.is-scrolled,
body.admin-bar:not(.page-video-hero) .site-header,
body.admin-bar:not(.page-video-hero) .site-header.is-scrolled,
.admin-bar.page-video-hero .site-header,
.admin-bar.page-video-hero .site-header.is-scrolled {
    top: 32px ;
}

.site-header .nav-shell,
.site-header.is-scrolled .nav-shell,
.page-video-hero .site-header:not(.is-scrolled) .nav-shell,
.page-video-hero .site-header.is-scrolled .nav-shell {
    pointer-events: auto ;
    opacity: 1 ;
    visibility: visible ;
    transform: translate3d(0, 0, 0) scale(1) ;
    will-change: transform;
}

.site-header.is-scrolled .nav-shell,
.page-video-hero .site-header.is-scrolled .nav-shell {
    transform: translate3d(0, 0, 0) scale(.985) ;
}

.site-header .main-nav,
.site-header .header-actions,
.site-header .brand,
.site-header .nav-toggle,
.site-header .cart-button,
.site-header .account-menu,
.site-header .header-search {
    pointer-events: auto ;
    opacity: 1 ;
    visibility: visible ;
}

.goemotion-wc-product-card .price-stack,
.goemotion-wc-product-detail .detail-price,
.goemotion-wc-product-detail .detail-price.has-go-price {
    display: flex ;
    flex-direction: column ;
    grid-template-columns: none ;
    align-items: stretch ;
    width: 100% ;
    gap: 8px ;
}

.goemotion-wc-product-card .go-price-line,
.goemotion-wc-product-detail .go-price-line {
    background:
        linear-gradient(135deg, rgba(175, 203, 32, .18), rgba(216, 239, 72, .11)),
        rgba(255,255,255,.92) ;
    border-color: rgba(175, 203, 32, .42) ;
}

.goemotion-wc-product-card .go-price-line strong,
.goemotion-wc-product-detail .go-price-line strong {
    color: var(--graphite) ;
    font-weight: 1000 ;
}

.goemotion-wc-product-card .product-media,
.woocommerce ul.products li.goemotion-wc-product-card .product-media {
    display: flex ;
    align-items: center ;
    justify-content: center ;
    aspect-ratio: 1 / 1 ;
    min-height: clamp(210px, 18vw, 292px) ;
    overflow: visible ;
    padding: clamp(12px, 1.35vw, 20px) ;
}

.goemotion-wc-product-card .product-media img,
.goemotion-wc-product-card .product-media .goemotion-product-image,
.woocommerce ul.products li.product.goemotion-wc-product-card a img,
.woocommerce .goemotion-wc-product-card a img,
.product-grid .goemotion-wc-product-card img {
    width: auto ;
    height: auto ;
    max-width: 100% ;
    max-height: 100% ;
    object-fit: contain ;
    object-position: center center ;
    transform: none ;
    scale: 1 ;
    filter: drop-shadow(0 16px 24px rgba(21,28,34,.12));
}

.goemotion-wc-product-card:hover .product-media img,
.goemotion-wc-product-card:focus-within .product-media img,
.product-card:hover .product-media img {
    transform: none ;
}

.goemotion-wc-product-detail .detail-gallery {
    display: grid ;
    align-items: center ;
    justify-items: center ;
    overflow: visible ;
}

.goemotion-wc-product-detail .detail-gallery > img,
.goemotion-wc-product-detail .detail-gallery .goemotion-single-main-image,
.goemotion-wc-product-detail .detail-gallery .product-placeholder-large {
    width: auto ;
    height: auto ;
    max-width: 100% ;
    max-height: min(68vh, 680px) ;
    object-fit: contain ;
    object-position: center center ;
    transform: none ;
}

.goemotion-wc-product-detail .detail-thumbs img {
    width: 100% ;
    height: 100% ;
    max-height: 110px ;
    object-fit: contain ;
    transform: none ;
}

@media (max-width: 920px) {
    body:not(.page-video-hero) {
        padding-top: var(--ge-header-mobile-offset) ;
    }

    .site-header,
    .site-header.is-scrolled,
    body:not(.page-video-hero) .site-header,
    body:not(.page-video-hero) .site-header.is-scrolled,
    .page-video-hero .site-header,
    .page-video-hero .site-header.is-scrolled {
        top: 0 ;
    }

    .admin-bar .site-header,
    .admin-bar .site-header.is-scrolled,
    body.admin-bar:not(.page-video-hero) .site-header,
    body.admin-bar:not(.page-video-hero) .site-header.is-scrolled,
    .admin-bar.page-video-hero .site-header,
    .admin-bar.page-video-hero .site-header.is-scrolled {
        top: 46px ;
    }

    .goemotion-wc-product-card .product-media,
    .woocommerce ul.products li.goemotion-wc-product-card .product-media {
        min-height: clamp(190px, 48vw, 260px) ;
    }
}

@media (max-width: 420px) {
    .goemotion-wc-product-card .product-media,
    .woocommerce ul.products li.goemotion-wc-product-card .product-media {
        min-height: 230px ;
    }
}


html {
    scroll-padding-top: var(--ge-header-desktop-offset);
}

body.admin-bar:not(.page-video-hero) {
    padding-top: calc(var(--ge-header-desktop-offset) + 32px) ;
}

@media (max-width: 920px) {
    html {
        scroll-padding-top: var(--ge-header-mobile-offset);
    }

    body.admin-bar:not(.page-video-hero) {
        padding-top: calc(var(--ge-header-mobile-offset) + 46px) ;
    }
}


/* v1.0.9: Responsive sticky header anti-overlap pass.
   Sticky mode keeps a stable geometry: no scale, no font/width/button shrink. */
:root {
    --ge-header-desktop-offset: 118px;
    --ge-header-tablet-offset: 76px;
    --ge-header-mobile-offset: 68px;
}

.site-header,
.site-header.is-scrolled,
body:not(.page-video-hero) .site-header,
body:not(.page-video-hero) .site-header.is-scrolled,
.page-video-hero .site-header,
.page-video-hero .site-header.is-scrolled {
    position: fixed ;
    inset-inline: 0 ;
    top: 0 ;
    width: 100% ;
    max-width: none ;
    z-index: 9999 ;
    transform: translate3d(0, 0, 0) ;
    opacity: 1 ;
    visibility: visible ;
    pointer-events: auto ;
    contain: none ;
    will-change: auto ;
    transition: background-color .18s ease, box-shadow .18s ease ;
}

.admin-bar .site-header,
.admin-bar .site-header.is-scrolled,
body.admin-bar:not(.page-video-hero) .site-header,
body.admin-bar:not(.page-video-hero) .site-header.is-scrolled,
.admin-bar.page-video-hero .site-header,
.admin-bar.page-video-hero .site-header.is-scrolled {
    top: 32px ;
}

.site-header .topbar,
.page-video-hero .site-header:not(.is-scrolled) .topbar {
    width: min(var(--container, 1320px), calc(100vw - clamp(24px, 4vw, 56px))) ;
    max-height: 36px ;
    padding: 2px 12px 7px ;
    opacity: 1 ;
    transform: none ;
    white-space: nowrap ;
    overflow: hidden ;
    text-overflow: ellipsis ;
    transition: opacity .16s ease, transform .18s ease, max-height .18s ease, padding .18s ease ;
}

.site-header.is-scrolled .topbar,
.page-video-hero .site-header.is-scrolled .topbar {
    max-height: 0 ;
    padding-top: 0 ;
    padding-bottom: 0 ;
    opacity: 0 ;
    transform: translate3d(0, -8px, 0) ;
    pointer-events: none ;
}

.site-header .nav-shell,
.site-header.is-scrolled .nav-shell,
body:not(.page-video-hero) .site-header .nav-shell,
body:not(.page-video-hero) .site-header.is-scrolled .nav-shell,
.page-video-hero .site-header:not(.is-scrolled) .nav-shell,
.page-video-hero .site-header.is-scrolled .nav-shell {
    box-sizing: border-box ;
    display: grid ;
    grid-template-columns: auto minmax(0, 1fr) auto ;
    align-items: center ;
    width: min(var(--container, 1320px), calc(100vw - clamp(24px, 4vw, 56px))) ;
    max-width: none ;
    min-height: 74px ;
    margin: 0 auto ;
    padding: 9px 12px ;
    gap: clamp(8px, 1vw, 18px) ;
    border-radius: 22px ;
    transform: translate3d(0, 0, 0) scale(1) ;
    transform-origin: center top ;
    opacity: 1 ;
    visibility: visible ;
    pointer-events: auto ;
    overflow: visible ;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease ;
}

.site-header.is-scrolled .nav-shell,
body:not(.page-video-hero) .site-header.is-scrolled .nav-shell,
.page-video-hero .site-header.is-scrolled .nav-shell {
    min-height: 74px ;
    padding: 9px 12px ;
    border-radius: 22px ;
    background:
        linear-gradient(135deg, rgba(249,251,252,.94), rgba(238,244,246,.84)),
        radial-gradient(circle at 14% 50%, rgba(175,203,32,.17), transparent 24rem) ;
    box-shadow:
        0 14px 38px rgba(21,28,34,.13),
        inset 0 1px 0 rgba(255,255,255,.72) ;
    backdrop-filter: blur(12px) saturate(122%) ;
    -webkit-backdrop-filter: blur(12px) saturate(122%) ;
}

.site-header .brand,
.site-header.is-scrolled .brand {
    min-width: 0 ;
    flex: 0 0 auto ;
}

.site-header .brand img,
.site-header.is-scrolled .brand img,
.page-video-hero .site-header:not(.is-scrolled) .brand img,
.page-video-hero .site-header.is-scrolled .brand img {
    width: clamp(92px, 7.8vw, 112px) ;
    max-width: 112px ;
    max-height: 58px ;
    object-fit: contain ;
    transform: none ;
    transition: filter .18s ease ;
}

.site-header .main-nav,
.site-header.is-scrolled .main-nav {
    min-width: 0 ;
    max-width: 100% ;
    width: 100% ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    gap: clamp(5px, .65vw, 12px) ;
    overflow-x: auto ;
    overflow-y: hidden ;
    flex-wrap: nowrap ;
    scrollbar-width: none ;
    -webkit-overflow-scrolling: touch ;
    overscroll-behavior-inline: contain ;
    mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%) ;
}

.site-header .main-nav::-webkit-scrollbar,
.site-header.is-scrolled .main-nav::-webkit-scrollbar {
    display: none ;
}

.site-header .main-nav a,
.site-header.is-scrolled .main-nav a,
.page-video-hero .site-header:not(.is-scrolled) .main-nav a,
.page-video-hero .site-header.is-scrolled .main-nav a {
    flex: 0 0 auto ;
    min-width: max-content ;
    max-width: none ;
    padding: 10px clamp(4px, .45vw, 8px) 15px ;
    font-size: clamp(12px, .78vw, 14px) ;
    line-height: 1.05 ;
    white-space: nowrap ;
    transform: none ;
}

.site-header .header-actions,
.site-header.is-scrolled .header-actions,
.page-video-hero .site-header:not(.is-scrolled) .header-actions,
.page-video-hero .site-header.is-scrolled .header-actions {
    display: flex ;
    align-items: center ;
    justify-content: flex-end ;
    flex: 0 0 auto ;
    min-width: max-content ;
    width: auto ;
    gap: clamp(5px, .55vw, 8px) ;
    margin: 0 ;
    padding: 0 ;
    overflow: visible ;
    opacity: 1 ;
    visibility: visible ;
    pointer-events: auto ;
}

.site-header .header-search,
.site-header.is-scrolled .header-search,
.site-header.is-scrolled .header-search.is-open,
.site-header .header-search-toggle,
.site-header.is-scrolled .header-search-toggle,
.site-header .cart-button,
.site-header.is-scrolled .cart-button {
    width: 42px ;
    min-width: 42px ;
    max-width: 42px ;
    height: 42px ;
    min-height: 42px ;
    max-height: 42px ;
    flex: 0 0 42px ;
    transform: none ;
}

.site-header .account-menu,
.site-header.is-scrolled .account-menu {
    flex: 0 0 auto ;
    min-width: 0 ;
}

.site-header .account-button,
.site-header.is-scrolled .account-button,
.page-video-hero .site-header:not(.is-scrolled) .account-button,
.page-video-hero .site-header.is-scrolled .account-button {
    height: 42px ;
    min-height: 42px ;
    max-height: 42px ;
    max-width: 148px ;
    padding: 0 11px 0 7px ;
    gap: 7px ;
    overflow: hidden ;
    text-overflow: ellipsis ;
    transform: none ;
}

.site-header .account-label-full,
.site-header .account-label-short {
    min-width: 0 ;
    overflow: hidden ;
    text-overflow: ellipsis ;
    white-space: nowrap ;
}

.site-header.search-open .main-nav {
    opacity: 0 ;
    pointer-events: none ;
}

.site-header.search-open .account-button,
.site-header.search-open .cart-button {
    opacity: 0 ;
    pointer-events: none ;
}

.header-search.is-open,
.site-header.is-scrolled .header-search.is-open {
    width: 42px ;
    flex-basis: 42px ;
}

.site-header .header-search.is-open .header-search-panel,
.site-header.is-scrolled .header-search.is-open .header-search-panel {
    pointer-events: auto ;
}

@media (max-width: 1340px) and (min-width: 1181px) {
    .site-header .nav-shell,
    .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header:not(.is-scrolled) .nav-shell,
    .page-video-hero .site-header.is-scrolled .nav-shell {
        width: calc(100vw - 28px) ;
        gap: 8px ;
        padding-inline: 10px ;
    }

    .site-header .account-label-full,
    .site-header .account-label-short,
    .site-header .account-chevron {
        display: none ;
    }

    .site-header .account-button,
    .site-header.is-scrolled .account-button,
    .page-video-hero .site-header:not(.is-scrolled) .account-button,
    .page-video-hero .site-header.is-scrolled .account-button {
        width: 42px ;
        min-width: 42px ;
        max-width: 42px ;
        padding: 0 ;
    }

    .site-header .main-nav,
    .site-header.is-scrolled .main-nav {
        justify-content: flex-start ;
    }
}

@media (max-width: 1180px) {
    body:not(.page-video-hero) {
        padding-top: var(--ge-header-tablet-offset) ;
    }

    body.admin-bar:not(.page-video-hero) {
        padding-top: calc(var(--ge-header-tablet-offset) + 46px) ;
    }

    html {
        scroll-padding-top: var(--ge-header-tablet-offset) ;
    }

    .admin-bar .site-header,
    .admin-bar .site-header.is-scrolled,
    body.admin-bar:not(.page-video-hero) .site-header,
    body.admin-bar:not(.page-video-hero) .site-header.is-scrolled,
    .admin-bar.page-video-hero .site-header,
    .admin-bar.page-video-hero .site-header.is-scrolled {
        top: 46px ;
    }

    .site-header .topbar,
    .site-header.is-scrolled .topbar,
    .page-video-hero .site-header:not(.is-scrolled) .topbar,
    .page-video-hero .site-header.is-scrolled .topbar {
        display: none ;
    }

    .site-header .nav-shell,
    .site-header.is-scrolled .nav-shell,
    body:not(.page-video-hero) .site-header .nav-shell,
    body:not(.page-video-hero) .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header:not(.is-scrolled) .nav-shell,
    .page-video-hero .site-header.is-scrolled .nav-shell {
        width: calc(100vw - 20px) ;
        min-height: 64px ;
        padding: 8px 10px ;
        grid-template-columns: auto 1fr auto ;
        gap: 8px ;
        border-radius: 20px ;
        overflow: visible ;
        backdrop-filter: none ;
        -webkit-backdrop-filter: none ;
    }

    .site-header .brand img,
    .site-header.is-scrolled .brand img,
    .page-video-hero .site-header:not(.is-scrolled) .brand img,
    .page-video-hero .site-header.is-scrolled .brand img {
        width: clamp(88px, 12vw, 104px) ;
        max-height: 46px ;
    }

    .site-header .nav-toggle,
    .site-header.is-scrolled .nav-toggle {
        position: static ;
        display: grid ;
        grid-column: 2 ;
        justify-self: end ;
        width: 42px ;
        min-width: 42px ;
        height: 42px ;
        min-height: 42px ;
        margin: 0 ;
        z-index: 245 ;
        border-radius: 10px ;
    }

    .site-header .header-actions,
    .site-header.is-scrolled .header-actions,
    .page-video-hero .site-header:not(.is-scrolled) .header-actions,
    .page-video-hero .site-header.is-scrolled .header-actions {
        grid-column: 3 ;
        gap: 5px ;
        margin: 0 ;
    }

    .site-header .main-nav,
    .site-header.is-scrolled .main-nav,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav,
    .page-video-hero .site-header.is-scrolled .main-nav {
        position: fixed ;
        top: calc(46px + 76px) ;
        right: 10px ;
        left: 10px ;
        bottom: auto ;
        z-index: 230 ;
        display: flex ;
        width: auto ;
        max-width: none ;
        max-height: calc(100dvh - 138px) ;
        flex-direction: column ;
        align-items: stretch ;
        justify-content: flex-start ;
        gap: 10px ;
        overflow-x: hidden ;
        overflow-y: auto ;
        padding: 14px ;
        border: 1px solid rgba(255, 255, 255, .16) ;
        border-radius: 22px ;
        background:
            linear-gradient(145deg, rgba(20, 27, 33, .985), rgba(31, 41, 49, .985) 54%, rgba(11, 16, 20, .985)),
            radial-gradient(circle at 16% 0%, rgba(175,203,32,.18), transparent 17rem) ;
        box-shadow:
            0 30px 90px rgba(4,7,10,.56),
            inset 0 1px 0 rgba(255,255,255,.12) ;
        opacity: 0 ;
        visibility: hidden ;
        pointer-events: none ;
        transform: translate3d(0, -10px, 0) scale(.985) ;
        mask-image: none ;
        transition: opacity .2s ease, transform .24s cubic-bezier(.2,.8,.2,1), visibility .2s ease ;
    }

    body:not(.admin-bar) .site-header .main-nav,
    body:not(.admin-bar) .site-header.is-scrolled .main-nav,
    body:not(.admin-bar).page-video-hero .site-header:not(.is-scrolled) .main-nav,
    body:not(.admin-bar).page-video-hero .site-header.is-scrolled .main-nav {
        top: 76px ;
    }

    .site-header .main-nav.open,
    .site-header.is-scrolled .main-nav.open {
        opacity: 1 ;
        visibility: visible ;
        pointer-events: auto ;
        transform: translate3d(0, 0, 0) scale(1) ;
    }

    .site-header .main-nav > a,
    .site-header.is-scrolled .main-nav > a,
    .site-header .main-nav .menu > li > a,
    .site-header.is-scrolled .main-nav .menu > li > a {
        display: grid ;
        width: 100% ;
        min-width: 0 ;
        max-width: 100% ;
        padding: 14px ;
        border: 1px solid rgba(255,255,255,.1) ;
        border-radius: 14px ;
        background: rgba(255,255,255,.06) ;
        color: #fff ;
        font-size: 15px ;
        line-height: 1.2 ;
        white-space: normal ;
        overflow-wrap: anywhere ;
    }

    .site-header .nav-backdrop,
    .site-header.is-scrolled .nav-backdrop {
        position: fixed ;
        inset: 0 ;
        z-index: 210 ;
        display: block ;
        border: 0 ;
        background: rgba(8,12,15,.58) ;
        opacity: 0 ;
        visibility: hidden ;
        pointer-events: none ;
        transition: opacity .2s ease, visibility .2s ease ;
    }

    body.nav-open .site-header .nav-backdrop {
        opacity: 1 ;
        visibility: visible ;
        pointer-events: auto ;
    }
}

@media (max-width: 640px) {
    body:not(.page-video-hero) {
        padding-top: var(--ge-header-mobile-offset) ;
    }

    body.admin-bar:not(.page-video-hero) {
        padding-top: calc(var(--ge-header-mobile-offset) + 46px) ;
    }

    html {
        scroll-padding-top: var(--ge-header-mobile-offset) ;
    }

    .site-header .nav-shell,
    .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header:not(.is-scrolled) .nav-shell,
    .page-video-hero .site-header.is-scrolled .nav-shell {
        width: calc(100vw - 16px) ;
        min-height: 60px ;
        padding: 7px 8px ;
        gap: 6px ;
        grid-template-columns: auto 1fr auto ;
    }

    .site-header .brand img,
    .site-header.is-scrolled .brand img,
    .page-video-hero .site-header:not(.is-scrolled) .brand img,
    .page-video-hero .site-header.is-scrolled .brand img {
        width: clamp(78px, 24vw, 96px) ;
        max-height: 42px ;
    }

    .site-header .nav-toggle,
    .site-header.is-scrolled .nav-toggle,
    .site-header .header-search,
    .site-header.is-scrolled .header-search,
    .site-header .header-search-toggle,
    .site-header.is-scrolled .header-search-toggle,
    .site-header .account-button,
    .site-header.is-scrolled .account-button,
    .site-header .cart-button,
    .site-header.is-scrolled .cart-button {
        width: 39px ;
        min-width: 39px ;
        max-width: 39px ;
        height: 39px ;
        min-height: 39px ;
        max-height: 39px ;
        flex-basis: 39px ;
    }

    .site-header .header-actions,
    .site-header.is-scrolled .header-actions {
        gap: 4px ;
    }

    .site-header .account-label-full,
    .site-header .account-label-short,
    .site-header .account-chevron {
        display: none ;
    }

    .site-header .account-button,
    .site-header.is-scrolled .account-button {
        padding: 0 ;
    }

    body:not(.admin-bar) .site-header .main-nav,
    body:not(.admin-bar) .site-header.is-scrolled .main-nav {
        top: 68px ;
    }
}

@media (max-width: 390px) {
    .site-header .brand img,
    .site-header.is-scrolled .brand img {
        width: 76px ;
    }

    .site-header .nav-shell,
    .site-header.is-scrolled .nav-shell {
        width: calc(100vw - 12px) ;
        padding-inline: 6px ;
        gap: 4px ;
    }

    .site-header .nav-toggle,
    .site-header.is-scrolled .nav-toggle,
    .site-header .header-search,
    .site-header.is-scrolled .header-search,
    .site-header .header-search-toggle,
    .site-header.is-scrolled .header-search-toggle,
    .site-header .account-button,
    .site-header.is-scrolled .account-button,
    .site-header .cart-button,
    .site-header.is-scrolled .cart-button {
        width: 36px ;
        min-width: 36px ;
        max-width: 36px ;
        height: 36px ;
        min-height: 36px ;
        max-height: 36px ;
        flex-basis: 36px ;
    }

    .site-header .header-actions,
    .site-header.is-scrolled .header-actions {
        gap: 3px ;
    }
}

/* v1.0.9: Correct WordPress admin-bar offsets across tablet/desktop widths. */
@media (min-width: 783px) and (max-width: 1180px) {
    .admin-bar .site-header,
    .admin-bar .site-header.is-scrolled,
    body.admin-bar:not(.page-video-hero) .site-header,
    body.admin-bar:not(.page-video-hero) .site-header.is-scrolled,
    .admin-bar.page-video-hero .site-header,
    .admin-bar.page-video-hero .site-header.is-scrolled {
        top: 32px ;
    }

    body.admin-bar:not(.page-video-hero) {
        padding-top: calc(var(--ge-header-tablet-offset) + 32px) ;
    }

    .admin-bar .site-header .main-nav,
    .admin-bar .site-header.is-scrolled .main-nav,
    .admin-bar.page-video-hero .site-header:not(.is-scrolled) .main-nav,
    .admin-bar.page-video-hero .site-header.is-scrolled .main-nav {
        top: calc(32px + 76px) ;
    }
}

@media (max-width: 782px) {
    .admin-bar .site-header,
    .admin-bar .site-header.is-scrolled,
    body.admin-bar:not(.page-video-hero) .site-header,
    body.admin-bar:not(.page-video-hero) .site-header.is-scrolled,
    .admin-bar.page-video-hero .site-header,
    .admin-bar.page-video-hero .site-header.is-scrolled {
        top: 46px ;
    }

    .admin-bar .site-header .main-nav,
    .admin-bar .site-header.is-scrolled .main-nav,
    .admin-bar.page-video-hero .site-header:not(.is-scrolled) .main-nav,
    .admin-bar.page-video-hero .site-header.is-scrolled .main-nav {
        top: calc(46px + 68px) ;
    }
}


/* v1.0.11 clean header controls: no CSS priority flags, admin-controlled through inline CSS variables. */
.site-header .main-nav > a,
.site-header .main-nav a {
    color: var(--ge-menu-color, #000000);
}

.site-header .main-nav > a:hover,
.site-header .main-nav > a:focus-visible,
.site-header .main-nav > a.active {
    color: var(--ge-menu-hover-color, #000000);
}

.site-header .main-nav > a::before {
    background: var(--ge-menu-hover-accent, #afcb20);
}

.site-header,
.site-header .nav-shell,
.site-header .topbar,
.site-header .header-actions,
.site-header .brand img {
    transition: var(--ge-header-transition, transform .34s cubic-bezier(.16, 1, .3, 1), opacity .22s ease, box-shadow .28s ease, background .28s ease);
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-header * {
        transition-duration: .001ms;
        animation-duration: .001ms;
        animation-iteration-count: 1;
    }
}


/* v1.0.11 search/pricing frontend additions */
.goemotion-search-surface {
    width: min(720px, calc(100vw - 32px));
}
.goemotion-search-native {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(12,18,22,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 50px rgba(12,18,22,.12);
}
.goemotion-search-native.search-layout-compact-card {
    border-radius: 22px;
    grid-template-columns: auto minmax(0, 1fr);
}
.goemotion-search-native.search-layout-minimal-line {
    border-radius: 0;
    border-width: 0 0 1px;
    background: transparent;
    box-shadow: none;
}
.goemotion-search-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(175,203,32,.16);
    color: #111820;
}
.goemotion-search-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
}
.goemotion-search-native input[type="search"] {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111820;
    font: inherit;
}
.goemotion-search-native button[type="submit"] {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    background: #afcb20;
    color: #111820;
    font-weight: 900;
    cursor: pointer;
}
.price-line.b2b,
.goemotion-wc-product-detail .detail-price .b2b-price-line,
.goemotion-wc-product-detail .detail-price .b2b-secondary-price-line {
    width: 100%;
    border-color: rgba(17,24,32,.1);
    background: rgba(17,24,32,.035);
}
.goemotion-wc-product-card .price-line.b2b strong,
.goemotion-wc-product-detail .detail-price .b2b-price-line strong,
.goemotion-wc-product-detail .detail-price .b2b-secondary-price-line strong {
    color: #111820;
}
@media (max-width: 560px) {
    .goemotion-search-native {
        grid-template-columns: auto minmax(0, 1fr);
        border-radius: 22px;
    }
    .goemotion-search-native button[type="submit"] {
        grid-column: 1 / -1;
        width: 100%;
    }
}


/* v1.0.12: Header action buttons use admin-controlled black/white system without priority flags. */
.site-header .header-actions .header-search-toggle,
.site-header .header-actions .account-button,
.site-header .header-actions .cart-button,
.page-video-hero .site-header:not(.is-scrolled) .header-actions .header-search-toggle,
.page-video-hero .site-header:not(.is-scrolled) .header-actions .account-button,
.page-video-hero .site-header:not(.is-scrolled) .header-actions .cart-button {
    background: linear-gradient(145deg, color-mix(in srgb, var(--ge-header-action-bg, #000000) 94%, #ffffff 6%), var(--ge-header-action-bg, #000000));
    color: var(--ge-header-action-icon, #ffffff);
    border-color: color-mix(in srgb, var(--ge-header-action-icon, #ffffff) 22%, transparent);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, .16),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}

.site-header .header-actions .header-search-toggle:hover,
.site-header .header-actions .header-search-toggle:focus-visible,
.site-header .header-actions .account-button:hover,
.site-header .header-actions .account-button:focus-visible,
.site-header .header-actions .cart-button:hover,
.site-header .header-actions .cart-button:focus-visible {
    background: linear-gradient(145deg, color-mix(in srgb, var(--ge-header-action-hover-bg, #111820) 88%, var(--ge-header-action-hover-accent, #afcb20) 12%), var(--ge-header-action-hover-bg, #111820));
    color: var(--ge-header-action-hover-icon, #ffffff);
    border-color: color-mix(in srgb, var(--ge-header-action-hover-accent, #afcb20) 70%, transparent);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .22),
        0 0 0 3px color-mix(in srgb, var(--ge-header-action-hover-accent, #afcb20) 16%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, .14);
}

.site-header .header-actions .header-search-toggle svg,
.site-header .header-actions .account-button svg {
    background: transparent;
    color: currentColor;
    stroke: currentColor;
    fill: none;
}

.site-header .header-actions .header-search-toggle svg circle,
.site-header .header-actions .header-search-toggle svg path,
.site-header .header-actions .account-button svg path {
    stroke: currentColor;
    fill: none;
}

.site-header .header-actions .cart-button .cart-icon {
    filter: brightness(0) invert(1);
    opacity: .95;
}

.site-header .header-actions .account-label-full,
.site-header .header-actions .account-label-short,
.site-header .header-actions .account-chevron {
    color: currentColor;
}

.site-header .header-actions .cart-button strong {
    background: var(--ge-header-action-hover-accent, #afcb20);
    color: #111820;
}


/* v1.0.13: widgetized responsive footer, stable account dropdown, refined mini cart. */
.site-footer.ge-footer-widgetized {
    position: relative;
    overflow: clip;
    padding: clamp(42px, 6vw, 82px) 0 max(28px, env(safe-area-inset-bottom));
}

.ge-footer-shell {
    width: min(var(--container, 1320px), calc(100vw - clamp(24px, 4vw, 56px)));
    margin-inline: auto;
    display: grid;
    gap: clamp(22px, 4vw, 40px);
}

.ge-footer-style-dark_glass {
    background:
        radial-gradient(circle at 10% 0%, rgba(175, 203, 32, .18), transparent 24rem),
        radial-gradient(circle at 90% 14%, rgba(255, 255, 255, .08), transparent 24rem),
        linear-gradient(145deg, #0e1419, #172129 60%, #0a0f13);
    color: rgba(255, 255, 255, .84);
}

.ge-footer-style-light_clean {
    background: linear-gradient(180deg, #f6f8f9, #ffffff);
    color: #151d24;
}

.ge-footer-style-minimal {
    background: #ffffff;
    color: #151d24;
    border-top: 1px solid rgba(21, 28, 34, .08);
}

.ge-footer-topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding-bottom: clamp(18px, 3vw, 30px);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ge-footer-style-light_clean .ge-footer-topline,
.ge-footer-style-minimal .ge-footer-topline {
    border-bottom-color: rgba(21, 28, 34, .1);
}

.ge-footer-brand-widget .widget,
.ge-footer-widget-column .widget,
.ge-footer-bottom .widget {
    margin: 0;
}

.ge-footer-widget-grid {
    display: grid;
    grid-template-columns: repeat(var(--ge-footer-columns, 4), minmax(0, 1fr));
    gap: clamp(16px, 2.6vw, 32px);
    align-items: start;
}

.ge-footer-layout-compact_stack .ge-footer-widget-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.goemotion-footer-widget {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-footer-widget .widget-title,
.ge-footer-widgetized .widgettitle,
.ge-footer-widgetized h2,
.ge-footer-widgetized h3 {
    margin: 0 0 13px;
    color: inherit;
    font-family: var(--display-font, inherit);
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.ge-footer-style-dark_glass .goemotion-footer-widget .widget-title,
.ge-footer-style-dark_glass.ge-footer-widgetized h2,
.ge-footer-style-dark_glass.ge-footer-widgetized h3 {
    color: #fff;
}

.ge-footer-widgetized ul,
.ge-footer-widgetized ol {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ge-footer-widgetized a {
    color: inherit;
    text-decoration: none;
    opacity: .86;
    transition: opacity .18s ease, color .18s ease, transform .18s ease;
}

.ge-footer-widgetized a:hover,
.ge-footer-widgetized a:focus-visible {
    color: var(--accent, #afcb20);
    opacity: 1;
    transform: translateX(2px);
    outline: 0;
}

.ge-footer-widgetized p {
    max-width: 58ch;
    margin: 0 0 12px;
    color: inherit;
    opacity: .82;
    line-height: 1.65;
}

.ge-footer-socials {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.ge-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 20px;
    padding-top: clamp(14px, 3vw, 24px);
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: inherit;
    font-size: 13px;
    opacity: .78;
}

.ge-footer-style-light_clean .ge-footer-bottom,
.ge-footer-style-minimal .ge-footer-bottom {
    border-top-color: rgba(21, 28, 34, .1);
}

.ge-footer-empty-state {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px dashed rgba(175, 203, 32, .42);
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
}

.ge-footer-empty-state strong {
    color: inherit;
    font-size: 18px;
}

.account-menu {
    z-index: 10040;
}

.account-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -12px;
    width: calc(100% + 44px);
    height: 24px;
    pointer-events: auto;
}

.account-dropdown {
    top: calc(100% + 8px);
    z-index: 10050;
    transition: opacity .16s ease, transform .24s cubic-bezier(.16, 1, .3, 1), visibility .16s ease;
    visibility: hidden;
}

.account-menu.is-open .account-dropdown,
.account-menu:focus-within .account-dropdown {
    visibility: visible;
}

@media (hover: hover) {
    .account-menu:hover .account-dropdown {
        visibility: visible;
    }
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 100000;
    isolation: isolate;
    display: flex;
    justify-content: flex-end;
}

body.cart-open {
    overflow: hidden;
}

.cart-panel {
    width: min(540px, 100vw);
    max-width: 100vw;
    height: 100dvh;
    grid-template-rows: auto minmax(0, 1fr);
}

.cart-panel-head {
    align-items: center;
    padding: clamp(18px, 4vw, 28px);
}

.cart-panel-head h2 {
    font-size: clamp(24px, 5vw, 38px);
}

.goemotion-mini-cart {
    min-height: 0;
    gap: 14px;
    padding: clamp(14px, 3vw, 22px);
}

.goemotion-mini-cart-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin-bottom: 0;
}

.goemotion-mini-cart-summary em {
    justify-self: end;
    text-align: right;
}

.goemotion-mini-cart-body {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 3px;
}

.goemotion-mini-cart-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.goemotion-mini-cart .goemotion-mini-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: clamp(92px, 24vw, 118px) minmax(0, 1fr) 30px;
    gap: 14px;
    align-items: center;
    min-height: 124px;
    padding: 12px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 16px 42px rgba(21, 28, 34, .08), inset 0 1px 0 rgba(255, 255, 255, .75);
}

.goemotion-mini-cart-thumb {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: #f2f5f6;
    overflow: hidden;
}

.goemotion-mini-cart-thumb img,
.goemotion-mini-cart .goemotion-mini-cart-item img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    padding: 8px;
    border-radius: 18px;
    background: transparent;
}

.goemotion-mini-cart-line {
    min-width: 0;
    display: grid;
    gap: 9px;
}

.goemotion-mini-cart-name,
.goemotion-mini-cart .woocommerce-mini-cart-item a.goemotion-mini-cart-name {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--graphite, #151d24);
    font-size: 15px;
    font-weight: 950;
    line-height: 1.22;
}

.goemotion-mini-cart-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 12px;
}

.goemotion-mini-cart-qty {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(175, 203, 32, .16);
    color: #2a3210;
    font-size: 12px;
    font-weight: 950;
}

.goemotion-mini-cart-price,
.goemotion-mini-cart .quantity,
.goemotion-mini-cart .amount {
    color: var(--graphite, #151d24);
    font-size: 14px;
    font-weight: 950;
    line-height: 1.2;
}

.goemotion-mini-cart .quantity {
    margin: 0;
}

.goemotion-mini-cart-remove,
.goemotion-mini-cart .remove_from_cart_button {
    position: static;
    justify-self: end;
    align-self: start;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(21, 28, 34, .06);
    color: rgba(32, 42, 50, .72);
    font-size: 22px;
    line-height: 1;
}

.goemotion-mini-cart .woocommerce-mini-cart__total {
    align-items: center;
    margin: 0;
    padding: 18px 4px 0;
    border-top: 1px solid rgba(21, 28, 34, .12);
}

.goemotion-mini-cart .woocommerce-mini-cart__buttons {
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding-top: 4px;
    background: linear-gradient(180deg, rgba(244, 248, 249, 0), rgba(244, 248, 249, .98) 32%);
}

@media (max-width: 980px) {
    .ge-footer-topline,
    .ge-footer-widget-grid,
    .ge-footer-layout-compact_stack .ge-footer-widget-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ge-footer-socials {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .ge-footer-shell {
        width: calc(100vw - 28px);
    }

    .ge-footer-topline,
    .ge-footer-widget-grid,
    .ge-footer-layout-compact_stack .ge-footer-widget-grid {
        grid-template-columns: 1fr;
    }

    .ge-footer-bottom {
        display: grid;
        justify-content: stretch;
    }

    .cart-panel {
        width: 100vw;
        border-left: 0;
    }

    .goemotion-mini-cart .goemotion-mini-cart-item {
        grid-template-columns: 86px minmax(0, 1fr) 28px;
        gap: 10px;
        min-height: 104px;
        padding: 10px;
        border-radius: 18px;
    }

    .goemotion-mini-cart-name,
    .goemotion-mini-cart .woocommerce-mini-cart-item a.goemotion-mini-cart-name {
        font-size: 14px;
    }

    .goemotion-mini-cart .woocommerce-mini-cart__buttons {
        grid-template-columns: 1fr;
    }

    .account-dropdown {
        top: 72px;
    }
}

@media (max-width: 380px) {
    .goemotion-mini-cart .goemotion-mini-cart-item {
        grid-template-columns: 74px minmax(0, 1fr) 26px;
    }

    .goemotion-mini-cart-thumb img,
    .goemotion-mini-cart .goemotion-mini-cart-item img {
        padding: 6px;
    }
}


/* v1.0.23 - Editable Homepage Studio */
.goemotion-home-studio-builder .goemotion-home-widget-zone,
.goemotion-home-studio-builder .goemotion-home-custom-block,
.goemotion-home-studio-builder .goemotion-home-page-content {
    width: min(var(--container), calc(100% - 28px));
    margin-inline: auto;
}

.goemotion-home-widget-zone {
    display: grid;
    gap: 16px;
    margin-block: clamp(18px, 4vw, 44px);
}

.goemotion-home-widget-zone .goemotion-home-widget,
.goemotion-home-widget-zone-empty,
.goemotion-home-custom-block,
.goemotion-home-page-content {
    border: 1px solid rgba(17,24,32,.08);
    border-radius: clamp(22px, 3vw, 34px);
    background: rgba(255,255,255,.78);
    box-shadow: 0 24px 70px rgba(17,24,32,.08);
    backdrop-filter: blur(18px) saturate(140%);
}

.goemotion-home-widget-zone .goemotion-home-widget,
.goemotion-home-widget-zone-empty,
.goemotion-home-page-content {
    padding: clamp(20px, 4vw, 42px);
}

.home-widget-style-clean .goemotion-home-widget,
.home-widget-style-clean.goemotion-home-widget-zone-empty {
    background: #fff;
    box-shadow: 0 16px 42px rgba(17,24,32,.06);
}

.home-widget-style-flush .goemotion-home-widget,
.home-widget-style-flush.goemotion-home-widget-zone-empty {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.goemotion-home-widget-zone-empty {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    justify-content: space-between;
    color: #111820;
}

.goemotion-home-widget-zone-empty strong {
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: -.04em;
}

.goemotion-home-widget-zone-empty span {
    flex: 1 1 320px;
    color: rgba(17,24,32,.62);
}

.goemotion-home-custom-block {
    overflow: hidden;
    margin-block: clamp(24px, 5vw, 70px);
    padding: clamp(22px, 4vw, 52px);
}

.home-custom-style-split-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
    gap: clamp(18px, 4vw, 42px);
    align-items: center;
}

.home-custom-style-full-bleed {
    width: 100%;
    max-width: none;
    border-radius: 0;
}

.home-custom-style-minimal {
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.ge-home-hero-copy {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 14px;
    max-width: 660px;
    padding: clamp(22px, 4vw, 46px);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: clamp(22px, 3vw, 34px);
    background: rgba(7,11,14,.46);
    color: #fff;
    backdrop-filter: blur(18px) saturate(140%);
}

.goemotion-home-hero-builder.has-visible-copy {
    grid-template-columns: minmax(0, .92fr) minmax(320px, .72fr);
    align-items: center;
}

.ge-home-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 6vw, 76px);
    line-height: .9;
    letter-spacing: -.07em;
}

.ge-home-hero-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.55;
}

.ge-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

@media (max-width: 980px) {
    .goemotion-home-hero-builder.has-visible-copy {
        grid-template-columns: 1fr;
    }

    .home-custom-style-split-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .goemotion-home-widget-zone-empty {
        align-items: stretch;
    }

    .goemotion-home-widget-zone-empty .btn {
        width: 100%;
        justify-content: center;
    }
}

/* v1.0.23 - Homepage product prices now reuse the catalog price stack. */
.goemotion-home-main .home-product-price-stack {
    display: block;
    width: 100%;
    font-style: normal;
}

.goemotion-home-main .home-product-price-stack .price-stack {
    width: 100%;
    margin: 0;
    gap: 7px;
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-stack {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line {
    min-height: 0;
    padding: 7px 9px;
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: #fff;
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line span {
    color: rgba(255,255,255,.72);
    font-size: 10px;
    letter-spacing: .08em;
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line strong,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line .amount,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line .woocommerce-Price-amount {
    color: var(--accent);
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.15;
}

.goemotion-home-main .promo-product-price-stack {
    display: block;
    width: min(100%, 360px);
    margin-top: 12px;
}

.goemotion-home-main .promo-product-price-stack .price-stack {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-home-main .promo-product-price-stack .price-line {
    background: rgba(255,255,255,.92);
}

@media (max-width: 560px) {
    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line {
        padding: 6px 7px;
        gap: 6px;
    }

    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line span {
        font-size: 9px;
    }
}


/* v1.0.23 - Responsive homepage carousel price stack
   Keeps homepage product prices in the same vertical price-card system as catalog cards,
   without horizontal overflow inside the rotating hero/product carousel. */
.goemotion-home-main .home-product-price-stack,
.goemotion-home-main .hero-product-price.home-product-price-stack,
.goemotion-home-main .promo-product-price-stack {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 10px 0 0;
    box-sizing: border-box;
    font-style: normal;
}

.goemotion-home-main .hero-product-slide,
.goemotion-home-main .hero-product-slide > *,
.goemotion-home-main .hero-product-track,
.goemotion-home-main .promo-media,
.goemotion-home-main .product-card {
    min-width: 0;
}

.goemotion-home-main .home-product-price-stack .price-stack,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-stack,
.goemotion-home-main .promo-product-price-stack .price-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 7px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    box-sizing: border-box;
}

.goemotion-home-main .home-product-price-stack .price-line,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line,
.goemotion-home-main .promo-product-price-stack .price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 42px;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius);
    box-sizing: border-box;
    overflow: hidden;
}

.goemotion-home-main .home-product-price-stack .price-line span,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line span,
.goemotion-home-main .promo-product-price-stack .price-line span {
    flex: 0 0 auto;
    max-width: 46%;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px;
    line-height: 1.1;
    letter-spacing: .08em;
}

.goemotion-home-main .home-product-price-stack .price-line strong,
.goemotion-home-main .home-product-price-stack .price-line .amount,
.goemotion-home-main .home-product-price-stack .price-line .woocommerce-Price-amount,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line strong,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line .amount,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line .woocommerce-Price-amount,
.goemotion-home-main .promo-product-price-stack .price-line strong,
.goemotion-home-main .promo-product-price-stack .price-line .amount,
.goemotion-home-main .promo-product-price-stack .price-line .woocommerce-Price-amount {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.12;
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: #fff;
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line.go,
.goemotion-home-main .hero-product-price.home-product-price-stack .go-price-line {
    border-color: rgba(175,203,32,.42);
    background: linear-gradient(135deg, rgba(175,203,32,.18), rgba(255,255,255,.08));
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line span {
    color: rgba(255,255,255,.72);
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line strong,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line .amount,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line .woocommerce-Price-amount {
    color: var(--accent);
    font-size: clamp(13px, .95vw, 16px);
}

.goemotion-home-main .promo-product-price-stack .price-line {
    background: rgba(255,255,255,.92);
}

.goemotion-home-main .promo-product-price-stack .price-line.go,
.goemotion-home-main .promo-product-price-stack .go-price-line {
    border-color: rgba(175,203,32,.42);
    background: linear-gradient(135deg, rgba(175,203,32,.18), rgba(255,255,255,.92));
}

@media (max-width: 720px) {
    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line,
    .goemotion-home-main .promo-product-price-stack .price-line,
    .goemotion-home-main .home-product-price-stack .price-line {
        min-height: 0;
        padding: 7px 8px;
        gap: 8px;
    }

    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line span,
    .goemotion-home-main .promo-product-price-stack .price-line span,
    .goemotion-home-main .home-product-price-stack .price-line span {
        max-width: 42%;
        font-size: 9px;
    }
}

@media (max-width: 460px) {
    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line,
    .goemotion-home-main .promo-product-price-stack .price-line,
    .goemotion-home-main .home-product-price-stack .price-line {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        gap: 4px;
    }

    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line span,
    .goemotion-home-main .promo-product-price-stack .price-line span,
    .goemotion-home-main .home-product-price-stack .price-line span {
        max-width: 100%;
    }

    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line strong,
    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line .amount,
    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line .woocommerce-Price-amount,
    .goemotion-home-main .promo-product-price-stack .price-line strong,
    .goemotion-home-main .promo-product-price-stack .price-line .amount,
    .goemotion-home-main .promo-product-price-stack .price-line .woocommerce-Price-amount,
    .goemotion-home-main .home-product-price-stack .price-line strong,
    .goemotion-home-main .home-product-price-stack .price-line .amount,
    .goemotion-home-main .home-product-price-stack .price-line .woocommerce-Price-amount {
        width: 100%;
        text-align: left;
    }
}

/* v1.0.23 - Homepage price stack restore + section-specific promo showcase pricing.
   Prices stay in stacked rows everywhere; the promo showcase gets a compact glass price panel
   that fits the section instead of reusing the oversized catalogue-card panel. */
.goemotion-home-main {
    overflow-x: clip;
}

.goemotion-home-main img,
.goemotion-home-main video,
.goemotion-home-main svg,
.goemotion-home-main canvas {
    max-width: 100%;
}

.goemotion-home-main .home-product-price-stack,
.goemotion-home-main .hero-product-price.home-product-price-stack,
.goemotion-home-main .promo-product-price-stack {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 10px 0 0;
    box-sizing: border-box;
    font-style: normal;
}

.goemotion-home-main .home-product-price-stack .price-stack,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-stack,
.goemotion-home-main .promo-product-price-stack .price-stack,
.goemotion-home-main .product-card .price-stack {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 7px;
    margin: 0;
    box-sizing: border-box;
}

.goemotion-home-main .home-product-price-stack .price-stack,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-stack,
.goemotion-home-main .promo-product-price-stack .price-stack {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-home-main .home-product-price-stack .price-line,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line,
.goemotion-home-main .promo-product-price-stack .price-line,
.goemotion-home-main .product-card .price-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 40px;
    gap: 10px;
    padding: 8px 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.goemotion-home-main .home-product-price-stack .price-line > span,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line > span,
.goemotion-home-main .promo-product-price-stack .price-line > span,
.goemotion-home-main .product-card .price-line > span {
    position: static;
    inset: auto;
    display: block;
    flex: 0 1 auto;
    width: auto;
    max-width: 48%;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--muted);
    font-size: clamp(9px, .76vw, 10px);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.goemotion-home-main .home-product-price-stack .price-line > strong,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line > strong,
.goemotion-home-main .promo-product-price-stack .price-line > strong,
.goemotion-home-main .product-card .price-line > strong {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.1;
}

.goemotion-home-main .home-product-price-stack .price-line > strong .amount,
.goemotion-home-main .home-product-price-stack .price-line > strong .woocommerce-Price-amount,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line > strong .amount,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line > strong .woocommerce-Price-amount,
.goemotion-home-main .promo-product-price-stack .price-line > strong .amount,
.goemotion-home-main .promo-product-price-stack .price-line > strong .woocommerce-Price-amount,
.goemotion-home-main .product-card .price-line > strong .amount,
.goemotion-home-main .product-card .price-line > strong .woocommerce-Price-amount {
    display: inline;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line.go,
.goemotion-home-main .hero-product-price.home-product-price-stack .go-price-line {
    border-color: rgba(175, 203, 32, .42);
    background: linear-gradient(135deg, rgba(175, 203, 32, .18), rgba(255, 255, 255, .08));
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line > span {
    color: rgba(255, 255, 255, .72);
}

.goemotion-home-main .hero-product-price.home-product-price-stack .price-line > strong,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line > strong .amount,
.goemotion-home-main .hero-product-price.home-product-price-stack .price-line > strong .woocommerce-Price-amount {
    color: var(--accent);
    font-size: clamp(13px, .95vw, 16px);
}

.goemotion-home-main .promo-showcase,
.goemotion-home-main .promo-showcase-track,
.goemotion-home-main .promo-banner-slide,
.goemotion-home-main .promo-copy,
.goemotion-home-main .promo-media,
.goemotion-home-main .product-card,
.goemotion-home-main .product-body,
.goemotion-home-main .product-rail,
.goemotion-home-main .hero-product-track,
.goemotion-home-main .hero-product-slide {
    min-width: 0;
    box-sizing: border-box;
}

.goemotion-home-main .promo-showcase {
    width: min(var(--container), calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    contain: layout paint;
}

.goemotion-home-main .promo-showcase-track {
    display: grid;
    align-items: stretch;
    min-height: clamp(430px, 42vw, 570px);
}

.goemotion-home-main .promo-banner-slide {
    width: 100%;
    min-width: 0;
}

.goemotion-home-main .promo-banner-slide.is-active {
    display: grid;
}

.goemotion-home-main .promo-copy h2,
.goemotion-home-main .section-head h2,
.goemotion-home-main .hero-copy h1 {
    text-wrap: balance;
}

.goemotion-home-main .promo-copy p,
.goemotion-home-main .hero-copy p,
.goemotion-home-main .service-section p,
.goemotion-home-main .b2b-panel p {
    text-wrap: pretty;
}

.goemotion-home-main .promo-actions {
    align-items: stretch;
}

.goemotion-home-main .promo-actions .btn {
    min-width: 0;
    justify-content: center;
    text-align: center;
}

.goemotion-home-main .promo-media {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: stretch;
    justify-items: stretch;
    gap: clamp(12px, 1.6vw, 18px);
    min-width: 0;
    min-height: clamp(360px, 33vw, 480px);
    overflow: hidden;
}

.goemotion-home-main .promo-media img,
.goemotion-home-main .promo-media .product-placeholder-large {
    align-self: center;
    justify-self: center;
    width: min(100%, 560px);
    height: auto;
    max-height: clamp(230px, 30vw, 390px);
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

.goemotion-home-main .promo-product-price-stack {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    align-self: end;
    justify-self: center;
    width: min(100%, 390px);
    margin: 0;
    padding: clamp(8px, 1vw, 11px);
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: clamp(18px, 2vw, 24px);
    background: linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(247, 250, 251, .72));
    box-shadow: 0 18px 46px rgba(21, 28, 34, .14), inset 0 1px 0 rgba(255, 255, 255, .8);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.goemotion-home-main .promo-product-price-stack .price-stack {
    gap: 8px;
}

.goemotion-home-main .promo-product-price-stack .price-line {
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 22px rgba(21, 28, 34, .07);
}

.goemotion-home-main .promo-product-price-stack .price-line.go,
.goemotion-home-main .promo-product-price-stack .go-price-line {
    border-color: rgba(175, 203, 32, .44);
    background: linear-gradient(135deg, rgba(175, 203, 32, .24), rgba(255, 255, 255, .94));
}

.goemotion-home-main .promo-product-price-stack .price-line > strong,
.goemotion-home-main .promo-product-price-stack .price-line > strong .amount,
.goemotion-home-main .promo-product-price-stack .price-line > strong .woocommerce-Price-amount {
    color: var(--graphite);
    font-size: clamp(14px, 1.12vw, 17px);
}

.goemotion-home-main .promo-product-price-stack .price-line.go > strong,
.goemotion-home-main .promo-product-price-stack .go-price-line > strong,
.goemotion-home-main .promo-product-price-stack .price-line.go > strong .amount,
.goemotion-home-main .promo-product-price-stack .price-line.go > strong .woocommerce-Price-amount,
.goemotion-home-main .promo-product-price-stack .go-price-line > strong .amount,
.goemotion-home-main .promo-product-price-stack .go-price-line > strong .woocommerce-Price-amount {
    color: var(--accent-dark);
    font-size: clamp(15px, 1.22vw, 19px);
}

@media (max-width: 1180px) {
    .goemotion-home-main .promo-banner-slide,
    .goemotion-home-main .promo-banner-slide.media-left {
        grid-template-columns: minmax(0, .95fr) minmax(280px, .78fr);
    }

    .goemotion-home-main .promo-copy {
        padding: clamp(22px, 3.4vw, 42px);
    }

    .goemotion-home-main .promo-copy h2 {
        font-size: clamp(31px, 4.6vw, 54px);
    }
}

@media (max-width: 900px) {
    .goemotion-home-main .promo-showcase-track {
        min-height: 0;
    }

    .goemotion-home-main .promo-banner-slide,
    .goemotion-home-main .promo-banner-slide.media-left {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .goemotion-home-main .promo-banner-slide.media-left .promo-media {
        order: 0;
    }

    .goemotion-home-main .promo-copy {
        padding: clamp(22px, 5vw, 34px);
    }

    .goemotion-home-main .promo-copy h2 {
        font-size: clamp(28px, 7.2vw, 44px);
        line-height: 1;
    }

    .goemotion-home-main .promo-media {
        min-height: 0;
        padding: clamp(16px, 4vw, 22px);
    }

    .goemotion-home-main .promo-media img,
    .goemotion-home-main .promo-media .product-placeholder-large {
        max-height: clamp(210px, 52vw, 340px);
    }
}

@media (max-width: 720px) {
    .goemotion-home-main .promo-showcase {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        margin-top: 30px;
        border-radius: 22px;
    }

    .goemotion-home-main .promo-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .goemotion-home-main .promo-showcase-dots {
        position: static;
        width: fit-content;
        max-width: calc(100% - 28px);
        margin: 0 auto 16px;
    }

    .goemotion-home-main .category-band.home-categories,
    .goemotion-home-main .product-rail {
        scroll-padding-inline: 14px;
    }

    .goemotion-home-main .section-head {
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .goemotion-home-main .promo-showcase {
        width: calc(100vw - 18px);
        max-width: calc(100vw - 18px);
        border-radius: 18px;
    }

    .goemotion-home-main .promo-copy {
        padding: 20px;
    }

    .goemotion-home-main .promo-copy h2 {
        font-size: clamp(27px, 9vw, 38px);
    }

    .goemotion-home-main .promo-copy p:not(.eyebrow) {
        font-size: 14px;
        line-height: 1.45;
    }

    .goemotion-home-main .promo-media {
        padding: 14px;
        gap: 10px;
    }

    .goemotion-home-main .promo-media img,
    .goemotion-home-main .promo-media .product-placeholder-large {
        max-height: 250px;
    }

    .goemotion-home-main .home-product-price-stack .price-line,
    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line,
    .goemotion-home-main .promo-product-price-stack .price-line,
    .goemotion-home-main .product-card .price-line {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 0;
        gap: 4px;
        padding: 8px 9px;
    }

    .goemotion-home-main .home-product-price-stack .price-line > span,
    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line > span,
    .goemotion-home-main .promo-product-price-stack .price-line > span,
    .goemotion-home-main .product-card .price-line > span {
        max-width: 100%;
    }

    .goemotion-home-main .home-product-price-stack .price-line > strong,
    .goemotion-home-main .hero-product-price.home-product-price-stack .price-line > strong,
    .goemotion-home-main .promo-product-price-stack .price-line > strong,
    .goemotion-home-main .product-card .price-line > strong {
        width: 100%;
        text-align: left;
    }

    .goemotion-home-main .promo-product-price-stack .price-line > strong,
    .goemotion-home-main .promo-product-price-stack .price-line > strong .amount,
    .goemotion-home-main .promo-product-price-stack .price-line > strong .woocommerce-Price-amount {
        font-size: clamp(13px, 4.2vw, 16px);
    }
}

@media (max-width: 380px) {
    .goemotion-home-main .promo-showcase {
        width: calc(100vw - 12px);
        max-width: calc(100vw - 12px);
    }

    .goemotion-home-main .promo-copy,
    .goemotion-home-main .promo-media {
        padding-inline: 12px;
    }

    .goemotion-home-main .promo-actions .btn {
        min-height: 42px;
        padding-inline: 10px;
        font-size: 13px;
    }
}

/* v1.0.23 - Montserrat typography + transparent promo media */
:root {
    --display-font: "Montserrat", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

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

.goemotion-home-main .promo-media,
.promo-media {
    background: transparent;
}

.goemotion-home-main .promo-media img,
.promo-media img {
    background: transparent;
}

/* v1.0.25 - smoother brand logos, aligned mini cart, hotspot popovers and roomier homepage rails. */
.goemotion-home-main .brand-logo-box,
.brand-logo-box {
    background: transparent;
    contain: layout paint;
}

.goemotion-home-main .brand-logo-box img,
.brand-logo-box img {
    filter: none;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    backface-visibility: hidden;
    transition: transform .22s cubic-bezier(.2, .8, .2, 1), opacity .22s ease;
}

.goemotion-home-main .brand-card,
.brand-card {
    contain: layout paint;
    transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.goemotion-home-main .brand-card:hover .brand-logo-box img,
.goemotion-home-main .brand-card:focus-visible .brand-logo-box img,
.brand-card:hover .brand-logo-box img,
.brand-card:focus-visible .brand-logo-box img {
    filter: none;
    transform: translate3d(0, -1px, 0) scale(1.035);
}

.goemotion-home-main .brand-track,
.brand-track {
    transform: translate3d(0, 0, 0);
    will-change: transform;
    animation-duration: 42s;
}

@media (prefers-reduced-motion: reduce) {
    .goemotion-home-main .brand-track,
    .brand-track {
        animation: none;
        transform: none;
        will-change: auto;
    }
}

.goemotion-home-main .product-rail {
    grid-auto-columns: clamp(248px, 22.5vw, 314px);
    gap: clamp(14px, 1.35vw, 20px);
    scroll-padding-inline: clamp(16px, 3vw, 42px);
}

.goemotion-home-main .product-rail .product-card {
    min-width: 0;
}

@media (min-width: 1500px) {
    .goemotion-home-main .product-rail {
        grid-auto-columns: clamp(286px, 19.5vw, 334px);
    }
}

@media (max-width: 1180px) {
    .goemotion-home-main .product-rail {
        grid-auto-columns: clamp(238px, 30vw, 292px);
    }
}

@media (max-width: 780px) {
    .goemotion-home-main .product-rail {
        grid-auto-columns: minmax(236px, 76vw);
        gap: 14px;
        padding-inline: 2px;
        mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
    }
}

.goemotion-home-main .zoom-hotspot-popover,
.zoom-hotspot-popover {
    left: var(--popover-left, 24px);
    top: var(--popover-top, 24px);
    transform-origin: left center;
    max-height: var(--popover-max-height, min(420px, calc(100vh - 52px)));
}

.goemotion-home-main .zoom-hotspot-popover.is-open,
.zoom-hotspot-popover.is-open {
    transform: translate3d(0, 0, 0) scale(1);
}

.goemotion-home-main .zoom-hotspot-popover::before,
.zoom-hotspot-popover::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-left: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    background: rgba(12, 18, 23, .9);
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 720px) {
    .goemotion-home-main .zoom-hotspot-popover,
    .zoom-hotspot-popover {
        width: min(330px, calc(100vw - 20px));
        padding: 16px 16px 58px;
        border-radius: 14px;
    }

    .goemotion-home-main .zoom-hotspot-popover h3,
    .zoom-hotspot-popover h3 {
        font-size: 18px;
    }
}

.cart-drawer {
    z-index: 2147483000;
}

.goemotion-mini-cart .goemotion-mini-cart-item {
    grid-template-columns: clamp(106px, 22vw, 132px) minmax(0, 1fr) 34px;
    grid-template-areas: "thumb content remove";
    align-items: start;
    gap: clamp(12px, 2.1vw, 16px);
    min-height: 132px;
    padding: clamp(12px, 2vw, 15px);
}

.goemotion-mini-cart-thumb {
    grid-area: thumb;
    align-self: start;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(246, 248, 249, .98), rgba(255, 255, 255, .72));
}

.goemotion-mini-cart-thumb img,
.goemotion-mini-cart .goemotion-mini-cart-item img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    padding: clamp(8px, 1.6vw, 12px);
}

.goemotion-mini-cart-line {
    grid-area: content;
    align-self: stretch;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 8px;
    min-width: 0;
}

.goemotion-mini-cart-name,
.goemotion-mini-cart .woocommerce-mini-cart-item a.goemotion-mini-cart-name {
    max-width: 100%;
    min-width: 0;
    color: var(--graphite, #151d24);
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.24;
    text-decoration: none;
}

.goemotion-mini-cart-details,
.goemotion-mini-cart-details dl,
.goemotion-mini-cart-details p {
    margin: 0;
}

.goemotion-mini-cart-details {
    display: grid;
    gap: 4px;
    color: rgba(21, 28, 34, .58);
    font-size: 12px;
    line-height: 1.35;
}

.goemotion-mini-cart-details dl.variation {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 2px 6px;
}

.goemotion-mini-cart-details dt,
.goemotion-mini-cart-details dd {
    margin: 0;
}

.goemotion-mini-cart-meta {
    align-self: end;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px 12px;
    min-width: 0;
}

.goemotion-mini-cart-qty {
    justify-self: start;
    white-space: nowrap;
}

.goemotion-mini-cart-price,
.goemotion-mini-cart .goemotion-mini-cart-price .amount,
.goemotion-mini-cart .goemotion-mini-cart-price .woocommerce-Price-amount {
    justify-self: end;
    max-width: 100%;
    color: var(--graphite, #151d24);
    font-size: clamp(14px, 1.05vw, 16px);
    font-weight: 950;
    line-height: 1.1;
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
}

.goemotion-mini-cart-remove,
.goemotion-mini-cart .remove_from_cart_button {
    grid-area: remove;
    justify-self: end;
    align-self: start;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(21, 28, 34, .065);
    color: rgba(21, 28, 34, .72);
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.goemotion-mini-cart-remove:hover,
.goemotion-mini-cart .remove_from_cart_button:hover,
.goemotion-mini-cart-remove:focus-visible,
.goemotion-mini-cart .remove_from_cart_button:focus-visible {
    transform: translateY(-1px);
    background: var(--graphite, #151d24);
    color: #fff;
}

@media (max-width: 640px) {
    .goemotion-mini-cart .goemotion-mini-cart-item {
        grid-template-columns: 94px minmax(0, 1fr) 32px;
        gap: 10px;
        min-height: 112px;
        padding: 10px;
        border-radius: 18px;
    }

    .goemotion-mini-cart-thumb {
        border-radius: 16px;
    }

    .goemotion-mini-cart-meta {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .goemotion-mini-cart-price,
    .goemotion-mini-cart .goemotion-mini-cart-price .amount,
    .goemotion-mini-cart .goemotion-mini-cart-price .woocommerce-Price-amount {
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 380px) {
    .goemotion-mini-cart .goemotion-mini-cart-item {
        grid-template-columns: 78px minmax(0, 1fr) 30px;
    }

    .goemotion-mini-cart-name,
    .goemotion-mini-cart .woocommerce-mini-cart-item a.goemotion-mini-cart-name {
        font-size: 13px;
    }
}

.zoom-hotspot-popover[data-side="left"]::before,
.goemotion-home-main .zoom-hotspot-popover[data-side="left"]::before {
    left: auto;
    right: -7px;
    border-left: 0;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, .18);
    border-top: 1px solid rgba(255, 255, 255, .18);
}

/* v1.0.26 - refined mini cart product rows, auto rails and premium My Account UI. */
.goemotion-mini-cart .goemotion-mini-cart-item {
    grid-template-columns: clamp(122px, 27vw, 156px) minmax(0, 1fr) 34px;
    grid-template-areas: "thumb content remove";
    align-items: start;
    gap: clamp(14px, 2.4vw, 18px);
    min-height: clamp(148px, 18vw, 178px);
    padding: clamp(12px, 2vw, 16px);
    border-radius: 24px;
}

.goemotion-mini-cart-thumb {
    grid-area: thumb;
    align-self: stretch;
    min-height: 122px;
    border-radius: 22px;
}

.goemotion-mini-cart-thumb img,
.goemotion-mini-cart .goemotion-mini-cart-item img {
    padding: clamp(8px, 1.6vw, 13px);
    border-radius: 22px;
}

.goemotion-mini-cart-line {
    grid-area: content;
    align-self: stretch;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 8px;
    min-width: 0;
    padding-block: 4px;
}

.goemotion-mini-cart-name,
.goemotion-mini-cart .woocommerce-mini-cart-item a.goemotion-mini-cart-name {
    -webkit-line-clamp: 3;
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.2;
}

.goemotion-mini-cart-details:empty {
    display: none;
}

.goemotion-mini-cart-meta {
    align-self: end;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 7px;
    margin-top: 2px;
}

.goemotion-mini-cart-price,
.goemotion-mini-cart .goemotion-mini-cart-price .amount,
.goemotion-mini-cart .goemotion-mini-cart-price .woocommerce-Price-amount {
    justify-self: start;
    display: block;
    max-width: 100%;
    color: var(--graphite, #151d24);
    font-size: clamp(16px, 1.35vw, 20px);
    font-weight: 950;
    line-height: 1.06;
    text-align: left;
    letter-spacing: -.035em;
    white-space: normal;
    overflow-wrap: anywhere;
}

.goemotion-mini-cart-qty {
    order: 2;
}

.goemotion-mini-cart-remove,
.goemotion-mini-cart .remove_from_cart_button {
    grid-area: remove;
    width: 34px;
    height: 34px;
    font-size: 24px;
}

@media (max-width: 640px) {
    .goemotion-mini-cart .goemotion-mini-cart-item {
        grid-template-columns: clamp(108px, 31vw, 132px) minmax(0, 1fr) 32px;
        min-height: 132px;
        gap: 12px;
    }

    .goemotion-mini-cart-thumb {
        min-height: 108px;
        border-radius: 20px;
    }

    .goemotion-mini-cart-line {
        padding-block: 2px;
    }

    .goemotion-mini-cart-price,
    .goemotion-mini-cart .goemotion-mini-cart-price .amount,
    .goemotion-mini-cart .goemotion-mini-cart-price .woocommerce-Price-amount {
        font-size: clamp(15px, 4vw, 18px);
    }
}

@media (max-width: 410px) {
    .goemotion-mini-cart .goemotion-mini-cart-item {
        grid-template-columns: 98px minmax(0, 1fr) 30px;
        min-height: 120px;
        padding: 9px;
    }

    .goemotion-mini-cart-thumb {
        min-height: 98px;
        border-radius: 18px;
    }

    .goemotion-mini-cart-name,
    .goemotion-mini-cart .woocommerce-mini-cart-item a.goemotion-mini-cart-name {
        font-size: 13px;
    }
}

.product-rail[data-auto-rail="true"] {
    scroll-behavior: smooth;
}

.product-rail-section:focus-within .product-rail[data-auto-rail="true"],
.product-rail-section:hover .product-rail[data-auto-rail="true"] {
    scroll-behavior: smooth;
}

.woocommerce-account .woocommerce {
    width: min(var(--container), calc(100% - 28px));
    margin: clamp(28px, 5vw, 76px) auto;
}

body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce {
    display: grid;
    grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
    content: none;
}

.woocommerce-MyAccount-navigation {
    position: sticky;
    top: clamp(92px, 8vw, 126px);
    padding: 14px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.92), rgba(247,249,250,.78)),
        radial-gradient(circle at 18% 10%, rgba(175,203,32,.18), transparent 34%);
    box-shadow: 0 26px 70px rgba(14, 20, 25, .1), inset 0 1px 0 rgba(255,255,255,.75);
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.woocommerce-MyAccount-navigation ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-MyAccount-navigation-link a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 18px;
    color: rgba(21, 28, 34, .72);
    font-weight: 850;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.woocommerce-MyAccount-navigation-link a::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(21, 28, 34, .16);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
    transition: background .18s ease, transform .18s ease;
}

.woocommerce-MyAccount-navigation-link a:hover,
.woocommerce-MyAccount-navigation-link a:focus-visible,
.woocommerce-MyAccount-navigation-link.is-active a {
    transform: translateY(-1px);
    border-color: rgba(175, 203, 32, .44);
    background: rgba(255,255,255,.94);
    color: #101820;
    box-shadow: 0 12px 30px rgba(21, 28, 34, .08);
}

.woocommerce-MyAccount-navigation-link a:hover::before,
.woocommerce-MyAccount-navigation-link a:focus-visible::before,
.woocommerce-MyAccount-navigation-link.is-active a::before {
    background: #afcb20;
    transform: scale(1.08);
}

.woocommerce-MyAccount-content {
    min-width: 0;
    padding: clamp(20px, 4vw, 40px);
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 34px;
    background:
        linear-gradient(150deg, rgba(255,255,255,.96), rgba(248,250,251,.86)),
        radial-gradient(circle at 100% 0, rgba(175,203,32,.14), transparent 28%);
    box-shadow: 0 30px 86px rgba(14, 20, 25, .11), inset 0 1px 0 rgba(255,255,255,.76);
    color: var(--graphite, #151d24);
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce h2,
.woocommerce-account .woocommerce h3 {
    color: var(--graphite, #151d24);
    font-family: var(--display-font, Montserrat, sans-serif);
    letter-spacing: -.04em;
}

.goemotion-account-dashboard {
    display: grid;
    gap: clamp(18px, 3vw, 28px);
}

.goemotion-account-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: clamp(18px, 3vw, 28px);
    border-radius: 28px;
    background: linear-gradient(135deg, #111920, #202b33);
    color: #fff;
    box-shadow: 0 26px 60px rgba(17, 25, 32, .18);
}

.goemotion-account-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -50% 45%;
    height: 170px;
    border-radius: 999px;
    background: rgba(175, 203, 32, .34);
    filter: blur(34px);
    pointer-events: none;
}

.goemotion-account-avatar {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: clamp(62px, 8vw, 86px);
    height: clamp(62px, 8vw, 86px);
    border-radius: 24px;
    background: linear-gradient(135deg, #afcb20, #d7f335);
    color: #111920;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 950;
    letter-spacing: -.05em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.52), 0 18px 36px rgba(0,0,0,.18);
}

.goemotion-account-hero-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.goemotion-account-kicker {
    display: inline-flex;
    margin-bottom: 7px;
    color: rgba(255,255,255,.66);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.goemotion-account-hero strong {
    display: block;
    color: #fff;
    font-size: clamp(24px, 4vw, 44px);
    line-height: .98;
    letter-spacing: -.06em;
}

.goemotion-account-hero p {
    max-width: 64ch;
    margin: 9px 0 0;
    color: rgba(255,255,255,.76);
    line-height: 1.55;
}

.goemotion-account-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.goemotion-account-action {
    display: grid;
    gap: 8px;
    min-height: 132px;
    padding: 18px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    color: var(--graphite, #151d24);
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(14, 20, 25, .08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.goemotion-account-action:hover,
.goemotion-account-action:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(175, 203, 32, .52);
    box-shadow: 0 24px 58px rgba(14, 20, 25, .12);
}

.goemotion-account-action span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(175, 203, 32, .18);
    color: #1b2409;
    font-weight: 950;
}

.goemotion-account-action strong {
    font-size: 16px;
    line-height: 1.15;
}

.goemotion-account-action small {
    color: rgba(21, 28, 34, .56);
    line-height: 1.45;
}

.woocommerce-MyAccount-content table.shop_table,
.woocommerce-MyAccount-content .woocommerce-orders-table {
    overflow: hidden;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 22px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 14px 40px rgba(14,20,25,.06);
}

.woocommerce-MyAccount-content table.shop_table th,
.woocommerce-MyAccount-content table.shop_table td {
    padding: 14px 16px;
    border-color: rgba(21, 28, 34, .08);
}

.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button.button,
.woocommerce-MyAccount-content input.button {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #111920, #2a363f);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 16px 34px rgba(17,25,32,.18);
    transition: transform .18s ease, box-shadow .18s ease;
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content button.button:hover,
.woocommerce-MyAccount-content input.button:hover,
.woocommerce-MyAccount-content .button:focus-visible,
.woocommerce-MyAccount-content button.button:focus-visible,
.woocommerce-MyAccount-content input.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 42px rgba(17,25,32,.22);
}

.woocommerce-MyAccount-content input.input-text,
.woocommerce-MyAccount-content textarea,
.woocommerce-MyAccount-content select {
    min-height: 48px;
    border: 1px solid rgba(21, 28, 34, .12);
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

@media (max-width: 900px) {
    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce {
        grid-template-columns: 1fr;
    }

    .woocommerce-MyAccount-navigation {
        position: static;
        overflow-x: auto;
        border-radius: 24px;
    }

    .woocommerce-MyAccount-navigation ul {
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .goemotion-account-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .goemotion-account-hero {
        grid-template-columns: 1fr;
    }

    .woocommerce-MyAccount-content {
        padding: 16px;
        border-radius: 24px;
    }

    .woocommerce-MyAccount-navigation-link a {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* v1.0.28 - premium My Account icon tabs. */
body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(18px, 3vw, 32px);
    align-items: start;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs {
    position: sticky;
    top: clamp(86px, 8vw, 118px);
    z-index: 40;
    display: grid;
    gap: 14px;
    padding: clamp(12px, 2vw, 18px);
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.94), rgba(246,248,249,.86)),
        radial-gradient(circle at 0 0, rgba(175,203,32,.16), transparent 34%),
        radial-gradient(circle at 100% 0, rgba(17,25,32,.08), transparent 32%);
    box-shadow: 0 28px 76px rgba(14, 20, 25, .1), inset 0 1px 0 rgba(255,255,255,.78);
    backdrop-filter: blur(14px) saturate(132%);
    -webkit-backdrop-filter: blur(14px) saturate(132%);
}

body.admin-bar .woocommerce-MyAccount-navigation.goemotion-account-tabs {
    top: clamp(118px, 10vw, 150px);
}

.goemotion-account-tabs__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    padding: 0 4px;
}

.goemotion-account-tabs__head strong {
    margin: 0;
    color: var(--graphite, #151d24);
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1;
    letter-spacing: -.055em;
}

.goemotion-account-tabs__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(21, 28, 34, .52);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.goemotion-account-tabs__eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #afcb20;
    box-shadow: 0 0 0 6px rgba(175, 203, 32, .14);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs ul.goemotion-account-tabs__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(154px, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-height: 72px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 22px;
    background: rgba(255,255,255,.68);
    color: #151d24;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a::before,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a::after {
    content: "";
    position: absolute;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a::before {
    inset: auto 12px 10px 12px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #afcb20, rgba(175,203,32,.35));
    opacity: 0;
    transform: scaleX(.64);
    transform-origin: left center;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a::after {
    inset: -32px -34px auto auto;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(175, 203, 32, .14);
    opacity: 0;
    transform: scale(.82);
    z-index: -1;
}

.goemotion-account-tab__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 17px;
    background: #111920;
    color: #fff;
    box-shadow: 0 14px 30px rgba(17, 25, 32, .14);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}

.goemotion-account-tab__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.goemotion-account-tab__copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.goemotion-account-tab__label {
    overflow: hidden;
    color: currentColor;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.goemotion-account-tab__copy small {
    overflow: hidden;
    color: rgba(21, 28, 34, .54);
    font-size: 11px;
    font-weight: 750;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .18s ease;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active a {
    transform: translateY(-2px);
    border-color: rgba(175, 203, 32, .46);
    background: rgba(255,255,255,.96);
    color: #0f171d;
    box-shadow: 0 18px 42px rgba(14, 20, 25, .1), inset 0 1px 0 rgba(255,255,255,.78);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover::before,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible::before,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active a::before {
    opacity: 1;
    transform: scaleX(1);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover::after,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible::after,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active a::after {
    opacity: 1;
    transform: scale(1);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover .goemotion-account-tab__icon,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible .goemotion-account-tab__icon,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active .goemotion-account-tab__icon {
    transform: translateY(-1px) scale(1.03);
    background: linear-gradient(135deg, #afcb20, #d8f53d);
    color: #111920;
    box-shadow: 0 18px 34px rgba(175, 203, 32, .22);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover .goemotion-account-tab__copy small,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible .goemotion-account-tab__copy small,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active .goemotion-account-tab__copy small {
    color: rgba(21, 28, 34, .68);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab--customer-logout a {
    color: #7b1d1d;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab--customer-logout .goemotion-account-tab__icon {
    background: #2a1212;
}

.woocommerce-MyAccount-content {
    border-radius: clamp(26px, 4vw, 40px);
}

.goemotion-account-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.goemotion-account-action span {
    font-size: 0;
}

.goemotion-account-action span::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 5px;
    transform: rotate(45deg);
}

@media (max-width: 1180px) {
    .woocommerce-MyAccount-navigation.goemotion-account-tabs ul.goemotion-account-tabs__list {
        grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a {
        min-height: 68px;
    }

    .goemotion-account-tab__icon {
        width: 42px;
        height: 42px;
        border-radius: 15px;
    }
}

@media (max-width: 900px) {
    .woocommerce-MyAccount-navigation.goemotion-account-tabs {
        position: static;
        overflow: hidden;
        border-radius: 26px;
    }

    .goemotion-account-tabs__head {
        align-items: start;
        flex-direction: column;
        gap: 6px;
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs ul.goemotion-account-tabs__list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: thin;
        padding: 1px 1px 8px;
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab {
        flex: 0 0 min(242px, 78vw);
        scroll-snap-align: start;
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a {
        min-height: 66px;
    }
}

@media (max-width: 620px) {
    .woocommerce-account .woocommerce {
        width: min(var(--container), calc(100% - 20px));
        margin-block: 22px 48px;
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs {
        padding: 12px;
        border-radius: 22px;
    }

    .goemotion-account-tabs__head strong {
        font-size: 20px;
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab {
        flex-basis: min(220px, 82vw);
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a {
        grid-template-columns: auto minmax(0, 1fr);
        min-height: 62px;
        padding: 10px;
        border-radius: 18px;
    }

    .goemotion-account-tab__icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .goemotion-account-tab__icon svg {
        width: 20px;
        height: 20px;
    }

    .goemotion-account-tab__label {
        font-size: 13px;
    }

    .goemotion-account-tab__copy small {
        font-size: 10.5px;
    }

    .goemotion-account-actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a,
    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a::before,
    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a::after,
    .goemotion-account-tab__icon {
        transition: none;
    }
}


/* v1.0.28 - modern header info bar + responsive My Account hub. */
.topbar.topbar--modern {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(12px, 2vw, 26px);
    max-height: none;
    min-height: 34px;
    padding: 3px clamp(10px, 1.4vw, 14px) 8px;
    overflow: visible;
    color: #111920;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.35vw, 18px);
    min-width: 0;
    overflow: hidden;
}

.topbar-info-item,
.topbar.topbar--modern a.topbar-info-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    max-width: 100%;
    color: #111920;
    text-decoration: none;
    opacity: .9;
    transition: opacity .18s ease, color .18s ease, transform .18s ease;
}

.topbar-info-item svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    color: #111920;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.topbar-info-item span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topbar.topbar--modern a.topbar-info-item:hover,
.topbar.topbar--modern a.topbar-info-item:focus-visible {
    color: var(--accent, #afcb20);
    opacity: 1;
    transform: translateY(-1px);
}

.topbar-menu {
    min-width: 0;
}

.topbar-menu__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-menu__list a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 11px;
    border: 1px solid rgba(17, 25, 32, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    color: #111920;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.topbar-menu__list a:hover,
.topbar-menu__list a:focus-visible,
.topbar-menu__list .current-menu-item > a {
    transform: translateY(-1px);
    border-color: rgba(175, 203, 32, .44);
    background: rgba(175, 203, 32, .18);
    color: #111920;
    box-shadow: 0 10px 24px rgba(17, 25, 32, .08), inset 0 1px 0 rgba(255,255,255,.78);
}

.site-header.is-scrolled .topbar.topbar--modern {
    max-height: 0;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

body.woocommerce-account .goemotion-content,
body.woocommerce-account .goemotion-content-box,
body.woocommerce-account .entry-content,
body.woocommerce-account .woocommerce {
    min-width: 0;
}

body.woocommerce-account article[id^="post-"] {
    width: min(var(--container), calc(100% - 28px));
    margin: clamp(28px, 5vw, 76px) auto clamp(44px, 7vw, 110px);
}

body.woocommerce-account .entry-title {
    margin: 0 0 clamp(16px, 3vw, 28px);
    color: #111920;
    font-size: clamp(34px, 6vw, 72px);
    font-weight: 950;
    line-height: .92;
    letter-spacing: -.07em;
}

body.woocommerce-account .entry-content > .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(16px, 2.6vw, 30px);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs {
    position: sticky;
    top: clamp(86px, 8vw, 118px);
    z-index: 42;
    display: grid;
    grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(12px, 2vw, 18px);
    padding: clamp(12px, 2vw, 18px);
    border: 1px solid rgba(17, 25, 32, .08);
    border-radius: clamp(24px, 3vw, 34px);
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,248,249,.9)),
        radial-gradient(circle at 0 0, rgba(175,203,32,.18), transparent 34rem),
        radial-gradient(circle at 100% 0, rgba(17,25,32,.08), transparent 30rem);
    box-shadow: 0 28px 80px rgba(17, 25, 32, .1), inset 0 1px 0 rgba(255,255,255,.82);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
}

body.admin-bar .woocommerce-MyAccount-navigation.goemotion-account-tabs {
    top: clamp(118px, 10vw, 150px);
}

.goemotion-account-tabs__head {
    display: grid;
    align-content: center;
    gap: 8px;
    min-width: 0;
    padding: clamp(14px, 2vw, 22px);
    border-radius: clamp(18px, 2.6vw, 26px);
    background:
        linear-gradient(135deg, #111920, #1c2730),
        radial-gradient(circle at 15% 12%, rgba(175,203,32,.24), transparent 42%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.goemotion-account-tabs__head::after {
    content: "";
    position: absolute;
    inset: auto -42px -54px auto;
    width: 138px;
    height: 138px;
    border-radius: 999px;
    background: rgba(175, 203, 32, .16);
    pointer-events: none;
    z-index: -1;
}

.goemotion-account-tabs__head strong {
    color: currentColor;
    font-size: clamp(19px, 2vw, 30px);
    font-weight: 950;
    line-height: .96;
    letter-spacing: -.055em;
}

.goemotion-account-tabs__eyebrow {
    color: rgba(255,255,255,.68);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.goemotion-account-tabs__eyebrow::before {
    background: var(--accent, #afcb20);
    box-shadow: 0 0 0 6px rgba(175, 203, 32, .18);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs ul.goemotion-account-tabs__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(162px, 1fr));
    gap: 10px;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab {
    min-width: 0;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(17, 25, 32, .08);
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    color: #111920;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a::before {
    content: "";
    position: absolute;
    inset: auto 12px 10px 12px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent, #afcb20), rgba(175,203,32,.38));
    opacity: 0;
    transform: scaleX(.55);
    transform-origin: left center;
    transition: opacity .18s ease, transform .2s cubic-bezier(.16, 1, .3, 1);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a::after {
    content: "";
    position: absolute;
    inset: -42px -40px auto auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(175, 203, 32, .13);
    opacity: 0;
    transform: scale(.82);
    pointer-events: none;
    z-index: -1;
    transition: opacity .18s ease, transform .2s ease;
}

.goemotion-account-tab__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #111920;
    color: #fff;
    box-shadow: 0 14px 32px rgba(17, 25, 32, .16);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}

.goemotion-account-tab__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.goemotion-account-tab__copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.goemotion-account-tab__label {
    overflow: hidden;
    color: currentColor;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.goemotion-account-tab__copy small {
    overflow: hidden;
    color: rgba(17, 25, 32, .55);
    font-size: 11px;
    font-weight: 780;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .18s ease;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active a,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .woocommerce-MyAccount-navigation-link.is-active a {
    transform: translateY(-2px);
    border-color: rgba(175, 203, 32, .48);
    background: rgba(255,255,255,.98);
    color: #0f171d;
    box-shadow: 0 18px 46px rgba(17, 25, 32, .1), inset 0 1px 0 rgba(255,255,255,.82);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover::before,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible::before,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active a::before,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .woocommerce-MyAccount-navigation-link.is-active a::before,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover::after,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible::after,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active a::after,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .woocommerce-MyAccount-navigation-link.is-active a::after {
    opacity: 1;
    transform: scaleX(1);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover::after,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible::after,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active a::after,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .woocommerce-MyAccount-navigation-link.is-active a::after {
    transform: scale(1);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover .goemotion-account-tab__icon,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible .goemotion-account-tab__icon,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active .goemotion-account-tab__icon,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .woocommerce-MyAccount-navigation-link.is-active .goemotion-account-tab__icon {
    transform: translateY(-1px) scale(1.03);
    background: linear-gradient(135deg, var(--accent, #afcb20), #d9f552);
    color: #111920;
    box-shadow: 0 18px 36px rgba(175, 203, 32, .24);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:hover .goemotion-account-tab__copy small,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a:focus-visible .goemotion-account-tab__copy small,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab.is-active .goemotion-account-tab__copy small,
.woocommerce-MyAccount-navigation.goemotion-account-tabs .woocommerce-MyAccount-navigation-link.is-active .goemotion-account-tab__copy small {
    color: rgba(17, 25, 32, .68);
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab--customer-logout a {
    color: #7c1d1d;
}

.woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab--customer-logout .goemotion-account-tab__icon {
    background: #2b1212;
}

.woocommerce-MyAccount-content {
    min-width: 0;
    padding: clamp(18px, 3vw, 34px);
    border: 1px solid rgba(17, 25, 32, .08);
    border-radius: clamp(24px, 3.6vw, 38px);
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,249,250,.9)),
        radial-gradient(circle at 100% 0, rgba(175,203,32,.12), transparent 28rem);
    box-shadow: 0 24px 70px rgba(17, 25, 32, .08), inset 0 1px 0 rgba(255,255,255,.78);
}

.woocommerce-MyAccount-content .woocommerce-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
    padding: clamp(16px, 2.4vw, 24px);
    border: 1px solid rgba(175, 203, 32, .32);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(175, 203, 32, .16), rgba(255,255,255,.86));
    color: #111920;
    font-weight: 820;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.76);
}

.woocommerce-MyAccount-content .woocommerce-info::before {
    content: "";
    display: inline-grid;
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--accent, #afcb20);
    box-shadow: 0 0 0 7px rgba(175,203,32,.16);
}

.woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: #111920;
    color: #fff;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(17,25,32,.16);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.woocommerce-MyAccount-content .woocommerce-info .button:hover,
.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content button.button:hover {
    transform: translateY(-1px);
    background: var(--accent, #afcb20);
    color: #111920;
    box-shadow: 0 16px 34px rgba(175,203,32,.24);
}

@media (max-width: 1180px) {
    .topbar.topbar--modern {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .topbar-info {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
    }

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

    .woocommerce-MyAccount-navigation.goemotion-account-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .topbar.topbar--modern {
        padding-bottom: 6px;
    }

    .topbar-info {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .topbar-info::-webkit-scrollbar {
        display: none;
    }

    .topbar-info-item,
    .topbar.topbar--modern a.topbar-info-item {
        flex: 0 0 auto;
    }

    .topbar-menu {
        display: none;
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs {
        position: static;
        overflow: hidden;
        padding: 12px;
        border-radius: 26px;
    }

    .goemotion-account-tabs__head {
        padding: 16px;
        border-radius: 20px;
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs ul.goemotion-account-tabs__list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: thin;
        padding: 1px 1px 8px;
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab {
        flex: 0 0 min(250px, 78vw);
        scroll-snap-align: start;
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a {
        min-height: 70px;
    }
}

@media (max-width: 620px) {
    body.woocommerce-account article[id^="post-"] {
        width: min(var(--container), calc(100% - 20px));
        margin-block: 22px 48px;
    }

    body.woocommerce-account .entry-title {
        font-size: clamp(31px, 10vw, 46px);
    }

    .topbar.topbar--modern {
        min-height: 30px;
        padding-inline: 10px;
        font-size: 11px;
    }

    .topbar-info-item svg {
        width: 15px;
        height: 15px;
    }

    .woocommerce-MyAccount-content {
        padding: 14px;
        border-radius: 22px;
    }

    .woocommerce-MyAccount-content .woocommerce-info {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        border-radius: 20px;
    }

    .woocommerce-MyAccount-content .woocommerce-info .button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .goemotion-account-tabs__head strong {
        font-size: 20px;
    }

    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab {
        flex-basis: min(230px, 84vw);
    }

    .goemotion-account-tab__icon {
        width: 42px;
        height: 42px;
        border-radius: 15px;
    }

    .goemotion-account-tab__icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .topbar-info-item,
    .topbar-menu__list a,
    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a,
    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a::before,
    .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a::after,
    .goemotion-account-tab__icon,
    .woocommerce-MyAccount-content .button {
        transition: none;
    }
}


/* v1.0.29 - My Account desktop two-column layout fix. */
@media (min-width: 960px) {
    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) article[id^="post-"] .entry-content > .woocommerce {
        display: grid;
        grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
        gap: clamp(18px, 3vw, 36px);
        align-items: start;
        width: 100%;
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) article[id^="post-"] .entry-content > .woocommerce::before,
    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) article[id^="post-"] .entry-content > .woocommerce::after {
        content: none;
        display: none;
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce-MyAccount-navigation.goemotion-account-tabs {
        grid-column: 1;
        align-self: start;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
        min-width: 0;
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce-MyAccount-content {
        grid-column: 2;
        width: 100%;
        min-width: 0;
        align-self: start;
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tabs__head {
        display: grid;
        align-content: start;
        gap: 8px;
        min-width: 0;
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce-MyAccount-navigation.goemotion-account-tabs ul.goemotion-account-tabs__list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        overflow: visible;
        padding: 0;
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab {
        min-width: 0;
        width: 100%;
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a {
        min-height: 70px;
        width: 100%;
    }
}

@media (min-width: 960px) and (max-width: 1180px) {
    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) article[id^="post-"] .entry-content > .woocommerce {
        grid-template-columns: minmax(252px, 310px) minmax(0, 1fr);
        gap: 18px;
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce-MyAccount-navigation.goemotion-account-tabs {
        padding: 12px;
        border-radius: 26px;
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce-MyAccount-navigation.goemotion-account-tabs .goemotion-account-tab a {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        min-height: 64px;
        padding: 10px;
        border-radius: 18px;
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .goemotion-account-tab__icon {
        width: 42px;
        height: 42px;
        border-radius: 15px;
    }
}

@media (max-width: 959px) {
    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) article[id^="post-"] .entry-content > .woocommerce {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(14px, 4vw, 24px);
    }

    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce-MyAccount-content,
    body.logged-in.woocommerce-account:not(.woocommerce-lost-password) .woocommerce-MyAccount-navigation.goemotion-account-tabs {
        grid-column: auto;
    }
}

/* v1.0.31 - Modern WooCommerce My Account forms and inputs. */
.woocommerce-account .woocommerce-MyAccount-content {
    --account-field-bg: rgba(255,255,255,.94);
    --account-field-border: rgba(21, 28, 34, .12);
    --account-field-border-hover: rgba(21, 28, 34, .22);
    --account-field-focus: rgba(175, 203, 32, .58);
    --account-field-shadow: 0 18px 44px rgba(14, 20, 25, .08);
    --account-field-radius: 18px;
}

.woocommerce-account .woocommerce-MyAccount-content form,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register,
.woocommerce-account .woocommerce-ResetPassword,
.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-address-fields {
    display: grid;
    gap: clamp(14px, 2.2vw, 20px);
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row,
.woocommerce-account .woocommerce-MyAccount-content .form-row,
.woocommerce-account .woocommerce-form-login .form-row,
.woocommerce-account .woocommerce-form-register .form-row,
.woocommerce-account .woocommerce-ResetPassword .form-row {
    position: relative;
    display: grid;
    gap: 8px;
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .form-row-first,
.woocommerce-account .woocommerce-MyAccount-content .form-row-last,
.woocommerce-account .woocommerce-form-login .form-row-first,
.woocommerce-account .woocommerce-form-login .form-row-last,
.woocommerce-account .woocommerce-form-register .form-row-first,
.woocommerce-account .woocommerce-form-register .form-row-last {
    float: none;
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-content .form-row-wide,
.woocommerce-account .woocommerce-form-login .form-row-wide,
.woocommerce-account .woocommerce-form-register .form-row-wide {
    clear: none;
}

.woocommerce-account .woocommerce-MyAccount-content form::after,
.woocommerce-account .woocommerce-form-login::after,
.woocommerce-account .woocommerce-form-register::after {
    content: none;
}

.woocommerce-account .woocommerce-MyAccount-content label,
.woocommerce-account .woocommerce-form-login label,
.woocommerce-account .woocommerce-form-register label,
.woocommerce-account .woocommerce-ResetPassword label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(21, 28, 34, .72);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-content label .required,
.woocommerce-account .woocommerce-MyAccount-content abbr.required,
.woocommerce-account .woocommerce-form-login label .required,
.woocommerce-account .woocommerce-form-register label .required {
    color: #afcb20;
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content input.input-text,
.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
.woocommerce-account .woocommerce-MyAccount-content input[type="url"],
.woocommerce-account .woocommerce-MyAccount-content input[type="number"],
.woocommerce-account .woocommerce-MyAccount-content input[type="search"],
.woocommerce-account .woocommerce-MyAccount-content textarea,
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-form-login input.input-text,
.woocommerce-account .woocommerce-form-register input.input-text,
.woocommerce-account .woocommerce-ResetPassword input.input-text {
    box-sizing: border-box;
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 15px 16px;
    border: 1px solid var(--account-field-border);
    border-radius: var(--account-field-radius);
    outline: 0;
    background: var(--account-field-bg);
    color: #111920;
    font: inherit;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: -.012em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 10px 26px rgba(14,20,25,.04);
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease, transform .16s ease;
}

.woocommerce-account .woocommerce-MyAccount-content textarea {
    min-height: 132px;
    resize: vertical;
    line-height: 1.55;
}

.woocommerce-account .woocommerce-MyAccount-content select {
    appearance: none;
    padding-right: 44px;
    background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position: calc(100% - 22px) 23px, calc(100% - 16px) 23px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.woocommerce-account .woocommerce-MyAccount-content input::placeholder,
.woocommerce-account .woocommerce-form-login input::placeholder,
.woocommerce-account .woocommerce-form-register input::placeholder,
.woocommerce-account .woocommerce-ResetPassword input::placeholder,
.woocommerce-account .woocommerce-MyAccount-content textarea::placeholder {
    color: rgba(21, 28, 34, .38);
    font-weight: 650;
}

.woocommerce-account .woocommerce-MyAccount-content input.input-text:hover,
.woocommerce-account .woocommerce-MyAccount-content input[type="text"]:hover,
.woocommerce-account .woocommerce-MyAccount-content input[type="email"]:hover,
.woocommerce-account .woocommerce-MyAccount-content input[type="password"]:hover,
.woocommerce-account .woocommerce-MyAccount-content input[type="tel"]:hover,
.woocommerce-account .woocommerce-MyAccount-content input[type="url"]:hover,
.woocommerce-account .woocommerce-MyAccount-content input[type="number"]:hover,
.woocommerce-account .woocommerce-MyAccount-content textarea:hover,
.woocommerce-account .woocommerce-MyAccount-content select:hover,
.woocommerce-account .woocommerce-form-login input.input-text:hover,
.woocommerce-account .woocommerce-form-register input.input-text:hover,
.woocommerce-account .woocommerce-ResetPassword input.input-text:hover {
    border-color: var(--account-field-border-hover);
    background: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content input.input-text:focus,
.woocommerce-account .woocommerce-MyAccount-content input[type="text"]:focus,
.woocommerce-account .woocommerce-MyAccount-content input[type="email"]:focus,
.woocommerce-account .woocommerce-MyAccount-content input[type="password"]:focus,
.woocommerce-account .woocommerce-MyAccount-content input[type="tel"]:focus,
.woocommerce-account .woocommerce-MyAccount-content input[type="url"]:focus,
.woocommerce-account .woocommerce-MyAccount-content input[type="number"]:focus,
.woocommerce-account .woocommerce-MyAccount-content input[type="search"]:focus,
.woocommerce-account .woocommerce-MyAccount-content textarea:focus,
.woocommerce-account .woocommerce-MyAccount-content select:focus,
.woocommerce-account .woocommerce-form-login input.input-text:focus,
.woocommerce-account .woocommerce-form-register input.input-text:focus,
.woocommerce-account .woocommerce-ResetPassword input.input-text:focus {
    border-color: var(--account-field-focus);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(175, 203, 32, .15), var(--account-field-shadow), inset 0 1px 0 rgba(255,255,255,.86);
}

.woocommerce-account .woocommerce-MyAccount-content .password-input,
.woocommerce-account .woocommerce-form-login .password-input,
.woocommerce-account .woocommerce-form-register .password-input {
    display: block;
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-content .show-password-input,
.woocommerce-account .woocommerce-form-login .show-password-input,
.woocommerce-account .woocommerce-form-register .show-password-input {
    top: 50%;
    right: 14px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    border-radius: 12px;
    background: rgba(17, 25, 32, .06);
    color: #111920;
}

.woocommerce-account .woocommerce-MyAccount-content fieldset {
    display: grid;
    gap: 14px;
    margin: clamp(8px, 2vw, 18px) 0 0;
    padding: clamp(16px, 3vw, 24px);
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(247,249,250,.72));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

.woocommerce-account .woocommerce-MyAccount-content legend {
    padding: 0 8px;
    color: #111920;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-content .clear {
    display: none;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-shipping-fields__field-wrapper,
.woocommerce-account .woocommerce-EditAccountForm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 18px);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row-wide,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-shipping-fields__field-wrapper .form-row-wide,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-wide,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm > p:last-child {
    grid-column: 1 / -1;
}

.woocommerce-account .woocommerce-MyAccount-content .select2-container {
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-content .select2-container .select2-selection--single,
.woocommerce-account .woocommerce-MyAccount-content .select2-container .select2-selection--multiple {
    min-height: 54px;
    border: 1px solid var(--account-field-border);
    border-radius: var(--account-field-radius);
    background: var(--account-field-bg);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 10px 26px rgba(14,20,25,.04);
}

.woocommerce-account .woocommerce-MyAccount-content .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 13px 42px 13px 16px;
    color: #111920;
    font-size: 15px;
    font-weight: 750;
    line-height: 26px;
}

.woocommerce-account .woocommerce-MyAccount-content .select2-container .select2-selection--single .select2-selection__arrow {
    top: 10px;
    right: 12px;
}

.woocommerce-account .woocommerce-MyAccount-content .select2-container--open .select2-selection--single,
.woocommerce-account .woocommerce-MyAccount-content .select2-container--focus .select2-selection--single,
.woocommerce-account .woocommerce-MyAccount-content .select2-container--focus .select2-selection--multiple {
    border-color: var(--account-field-focus);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(175, 203, 32, .15), var(--account-field-shadow);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form__label-for-checkbox,
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox,
.woocommerce-account .woocommerce-form-register .woocommerce-form__label-for-checkbox {
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    width: fit-content;
    min-height: 44px;
    padding: 9px 12px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    color: rgba(21, 28, 34, .74);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
}

.woocommerce-account .woocommerce-MyAccount-content input[type="checkbox"],
.woocommerce-account .woocommerce-MyAccount-content input[type="radio"],
.woocommerce-account .woocommerce-form-login input[type="checkbox"],
.woocommerce-account .woocommerce-form-register input[type="checkbox"] {
    appearance: none;
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 1px solid rgba(21, 28, 34, .22);
    border-radius: 7px;
    background: #fff;
    color: #111920;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
    cursor: pointer;
}

.woocommerce-account .woocommerce-MyAccount-content input[type="radio"] {
    border-radius: 999px;
}

.woocommerce-account .woocommerce-MyAccount-content input[type="checkbox"]::before,
.woocommerce-account .woocommerce-form-login input[type="checkbox"]::before,
.woocommerce-account .woocommerce-form-register input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 6px;
    border: 2px solid currentColor;
    border-top: 0;
    border-right: 0;
    opacity: 0;
    transform: translateY(-1px) rotate(-45deg) scale(.78);
    transition: opacity .14s ease, transform .14s ease;
}

.woocommerce-account .woocommerce-MyAccount-content input[type="radio"]::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: inherit;
    background: currentColor;
    opacity: 0;
    transform: scale(.72);
    transition: opacity .14s ease, transform .14s ease;
}

.woocommerce-account .woocommerce-MyAccount-content input[type="checkbox"]:checked,
.woocommerce-account .woocommerce-MyAccount-content input[type="radio"]:checked,
.woocommerce-account .woocommerce-form-login input[type="checkbox"]:checked,
.woocommerce-account .woocommerce-form-register input[type="checkbox"]:checked {
    border-color: #afcb20;
    background: #afcb20;
}

.woocommerce-account .woocommerce-MyAccount-content input[type="checkbox"]:checked::before,
.woocommerce-account .woocommerce-MyAccount-content input[type="radio"]:checked::before,
.woocommerce-account .woocommerce-form-login input[type="checkbox"]:checked::before,
.woocommerce-account .woocommerce-form-register input[type="checkbox"]:checked::before {
    opacity: 1;
    transform: translateY(-1px) rotate(-45deg) scale(1);
}

.woocommerce-account .woocommerce-MyAccount-content input[type="radio"]:checked::before {
    transform: scale(1);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-password-strength,
.woocommerce-account .woocommerce-form-register .woocommerce-password-strength {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 900;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-password-strength.short,
.woocommerce-account .woocommerce-form-register .woocommerce-password-strength.short,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-password-strength.bad,
.woocommerce-account .woocommerce-form-register .woocommerce-password-strength.bad {
    background: rgba(180, 44, 44, .1);
    color: #8f1f1f;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-password-strength.good,
.woocommerce-account .woocommerce-form-register .woocommerce-password-strength.good {
    background: rgba(237, 174, 47, .14);
    color: #805100;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-password-strength.strong,
.woocommerce-account .woocommerce-form-register .woocommerce-password-strength.strong {
    background: rgba(175, 203, 32, .18);
    color: #2b3900;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-password-hint,
.woocommerce-account .woocommerce-form-register .woocommerce-password-hint,
.woocommerce-account .woocommerce-privacy-policy-text,
.woocommerce-account .woocommerce-form-login .lost_password {
    color: rgba(21, 28, 34, .58);
    font-size: 13px;
    line-height: 1.55;
}

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register,
.woocommerce-account .woocommerce-ResetPassword {
    padding: clamp(20px, 4vw, 34px);
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 30px;
    background: linear-gradient(150deg, rgba(255,255,255,.96), rgba(248,250,251,.86));
    box-shadow: 0 26px 76px rgba(14,20,25,.1), inset 0 1px 0 rgba(255,255,255,.78);
}

.woocommerce-account .woocommerce-form-login h2,
.woocommerce-account .woocommerce-form-register h2,
.woocommerce-account .woocommerce-ResetPassword h2 {
    margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
.woocommerce-account .woocommerce-form-login button[type="submit"],
.woocommerce-account .woocommerce-form-register button[type="submit"],
.woocommerce-account .woocommerce-ResetPassword button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #111920, #26323a);
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(17,25,32,.18);
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-account .woocommerce-form-login button[type="submit"]:hover,
.woocommerce-account .woocommerce-form-register button[type="submit"]:hover,
.woocommerce-account .woocommerce-ResetPassword button[type="submit"]:hover,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:focus-visible,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:focus-visible,
.woocommerce-account .woocommerce-form-login button[type="submit"]:focus-visible,
.woocommerce-account .woocommerce-form-register button[type="submit"]:focus-visible,
.woocommerce-account .woocommerce-ResetPassword button[type="submit"]:focus-visible {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #1a242c, #111920);
    box-shadow: 0 22px 54px rgba(17,25,32,.24);
}

.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    overflow: hidden;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    color: #111920;
    box-shadow: 0 16px 44px rgba(14, 20, 25, .08);
}

.woocommerce-account .woocommerce-message {
    border-color: rgba(175, 203, 32, .36);
    background: linear-gradient(135deg, rgba(175,203,32,.14), rgba(255,255,255,.92));
}

.woocommerce-account .woocommerce-info {
    border-color: rgba(21, 28, 34, .1);
    background: linear-gradient(135deg, rgba(17,25,32,.06), rgba(255,255,255,.94));
}

.woocommerce-account .woocommerce-error {
    border-color: rgba(180, 44, 44, .22);
    background: linear-gradient(135deg, rgba(180,44,44,.09), rgba(255,255,255,.94));
}

.woocommerce-account .woocommerce-MyAccount-content .edit,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(17,25,32,.07);
    color: #111920;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .16s ease, background .16s ease;
}

.woocommerce-account .woocommerce-MyAccount-content .edit:hover,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a:hover,
.woocommerce-account .woocommerce-MyAccount-content .edit:focus-visible,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a:focus-visible {
    transform: translateY(-1px);
    background: rgba(175, 203, 32, .22);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2.4vw, 22px);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
    min-width: 0;
    padding: clamp(16px, 2.6vw, 24px);
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 24px;
    background: rgba(255,255,255,.76);
    box-shadow: 0 16px 44px rgba(14,20,25,.06);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
    margin: 0;
}

@media (max-width: 760px) {
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-shipping-fields__field-wrapper,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }

    .woocommerce-account .woocommerce-MyAccount-content input.input-text,
    .woocommerce-account .woocommerce-MyAccount-content input[type="text"],
    .woocommerce-account .woocommerce-MyAccount-content input[type="email"],
    .woocommerce-account .woocommerce-MyAccount-content input[type="password"],
    .woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
    .woocommerce-account .woocommerce-MyAccount-content input[type="url"],
    .woocommerce-account .woocommerce-MyAccount-content input[type="number"],
    .woocommerce-account .woocommerce-MyAccount-content input[type="search"],
    .woocommerce-account .woocommerce-MyAccount-content textarea,
    .woocommerce-account .woocommerce-MyAccount-content select,
    .woocommerce-account .woocommerce-form-login input.input-text,
    .woocommerce-account .woocommerce-form-register input.input-text,
    .woocommerce-account .woocommerce-ResetPassword input.input-text {
        min-height: 50px;
        border-radius: 16px;
        font-size: 14px;
    }

    .woocommerce-account .woocommerce-form-login,
    .woocommerce-account .woocommerce-form-register,
    .woocommerce-account .woocommerce-ResetPassword {
        border-radius: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .woocommerce-account .woocommerce-MyAccount-content input,
    .woocommerce-account .woocommerce-MyAccount-content textarea,
    .woocommerce-account .woocommerce-MyAccount-content select,
    .woocommerce-account .woocommerce-MyAccount-content .select2-selection,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button,
    .woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
    .woocommerce-account .woocommerce-form-login button[type="submit"],
    .woocommerce-account .woocommerce-form-register button[type="submit"],
    .woocommerce-account .woocommerce-ResetPassword button[type="submit"],
    .woocommerce-account .woocommerce-MyAccount-content .edit,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a {
        transition: none;
    }
}


/* v1.0.31 - Larger logo and vertically centered header elements. */
:root {
    --ge-header-desktop-offset: 134px;
    --ge-header-tablet-offset: 84px;
    --ge-header-mobile-offset: 76px;
    --ge-header-logo-width: clamp(124px, 10vw, 168px);
    --ge-header-logo-mobile-width: clamp(104px, 28vw, 132px);
    --ge-header-action-size: 48px;
    --ge-header-action-size-mobile: 42px;
}

body:not(.page-video-hero) {
    padding-top: var(--ge-header-desktop-offset);
}

body.admin-bar:not(.page-video-hero) {
    padding-top: calc(var(--ge-header-desktop-offset) + 32px);
}

.site-header .nav-shell,
.site-header.is-scrolled .nav-shell,
body:not(.page-video-hero) .site-header .nav-shell,
body:not(.page-video-hero) .site-header.is-scrolled .nav-shell,
.page-video-hero .site-header:not(.is-scrolled) .nav-shell,
.page-video-hero .site-header.is-scrolled .nav-shell {
    min-height: 88px;
    align-items: center;
    padding-block: 10px;
    gap: clamp(12px, 1.25vw, 22px);
}

.site-header .brand,
.site-header.is-scrolled .brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-self: center;
    height: 100%;
    min-width: var(--ge-header-logo-width);
}

.site-header .brand img,
.site-header.is-scrolled .brand img,
.page-video-hero .site-header:not(.is-scrolled) .brand img,
.page-video-hero .site-header.is-scrolled .brand img {
    display: block;
    width: var(--ge-header-logo-width);
    max-width: var(--ge-header-logo-width);
    max-height: 70px;
    height: auto;
    object-fit: contain;
}

.site-header .main-nav,
.site-header.is-scrolled .main-nav,
.page-video-hero .site-header:not(.is-scrolled) .main-nav,
.page-video-hero .site-header.is-scrolled .main-nav {
    align-self: center;
    align-items: center;
    min-height: 48px;
}

.site-header .main-nav > a,
.site-header .main-nav a,
.site-header.is-scrolled .main-nav > a,
.site-header.is-scrolled .main-nav a,
.page-video-hero .site-header:not(.is-scrolled) .main-nav a,
.page-video-hero .site-header.is-scrolled .main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding-block: 0;
    line-height: 1.1;
}

.site-header .header-actions,
.site-header.is-scrolled .header-actions,
.page-video-hero .site-header:not(.is-scrolled) .header-actions,
.page-video-hero .site-header.is-scrolled .header-actions {
    align-self: center;
    align-items: center;
    min-height: var(--ge-header-action-size);
}

.site-header .header-search,
.site-header.is-scrolled .header-search,
.site-header.is-scrolled .header-search.is-open,
.site-header .header-search-toggle,
.site-header.is-scrolled .header-search-toggle,
.site-header .cart-button,
.site-header.is-scrolled .cart-button {
    width: var(--ge-header-action-size);
    min-width: var(--ge-header-action-size);
    max-width: var(--ge-header-action-size);
    height: var(--ge-header-action-size);
    min-height: var(--ge-header-action-size);
    max-height: var(--ge-header-action-size);
    flex: 0 0 var(--ge-header-action-size);
    display: inline-grid;
    place-items: center;
    align-self: center;
}

.site-header .account-menu,
.site-header.is-scrolled .account-menu {
    display: flex;
    align-items: center;
    align-self: center;
}

.site-header .account-button,
.site-header.is-scrolled .account-button,
.page-video-hero .site-header:not(.is-scrolled) .account-button,
.page-video-hero .site-header.is-scrolled .account-button {
    min-height: var(--ge-header-action-size);
    height: var(--ge-header-action-size);
    max-height: var(--ge-header-action-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding-block: 0;
}

.site-header .header-search-toggle svg,
.site-header .account-button svg,
.site-header .cart-button svg,
.site-header .cart-button img,
.site-header .cart-icon {
    display: block;
    flex: 0 0 auto;
}

@media (max-width: 1340px) and (min-width: 1181px) {
    .site-header .nav-shell,
    .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header:not(.is-scrolled) .nav-shell,
    .page-video-hero .site-header.is-scrolled .nav-shell {
        gap: 10px;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        min-width: clamp(116px, 9vw, 144px);
    }

    .site-header .brand img,
    .site-header.is-scrolled .brand img,
    .page-video-hero .site-header:not(.is-scrolled) .brand img,
    .page-video-hero .site-header.is-scrolled .brand img {
        width: clamp(116px, 9vw, 144px);
        max-width: clamp(116px, 9vw, 144px);
    }
}

@media (max-width: 1180px) {
    body:not(.page-video-hero) {
        padding-top: var(--ge-header-tablet-offset);
    }

    body.admin-bar:not(.page-video-hero) {
        padding-top: calc(var(--ge-header-tablet-offset) + 46px);
    }

    html {
        scroll-padding-top: var(--ge-header-tablet-offset);
    }

    .site-header .nav-shell,
    .site-header.is-scrolled .nav-shell,
    body:not(.page-video-hero) .site-header .nav-shell,
    body:not(.page-video-hero) .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header:not(.is-scrolled) .nav-shell,
    .page-video-hero .site-header.is-scrolled .nav-shell {
        min-height: 72px;
        align-items: center;
        padding-block: 8px;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        min-width: var(--ge-header-logo-mobile-width);
    }

    .site-header .brand img,
    .site-header.is-scrolled .brand img,
    .page-video-hero .site-header:not(.is-scrolled) .brand img,
    .page-video-hero .site-header.is-scrolled .brand img {
        width: var(--ge-header-logo-mobile-width);
        max-width: var(--ge-header-logo-mobile-width);
        max-height: 56px;
    }

    .site-header .nav-toggle,
    .site-header.is-scrolled .nav-toggle,
    .site-header .header-search,
    .site-header.is-scrolled .header-search,
    .site-header .header-search-toggle,
    .site-header.is-scrolled .header-search-toggle,
    .site-header .account-button,
    .site-header.is-scrolled .account-button,
    .site-header .cart-button,
    .site-header.is-scrolled .cart-button {
        align-self: center;
    }
}

@media (max-width: 640px) {
    body:not(.page-video-hero) {
        padding-top: var(--ge-header-mobile-offset);
    }

    body.admin-bar:not(.page-video-hero) {
        padding-top: calc(var(--ge-header-mobile-offset) + 46px);
    }

    html {
        scroll-padding-top: var(--ge-header-mobile-offset);
    }

    .site-header .nav-shell,
    .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header:not(.is-scrolled) .nav-shell,
    .page-video-hero .site-header.is-scrolled .nav-shell {
        min-height: 66px;
        gap: 6px;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        min-width: clamp(94px, 27vw, 118px);
    }

    .site-header .brand img,
    .site-header.is-scrolled .brand img,
    .page-video-hero .site-header:not(.is-scrolled) .brand img,
    .page-video-hero .site-header.is-scrolled .brand img {
        width: clamp(94px, 27vw, 118px);
        max-width: clamp(94px, 27vw, 118px);
        max-height: 50px;
    }

    .site-header .header-search,
    .site-header.is-scrolled .header-search,
    .site-header .header-search-toggle,
    .site-header.is-scrolled .header-search-toggle,
    .site-header .account-button,
    .site-header.is-scrolled .account-button,
    .site-header .cart-button,
    .site-header.is-scrolled .cart-button,
    .site-header .nav-toggle,
    .site-header.is-scrolled .nav-toggle {
        width: var(--ge-header-action-size-mobile);
        min-width: var(--ge-header-action-size-mobile);
        max-width: var(--ge-header-action-size-mobile);
        height: var(--ge-header-action-size-mobile);
        min-height: var(--ge-header-action-size-mobile);
        max-height: var(--ge-header-action-size-mobile);
        flex-basis: var(--ge-header-action-size-mobile);
    }
}

@media (max-width: 390px) {
    .site-header .brand,
    .site-header.is-scrolled .brand {
        min-width: 88px;
    }

    .site-header .brand img,
    .site-header.is-scrolled .brand img {
        width: 88px;
        max-width: 88px;
    }
}

/* v1.0.32 - Larger logo cap and polished My Account address/delivery screens. */
:root {
    --ge-header-logo-max-height: 85px;
}

.site-header .brand img,
.site-header.is-scrolled .brand img,
.page-video-hero .site-header:not(.is-scrolled) .brand img,
.page-video-hero .site-header.is-scrolled .brand img {
    max-height: var(--ge-header-logo-max-height);
}

@media (min-width: 1181px) {
    .site-header .nav-shell,
    .site-header.is-scrolled .nav-shell,
    body:not(.page-video-hero) .site-header .nav-shell,
    body:not(.page-video-hero) .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header:not(.is-scrolled) .nav-shell,
    .page-video-hero .site-header.is-scrolled .nav-shell {
        min-height: 104px;
    }

    body:not(.page-video-hero) {
        padding-top: 150px;
    }

    body.admin-bar:not(.page-video-hero) {
        padding-top: 182px;
    }
}

@media (max-width: 1180px) {
    .site-header .brand img,
    .site-header.is-scrolled .brand img,
    .page-video-hero .site-header:not(.is-scrolled) .brand img,
    .page-video-hero .site-header.is-scrolled .brand img {
        max-height: 64px;
    }
}

@media (max-width: 640px) {
    .site-header .brand img,
    .site-header.is-scrolled .brand img,
    .page-video-hero .site-header:not(.is-scrolled) .brand img,
    .page-video-hero .site-header.is-scrolled .brand img {
        max-height: 54px;
    }
}

.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
    align-items: stretch;
    margin-top: clamp(16px, 2.5vw, 28px);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content .u-column1.woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content .u-column2.woocommerce-Address {
    position: relative;
    display: grid;
    gap: 16px;
    overflow: hidden;
    min-width: 0;
    padding: clamp(18px, 2.6vw, 28px);
    border: 1px solid rgba(17, 25, 32, .08);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 0, rgba(175, 203, 32, .16), transparent 16rem),
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,248,248,.88));
    box-shadow: 0 22px 58px rgba(14, 20, 25, .08), inset 0 1px 0 rgba(255,255,255,.82);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #afcb20, rgba(175, 203, 32, .24));
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(17, 25, 32, .08);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title::before {
    content: '';
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(17,25,32,.96), rgba(41,52,60,.96)),
        #111920;
    box-shadow: 0 16px 36px rgba(17,25,32,.16);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: #111920;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 950;
    letter-spacing: -.035em;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 11px 16px;
    border: 1px solid rgba(17,25,32,.08);
    border-radius: 999px;
    background: #111920;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: .02em;
    box-shadow: 0 14px 34px rgba(17,25,32,.14);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit:hover,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a:hover,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit:focus-visible,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a:focus-visible {
    transform: translateY(-1px);
    background: #afcb20;
    color: #111920;
    box-shadow: 0 18px 40px rgba(175,203,32,.24);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
    display: block;
    margin: 0;
    padding: clamp(16px, 2.2vw, 22px);
    border: 1px solid rgba(17,25,32,.07);
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    color: rgba(17,25,32,.74);
    font-style: normal;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address br {
    content: '';
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address br::after {
    content: '';
    display: block;
    margin-top: 4px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address .woocommerce-customer-details--phone,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address .woocommerce-customer-details--email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    margin-top: 10px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(17,25,32,.06);
    color: #111920;
    font-weight: 850;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-MyAccount-content form[action*="edit-address"] {
    padding: clamp(16px, 2.6vw, 26px);
    border: 1px solid rgba(17,25,32,.08);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0, rgba(175,203,32,.14), transparent 18rem),
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,249,250,.9));
    box-shadow: 0 22px 58px rgba(14,20,25,.07), inset 0 1px 0 rgba(255,255,255,.82);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 18px);
}

.woocommerce-account .woocommerce-MyAccount-content #billing_country_field,
.woocommerce-account .woocommerce-MyAccount-content #shipping_country_field,
.woocommerce-account .woocommerce-MyAccount-content #billing_address_1_field,
.woocommerce-account .woocommerce-MyAccount-content #billing_address_2_field,
.woocommerce-account .woocommerce-MyAccount-content #shipping_address_1_field,
.woocommerce-account .woocommerce-MyAccount-content #shipping_address_2_field,
.woocommerce-account .woocommerce-MyAccount-content #billing_company_field,
.woocommerce-account .woocommerce-MyAccount-content #shipping_company_field {
    grid-column: 1 / -1;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row {
    min-width: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields p:last-child,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row:last-child {
    margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields button.button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .button {
    width: auto;
    justify-self: start;
    margin-top: 4px;
}

.woocommerce-account .woocommerce-MyAccount-content .select2-container .select2-selection--single {
    min-height: 54px;
    border-color: rgba(21, 28, 34, .12);
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 10px 26px rgba(14,20,25,.04);
}

.woocommerce-account .woocommerce-MyAccount-content .select2-container--default .select2-selection--single .select2-selection__rendered {
    min-height: 54px;
    padding: 13px 44px 13px 16px;
    color: #111920;
    font-weight: 750;
    line-height: 28px;
}

.woocommerce-account .woocommerce-MyAccount-content .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
    right: 10px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-notices-wrapper + p,
.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type {
    max-width: 76ch;
    margin: 0 0 clamp(16px, 2.4vw, 24px);
    color: rgba(17,25,32,.72);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

@media (max-width: 760px) {
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title::before {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a {
        width: 100%;
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
    .woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm,
    .woocommerce-account .woocommerce-MyAccount-content form[action*="edit-address"] {
        border-radius: 24px;
        padding: 16px;
    }
}

/* v1.0.33 - Polished password toggle and My Account address overview cards. */
.woocommerce-account .woocommerce-MyAccount-content .password-input,
.woocommerce-account .woocommerce-form-login .password-input,
.woocommerce-account .woocommerce-form-register .password-input,
.woocommerce-account .woocommerce-ResetPassword .password-input {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .password-input input.input-text,
.woocommerce-account .woocommerce-MyAccount-content .password-input input[type="password"],
.woocommerce-account .woocommerce-MyAccount-content .password-input input[type="text"],
.woocommerce-account .woocommerce-form-login .password-input input.input-text,
.woocommerce-account .woocommerce-form-login .password-input input[type="password"],
.woocommerce-account .woocommerce-form-login .password-input input[type="text"],
.woocommerce-account .woocommerce-form-register .password-input input.input-text,
.woocommerce-account .woocommerce-form-register .password-input input[type="password"],
.woocommerce-account .woocommerce-form-register .password-input input[type="text"],
.woocommerce-account .woocommerce-ResetPassword .password-input input.input-text,
.woocommerce-account .woocommerce-ResetPassword .password-input input[type="password"],
.woocommerce-account .woocommerce-ResetPassword .password-input input[type="text"] {
    padding-right: 58px;
}

.woocommerce-account .woocommerce-MyAccount-content .show-password-input,
.woocommerce-account .woocommerce-form-login .show-password-input,
.woocommerce-account .woocommerce-form-register .show-password-input,
.woocommerce-account .woocommerce-ResetPassword .show-password-input {
    position: absolute;
    top: 50%;
    right: 12px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(17, 25, 32, .08);
    border-radius: 14px;
    background: rgba(17, 25, 32, .065);
    color: #111920;
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.woocommerce-account .woocommerce-MyAccount-content .show-password-input:hover,
.woocommerce-account .woocommerce-MyAccount-content .show-password-input:focus-visible,
.woocommerce-account .woocommerce-form-login .show-password-input:hover,
.woocommerce-account .woocommerce-form-login .show-password-input:focus-visible,
.woocommerce-account .woocommerce-form-register .show-password-input:hover,
.woocommerce-account .woocommerce-form-register .show-password-input:focus-visible,
.woocommerce-account .woocommerce-ResetPassword .show-password-input:hover,
.woocommerce-account .woocommerce-ResetPassword .show-password-input:focus-visible {
    border-color: rgba(175, 203, 32, .45);
    background: rgba(175, 203, 32, .18);
    box-shadow: 0 10px 24px rgba(175, 203, 32, .16);
    transform: translateY(-50%) scale(1.03);
}

.woocommerce-account .woocommerce-MyAccount-content .show-password-input::after,
.woocommerce-account .woocommerce-form-login .show-password-input::after,
.woocommerce-account .woocommerce-form-register .show-password-input::after,
.woocommerce-account .woocommerce-ResetPassword .show-password-input::after {
    width: 18px;
    height: 18px;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-notices-wrapper + p,
.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type {
    position: relative;
    max-width: none;
    margin: 0 0 clamp(18px, 2.6vw, 26px);
    padding: clamp(16px, 2.2vw, 20px) clamp(18px, 2.6vw, 24px);
    border: 1px solid rgba(17, 25, 32, .08);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(17,25,32,.045), rgba(255,255,255,.9));
    color: rgba(17, 25, 32, .72);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.65;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.84);
}

.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses.col2-set.addresses,
.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses,
.woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 24px);
    align-items: stretch;
    width: 100%;
    margin: clamp(16px, 2.6vw, 28px) 0 0;
}

.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses::before,
.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses::after,
.woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses::before,
.woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses::after {
    content: none;
}

.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column1,
.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column2,
.woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses .col-1,
.woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses .col-2,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content .u-column1.woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content .u-column2.woocommerce-Address {
    float: none;
    width: auto;
    max-width: none;
    min-width: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
    --account-address-icon-bg: linear-gradient(135deg, #111920, #2b3640);
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(14px, 2vw, 18px);
    overflow: hidden;
    padding: clamp(18px, 2.8vw, 28px);
    border: 1px solid rgba(17, 25, 32, .08);
    border-radius: 30px;
    background:
        radial-gradient(circle at 8% 0, rgba(175, 203, 32, .14), transparent 15rem),
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,249,250,.9));
    box-shadow: 0 24px 64px rgba(14, 20, 25, .085), inset 0 1px 0 rgba(255,255,255,.84);
    isolation: isolate;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address::after {
    content: '';
    position: absolute;
    inset: auto -24px -40px auto;
    z-index: -1;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: rgba(175, 203, 32, .13);
    filter: blur(2px);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin: 0;
    padding: 0 0 clamp(14px, 2vw, 18px);
    border-bottom: 1px solid rgba(17, 25, 32, .08);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title::before,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title::before {
    content: '';
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6.5-5.5 6.5-10.5a6.5 6.5 0 1 0-13 0C5.5 15.5 12 21 12 21Z'/%3E%3Cpath d='M12 13a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z'/%3E%3C/svg%3E") center / 24px 24px no-repeat,
        var(--account-address-icon-bg);
    box-shadow: 0 18px 38px rgba(17, 25, 32, .18);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
    min-width: 0;
    margin: 0;
    color: #111920;
    font-size: clamp(18px, 1.8vw, 23px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    min-height: 42px;
    padding: 11px 16px;
    border: 1px solid rgba(17, 25, 32, .08);
    border-radius: 999px;
    background: #111920;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 16px 34px rgba(17, 25, 32, .16);
    transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit:hover,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit:focus-visible,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a:hover,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a:focus-visible {
    background: #afcb20;
    color: #111920;
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(175, 203, 32, .24);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 116px;
    margin: 0;
    padding: clamp(16px, 2.2vw, 22px);
    border: 1px solid rgba(17, 25, 32, .075);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.66)),
        radial-gradient(circle at 100% 0, rgba(175,203,32,.11), transparent 12rem);
    color: rgba(17, 25, 32, .78);
    font-style: normal;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.7;
    overflow-wrap: anywhere;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address::before {
    content: 'Naslov';
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(17, 25, 32, .06);
    color: rgba(17, 25, 32, .68);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-content .u-column1.woocommerce-Address .woocommerce-Address-title::before,
.woocommerce-account .woocommerce-MyAccount-content .col-1.woocommerce-Address .woocommerce-Address-title::before {
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 5h11A1.5 1.5 0 0 1 19 6.5v11A1.5 1.5 0 0 1 17.5 19h-11A1.5 1.5 0 0 1 5 17.5v-11A1.5 1.5 0 0 1 6.5 5Z'/%3E%3Cpath d='M8 9h8M8 12h8M8 15h5'/%3E%3C/svg%3E") center / 24px 24px no-repeat,
        var(--account-address-icon-bg);
}

.woocommerce-account .woocommerce-MyAccount-content .u-column2.woocommerce-Address .woocommerce-Address-title::before,
.woocommerce-account .woocommerce-MyAccount-content .col-2.woocommerce-Address .woocommerce-Address-title::before {
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.8 7.5h9.7v8.8H4.8z'/%3E%3Cpath d='M14.5 10.2h2.8l2 2.5v3.6h-4.8'/%3E%3Cpath d='M7.4 18.8a1.8 1.8 0 1 0 0-3.6 1.8 1.8 0 0 0 0 3.6ZM16.9 18.8a1.8 1.8 0 1 0 0-3.6 1.8 1.8 0 0 0 0 3.6Z'/%3E%3C/svg%3E") center / 25px 25px no-repeat,
        var(--account-address-icon-bg);
}

.woocommerce-account .woocommerce-MyAccount-content .u-column1.woocommerce-Address address::before,
.woocommerce-account .woocommerce-MyAccount-content .col-1.woocommerce-Address address::before {
    content: 'Plačilo';
}

.woocommerce-account .woocommerce-MyAccount-content .u-column2.woocommerce-Address address::before,
.woocommerce-account .woocommerce-MyAccount-content .col-2.woocommerce-Address address::before {
    content: 'Dostava';
}

@media (max-width: 980px) {
    .woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses.col2-set.addresses,
    .woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses,
    .woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
        padding: 16px;
        border-radius: 24px;
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title.title::before,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title::before {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .woocommerce-account .woocommerce-MyAccount-content .show-password-input,
    .woocommerce-account .woocommerce-form-login .show-password-input,
    .woocommerce-account .woocommerce-form-register .show-password-input,
    .woocommerce-account .woocommerce-ResetPassword .show-password-input {
        right: 10px;
        width: 36px;
        height: 36px;
        border-radius: 13px;
    }
}


/* v1.0.35 - Hero video URL updated to video-homepage.mp4 and forced muted playback. */

/* About page shortcode/template */
.goemotion-about-page {
    width: min(1180px, calc(100% - 32px));
    margin: clamp(28px, 5vw, 72px) auto clamp(42px, 7vw, 110px);
    color: var(--graphite);
    font-family: var(--display-font, 'Montserrat', sans-serif);
}

.goemotion-content-box .goemotion-about-page,
.entry-content .goemotion-about-page {
    width: 100%;
    margin-block: 0;
}

.goemotion-about-page * {
    box-sizing: border-box;
}

.goemotion-about-hero,
.goemotion-about-card,
.goemotion-about-team,
.goemotion-about-values article {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    background:
        radial-gradient(circle at top left, rgba(175, 203, 32, .28), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(245, 247, 238, .76));
    box-shadow: 0 24px 70px rgba(17, 24, 39, .1), inset 0 1px 0 rgba(255, 255, 255, .8);
    backdrop-filter: blur(14px) saturate(132%);
    -webkit-backdrop-filter: blur(14px) saturate(132%);
}

.goemotion-about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: clamp(22px, 4vw, 56px);
    align-items: end;
    min-height: clamp(420px, 52vw, 620px);
    padding: clamp(30px, 6vw, 82px);
    border-radius: clamp(28px, 4vw, 48px);
}

.goemotion-about-hero::after {
    content: '';
    position: absolute;
    inset: auto -12% -35% auto;
    width: min(520px, 54vw);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(175, 203, 32, .42), rgba(175, 203, 32, 0) 68%);
    pointer-events: none;
}

.goemotion-about-hero__content,
.goemotion-about-hero__stats,
.goemotion-about-team__content,
.goemotion-about-partners > div {
    position: relative;
    z-index: 1;
}

.goemotion-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 0 14px;
    padding: 7px 12px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    color: rgba(15, 18, 20, .72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.goemotion-about-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent, #afcb20), #d7ff47);
    box-shadow: 0 0 0 6px rgba(175, 203, 32, .16);
}

.goemotion-about-hero h1,
.goemotion-about-team h2,
.goemotion-about-partners h2,
.goemotion-about-values h2 {
    margin: 0;
    color: #050505;
    font-family: var(--display-font, 'Montserrat', sans-serif);
    letter-spacing: -.055em;
    line-height: .94;
}

.goemotion-about-hero h1 {
    max-width: 820px;
    font-size: clamp(52px, 10vw, 132px);
}

.goemotion-about-lead {
    max-width: 720px;
    margin: clamp(18px, 3vw, 30px) 0 0;
    color: rgba(15, 18, 20, .78);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.38;
}

.goemotion-about-hero__stats {
    display: grid;
    gap: 12px;
}

.goemotion-about-hero__stats span {
    display: grid;
    gap: 3px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 22px;
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 16px 40px rgba(17, 24, 39, .08);
}

.goemotion-about-hero__stats strong {
    color: #050505;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1;
}

.goemotion-about-hero__stats em {
    color: rgba(15, 18, 20, .62);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.goemotion-about-intro,
.goemotion-about-team,
.goemotion-about-partners {
    margin-top: clamp(18px, 3vw, 32px);
}

.goemotion-about-card {
    padding: clamp(24px, 5vw, 58px);
    border-radius: clamp(24px, 3vw, 38px);
}

.goemotion-about-intro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 28px);
}

.goemotion-about-intro p,
.goemotion-about-team p,
.goemotion-about-partners p,
.goemotion-about-values p {
    margin: 0;
    color: rgba(15, 18, 20, .74);
    font-size: clamp(15px, 1.35vw, 17px);
    font-weight: 600;
    line-height: 1.78;
}

.goemotion-about-intro p {
    padding: clamp(18px, 2.4vw, 26px);
    border-radius: 24px;
    background: rgba(255, 255, 255, .55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74);
}

.goemotion-about-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
    margin-top: clamp(18px, 3vw, 32px);
}

.goemotion-about-values article {
    display: grid;
    align-content: start;
    gap: 13px;
    min-height: 100%;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 28px;
}

.goemotion-about-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #050505;
    color: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.goemotion-about-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.goemotion-about-values h2 {
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1;
}

.goemotion-about-team {
    display: grid;
    grid-template-columns: minmax(260px, .92fr) minmax(0, 1.08fr);
    gap: clamp(20px, 4vw, 54px);
    align-items: center;
    padding: clamp(18px, 3vw, 34px);
    border-radius: clamp(24px, 4vw, 44px);
}

.goemotion-about-team__media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: clamp(22px, 3vw, 34px);
    background: linear-gradient(135deg, rgba(5, 5, 5, .05), rgba(175, 203, 32, .18));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.goemotion-about-team__media::before {
    content: '';
    display: block;
    aspect-ratio: 4 / 5;
}

.goemotion-about-team__image,
.goemotion-about-team__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.goemotion-about-team__image {
    object-fit: cover;
    object-position: center;
}

.goemotion-about-team__placeholder {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    background: radial-gradient(circle at 30% 20%, rgba(175, 203, 32, .42), transparent 34%), #101315;
    color: #fff;
}

.goemotion-about-team__placeholder span {
    font-size: clamp(58px, 9vw, 118px);
    font-weight: 950;
    letter-spacing: -.07em;
    line-height: .8;
}

.goemotion-about-team__placeholder em {
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.goemotion-about-team__content {
    display: grid;
    gap: clamp(14px, 2vw, 22px);
    padding: clamp(10px, 2vw, 18px);
}

.goemotion-about-team__content h2,
.goemotion-about-partners h2 {
    max-width: 760px;
    font-size: clamp(34px, 5vw, 72px);
}

.goemotion-about-partners {
    display: grid;
    grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
    gap: clamp(22px, 4vw, 56px);
    align-items: start;
}

.goemotion-about-partners__copy {
    display: grid;
    gap: 18px;
}

@media (max-width: 1024px) {
    .goemotion-about-hero,
    .goemotion-about-team,
    .goemotion-about-partners {
        grid-template-columns: 1fr;
    }

    .goemotion-about-hero {
        min-height: 0;
    }

    .goemotion-about-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .goemotion-about-intro,
    .goemotion-about-values {
        grid-template-columns: 1fr;
    }

    .goemotion-about-team__media::before {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 700px) {
    .goemotion-about-page {
        width: min(100% - 20px, 1180px);
    }

    .goemotion-content-box .goemotion-about-page,
    .entry-content .goemotion-about-page {
        width: 100%;
    }

    .goemotion-about-hero,
    .goemotion-about-card,
    .goemotion-about-team {
        border-radius: 24px;
    }

    .goemotion-about-hero {
        padding: 24px;
    }

    .goemotion-about-hero h1 {
        font-size: clamp(44px, 18vw, 72px);
    }

    .goemotion-about-hero__stats {
        grid-template-columns: 1fr;
    }

    .goemotion-about-team {
        padding: 12px;
    }

    .goemotion-about-team__content {
        padding: 12px;
    }

    .goemotion-about-team__media::before {
        aspect-ratio: 1;
    }
}


/* Standalone About page HTML block support.
   These styles make the direct Custom HTML code work even when WordPress strips inline <style> tags. */
.go-about-page {
    --go-black: #050505;
    --go-text: #141414;
    --go-muted: #686868;
    --go-line: rgba(0, 0, 0, .10);
    --go-soft: #f6f7f8;
    --go-green: #afcb20;
    --go-radius-xl: 34px;
    --go-radius-lg: 24px;
    --go-shadow: 0 24px 70px rgba(0, 0, 0, .10);
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    font-family: var(--display-font, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    color: var(--go-text);
    overflow: hidden;
}

.go-about-page * { box-sizing: border-box; }
.go-about-wrap { width: min(1180px, 100%); margin-inline: auto; }
.go-about-hero { position: relative; padding: clamp(64px, 8vw, 120px) 0 clamp(42px, 6vw, 90px); }
.go-about-hero::before {
    content: "";
    position: absolute;
    inset: 24px auto auto 50%;
    width: min(760px, 95vw);
    height: min(760px, 95vw);
    transform: translateX(-50%);
    background: radial-gradient(circle at 35% 30%, rgba(175, 203, 32, .26), transparent 34%), radial-gradient(circle at 65% 60%, rgba(0, 0, 0, .10), transparent 38%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}
.go-about-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.go-about-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px; border: 1px solid var(--go-line); border-radius: 999px; background: rgba(255,255,255,.78); backdrop-filter: blur(14px); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #202020; margin: 0 0 22px; }
.go-about-eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--go-green); box-shadow: 0 0 0 6px rgba(175, 203, 32, .25); }
.go-about-title { margin: 0; font-size: clamp(42px, 7vw, 86px); line-height: .94; letter-spacing: -0.07em; color: var(--go-black); font-weight: 900; }
.go-about-title span { display: block; color: transparent; -webkit-text-stroke: 1.5px var(--go-black); }
.go-about-lead { margin: 24px 0 0; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.8; color: var(--go-muted); max-width: 680px; font-weight: 500; }
.go-about-hero-card { position: relative; min-height: 420px; border-radius: var(--go-radius-xl); background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(246,247,248,.86)), radial-gradient(circle at 30% 20%, rgba(175,203,32,.22), transparent 38%); border: 1px solid rgba(0,0,0,.08); box-shadow: var(--go-shadow); padding: clamp(24px, 3vw, 36px); overflow: hidden; }
.go-about-hero-card::after { content: ""; position: absolute; right: -70px; bottom: -90px; width: 260px; height: 260px; border-radius: 999px; background: var(--go-green); opacity: .72; filter: blur(8px); }
.go-about-stats { position: relative; z-index: 1; display: grid; gap: 14px; }
.go-about-stat { padding: 20px; border-radius: 22px; background: rgba(255,255,255,.72); border: 1px solid rgba(0,0,0,.08); backdrop-filter: blur(12px); }
.go-about-stat strong { display: block; font-size: clamp(24px, 3vw, 42px); line-height: 1; color: var(--go-black); letter-spacing: -0.05em; margin-bottom: 7px; }
.go-about-stat span { color: var(--go-muted); font-weight: 700; font-size: 13px; line-height: 1.5; }
.go-about-section { padding: clamp(42px, 6vw, 88px) 0; }
.go-about-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.go-about-card { padding: clamp(22px, 3vw, 34px); border-radius: var(--go-radius-lg); background: #fff; border: 1px solid var(--go-line); box-shadow: 0 16px 45px rgba(0,0,0,.06); min-width: 0; }
.go-about-card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: #050505; color: #fff; margin-bottom: 18px; }
.go-about-card-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.go-about-card h3, .go-about-team-copy h2, .go-about-business h2 { margin: 0 0 14px; color: var(--go-black); letter-spacing: -0.045em; line-height: 1.05; font-weight: 900; }
.go-about-card h3 { font-size: clamp(22px, 2vw, 30px); }
.go-about-card p, .go-about-team-copy p, .go-about-business p { margin: 0; color: var(--go-muted); font-size: 15px; line-height: 1.85; font-weight: 500; }
.go-about-card p + p, .go-about-team-copy p + p, .go-about-business p + p { margin-top: 16px; }
.go-about-team { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(26px, 5vw, 70px); align-items: center; }
.go-about-team-media { position: relative; border-radius: var(--go-radius-xl); overflow: hidden; background: #f2f3f4; box-shadow: var(--go-shadow); min-height: 420px; }
.go-about-team-media img { display: block; width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.go-about-team-media::after { content: "GO e-motion"; position: absolute; left: 18px; bottom: 18px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.78); backdrop-filter: blur(14px); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: #050505; }
.go-about-team-copy { padding: clamp(10px, 2vw, 24px) 0; }
.go-about-team-copy h2, .go-about-business h2 { font-size: clamp(34px, 4vw, 58px); }
.go-about-business { position: relative; padding: clamp(30px, 5vw, 58px); border-radius: var(--go-radius-xl); background: linear-gradient(135deg, #050505, #171717); color: #fff; overflow: hidden; box-shadow: var(--go-shadow); }
.go-about-business::before { content: ""; position: absolute; right: -110px; top: -110px; width: 310px; height: 310px; border-radius: 999px; background: rgba(175,203,32,.55); filter: blur(10px); }
.go-about-business > * { position: relative; z-index: 1; }
.go-about-business h2 { color: #fff; max-width: 720px; }
.go-about-business p { color: rgba(255,255,255,.74); max-width: 980px; }
.go-about-business-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.go-about-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 20px; border-radius: 999px; text-decoration: none; font-weight: 900; font-size: 14px; transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease; }
.go-about-btn:hover { transform: translateY(-2px); }
.go-about-btn-primary { background: var(--go-green); color: #050505; }
.go-about-btn-secondary { color: #fff; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); }

@media (max-width: 980px) {
    .go-about-hero-inner, .go-about-team { grid-template-columns: 1fr; }
    .go-about-grid { grid-template-columns: 1fr; }
    .go-about-hero-card { min-height: auto; }
}
@media (max-width: 640px) {
    .go-about-page { width: min(100% - 22px, 1180px); }
    .go-about-hero { padding-top: 46px; }
    .go-about-title { font-size: clamp(38px, 15vw, 58px); }
    .go-about-lead, .go-about-card p, .go-about-team-copy p, .go-about-business p { font-size: 14px; line-height: 1.75; }
    .go-about-team-media, .go-about-team-media img { min-height: 300px; }
    .go-about-business-actions { flex-direction: column; }
    .go-about-btn { width: 100%; }
}


/* v1.0.38 - promo media without visual borders. */
.goemotion-home-main .promo-media,
.promo-media {
    border: 0;
    outline: 0;
    box-shadow: none;
}

.goemotion-home-main .promo-media::before,
.goemotion-home-main .promo-media::after,
.promo-media::before,
.promo-media::after {
    border: 0;
    outline: 0;
    box-shadow: none;
}

.goemotion-home-main .promo-media img,
.promo-media img {
    border: 0;
    outline: 0;
}

/* v1.0.39 - compact, clearer mini cart rows and totals. */
.goemotion-mini-cart-summary {
    display: none;
}

.goemotion-mini-cart {
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 10px;
    padding: clamp(12px, 2.4vw, 18px);
}

.goemotion-mini-cart-body {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 2px 2px 0;
}

.goemotion-mini-cart-list,
.goemotion-mini-cart ul.woocommerce-mini-cart {
    display: grid;
    gap: 9px;
}

.goemotion-mini-cart .goemotion-mini-cart-item,
.goemotion-mini-cart .woocommerce-mini-cart-item {
    display: grid;
    grid-template-columns: clamp(82px, 18vw, 104px) minmax(0, 1fr) 28px;
    grid-template-areas: "thumb content remove";
    align-items: start;
    gap: 10px;
    min-height: 0;
    padding: 9px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(21, 28, 34, .07);
    box-shadow: 0 10px 26px rgba(21, 28, 34, .055), inset 0 1px 0 rgba(255, 255, 255, .72);
}

.goemotion-mini-cart-thumb {
    grid-area: thumb;
    align-self: start;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(247, 249, 250, .98), rgba(255, 255, 255, .82));
    overflow: hidden;
}

.goemotion-mini-cart-thumb img,
.goemotion-mini-cart .goemotion-mini-cart-item img,
.goemotion-mini-cart .woocommerce-mini-cart-item img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    padding: 7px;
    border-radius: 16px;
    background: transparent;
}

.goemotion-mini-cart-line {
    grid-area: content;
    align-self: stretch;
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: 5px;
    min-width: 0;
    padding: 2px 0 0;
}

.goemotion-mini-cart-name,
.goemotion-mini-cart .woocommerce-mini-cart-item a.goemotion-mini-cart-name {
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--graphite, #151d24);
    font-size: clamp(13px, 1vw, 14px);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -.018em;
    text-decoration: none;
}

.goemotion-mini-cart-details {
    display: grid;
    gap: 3px;
    color: rgba(21, 28, 34, .58);
    font-size: 11px;
    line-height: 1.3;
}

.goemotion-mini-cart-details:empty {
    display: none;
}

.goemotion-mini-cart-details dl.variation {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 2px 5px;
    margin: 0;
}

.goemotion-mini-cart-details dt,
.goemotion-mini-cart-details dd,
.goemotion-mini-cart-details p {
    margin: 0;
}

.goemotion-mini-cart-meta {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 5px;
    align-self: end;
    margin-top: 1px;
}

.goemotion-mini-cart-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
    max-width: 100%;
    min-width: 0;
    color: var(--graphite, #151d24);
    font-size: clamp(13px, 1vw, 14px);
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -.02em;
    text-align: left;
    overflow-wrap: anywhere;
}

.goemotion-mini-cart-price-label {
    color: rgba(21, 28, 34, .58);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.goemotion-mini-cart .goemotion-mini-cart-price .amount,
.goemotion-mini-cart .goemotion-mini-cart-price .woocommerce-Price-amount {
    display: inline;
    color: var(--graphite, #151d24);
    font-size: inherit;
    font-weight: 950;
    line-height: inherit;
    letter-spacing: inherit;
    white-space: normal;
    overflow-wrap: anywhere;
}

.goemotion-mini-cart-qty {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(21, 28, 34, .055);
    color: rgba(21, 28, 34, .62);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.goemotion-mini-cart-remove,
.goemotion-mini-cart .remove_from_cart_button {
    grid-area: remove;
    justify-self: end;
    align-self: start;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(21, 28, 34, .055);
    color: rgba(21, 28, 34, .64);
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.goemotion-mini-cart-remove:hover,
.goemotion-mini-cart .remove_from_cart_button:hover,
.goemotion-mini-cart-remove:focus-visible,
.goemotion-mini-cart .remove_from_cart_button:focus-visible {
    transform: translateY(-1px);
    background: var(--graphite, #151d24);
    color: #fff;
}

.goemotion-mini-cart-footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding: 12px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(245, 248, 249, .96));
    box-shadow: 0 -12px 34px rgba(21, 28, 34, .08), inset 0 1px 0 rgba(255, 255, 255, .82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.goemotion-mini-cart .woocommerce-mini-cart__total,
.goemotion-mini-cart-total-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--graphite, #151d24);
}

.goemotion-mini-cart-total-row span {
    color: rgba(21, 28, 34, .62);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.goemotion-mini-cart-total-row strong {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 3px;
    max-width: 100%;
    color: var(--graphite, #151d24);
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -.035em;
    text-align: right;
    overflow-wrap: anywhere;
}

.goemotion-mini-cart-total-row strong .amount,
.goemotion-mini-cart-total-row strong .woocommerce-Price-amount {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.goemotion-mini-cart .woocommerce-mini-cart__buttons,
.goemotion-mini-cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0;
}

.goemotion-mini-cart .woocommerce-mini-cart__buttons a,
.goemotion-mini-cart-actions a {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 950;
    text-align: center;
}

.goemotion-cart-benefits {
    gap: 6px;
    padding-top: 8px;
}

.goemotion-cart-benefits span {
    padding: 7px 9px;
    font-size: 10px;
}

@media (max-width: 560px) {
    .goemotion-mini-cart {
        padding: 12px;
    }

    .goemotion-mini-cart .goemotion-mini-cart-item,
    .goemotion-mini-cart .woocommerce-mini-cart-item {
        grid-template-columns: 74px minmax(0, 1fr) 26px;
        gap: 8px;
        padding: 8px;
        border-radius: 16px;
    }

    .goemotion-mini-cart-thumb,
    .goemotion-mini-cart-thumb img,
    .goemotion-mini-cart .goemotion-mini-cart-item img,
    .goemotion-mini-cart .woocommerce-mini-cart-item img {
        border-radius: 14px;
    }

    .goemotion-mini-cart-line {
        gap: 4px;
    }

    .goemotion-mini-cart-name,
    .goemotion-mini-cart .woocommerce-mini-cart-item a.goemotion-mini-cart-name {
        font-size: 12.5px;
    }

    .goemotion-mini-cart-price {
        font-size: 12.5px;
    }

    .goemotion-mini-cart-footer {
        border-radius: 16px;
        padding: 10px;
    }

    .goemotion-mini-cart .woocommerce-mini-cart__buttons,
    .goemotion-mini-cart-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 370px) {
    .goemotion-mini-cart .goemotion-mini-cart-item,
    .goemotion-mini-cart .woocommerce-mini-cart-item {
        grid-template-columns: 64px minmax(0, 1fr) 24px;
        gap: 7px;
    }

    .goemotion-mini-cart-remove,
    .goemotion-mini-cart .remove_from_cart_button {
        width: 24px;
        height: 24px;
        font-size: 18px;
    }
}

/* v1.0.40 - stable compact mini cart layout rollback/fix. */
.cart-drawer .goemotion-mini-cart-summary {
    display: none;
}

.cart-drawer .goemotion-mini-cart {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 0;
    height: 100%;
    padding: clamp(14px, 2.6vw, 18px);
    overflow: hidden;
}

.cart-drawer .goemotion-mini-cart-body {
    min-height: 0;
    overflow: hidden;
    padding: 0;
}

.cart-drawer .goemotion-mini-cart-list,
.cart-drawer .goemotion-mini-cart ul.woocommerce-mini-cart {
    display: grid;
    align-content: start;
    gap: 10px;
    height: 100%;
    margin: 0;
    padding: 0 4px 2px 0;
    list-style: none;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.cart-drawer .goemotion-mini-cart .goemotion-mini-cart-item,
.cart-drawer .goemotion-mini-cart .woocommerce-mini-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 28px;
    grid-template-areas: "thumb content remove";
    align-items: start;
    gap: 11px;
    min-height: 98px;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(21, 28, 34, .075);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 30px rgba(21, 28, 34, .065), inset 0 1px 0 rgba(255, 255, 255, .76);
}

.cart-drawer .goemotion-mini-cart-thumb {
    grid-area: thumb;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    min-width: 78px;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(246, 248, 249, .98), rgba(255, 255, 255, .82));
    overflow: hidden;
}

.cart-drawer .goemotion-mini-cart-thumb img,
.cart-drawer .goemotion-mini-cart .goemotion-mini-cart-item img,
.cart-drawer .goemotion-mini-cart .woocommerce-mini-cart-item img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    padding: 7px;
    border: 0;
    border-radius: 15px;
    background: transparent;
}

.cart-drawer .goemotion-mini-cart-line {
    grid-area: content;
    display: grid;
    align-content: start;
    gap: 6px;
    min-width: 0;
    padding-top: 1px;
}

.cart-drawer .goemotion-mini-cart-name,
.cart-drawer .goemotion-mini-cart .woocommerce-mini-cart-item a.goemotion-mini-cart-name {
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--graphite, #151d24);
    font-size: 13.5px;
    line-height: 1.23;
    font-weight: 950;
    letter-spacing: -.02em;
    text-decoration: none;
}

.cart-drawer .goemotion-mini-cart-details {
    display: grid;
    gap: 3px;
    min-width: 0;
    margin: 0;
    color: rgba(21, 28, 34, .58);
    font-size: 11px;
    line-height: 1.3;
}

.cart-drawer .goemotion-mini-cart-details:empty {
    display: none;
}

.cart-drawer .goemotion-mini-cart-details dl.variation {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 2px 5px;
    margin: 0;
}

.cart-drawer .goemotion-mini-cart-details dt,
.cart-drawer .goemotion-mini-cart-details dd,
.cart-drawer .goemotion-mini-cart-details p {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.cart-drawer .goemotion-mini-cart-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 8px;
    min-width: 0;
    margin: 0;
}

.cart-drawer .goemotion-mini-cart-price {
    display: grid;
    gap: 2px;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    color: var(--graphite, #151d24);
    text-align: left;
}

.cart-drawer .goemotion-mini-cart-price-label {
    display: block;
    color: rgba(21, 28, 34, .56);
    font-size: 10.5px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cart-drawer .goemotion-mini-cart-price-value,
.cart-drawer .goemotion-mini-cart-price-value .amount,
.cart-drawer .goemotion-mini-cart-price-value .woocommerce-Price-amount,
.cart-drawer .goemotion-mini-cart .goemotion-mini-cart-price .amount,
.cart-drawer .goemotion-mini-cart .goemotion-mini-cart-price .woocommerce-Price-amount {
    display: inline;
    max-width: 100%;
    color: var(--graphite, #151d24);
    font-size: 13.5px;
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -.024em;
    white-space: normal;
    overflow-wrap: anywhere;
}

.cart-drawer .goemotion-mini-cart-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(175, 203, 32, .16);
    color: #2c3411;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    white-space: nowrap;
}

.cart-drawer .goemotion-mini-cart-remove,
.cart-drawer .goemotion-mini-cart .remove_from_cart_button {
    grid-area: remove;
    position: static;
    justify-self: end;
    align-self: start;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(21, 28, 34, .055);
    color: rgba(21, 28, 34, .62);
    font-size: 19px;
    line-height: 1;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.cart-drawer .goemotion-mini-cart-remove span,
.cart-drawer .goemotion-mini-cart .remove_from_cart_button span {
    display: block;
    transform: translateY(-1px);
}

.cart-drawer .goemotion-mini-cart-remove:hover,
.cart-drawer .goemotion-mini-cart .remove_from_cart_button:hover,
.cart-drawer .goemotion-mini-cart-remove:focus-visible,
.cart-drawer .goemotion-mini-cart .remove_from_cart_button:focus-visible {
    transform: translateY(-1px);
    background: var(--graphite, #151d24);
    color: #fff;
}

.cart-drawer .goemotion-mini-cart-footer {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(246, 248, 249, .97));
    box-shadow: 0 -10px 30px rgba(21, 28, 34, .075), inset 0 1px 0 rgba(255, 255, 255, .86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__total,
.cart-drawer .goemotion-mini-cart-total-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--graphite, #151d24);
}

.cart-drawer .goemotion-mini-cart-total-label {
    color: rgba(21, 28, 34, .62);
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cart-drawer .goemotion-mini-cart-total-value {
    display: block;
    min-width: 0;
    max-width: 100%;
    color: var(--graphite, #151d24);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -.035em;
    text-align: right;
    overflow-wrap: anywhere;
}

.cart-drawer .goemotion-mini-cart-total-value .amount,
.cart-drawer .goemotion-mini-cart-total-value .woocommerce-Price-amount {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    white-space: normal;
}

.cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__buttons,
.cart-drawer .goemotion-mini-cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin: 0;
    padding: 0;
    background: none;
}

.cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__buttons a,
.cart-drawer .goemotion-mini-cart-actions a {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 13px;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 950;
    text-align: center;
    text-decoration: none;
}

.cart-drawer .goemotion-cart-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 0;
}

.cart-drawer .goemotion-cart-benefits span {
    flex: 1 1 auto;
    min-width: max-content;
    padding: 7px 9px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
}

@media (max-width: 560px) {
    .cart-drawer .goemotion-mini-cart {
        padding: 12px;
        gap: 9px;
    }

    .cart-drawer .goemotion-mini-cart .goemotion-mini-cart-item,
    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart-item {
        grid-template-columns: 68px minmax(0, 1fr) 26px;
        gap: 9px;
        min-height: 88px;
        padding: 9px;
        border-radius: 16px;
    }

    .cart-drawer .goemotion-mini-cart-thumb {
        width: 68px;
        height: 68px;
        min-width: 68px;
        border-radius: 14px;
    }

    .cart-drawer .goemotion-mini-cart-thumb img,
    .cart-drawer .goemotion-mini-cart .goemotion-mini-cart-item img,
    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart-item img {
        border-radius: 14px;
        padding: 6px;
    }

    .cart-drawer .goemotion-mini-cart-name,
    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart-item a.goemotion-mini-cart-name,
    .cart-drawer .goemotion-mini-cart-price-value,
    .cart-drawer .goemotion-mini-cart-price-value .amount,
    .cart-drawer .goemotion-mini-cart-price-value .woocommerce-Price-amount {
        font-size: 12.5px;
    }

    .cart-drawer .goemotion-mini-cart-footer {
        padding: 10px;
        border-radius: 17px;
    }

    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__buttons,
    .cart-drawer .goemotion-mini-cart-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 370px) {
    .cart-drawer .goemotion-mini-cart .goemotion-mini-cart-item,
    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart-item {
        grid-template-columns: 62px minmax(0, 1fr) 24px;
        gap: 8px;
    }

    .cart-drawer .goemotion-mini-cart-thumb {
        width: 62px;
        height: 62px;
        min-width: 62px;
    }

    .cart-drawer .goemotion-mini-cart-meta,
    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__total,
    .cart-drawer .goemotion-mini-cart-total-row {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 6px;
    }

    .cart-drawer .goemotion-mini-cart-total-value {
        text-align: left;
    }
}

/* v1.0.41 - keep mini-cart price label and dual-currency value on one readable row. */
.cart-drawer .goemotion-mini-cart .goemotion-mini-cart-item,
.cart-drawer .goemotion-mini-cart .woocommerce-mini-cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-areas: "thumb content";
    padding-right: 44px;
}

.cart-drawer .goemotion-mini-cart-remove,
.cart-drawer .goemotion-mini-cart .remove_from_cart_button {
    position: absolute;
    top: 10px;
    right: 10px;
}

.cart-drawer .goemotion-mini-cart-meta {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    gap: 6px;
}

.cart-drawer .goemotion-mini-cart-price {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 5px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    white-space: nowrap;
}

.cart-drawer .goemotion-mini-cart-price-label {
    flex: 0 0 auto;
    display: inline;
    line-height: 1.12;
    white-space: nowrap;
}

.cart-drawer .goemotion-mini-cart-price-value {
    flex: 0 1 auto;
    display: inline;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    white-space: nowrap;
}

.cart-drawer .goemotion-mini-cart-price-value .amount,
.cart-drawer .goemotion-mini-cart-price-value .woocommerce-Price-amount,
.cart-drawer .goemotion-mini-cart-price-value bdi,
.cart-drawer .goemotion-mini-cart .goemotion-mini-cart-price .amount,
.cart-drawer .goemotion-mini-cart .goemotion-mini-cart-price .woocommerce-Price-amount,
.cart-drawer .goemotion-mini-cart .goemotion-mini-cart-price bdi {
    display: inline;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

.cart-drawer .goemotion-mini-cart-qty {
    justify-self: start;
}

.cart-drawer .goemotion-mini-cart-total-row {
    grid-template-columns: auto max-content;
}

.cart-drawer .goemotion-mini-cart-total-value {
    justify-self: end;
    min-width: max-content;
    overflow: visible;
    white-space: nowrap;
}

.cart-drawer .goemotion-mini-cart-total-value .amount,
.cart-drawer .goemotion-mini-cart-total-value .woocommerce-Price-amount,
.cart-drawer .goemotion-mini-cart-total-value bdi {
    display: inline;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

@media (max-width: 560px) {
    .cart-drawer .goemotion-mini-cart .goemotion-mini-cart-item,
    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart-item {
        grid-template-columns: 66px minmax(0, 1fr);
        padding-right: 38px;
    }

    .cart-drawer .goemotion-mini-cart-thumb {
        width: 66px;
        height: 66px;
        min-width: 66px;
    }

    .cart-drawer .goemotion-mini-cart-price-value,
    .cart-drawer .goemotion-mini-cart-price-value .amount,
    .cart-drawer .goemotion-mini-cart-price-value .woocommerce-Price-amount,
    .cart-drawer .goemotion-mini-cart-total-value {
        font-size: 12px;
        letter-spacing: -.032em;
    }
}

@media (max-width: 370px) {
    .cart-drawer .goemotion-mini-cart .goemotion-mini-cart-item,
    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart-item {
        grid-template-columns: 58px minmax(0, 1fr);
        padding-right: 34px;
    }

    .cart-drawer .goemotion-mini-cart-thumb {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .cart-drawer .goemotion-mini-cart-price {
        gap: 4px;
    }

    .cart-drawer .goemotion-mini-cart-price-label {
        font-size: 10px;
        letter-spacing: .03em;
    }

    .cart-drawer .goemotion-mini-cart-price-value,
    .cart-drawer .goemotion-mini-cart-price-value .amount,
    .cart-drawer .goemotion-mini-cart-price-value .woocommerce-Price-amount,
    .cart-drawer .goemotion-mini-cart-total-value {
        font-size: 11.2px;
    }

    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__total,
    .cart-drawer .goemotion-mini-cart-total-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .cart-drawer .goemotion-mini-cart-total-value {
        min-width: 0;
        justify-self: end;
    }
}

/* v1.0.42 - modern responsive WooCommerce cart and checkout. */
body.woocommerce-cart,
body.woocommerce-checkout {
    background:
        radial-gradient(circle at 12% 12%, rgba(175,203,32,.14), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(0,0,0,.06), transparent 28%),
        #f7f8f9;
}

.woocommerce-cart .goemotion-content,
.woocommerce-checkout .goemotion-content,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
    width: min(1220px, calc(100% - 32px));
    margin-inline: auto;
}

.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-cart h1.entry-title,
.woocommerce-checkout h1.entry-title {
    margin: clamp(28px, 5vw, 72px) 0 clamp(18px, 3vw, 34px);
    color: #050505;
    font-family: var(--display-font, Montserrat, sans-serif);
    font-size: clamp(34px, 5.5vw, 72px);
    line-height: .95;
    letter-spacing: -.065em;
    font-weight: 950;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    color: #171717;
    font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error {
    margin: 0 0 16px;
    padding: 16px 18px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 14px 42px rgba(0,0,0,.06);
    backdrop-filter: blur(14px);
    color: #171717;
    font-size: 14px;
    line-height: 1.6;
}

.woocommerce-cart .woocommerce-message::before,
.woocommerce-cart .woocommerce-info::before,
.woocommerce-cart .woocommerce-error::before,
.woocommerce-checkout .woocommerce-message::before,
.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-error::before {
    color: #050505;
}

.woocommerce-cart .woocommerce-message .button,
.woocommerce-cart .woocommerce-info .button,
.woocommerce-checkout .woocommerce-message .button,
.woocommerce-checkout .woocommerce-info .button {
    float: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-right: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #050505;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

/* Cart layout */
.woocommerce-cart .woocommerce-cart-form {
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 30px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 26px 76px rgba(0,0,0,.08);
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.woocommerce-cart table.shop_table thead th,
.woocommerce-checkout table.shop_table thead th {
    padding: 18px 18px;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    background: #f7f8f9;
    color: #555;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table td,
.woocommerce-checkout table.shop_table th {
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
    vertical-align: middle;
}

.woocommerce-cart table.cart td {
    padding: 18px;
}

.woocommerce-cart table.cart tr:last-child td,
.woocommerce-checkout table.shop_table tr:last-child td,
.woocommerce-checkout table.shop_table tr:last-child th {
    border-bottom: 0;
}

.woocommerce-cart table.cart .product-remove {
    width: 54px;
    text-align: center;
}

.woocommerce-cart table.cart a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(0,0,0,.06);
    color: #050505;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.woocommerce-cart table.cart a.remove:hover,
.woocommerce-cart table.cart a.remove:focus-visible {
    transform: translateY(-1px);
    background: #050505;
    color: #fff;
}

.woocommerce-cart table.cart .product-thumbnail {
    width: 116px;
}

.woocommerce-cart table.cart .product-thumbnail img {
    width: 92px;
    height: 92px;
    display: block;
    object-fit: contain;
    border-radius: 22px;
    background: #f5f6f7;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.woocommerce-cart table.cart .product-name a {
    color: #050505;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -.025em;
    text-decoration: none;
}

.woocommerce-cart table.cart .product-name a:hover {
    color: #4a7000;
}

.woocommerce-cart table.cart .variation,
.woocommerce-cart table.cart .wc-item-meta {
    display: grid;
    gap: 4px;
    margin: 8px 0 0;
    color: #676767;
    font-size: 12px;
    line-height: 1.5;
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal,
.woocommerce-checkout table.shop_table .product-total,
.woocommerce-checkout table.shop_table tfoot td {
    color: #050505;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.025em;
    white-space: nowrap;
}

.woocommerce-cart table.cart .product-price .amount,
.woocommerce-cart table.cart .product-subtotal .amount,
.woocommerce-checkout table.shop_table .amount,
.woocommerce-checkout table.shop_table bdi {
    white-space: nowrap;
}

.woocommerce-cart .quantity {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.woocommerce-cart .quantity input.qty,
.woocommerce-checkout .quantity input.qty {
    width: 72px;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #050505;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    outline: none;
}

.woocommerce-cart table.cart td.actions {
    padding: 18px;
    background: #f7f8f9;
}

.woocommerce-cart table.cart td.actions .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(100%, 520px);
}

.woocommerce-cart table.cart td.actions .coupon label {
    display: none;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.woocommerce-cart table.cart td.actions .coupon .input-text:focus,
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
    border-color: rgba(175,203,32,.95);
    box-shadow: 0 0 0 4px rgba(175,203,32,.20);
}

.woocommerce-cart table.cart button.button,
.woocommerce-cart table.cart td.actions .coupon button.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout button.button,
.woocommerce-checkout #place_order,
.woocommerce-checkout a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    background: #050505;
    color: #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,.16);
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -.01em;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.woocommerce-cart table.cart button.button:hover,
.woocommerce-cart table.cart td.actions .coupon button.button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout button.button:hover,
.woocommerce-checkout #place_order:hover,
.woocommerce-checkout a.button:hover {
    transform: translateY(-2px);
    background: #111;
    color: #afcb20;
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.woocommerce-cart table.cart button.button:disabled,
.woocommerce-cart table.cart button.button:disabled[disabled],
.woocommerce-checkout button.button:disabled,
.woocommerce-checkout button.button:disabled[disabled] {
    opacity: .58;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.woocommerce-cart .cart-collaterals {
    float: none;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 24px;
    align-items: start;
    margin-top: 24px;
}

.woocommerce-cart .cart-collaterals::before {
    content: "";
    display: block;
    min-height: 1px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
    margin-left: auto;
    padding: 24px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 0%, rgba(175,203,32,.18), transparent 32%),
        rgba(255,255,255,.94);
    box-shadow: 0 26px 76px rgba(0,0,0,.08);
}

.woocommerce-cart .cart_totals h2 {
    margin: 0 0 16px;
    color: #050505;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.045em;
    font-weight: 950;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    background: transparent;
    color: #151515;
    text-align: left;
}

.woocommerce-cart .cart_totals table.shop_table td {
    text-align: right;
    font-weight: 900;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
    padding-top: 18px;
    border-bottom: 0;
    color: #050505;
    font-size: 18px;
    font-weight: 950;
}

.woocommerce-cart .cart_totals .woocommerce-shipping-methods {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.woocommerce-cart .cart_totals .woocommerce-shipping-methods li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.woocommerce-cart .wc-proceed-to-checkout {
    display: grid;
    gap: 10px;
    padding: 18px 0 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    min-height: 56px;
    margin: 0;
    font-size: 15px;
}

/* Checkout layout */
.woocommerce-checkout form.checkout.woocommerce-checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 24px;
    align-items: start;
}

.woocommerce-checkout .col2-set {
    float: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    float: none;
    width: auto;
    margin: 0;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .woocommerce-form-coupon,
.woocommerce-checkout .checkout_coupon {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 30px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 70px rgba(0,0,0,.075);
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
    padding: clamp(20px, 3vw, 30px);
}

.woocommerce-checkout #order_review_heading {
    margin: 0 0 14px;
    padding: 22px 24px;
    color: #050505;
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: -.045em;
    font-weight: 950;
}

.woocommerce-checkout #order_review {
    position: sticky;
    top: calc(var(--header-sticky-height, 112px) + 18px);
    overflow: hidden;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
    margin: 0 0 20px;
    color: #050505;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.08;
    letter-spacing: -.05em;
    font-weight: 950;
}

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

.woocommerce-checkout .form-row,
.woocommerce-checkout .woocommerce form .form-row {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
}

.woocommerce-checkout .form-row-wide,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #shipping_address_1_field,
.woocommerce-checkout #shipping_address_2_field,
.woocommerce-checkout #order_comments_field,
.woocommerce-checkout .notes,
.woocommerce-checkout .create-account,
.woocommerce-checkout .woocommerce-account-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
    grid-column: 1 / -1;
}

.woocommerce-checkout .form-row label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 8px;
    color: #292929;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.woocommerce-checkout .form-row .required {
    color: #4d7300;
    text-decoration: none;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container--default .select2-selection--single {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 18px;
    background: #fff;
    color: #101010;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 700;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout select {
    padding: 0 14px;
}

.woocommerce-checkout textarea {
    min-height: 116px;
    padding: 14px;
    resize: vertical;
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    padding-inline: 14px 34px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    color: #101010;
    line-height: 1.4;
    font-weight: 700;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}

.woocommerce-checkout .woocommerce-invalid input.input-text,
.woocommerce-checkout .woocommerce-invalid textarea,
.woocommerce-checkout .woocommerce-invalid select,
.woocommerce-checkout .woocommerce-invalid .select2-selection {
    border-color: rgba(203, 46, 46, .55);
    box-shadow: 0 0 0 4px rgba(203, 46, 46, .10);
}

.woocommerce-checkout .woocommerce-validated input.input-text,
.woocommerce-checkout .woocommerce-validated textarea,
.woocommerce-checkout .woocommerce-validated select,
.woocommerce-checkout .woocommerce-validated .select2-selection {
    border-color: rgba(94, 144, 0, .42);
}

.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .woocommerce-form-coupon,
.woocommerce-checkout .checkout_coupon {
    margin: 0 0 16px;
    padding: 18px;
}

.woocommerce-checkout .checkout_coupon p {
    margin: 0 0 12px;
    color: #686868;
    font-size: 14px;
    line-height: 1.6;
}

.woocommerce-checkout .checkout_coupon .form-row {
    display: inline-flex;
    vertical-align: top;
    margin-right: 10px;
    margin-bottom: 0;
}

.woocommerce-checkout .checkout_coupon .form-row-first {
    width: min(100%, 360px);
}

.woocommerce-checkout .checkout_coupon .form-row-last {
    width: auto;
}

.woocommerce-checkout #order_review table.shop_table {
    background: transparent;
}

.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    background: transparent;
}

.woocommerce-checkout #order_review table.shop_table thead th {
    background: #f7f8f9;
    color: #555;
    font-size: 11px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.woocommerce-checkout #order_review table.shop_table .product-name {
    color: #151515;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.woocommerce-checkout #order_review table.shop_table .product-quantity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 24px;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(0,0,0,.06);
    color: #050505;
    font-size: 11px;
    font-weight: 950;
}

.woocommerce-checkout #order_review table.shop_table tfoot th {
    color: #555;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.woocommerce-checkout #order_review table.shop_table tfoot .order-total th,
.woocommerce-checkout #order_review table.shop_table tfoot .order-total td {
    color: #050505;
    font-size: 18px;
    font-weight: 950;
}

.woocommerce-checkout #payment {
    padding: 20px;
    border-radius: 0 0 30px 30px;
    background:
        radial-gradient(circle at 90% 0%, rgba(175,203,32,.16), transparent 34%),
        #f7f8f9;
}

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

.woocommerce-checkout #payment ul.payment_methods li {
    margin: 0;
    padding: 15px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.86);
}

.woocommerce-checkout #payment ul.payment_methods li label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #050505;
    font-size: 14px;
    font-weight: 900;
}

.woocommerce-checkout #payment div.payment_box {
    margin: 12px 0 0;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(0,0,0,.055);
    color: #5a5a5a;
    font-size: 13px;
    line-height: 1.6;
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: rgba(0,0,0,.055);
}

.woocommerce-checkout #payment .place-order {
    margin: 0;
    padding: 18px 0 0;
}

.woocommerce-checkout #payment .place-order .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 16px;
    color: #5f5f5f;
    font-size: 13px;
    line-height: 1.6;
}

.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 58px;
    font-size: 15px;
}

.woocommerce-cart .return-to-shop a.button,
.woocommerce-checkout .return-to-shop a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #050505;
    color: #fff;
    font-weight: 950;
    text-decoration: none;
}

/* Compact responsive cart cards */
@media (max-width: 980px) {
    .woocommerce-cart .cart-collaterals {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart .cart-collaterals::before {
        display: none;
    }

    .woocommerce-checkout form.checkout.woocommerce-checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout #order_review {
        position: static;
    }
}

@media (max-width: 760px) {
    .woocommerce-cart .goemotion-content,
    .woocommerce-checkout .goemotion-content,
    .woocommerce-cart .entry-content,
    .woocommerce-checkout .entry-content {
        width: min(100% - 22px, 1220px);
    }

    .woocommerce-cart .woocommerce-cart-form {
        padding: 10px;
        border-radius: 24px;
    }

    .woocommerce-cart table.cart thead {
        display: none;
    }

    .woocommerce-cart table.cart,
    .woocommerce-cart table.cart tbody,
    .woocommerce-cart table.cart tr,
    .woocommerce-cart table.cart td {
        display: block;
        width: 100%;
    }

    .woocommerce-cart table.cart tr.cart_item {
        position: relative;
        display: grid;
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 14px;
        margin-bottom: 10px;
        padding: 12px 48px 12px 12px;
        border: 1px solid rgba(0,0,0,.07);
        border-radius: 22px;
        background: #fff;
        box-shadow: 0 12px 32px rgba(0,0,0,.05);
    }

    .woocommerce-cart table.cart tr.cart_item td {
        padding: 0;
        border: 0;
        text-align: left;
    }

    .woocommerce-cart table.cart .product-remove {
        position: absolute;
        top: 12px;
        right: 12px;
        width: auto;
    }

    .woocommerce-cart table.cart .product-thumbnail {
        grid-row: span 4;
        width: auto;
    }

    .woocommerce-cart table.cart .product-thumbnail img {
        width: 86px;
        height: 86px;
        border-radius: 18px;
    }

    .woocommerce-cart table.cart .product-name {
        padding-right: 4px;
    }

    .woocommerce-cart table.cart .product-price::before,
    .woocommerce-cart table.cart .product-quantity::before,
    .woocommerce-cart table.cart .product-subtotal::before {
        display: inline-flex;
        margin-right: 6px;
        color: #6d6d6d;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .05em;
        text-transform: uppercase;
    }

    .woocommerce-cart table.cart .product-price::before {
        content: "Cena:";
    }

    .woocommerce-cart table.cart .product-quantity::before {
        content: "Količina:";
    }

    .woocommerce-cart table.cart .product-subtotal::before {
        content: "Skupaj:";
    }

    .woocommerce-cart table.cart .product-price,
    .woocommerce-cart table.cart .product-subtotal {
        white-space: normal;
    }

    .woocommerce-cart table.cart .product-price .amount,
    .woocommerce-cart table.cart .product-subtotal .amount {
        white-space: nowrap;
    }

    .woocommerce-cart table.cart td.actions {
        padding: 14px 0 0;
        background: transparent;
    }

    .woocommerce-cart table.cart td.actions .coupon {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-bottom: 10px;
    }

    .woocommerce-cart table.cart td.actions .coupon .input-text,
    .woocommerce-cart table.cart td.actions .coupon button.button,
    .woocommerce-cart table.cart td.actions > button.button {
        width: 100%;
    }

    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout .checkout_coupon .form-row,
    .woocommerce-checkout .checkout_coupon .form-row-first,
    .woocommerce-checkout .checkout_coupon .form-row-last {
        display: block;
        width: 100%;
        margin: 0 0 10px;
    }

    .woocommerce-checkout .checkout_coupon button.button {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .woocommerce-cart table.cart tr.cart_item {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 12px;
        padding-right: 42px;
    }

    .woocommerce-cart table.cart .product-thumbnail img {
        width: 74px;
        height: 74px;
        border-radius: 16px;
    }

    .woocommerce-cart table.cart .product-name a {
        font-size: 13px;
    }

    .woocommerce-cart table.cart .product-price,
    .woocommerce-cart table.cart .product-subtotal,
    .woocommerce-checkout table.shop_table .product-total,
    .woocommerce-checkout table.shop_table tfoot td {
        font-size: 12px;
        letter-spacing: -.03em;
    }

    .woocommerce-cart .cart-collaterals .cart_totals,
    .woocommerce-checkout .woocommerce-billing-fields,
    .woocommerce-checkout .woocommerce-shipping-fields,
    .woocommerce-checkout .woocommerce-additional-fields,
    .woocommerce-checkout #payment {
        border-radius: 22px;
    }

    .woocommerce-checkout #order_review table.shop_table th,
    .woocommerce-checkout #order_review table.shop_table td {
        padding: 13px 14px;
    }
}

/* v1.0.43 - user friendly Cart/Checkout structure and upgraded homepage trust cards. */
.confidence-card {
    display: flex;
    flex-direction: column;
    min-height: 198px;
    padding: clamp(22px, 2.4vw, 30px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.confidence-card:hover,
.confidence-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(175, 203, 32, .54);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .10);
}

.confidence-card .confidence-card__icon {
    display: inline-grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #050505;
    color: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .18), 0 0 0 8px rgba(175, 203, 32, .16);
}

.confidence-card .confidence-card__icon::before {
    content: none;
}

.confidence-card .confidence-card__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.confidence-card strong {
    max-width: 95%;
    font-size: clamp(18px, 1.55vw, 24px);
    line-height: 1.14;
    letter-spacing: -.035em;
}

.confidence-card p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.68;
}

@media (max-width: 900px) {
    .confidence-grid {
        grid-template-columns: 1fr;
    }

    .confidence-card {
        min-height: 0;
    }
}

/* Faster, clearer WooCommerce cart/checkout flow. */
body.woocommerce-cart,
body.woocommerce-checkout {
    background: #f6f7f8;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    --go-wc-card: #ffffff;
    --go-wc-ink: #050505;
    --go-wc-muted: #646464;
    --go-wc-border: rgba(0, 0, 0, .09);
    --go-wc-soft: #f5f6f7;
    --go-wc-accent: #afcb20;
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .woocommerce-form-coupon,
.woocommerce-checkout .checkout_coupon {
    backdrop-filter: none;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
}

.woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    gap: clamp(18px, 2.2vw, 30px);
    align-items: start;
}

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

.woocommerce-cart .woocommerce-cart-form {
    grid-column: 1;
    border-radius: 28px;
    background: var(--go-wc-card);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .07);
}

.woocommerce-cart .cart-collaterals {
    grid-column: 2;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    position: sticky;
    top: calc(var(--header-offset, 116px) + 22px);
}

.woocommerce-cart .cart-collaterals::before {
    display: none;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
    float: none;
    padding: clamp(20px, 2.4vw, 28px);
    border: 1px solid var(--go-wc-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(175,203,32,.18), transparent 32%),
        #fff;
    box-shadow: 0 18px 54px rgba(0, 0, 0, .08);
}

.woocommerce-cart .cart_totals h2,
.woocommerce-checkout #order_review_heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--go-wc-ink);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.1;
    letter-spacing: -.045em;
    font-weight: 950;
}

.woocommerce-cart .cart_totals h2::before,
.woocommerce-checkout #order_review_heading::before {
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(175,203,32,.95), rgba(201,222,78,.85)),
        #afcb20;
    box-shadow: 0 10px 24px rgba(90, 130, 0, .16);
}

.woocommerce-cart table.shop_table thead th,
.woocommerce-checkout table.shop_table thead th {
    background: var(--go-wc-soft);
    color: #505050;
}

.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table td,
.woocommerce-checkout table.shop_table th {
    border-bottom-color: var(--go-wc-border);
}

.woocommerce-cart table.cart .product-thumbnail img {
    width: 86px;
    height: 86px;
    border-radius: 20px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .07), 0 10px 26px rgba(0, 0, 0, .055);
}

.woocommerce-cart table.cart .product-name a {
    display: inline-block;
    max-width: 420px;
    color: var(--go-wc-ink);
    font-size: 15px;
    line-height: 1.38;
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal,
.woocommerce-checkout table.shop_table .product-total,
.woocommerce-checkout table.shop_table tfoot td {
    font-size: 13px;
    letter-spacing: -.018em;
}

.woocommerce-cart table.cart .product-price .amount,
.woocommerce-cart table.cart .product-subtotal .amount,
.woocommerce-checkout table.shop_table .amount,
.woocommerce-checkout table.shop_table bdi {
    white-space: nowrap;
}

.woocommerce-cart .quantity {
    min-height: 38px;
    border-color: var(--go-wc-border);
    box-shadow: none;
}

.woocommerce-cart .quantity input.qty,
.woocommerce-checkout .quantity input.qty {
    min-height: 36px;
}

.woocommerce-cart table.cart td.actions {
    background: #fafafa;
}

.woocommerce-cart table.cart td.actions .coupon {
    width: min(100%, 620px);
}

.woocommerce-cart table.cart td.actions .coupon::before {
    content: "Koda za popust";
    flex: 0 0 auto;
    color: #585858;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
    padding: 14px 0;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, .12);
    font-size: 20px;
    letter-spacing: -.035em;
}

.woocommerce-cart .wc-proceed-to-checkout {
    display: grid;
    gap: 10px;
    padding: 18px 0 0;
}

.woocommerce-cart .wc-proceed-to-checkout::before {
    content: "Varno naročilo · jasna dostava · servisna podpora";
    display: block;
    color: var(--go-wc-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
    min-height: 58px;
    border-radius: 18px;
    background: #050505;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .17);
}

.woocommerce-cart table.cart button.button,
.woocommerce-cart table.cart td.actions .coupon button.button,
.woocommerce-checkout button.button,
.woocommerce-checkout a.button {
    box-shadow: 0 10px 26px rgba(0, 0, 0, .11);
}

.woocommerce-checkout form.checkout.woocommerce-checkout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 460px);
    gap: clamp(18px, 2.3vw, 32px);
    align-items: start;
}

.woocommerce-checkout #customer_details {
    grid-column: 1;
    min-width: 0;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    grid-column: 2;
}

.woocommerce-checkout #order_review_heading {
    margin: 0;
    padding: 22px 24px 0;
    border: 1px solid var(--go-wc-border);
    border-bottom: 0;
    border-radius: 28px 28px 0 0;
    background: #fff;
}

.woocommerce-checkout #order_review {
    position: sticky;
    top: calc(var(--header-offset, 116px) + 22px);
    overflow: hidden;
    border: 1px solid var(--go-wc-border);
    border-top: 0;
    border-radius: 0 0 28px 28px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(0, 0, 0, .08);
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .woocommerce-form-coupon,
.woocommerce-checkout .checkout_coupon {
    border-radius: 28px;
    background: #fff;
    border-color: var(--go-wc-border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .065);
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
    position: relative;
    padding-left: 42px;
}

.woocommerce-checkout .woocommerce-billing-fields h3::before,
.woocommerce-checkout .woocommerce-shipping-fields h3::before,
.woocommerce-checkout .woocommerce-additional-fields h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 11px;
    transform: translateY(-50%);
    background: #050505;
    box-shadow: inset 0 0 0 9px rgba(175,203,32,.92);
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container--default .select2-selection--single,
.woocommerce-cart table.cart td.actions .coupon .input-text {
    border-color: var(--go-wc-border);
    box-shadow: none;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single,
.woocommerce-cart table.cart td.actions .coupon .input-text:focus {
    border-color: rgba(108, 154, 0, .46);
    box-shadow: 0 0 0 4px rgba(175,203,32,.20);
}

.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
    padding: 14px 22px;
}

.woocommerce-checkout #order_review table.shop_table .product-name {
    padding-right: 12px;
}

.woocommerce-checkout #order_review table.shop_table .product-total {
    text-align: right;
}

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

.woocommerce-checkout #payment ul.payment_methods li {
    border-color: var(--go-wc-border);
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .045);
}

.woocommerce-checkout #payment div.payment_box {
    background: #f2f3f4;
}

@media (max-width: 1080px) {
    .woocommerce-cart .woocommerce,
    .woocommerce-checkout form.checkout.woocommerce-checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals,
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        grid-column: 1;
    }

    .woocommerce-cart .cart-collaterals,
    .woocommerce-checkout #order_review {
        position: static;
    }
}

@media (max-width: 760px) {
    .woocommerce-cart .woocommerce-cart-form {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .woocommerce-cart table.cart tr.cart_item {
        grid-template-columns: 82px minmax(0, 1fr);
        padding: 12px 44px 12px 12px;
    }

    .woocommerce-cart table.cart .product-thumbnail img {
        width: 82px;
        height: 82px;
    }

    .woocommerce-cart table.cart .product-price,
    .woocommerce-cart table.cart .product-subtotal {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }

    .woocommerce-cart table.cart .product-price .amount,
    .woocommerce-cart table.cart .product-subtotal .amount {
        text-align: right;
    }

    .woocommerce-cart table.cart td.actions .coupon::before {
        align-self: flex-start;
    }

    .woocommerce-cart .cart-collaterals .cart_totals,
    .woocommerce-checkout .woocommerce-billing-fields,
    .woocommerce-checkout .woocommerce-shipping-fields,
    .woocommerce-checkout .woocommerce-additional-fields,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        border-radius: 24px;
    }

    .woocommerce-checkout #order_review_heading {
        border-bottom: 1px solid var(--go-wc-border);
        padding: 20px 20px 14px;
    }

    .woocommerce-checkout #order_review {
        border-top: 1px solid var(--go-wc-border);
    }
}

@media (max-width: 430px) {
    .woocommerce-cart table.cart tr.cart_item {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 10px;
        padding-right: 40px;
    }

    .woocommerce-cart table.cart .product-thumbnail img {
        width: 70px;
        height: 70px;
    }

    .woocommerce-cart table.cart .product-price,
    .woocommerce-cart table.cart .product-subtotal,
    .woocommerce-checkout table.shop_table .product-total,
    .woocommerce-checkout table.shop_table tfoot td {
        font-size: 11.5px;
    }

    .woocommerce-cart .cart_totals .order-total th,
    .woocommerce-cart .cart_totals .order-total td {
        font-size: 17px;
    }
}


/* v1.0.44 - remove every promo media shadow effect. */
.goemotion-home-main .promo-media,
.goemotion-home-main .promo-media::before,
.goemotion-home-main .promo-media::after,
.promo-media,
.promo-media::before,
.promo-media::after {
    box-shadow: none;
}

.goemotion-home-main .promo-media img,
.goemotion-home-main .promo-media .product-placeholder-large,
.promo-media img,
.promo-media .product-placeholder-large {
    box-shadow: none;
    filter: none;
}

/* v1.0.46 - fully structured, fast Cart and Checkout layouts. */
body.woocommerce-cart,
body.woocommerce-checkout {
    background: #f6f7f8;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    display: block;
    width: min(1220px, calc(100% - 32px));
    margin-inline: auto;
}

.woocommerce-cart .woocommerce::before,
.woocommerce-cart .woocommerce::after,
.woocommerce-checkout .woocommerce::before,
.woocommerce-checkout .woocommerce::after,
.goemotion-cart-layout::before,
.goemotion-cart-layout::after,
.goemotion-checkout-layout::before,
.goemotion-checkout-layout::after {
    content: none;
    display: none;
}

.goemotion-cart-layout,
.woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
    --go-flow-ink: #050505;
    --go-flow-text: #171717;
    --go-flow-muted: #666;
    --go-flow-line: rgba(0, 0, 0, .09);
    --go-flow-soft: #f4f5f6;
    --go-flow-card: #fff;
    --go-flow-accent: #afcb20;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
    gap: clamp(18px, 2.4vw, 34px);
    align-items: start;
    width: 100%;
    max-width: none;
}

.goemotion-cart-main,
.goemotion-checkout-main,
.goemotion-cart-summary,
.goemotion-checkout-summary {
    min-width: 0;
}

.goemotion-cart-heading,
.goemotion-checkout-heading,
.goemotion-cart-summary__head,
.goemotion-checkout-summary__head {
    border: 1px solid var(--go-flow-line);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .055);
}

.goemotion-cart-heading,
.goemotion-checkout-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    margin-bottom: 16px;
    padding: clamp(20px, 2.4vw, 30px);
    border-radius: 28px;
}

.goemotion-checkout-heading {
    display: block;
}

.goemotion-checkout-summary__head > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #4c4c4c;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.goemotion-checkout-summary__head > span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--go-flow-accent);
    box-shadow: 0 0 0 5px rgba(175, 203, 32, .22);
}

.goemotion-cart-heading h2,
.goemotion-checkout-heading h2,
.goemotion-cart-summary__head strong,
.goemotion-checkout-summary__head h3 {
    margin: 8px 0 0;
    color: var(--go-flow-ink);
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.04;
    letter-spacing: -.055em;
    font-weight: 950;
}

.goemotion-checkout-heading p {
    max-width: 640px;
    margin: 10px 0 0;
    color: var(--go-flow-muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
}

.goemotion-cart-count {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #050505;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.goemotion-cart-form,
.goemotion-checkout-card,
.goemotion-cart-summary,
.goemotion-checkout-summary {
    border: 1px solid var(--go-flow-line);
    border-radius: 30px;
    background: var(--go-flow-card);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .065);
}

.goemotion-cart-form {
    overflow: hidden;
}

.goemotion-cart-items {
    display: grid;
    gap: 0;
}

.goemotion-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 18px;
    min-width: 0;
    padding: clamp(16px, 2vw, 22px);
    border-bottom: 1px solid var(--go-flow-line);
    background: #fff;
}

.goemotion-cart-item:last-child {
    border-bottom: 0;
}

.goemotion-cart-item__media {
    align-self: start;
}

.goemotion-cart-item__media a,
.goemotion-cart-item__media img {
    display: block;
}

.goemotion-cart-item__media img {
    width: 118px;
    height: 118px;
    object-fit: contain;
    border-radius: 22px;
    background: #f7f8f9;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.goemotion-cart-item__content {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.goemotion-cart-item__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 12px;
    align-items: start;
}

.goemotion-cart-item__name {
    margin: 0;
    color: var(--go-flow-ink);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.32;
    letter-spacing: -.025em;
    font-weight: 900;
}

.goemotion-cart-item__name a {
    color: inherit;
    text-decoration: none;
}

.goemotion-cart-item__name a:hover,
.goemotion-cart-item__name a:focus-visible {
    color: #3c5d00;
}

.goemotion-cart-item__remove,
.woocommerce .goemotion-cart-item__remove.remove {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-left: auto;
    border-radius: 999px;
    background: #f1f2f3;
    color: #111;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.goemotion-cart-item__remove:hover,
.goemotion-cart-item__remove:focus-visible,
.woocommerce .goemotion-cart-item__remove.remove:hover,
.woocommerce .goemotion-cart-item__remove.remove:focus-visible {
    transform: translateY(-1px);
    background: #050505;
    color: #fff;
}

.goemotion-cart-item__meta,
.goemotion-cart-item__meta dl,
.goemotion-cart-item__meta p,
.goemotion-cart-item__backorder {
    margin: 0;
    color: var(--go-flow-muted);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 650;
}

.goemotion-cart-item__meta dl.variation {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.goemotion-cart-item__meta dt,
.goemotion-cart-item__meta dd {
    margin: 0;
}

.goemotion-cart-item__details {
    display: grid;
    grid-template-columns: minmax(145px, 1fr) minmax(145px, auto) minmax(145px, 1fr);
    gap: 10px;
    align-items: stretch;
}

.goemotion-cart-item__price,
.goemotion-cart-item__quantity,
.goemotion-cart-item__subtotal {
    display: grid;
    align-content: center;
    gap: 6px;
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 18px;
    background: var(--go-flow-soft);
}

.goemotion-cart-item__price > span,
.goemotion-cart-item__quantity > span,
.goemotion-cart-item__subtotal > span {
    color: #707070;
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.goemotion-cart-item__price strong,
.goemotion-cart-item__subtotal strong {
    min-width: 0;
    color: var(--go-flow-ink);
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: -.025em;
    font-weight: 950;
    overflow-wrap: anywhere;
}

.goemotion-cart-item__price .amount,
.goemotion-cart-item__subtotal .amount,
.goemotion-cart-summary .amount,
.goemotion-checkout-summary .amount {
    white-space: nowrap;
}

.goemotion-cart-item__quantity .quantity {
    width: fit-content;
    min-width: 112px;
    min-height: 40px;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 999px;
    background: #fff;
    box-shadow: none;
}

.goemotion-cart-item__quantity input.qty {
    min-height: 38px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-cart-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
    padding: clamp(16px, 2vw, 22px);
    border-top: 1px solid var(--go-flow-line);
    background: #fafafa;
}

.goemotion-cart-coupon {
    min-width: 0;
}

.goemotion-cart-coupon label {
    display: block;
    margin-bottom: 8px;
    color: #525252;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.goemotion-cart-coupon__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.goemotion-cart-coupon input.input-text,
.goemotion-cart-coupon .input-text {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
}

.goemotion-cart-coupon button.button,
.goemotion-cart-update,
.woocommerce-cart .goemotion-cart-update.button {
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 16px;
    background: #050505;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: none;
}

.goemotion-cart-update {
    background: #e9ecef;
    color: #050505;
}

.goemotion-cart-summary,
.goemotion-checkout-summary {
    position: sticky;
    top: calc(var(--header-offset, 116px) + 22px);
    overflow: hidden;
}

.goemotion-cart-summary__head,
.goemotion-checkout-summary__head {
    margin: 0;
    padding: 22px 24px;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none;
    background: radial-gradient(circle at 100% 0%, rgba(175, 203, 32, .22), transparent 34%), #fff;
}

.goemotion-cart-summary .cart-collaterals,
.goemotion-cart-summary .cart_totals {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-cart-summary .cart_totals h2 {
    display: none;
}

.goemotion-cart-summary table.shop_table,
.goemotion-checkout-summary table.shop_table {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.goemotion-cart-summary table.shop_table tbody,
.goemotion-checkout-summary table.shop_table tbody,
.goemotion-cart-summary table.shop_table tfoot,
.goemotion-checkout-summary table.shop_table tfoot {
    display: block;
}

.goemotion-cart-summary table.shop_table tr,
.goemotion-checkout-summary table.shop_table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 15px 24px;
    border-bottom: 1px solid var(--go-flow-line);
}

.goemotion-cart-summary table.shop_table th,
.goemotion-cart-summary table.shop_table td,
.goemotion-checkout-summary table.shop_table th,
.goemotion-checkout-summary table.shop_table td {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--go-flow-text);
    font-size: 13px;
    line-height: 1.45;
}

.goemotion-cart-summary table.shop_table td,
.goemotion-checkout-summary table.shop_table td,
.goemotion-checkout-summary table.shop_table .product-total {
    text-align: right;
    font-weight: 900;
}

.goemotion-cart-summary .order-total,
.goemotion-checkout-summary .order-total {
    background: #f5f6f7;
}

.goemotion-cart-summary .order-total th,
.goemotion-cart-summary .order-total td,
.goemotion-checkout-summary .order-total th,
.goemotion-checkout-summary .order-total td {
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -.03em;
}

.goemotion-cart-summary .wc-proceed-to-checkout {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 20px 24px 24px;
}

.goemotion-cart-summary .wc-proceed-to-checkout a.checkout-button,
.goemotion-checkout-summary #place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 0 20px;
    border: 0;
    border-radius: 18px;
    background: #050505;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: -.01em;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.goemotion-cart-summary .wc-proceed-to-checkout a.checkout-button:hover,
.goemotion-cart-summary .wc-proceed-to-checkout a.checkout-button:focus-visible,
.goemotion-checkout-summary #place_order:hover,
.goemotion-checkout-summary #place_order:focus-visible {
    transform: translateY(-1px);
    background: #111;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .20);
}

.goemotion-cart-help {
    padding: 16px 24px 24px;
    border-top: 1px solid var(--go-flow-line);
    background: #fff;
}

.goemotion-cart-help span {
    display: block;
    color: var(--go-flow-ink);
    font-size: 13px;
    font-weight: 950;
}

.goemotion-cart-help p {
    margin: 6px 0 0;
    color: var(--go-flow-muted);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 650;
}

.woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
    margin-top: 0;
}

.goemotion-checkout-fields {
    display: grid;
    gap: 16px;
}

.goemotion-checkout-card {
    padding: clamp(20px, 2.4vw, 30px);
}

.goemotion-checkout-card h3,
.goemotion-checkout-card .woocommerce-billing-fields h3,
.goemotion-checkout-card .woocommerce-shipping-fields h3,
.goemotion-checkout-card .woocommerce-additional-fields h3 {
    margin: 0 0 18px;
    color: var(--go-flow-ink);
    font-size: clamp(21px, 2vw, 30px);
    line-height: 1.1;
    letter-spacing: -.045em;
    font-weight: 950;
}

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

.goemotion-checkout-card .form-row,
.goemotion-checkout-card p.form-row {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.goemotion-checkout-card .form-row-wide,
.goemotion-checkout-card #billing_address_1_field,
.goemotion-checkout-card #billing_address_2_field,
.goemotion-checkout-card #shipping_address_1_field,
.goemotion-checkout-card #shipping_address_2_field,
.goemotion-checkout-card #order_comments_field {
    grid-column: 1 / -1;
}

.goemotion-checkout-card label {
    margin-bottom: 7px;
    color: #454545;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: -.01em;
}

.goemotion-checkout-card input.input-text,
.goemotion-checkout-card textarea,
.goemotion-checkout-card select,
.goemotion-checkout-card .select2-container--default .select2-selection--single,
.goemotion-checkout .checkout_coupon input.input-text {
    width: 100%;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 16px;
    background: #f8f9fa;
    color: var(--go-flow-ink);
    font-size: 14px;
    font-weight: 650;
    box-shadow: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.goemotion-checkout-card textarea {
    min-height: 118px;
    padding-block: 14px;
    resize: vertical;
}

.goemotion-checkout-card input.input-text:focus,
.goemotion-checkout-card textarea:focus,
.goemotion-checkout-card select:focus,
.goemotion-checkout-card .select2-container--default.select2-container--open .select2-selection--single,
.goemotion-checkout .checkout_coupon input.input-text:focus {
    outline: 0;
    border-color: rgba(82, 120, 0, .45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(175, 203, 32, .18);
}

.goemotion-checkout-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    color: var(--go-flow-ink);
    line-height: 48px;
}

.goemotion-checkout-card .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

.goemotion-checkout-card .woocommerce-account-fields,
.goemotion-checkout-card .woocommerce-shipping-fields,
.goemotion-checkout-card .woocommerce-additional-fields {
    margin-top: 18px;
}

.goemotion-checkout-summary #order_review_heading,
.woocommerce-checkout .goemotion-checkout-summary #order_review_heading {
    margin: 8px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-checkout-review {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-checkout-summary table.shop_table thead {
    display: none;
}

.goemotion-checkout-summary table.shop_table .cart_item {
    grid-template-columns: minmax(0, 1fr) auto;
}

.goemotion-checkout-summary table.shop_table .product-name {
    min-width: 0;
    color: var(--go-flow-text);
    font-weight: 800;
}

.goemotion-checkout-summary table.shop_table .product-name strong,
.goemotion-checkout-summary table.shop_table .product-quantity {
    color: var(--go-flow-muted);
    font-weight: 900;
}

.goemotion-checkout-summary #payment,
.woocommerce-checkout .goemotion-checkout-summary #payment {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #fff;
}

.goemotion-checkout-summary #payment ul.payment_methods {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 18px 24px;
    border-top: 1px solid var(--go-flow-line);
    border-bottom: 1px solid var(--go-flow-line);
}

.goemotion-checkout-summary #payment ul.payment_methods li {
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 18px;
    background: #f8f9fa;
    box-shadow: none;
}

.goemotion-checkout-summary #payment ul.payment_methods li label {
    color: var(--go-flow-ink);
    font-weight: 900;
}

.goemotion-checkout-summary #payment div.payment_box {
    margin: 12px 0 0;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    color: var(--go-flow-muted);
    font-size: 13px;
    line-height: 1.55;
}

.goemotion-checkout-summary #payment div.form-row {
    margin: 0;
    padding: 20px 24px 24px;
}

.goemotion-checkout-summary .woocommerce-privacy-policy-text {
    margin-bottom: 14px;
    color: var(--go-flow-muted);
    font-size: 12px;
    line-height: 1.6;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .woocommerce-form-coupon,
.woocommerce-checkout .checkout_coupon {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .055);
}

.woocommerce-checkout .checkout_coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    padding: 18px;
    background: #fff;
}

.woocommerce-checkout .checkout_coupon p:first-child {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--go-flow-muted, #666);
    font-weight: 650;
}

.woocommerce-checkout .checkout_coupon .form-row,
.woocommerce-checkout .checkout_coupon .form-row-first,
.woocommerce-checkout .checkout_coupon .form-row-last {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
}

.woocommerce-checkout .checkout_coupon button.button {
    min-height: 50px;
    padding: 0 18px;
    border: 0;
    border-radius: 16px;
    background: #050505;
    color: #fff;
    font-weight: 950;
}

@media (max-width: 1120px) {
    .goemotion-cart-layout,
    .woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
        grid-template-columns: 1fr;
    }

    .goemotion-cart-summary,
    .goemotion-checkout-summary {
        position: static;
    }
}

@media (max-width: 760px) {
    .woocommerce-cart .woocommerce,
    .woocommerce-checkout .woocommerce {
        width: min(100% - 22px, 1220px);
    }

    .goemotion-cart-heading,
    .goemotion-checkout-heading {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 24px;
    }

    .goemotion-cart-item {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
    }

    .goemotion-cart-item__media img {
        width: 92px;
        height: 92px;
        border-radius: 18px;
    }

    .goemotion-cart-item__top {
        grid-template-columns: minmax(0, 1fr) 30px;
    }

    .goemotion-cart-item__remove,
    .woocommerce .goemotion-cart-item__remove.remove {
        width: 30px;
        height: 30px;
    }

    .goemotion-cart-item__details {
        grid-template-columns: 1fr;
    }

    .goemotion-cart-item__price,
    .goemotion-cart-item__quantity,
    .goemotion-cart-item__subtotal {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
    }

    .goemotion-cart-item__price strong,
    .goemotion-cart-item__subtotal strong {
        text-align: right;
        font-size: 12px;
    }

    .goemotion-cart-item__quantity .quantity {
        justify-self: end;
    }

    .goemotion-cart-actions,
    .goemotion-cart-coupon__row,
    .woocommerce-checkout .checkout_coupon,
    .goemotion-checkout-card .woocommerce-billing-fields__field-wrapper,
    .goemotion-checkout-card .woocommerce-shipping-fields__field-wrapper,
    .goemotion-checkout-card .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    .goemotion-cart-coupon button.button,
    .goemotion-cart-update,
    .woocommerce-checkout .checkout_coupon button.button {
        width: 100%;
    }

    .goemotion-cart-summary table.shop_table tr,
    .goemotion-checkout-summary table.shop_table tr {
        padding-inline: 18px;
    }

    .goemotion-checkout-summary #payment ul.payment_methods,
    .goemotion-checkout-summary #payment div.form-row,
    .goemotion-cart-summary .wc-proceed-to-checkout,
    .goemotion-cart-help {
        padding-inline: 18px;
    }
}

@media (max-width: 430px) {
    .goemotion-cart-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 11px;
        padding: 12px;
    }

    .goemotion-cart-item__media img {
        width: 76px;
        height: 76px;
        border-radius: 16px;
    }

    .goemotion-cart-item__name {
        font-size: 13px;
    }

    .goemotion-cart-item__price,
    .goemotion-cart-item__quantity,
    .goemotion-cart-item__subtotal {
        padding: 10px;
        border-radius: 15px;
    }

    .goemotion-cart-item__price strong,
    .goemotion-cart-item__subtotal strong,
    .goemotion-cart-summary table.shop_table td,
    .goemotion-checkout-summary table.shop_table td {
        font-size: 11.5px;
    }

    .goemotion-cart-summary .order-total th,
    .goemotion-cart-summary .order-total td,
    .goemotion-checkout-summary .order-total th,
    .goemotion-checkout-summary .order-total td {
        font-size: 16px;
    }
}

/* v1.0.46 - Cart/Checkout structure polish based on the real site HTML. */
.woocommerce-cart .goemotion-content-box,
.woocommerce-checkout .goemotion-content-box {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto 18px;
    color: #050505;
    font-size: clamp(34px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -.07em;
    font-weight: 950;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    width: min(1220px, calc(100% - 32px));
    margin-inline: auto;
}

.woocommerce-cart .woocommerce::before,
.woocommerce-cart .woocommerce::after,
.woocommerce-checkout .woocommerce::before,
.woocommerce-checkout .woocommerce::after,
.goemotion-cart-layout::before,
.goemotion-cart-layout::after,
.goemotion-checkout-layout::before,
.goemotion-checkout-layout::after {
    content: none;
    display: none;
}

.goemotion-cart-layout,
.woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
    --go-flow-ink: #050505;
    --go-flow-text: #171717;
    --go-flow-muted: #626262;
    --go-flow-line: rgba(0, 0, 0, .10);
    --go-flow-line-strong: rgba(0, 0, 0, .16);
    --go-flow-soft: #f5f6f7;
    --go-flow-card: #fff;
    --go-flow-accent: #afcb20;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: clamp(18px, 2.4vw, 34px);
    align-items: start;
}

.goemotion-cart-main,
.goemotion-checkout-main,
.goemotion-cart-summary,
.goemotion-checkout-summary {
    min-width: 0;
}

.goemotion-cart-heading,
.goemotion-checkout-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 16px;
    padding: clamp(20px, 2.4vw, 30px);
    border: 1px solid var(--go-flow-line);
    border-radius: 30px;
    background: radial-gradient(circle at 100% 0, rgba(175, 203, 32, .20), transparent 34%), #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .055);
}

.goemotion-checkout-heading {
    display: block;
}

.goemotion-checkout-summary__head > span,
.goemotion-cart-summary__head > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #424242;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.goemotion-checkout-summary__head > span::before,
.goemotion-cart-summary__head > span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--go-flow-accent);
    box-shadow: 0 0 0 5px rgba(175, 203, 32, .20);
}

.goemotion-cart-heading h2,
.goemotion-checkout-heading h2,
.goemotion-cart-summary__head strong,
.goemotion-checkout-summary__head h3 {
    margin: 8px 0 0;
    color: var(--go-flow-ink);
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.04;
    letter-spacing: -.055em;
    font-weight: 950;
}

.goemotion-checkout-heading p {
    max-width: 660px;
    margin: 10px 0 0;
    color: var(--go-flow-muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 650;
}

.goemotion-cart-count {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #050505;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
}

.goemotion-cart-form,
.woocommerce-cart .goemotion-cart-form.woocommerce-cart-form {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-cart-items {
    display: grid;
    gap: 14px;
}

.goemotion-cart-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--go-flow-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .055);
}

.goemotion-cart-item__media,
.goemotion-cart-item__media a {
    display: block;
    min-width: 0;
}

.goemotion-cart-item__media img {
    display: block;
    width: 132px;
    height: 132px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 22px;
    background: #f3f4f5;
}

.goemotion-cart-item__content {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.goemotion-cart-item__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 12px;
    align-items: start;
}

.goemotion-cart-item__name {
    min-width: 0;
    margin: 0;
    color: var(--go-flow-ink);
    font-size: clamp(15px, 1.35vw, 20px);
    line-height: 1.22;
    letter-spacing: -.025em;
    font-weight: 900;
}

.goemotion-cart-item__name a {
    color: inherit;
    text-decoration: none;
}

.goemotion-cart-item__name a:hover,
.goemotion-cart-item__name a:focus-visible {
    color: #2f5f00;
}

.goemotion-cart-item__remove,
.woocommerce .goemotion-cart-item__remove.remove {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #f2f3f4;
    color: #050505;
    font-size: 21px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.goemotion-cart-item__remove:hover,
.goemotion-cart-item__remove:focus-visible,
.woocommerce .goemotion-cart-item__remove.remove:hover,
.woocommerce .goemotion-cart-item__remove.remove:focus-visible {
    transform: translateY(-1px);
    background: #050505;
    color: #fff;
}

.goemotion-cart-item__meta,
.goemotion-cart-item__backorder {
    margin: 0;
    color: var(--go-flow-muted);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 650;
}

.goemotion-cart-item__meta dl,
.goemotion-cart-item__meta p {
    margin: 0;
}

.goemotion-cart-item__details {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(112px, .72fr) minmax(0, 1.1fr);
    gap: 10px;
    align-items: stretch;
}

.goemotion-cart-item__price,
.goemotion-cart-item__quantity,
.goemotion-cart-item__subtotal {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 18px;
    background: #f8f9fa;
}

.goemotion-cart-item__price > span,
.goemotion-cart-item__quantity > span,
.goemotion-cart-item__subtotal > span {
    color: #6b6b6b;
    font-size: 10.5px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.goemotion-cart-item__price strong,
.goemotion-cart-item__subtotal strong {
    min-width: 0;
    color: #050505;
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 950;
    overflow-wrap: anywhere;
}

.goemotion-cart-item__price .amount,
.goemotion-cart-item__subtotal .amount,
.goemotion-cart-summary .amount,
.goemotion-checkout-summary .amount {
    white-space: normal;
}

.goemotion-cart-item__quantity .quantity {
    width: 100%;
}

.goemotion-cart-item__quantity input.qty,
.woocommerce-cart .goemotion-cart-item__quantity .quantity input.qty {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 10px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 14px;
    background: #fff;
    color: #050505;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    box-shadow: none;
}

.goemotion-cart-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid var(--go-flow-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .045);
}

.goemotion-cart-coupon {
    min-width: 0;
}

.goemotion-cart-coupon label {
    display: block;
    margin: 0 0 8px;
    color: #525252;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.goemotion-cart-coupon__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.goemotion-cart-coupon input.input-text,
.goemotion-cart-coupon .input-text {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 16px;
    background: #f8f9fa;
    box-shadow: none;
}

.goemotion-cart-coupon button.button,
.goemotion-cart-update,
.woocommerce-cart .goemotion-cart-update.button {
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 16px;
    background: #050505;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: none;
}

.goemotion-cart-update,
.woocommerce-cart .goemotion-cart-update.button {
    background: #e9ecef;
    color: #050505;
}

.goemotion-cart-update:not(:disabled):hover,
.goemotion-cart-coupon button.button:hover {
    transform: translateY(-1px);
}

.goemotion-cart-summary,
.goemotion-checkout-summary {
    border: 1px solid var(--go-flow-line);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .075);
    overflow: hidden;
}

.goemotion-cart-summary {
    position: sticky;
    top: calc(var(--header-offset, 116px) + 22px);
}

.goemotion-checkout-summary {
    position: static;
}

.goemotion-cart-summary__head,
.goemotion-checkout-summary__head {
    margin: 0;
    padding: 22px 24px;
    border: 0;
    border-bottom: 1px solid var(--go-flow-line);
    border-radius: 0;
    background: radial-gradient(circle at 100% 0%, rgba(175, 203, 32, .25), transparent 36%), #fff;
    box-shadow: none;
}

.goemotion-cart-summary .cart-collaterals,
.goemotion-cart-summary .cart_totals,
.goemotion-checkout-summary #order_review,
.goemotion-checkout-summary .goemotion-checkout-review {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-cart-summary .cross-sells {
    display: none;
}

.goemotion-cart-summary .cart_totals h2,
.goemotion-checkout-summary table.shop_table thead {
    display: none;
}

.goemotion-cart-summary table.shop_table,
.goemotion-checkout-summary table.shop_table {
    display: block;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.goemotion-cart-summary table.shop_table tbody,
.goemotion-cart-summary table.shop_table tfoot,
.goemotion-checkout-summary table.shop_table tbody,
.goemotion-checkout-summary table.shop_table tfoot {
    display: grid;
    gap: 0;
}

.goemotion-cart-summary table.shop_table tr,
.goemotion-checkout-summary table.shop_table tr {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 14px;
    align-items: start;
    padding: 15px 24px;
    border-bottom: 1px solid var(--go-flow-line);
}

.goemotion-cart-summary table.shop_table th,
.goemotion-cart-summary table.shop_table td,
.goemotion-checkout-summary table.shop_table th,
.goemotion-checkout-summary table.shop_table td {
    display: block;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--go-flow-text);
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
}

.goemotion-cart-summary table.shop_table th,
.goemotion-checkout-summary table.shop_table th {
    color: #5c5c5c;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.goemotion-cart-summary table.shop_table td,
.goemotion-checkout-summary table.shop_table td,
.goemotion-checkout-summary table.shop_table .product-total {
    text-align: right;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.goemotion-cart-summary .woocommerce-shipping-methods,
.goemotion-checkout-summary .woocommerce-shipping-methods {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.goemotion-cart-summary .woocommerce-shipping-methods li,
.goemotion-checkout-summary .woocommerce-shipping-methods li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    background: #f8f9fa;
}

.goemotion-cart-summary .woocommerce-shipping-methods label,
.goemotion-checkout-summary .woocommerce-shipping-methods label {
    min-width: 0;
    color: #171717;
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 800;
}

.goemotion-cart-summary .woocommerce-shipping-destination,
.goemotion-checkout-summary .woocommerce-shipping-destination,
.goemotion-cart-summary #price-not-calculated,
.goemotion-checkout-summary #price-not-calculated {
    display: block;
    margin: 8px 0 0;
    color: #777;
    font-size: 11.5px;
    line-height: 1.45;
    font-weight: 650;
}

.goemotion-cart-summary .order-total,
.goemotion-checkout-summary .order-total {
    background: #f3f5f6;
}

.goemotion-cart-summary .order-total th,
.goemotion-cart-summary .order-total td,
.goemotion-checkout-summary .order-total th,
.goemotion-checkout-summary .order-total td {
    color: #050505;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -.03em;
}

.goemotion-cart-summary .wc-proceed-to-checkout {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 20px 24px 24px;
}

.goemotion-cart-summary .wc-proceed-to-checkout a.checkout-button,
.goemotion-checkout-summary #place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 0 20px;
    border: 0;
    border-radius: 18px;
    background: #050505;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: -.01em;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.goemotion-cart-summary .wc-proceed-to-checkout a.checkout-button:hover,
.goemotion-cart-summary .wc-proceed-to-checkout a.checkout-button:focus-visible,
.goemotion-checkout-summary #place_order:hover,
.goemotion-checkout-summary #place_order:focus-visible {
    transform: translateY(-1px);
    background: #111;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .20);
}

.goemotion-cart-help {
    padding: 16px 24px 24px;
    border-top: 1px solid var(--go-flow-line);
    background: #fff;
}

.goemotion-cart-help span {
    display: block;
    color: var(--go-flow-ink);
    font-size: 13px;
    font-weight: 950;
}

.goemotion-cart-help p {
    margin: 6px 0 0;
    color: var(--go-flow-muted);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 650;
}

.goemotion-cart-cross-sells {
    width: min(1220px, calc(100% - 32px));
    margin: clamp(22px, 4vw, 46px) auto 0;
    padding: clamp(18px, 2.4vw, 28px);
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .055);
}

.goemotion-cart-cross-sells .cross-sells > h2 {
    margin: 0 0 16px;
    color: #050505;
    font-size: clamp(22px, 2.3vw, 34px);
    line-height: 1.08;
    letter-spacing: -.055em;
    font-weight: 950;
}

.goemotion-cart-cross-sells .product-grid,
.goemotion-cart-cross-sells ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.woocommerce-checkout .wslp-shell {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .045);
}

.woocommerce-checkout .wslp-divider {
    color: #5f5f5f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}

.woocommerce-checkout .wslp-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.woocommerce-checkout .wslp-pill {
    min-width: 54px;
    min-height: 44px;
    border-radius: 999px;
    background: #f7f8f9;
    border: 1px solid rgba(0, 0, 0, .08);
}

.woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
    margin-top: 0;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
}

.goemotion-checkout-fields {
    display: grid;
    gap: 16px;
}

.goemotion-checkout-card {
    padding: clamp(20px, 2.4vw, 30px);
    border: 1px solid var(--go-flow-line);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .055);
}

.goemotion-checkout-card h3,
.goemotion-checkout-card .woocommerce-billing-fields h3,
.goemotion-checkout-card .woocommerce-shipping-fields h3,
.goemotion-checkout-card .woocommerce-additional-fields h3 {
    margin: 0 0 18px;
    color: var(--go-flow-ink);
    font-size: clamp(21px, 2vw, 30px);
    line-height: 1.1;
    letter-spacing: -.045em;
    font-weight: 950;
}

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

.goemotion-checkout-card .form-row,
.goemotion-checkout-card p.form-row {
    float: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.goemotion-checkout-card .form-row-wide,
.goemotion-checkout-card #billing_address_1_field,
.goemotion-checkout-card #billing_address_2_field,
.goemotion-checkout-card #shipping_address_1_field,
.goemotion-checkout-card #shipping_address_2_field,
.goemotion-checkout-card #order_comments_field,
.goemotion-checkout-card .woocommerce-shipping-fields,
.goemotion-checkout-card .woocommerce-additional-fields {
    grid-column: 1 / -1;
}

.goemotion-checkout-card label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 7px;
    color: #454545;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: -.01em;
}

.goemotion-checkout-card input.input-text,
.goemotion-checkout-card textarea,
.goemotion-checkout-card select,
.goemotion-checkout-card .select2-container--default .select2-selection--single,
.woocommerce-checkout .checkout_coupon input.input-text,
.woocommerce-checkout #speedy_form input[type="text"],
.woocommerce-checkout #speedy_form select,
.woocommerce-checkout #econt_delivery_calculate_buttons .econt-button {
    width: 100%;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 16px;
    background: #f8f9fa;
    color: var(--go-flow-ink);
    font-size: 14px;
    font-weight: 650;
    box-shadow: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.goemotion-checkout-card textarea {
    min-height: 118px;
    padding-block: 14px;
    resize: vertical;
}

.goemotion-checkout-card input.input-text:focus,
.goemotion-checkout-card textarea:focus,
.goemotion-checkout-card select:focus,
.goemotion-checkout-card .select2-container--default.select2-container--open .select2-selection--single,
.woocommerce-checkout .checkout_coupon input.input-text:focus,
.woocommerce-checkout #speedy_form input[type="text"]:focus,
.woocommerce-checkout #speedy_form select:focus {
    outline: 0;
    border-color: rgba(82, 120, 0, .45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(175, 203, 32, .18);
}

.goemotion-checkout-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    color: var(--go-flow-ink);
    line-height: 48px;
}

.goemotion-checkout-card .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

.goemotion-checkout-card #ship-to-different-address {
    margin: 0 0 14px;
}

.goemotion-checkout-card #ship-to-different-address label {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 18px;
    background: #f8f9fa;
}

.goemotion-checkout-card .input-checkbox,
.goemotion-checkout-summary input[type="radio"],
.goemotion-checkout-summary input[type="checkbox"] {
    accent-color: #050505;
}

.goemotion-checkout-summary #order_review_heading,
.woocommerce-checkout .goemotion-checkout-summary #order_review_heading {
    margin: 8px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.goemotion-checkout-summary table.shop_table tbody .cart_item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, auto);
    gap: 12px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--go-flow-line);
}

.goemotion-checkout-summary table.shop_table .product-name {
    min-width: 0;
    color: var(--go-flow-text);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 850;
}

.goemotion-checkout-summary table.shop_table .product-name strong,
.goemotion-checkout-summary table.shop_table .product-quantity {
    color: var(--go-flow-muted);
    font-weight: 950;
}

.goemotion-checkout-summary table.shop_table .product-total {
    font-size: 12.5px;
    line-height: 1.45;
}

.goemotion-checkout-summary .speedy_row,
.goemotion-checkout-summary table.shop_table tr.speedy_row {
    display: block;
    padding: 16px 24px;
    background: #fbfcfc;
}

.goemotion-checkout-summary .speedy_row > td {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form {
    display: block;
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 20px;
    background: #fff;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table tbody {
    display: grid;
    width: 100%;
    gap: 10px;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table tr {
    display: grid;
    grid-template-columns: minmax(90px, .34fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 0;
    border: 0;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table td {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    text-align: left;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form label {
    display: inline-flex;
    margin: 0 0 6px;
    color: #4f4f4f;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 900;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form td > label:has(input[type="radio"]),
.woocommerce-checkout .goemotion-checkout-summary #speedy_form td > label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 13px;
    background: #f6f7f8;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form .woocommerce-error,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form .speedy_error {
    margin: 0 0 12px;
    padding: 12px;
    border-radius: 16px;
    background: #fff3f0;
    color: #8d1800;
    font-size: 12px;
    line-height: 1.45;
}

.goemotion-checkout-summary #payment,
.woocommerce-checkout .goemotion-checkout-summary #payment {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #fff;
}

.goemotion-checkout-summary #payment ul.payment_methods {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 18px 24px;
    border-top: 1px solid var(--go-flow-line);
    border-bottom: 1px solid var(--go-flow-line);
}

.goemotion-checkout-summary #payment ul.payment_methods li {
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 18px;
    background: #f8f9fa;
    box-shadow: none;
}

.goemotion-checkout-summary #payment ul.payment_methods li label {
    color: var(--go-flow-ink);
    font-weight: 950;
}

.goemotion-checkout-summary #payment div.payment_box {
    margin: 12px 0 0;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    color: var(--go-flow-muted);
    font-size: 13px;
    line-height: 1.55;
}

.goemotion-checkout-summary #payment div.payment_box::before {
    content: none;
}

.goemotion-checkout-summary #payment div.form-row {
    margin: 0;
    padding: 20px 24px 24px;
}

.goemotion-checkout-summary .woocommerce-privacy-policy-text {
    margin-bottom: 14px;
    color: var(--go-flow-muted);
    font-size: 12px;
    line-height: 1.6;
}

.woocommerce-checkout .checkout_coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .045);
}

.woocommerce-checkout .checkout_coupon p:first-child {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--go-flow-muted, #666);
    font-weight: 650;
}

.woocommerce-checkout .checkout_coupon .form-row,
.woocommerce-checkout .checkout_coupon .form-row-first,
.woocommerce-checkout .checkout_coupon .form-row-last {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
}

.woocommerce-checkout .checkout_coupon button.button {
    min-height: 50px;
    padding: 0 18px;
    border: 0;
    border-radius: 16px;
    background: #050505;
    color: #fff;
    font-weight: 950;
}

@media (max-width: 1120px) {
    .goemotion-cart-layout,
    .woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
        grid-template-columns: 1fr;
    }

    .goemotion-cart-summary,
    .goemotion-checkout-summary {
        position: static;
    }

    .goemotion-cart-cross-sells .product-grid,
    .goemotion-cart-cross-sells ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .woocommerce-cart .entry-title,
    .woocommerce-checkout .entry-title,
    .woocommerce-cart .woocommerce,
    .woocommerce-checkout .woocommerce,
    .woocommerce-checkout .wslp-shell,
    .woocommerce-checkout .checkout_coupon,
    .goemotion-cart-cross-sells {
        width: min(100% - 22px, 1220px);
    }

    .goemotion-cart-heading,
    .goemotion-checkout-heading {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 24px;
    }

    .goemotion-cart-item {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
        border-radius: 24px;
    }

    .goemotion-cart-item__media img {
        width: 96px;
        height: 96px;
        border-radius: 18px;
    }

    .goemotion-cart-item__top {
        grid-template-columns: minmax(0, 1fr) 30px;
    }

    .goemotion-cart-item__remove,
    .woocommerce .goemotion-cart-item__remove.remove {
        width: 30px;
        height: 30px;
    }

    .goemotion-cart-item__details {
        grid-template-columns: 1fr;
    }

    .goemotion-cart-item__price,
    .goemotion-cart-item__quantity,
    .goemotion-cart-item__subtotal {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
    }

    .goemotion-cart-item__price strong,
    .goemotion-cart-item__subtotal strong {
        text-align: right;
    }

    .goemotion-cart-actions,
    .goemotion-cart-coupon__row,
    .woocommerce-checkout .checkout_coupon,
    .goemotion-checkout-card .woocommerce-billing-fields__field-wrapper,
    .goemotion-checkout-card .woocommerce-shipping-fields__field-wrapper,
    .goemotion-checkout-card .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    .goemotion-cart-coupon button.button,
    .goemotion-cart-update,
    .woocommerce-checkout .checkout_coupon button.button {
        width: 100%;
    }

    .goemotion-cart-summary table.shop_table tr,
    .goemotion-checkout-summary table.shop_table tr,
    .goemotion-checkout-summary table.shop_table tbody .cart_item {
        padding-inline: 18px;
    }

    .goemotion-checkout-summary table.shop_table tr,
    .goemotion-checkout-summary table.shop_table tbody .cart_item,
    .goemotion-cart-summary table.shop_table tr {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .goemotion-cart-summary table.shop_table td,
    .goemotion-checkout-summary table.shop_table td,
    .goemotion-checkout-summary table.shop_table .product-total {
        text-align: left;
    }

    .goemotion-checkout-summary #payment ul.payment_methods,
    .goemotion-checkout-summary #payment div.form-row,
    .goemotion-cart-summary .wc-proceed-to-checkout,
    .goemotion-cart-help {
        padding-inline: 18px;
    }

    .goemotion-cart-cross-sells .product-grid,
    .goemotion-cart-cross-sells ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table tr {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .goemotion-cart-item {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 11px;
        padding: 12px;
    }

    .goemotion-cart-item__media img {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }

    .goemotion-cart-item__name {
        font-size: 13px;
    }

    .goemotion-cart-item__price,
    .goemotion-cart-item__quantity,
    .goemotion-cart-item__subtotal {
        padding: 10px;
        border-radius: 15px;
    }

    .goemotion-cart-item__price strong,
    .goemotion-cart-item__subtotal strong,
    .goemotion-cart-summary table.shop_table td,
    .goemotion-checkout-summary table.shop_table td {
        font-size: 11.5px;
    }

    .goemotion-cart-summary .order-total th,
    .goemotion-cart-summary .order-total td,
    .goemotion-checkout-summary .order-total th,
    .goemotion-checkout-summary .order-total td {
        font-size: 16px;
    }

    .goemotion-cart-cross-sells .product-grid,
    .goemotion-cart-cross-sells ul.products {
        grid-template-columns: 1fr;
    }
}


/* v1.0.47 - clearer homepage confidence cards and aligned modern icons. */
.confidence-grid {
    align-items: stretch;
}

.confidence-card {
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: start;
    gap: 0;
    min-width: 0;
}

.confidence-card .confidence-card__icon,
.confidence-card:nth-child(1) .confidence-card__icon,
.confidence-card:nth-child(2) .confidence-card__icon,
.confidence-card:nth-child(3) .confidence-card__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    margin: 0 0 18px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: #050505;
    color: #fff;
    box-shadow: 0 18px 32px rgba(0, 0, 0, .16), 0 0 0 8px rgba(175, 203, 32, .13);
    line-height: 1;
    overflow: visible;
}

.confidence-card:nth-child(1) .confidence-card__icon::before,
.confidence-card:nth-child(2) .confidence-card__icon::before,
.confidence-card:nth-child(3) .confidence-card__icon::before,
.confidence-card .confidence-card__icon::before,
.confidence-card .confidence-card__icon::after {
    content: none;
    display: none;
}

.confidence-card .confidence-card__icon svg {
    display: block;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translateZ(0);
}

.confidence-card strong {
    max-width: 100%;
    margin: 0;
    font-size: clamp(19px, 1.45vw, 23px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.confidence-card p {
    margin-top: 11px;
    max-width: 62ch;
}

@media (min-width: 901px) {
    .confidence-card {
        min-height: 184px;
    }
}

@media (max-width: 640px) {
    .confidence-card .confidence-card__icon,
    .confidence-card:nth-child(1) .confidence-card__icon,
    .confidence-card:nth-child(2) .confidence-card__icon,
    .confidence-card:nth-child(3) .confidence-card__icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        border-radius: 16px;
        margin-bottom: 15px;
    }

    .confidence-card .confidence-card__icon svg {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
    }
}


/* v1.0.48 – GE Smart Search direct header integration */
.header-search--ge-smart,
.site-header.is-scrolled .header-search--ge-smart {
  position: static;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.header-search-toggle--ge-smart,
.site-header.is-scrolled .header-search-toggle--ge-smart {
  position: relative;
  inset: auto;
  width: 40px;
  height: 40px;
}

.goemotion-ge-smart-search {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  color: #050505;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .10);
}

.goemotion-ge-smart-search:hover,
.goemotion-ge-smart-search:focus-visible {
  border-color: rgba(175, 203, 32, .65);
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .14), 0 0 0 4px rgba(175, 203, 32, .18);
}

.goemotion-ge-smart-search .goemotion-search-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #050505;
  color: #fff;
}

.goemotion-ge-smart-search .goemotion-search-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.goemotion-ge-smart-search__text {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 800;
  color: #161616;
}

.goemotion-ge-smart-search__kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .06);
  color: rgba(0, 0, 0, .58);
  font-size: 12px;
  font-weight: 900;
}

.ge-ss {
  z-index: 2147483000;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ge-ss .ge-ss-backdrop {
  background: rgba(5, 5, 5, .58);
  backdrop-filter: blur(10px);
}

.ge-ss .ge-ss-modal {
  width: min(1040px, calc(100vw - 28px));
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.ge-ss .ge-ss-head {
  padding: clamp(14px, 2vw, 22px);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  background:
    radial-gradient(circle at 12% 0%, rgba(175, 203, 32, .22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 248, 249, .96));
}

.ge-ss .ge-ss-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
}

.ge-ss .ge-ss-searchbox {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .90);
}

.ge-ss .ge-ss-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 54px;
  border: 0;
  background: transparent;
  color: #050505;
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 800;
  outline: 0;
  padding: 0 16px;
}

.ge-ss .ge-ss-x,
.ge-ss .ge-ss-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #050505;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.ge-ss .ge-ss-x:hover,
.ge-ss .ge-ss-close:hover,
.ge-ss .ge-ss-x:focus-visible,
.ge-ss .ge-ss-close:focus-visible {
  background: #afcb20;
  color: #050505;
}

.ge-ss .ge-ss-controls {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto minmax(220px, 320px);
  align-items: center;
  gap: 10px;
}

.ge-ss .ge-ss-catlabel {
  color: rgba(0, 0, 0, .54);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ge-ss .ge-ss-cat {
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  color: #111;
  font-weight: 800;
  padding: 0 12px;
}

.ge-ss .ge-ss-body {
  max-height: min(68vh, 690px);
  overflow: auto;
  padding: clamp(14px, 2vw, 22px);
}

.ge-ss .ge-ss-count,
.ge-ss .ge-ss-status,
.ge-ss .ge-ss-hint {
  color: rgba(0, 0, 0, .62);
  font-size: 13px;
  font-weight: 700;
}

.ge-ss .ge-ss-group {
  display: grid;
  gap: 10px;
}

.ge-ss .ge-ss-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  cursor: pointer;
}

.ge-ss .ge-ss-item:hover,
.ge-ss .ge-ss-item.is-active {
  border-color: rgba(175, 203, 32, .70);
  box-shadow: 0 15px 38px rgba(0, 0, 0, .09), 0 0 0 4px rgba(175, 203, 32, .16);
}

.ge-ss .ge-ss-thumb {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  background: #f6f7f8;
  overflow: hidden;
}

.ge-ss .ge-ss-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ge-ss .ge-ss-main,
.ge-ss .ge-ss-row,
.ge-ss .ge-ss-meta {
  min-width: 0;
}

.ge-ss .ge-ss-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.ge-ss .ge-ss-title {
  display: block;
  color: #050505;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.ge-ss .ge-ss-subline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  color: rgba(0, 0, 0, .56);
  font-size: 12px;
  font-weight: 800;
}

.ge-ss .ge-ss-stock,
.ge-ss .ge-ss-sku {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .05);
}

.ge-ss .ge-ss-stock.is-in {
  background: rgba(175, 203, 32, .25);
  color: #203300;
}

.ge-ss .ge-ss-stock.is-out {
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .62);
}

.ge-ss .ge-ss-price-block {
  display: grid;
  gap: 6px;
  min-width: 220px;
}

.ge-ss .ge-ss-pl {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 13px;
  background: #f5f6f7;
}

.ge-ss .ge-ss-pl-lbl {
  white-space: nowrap;
  color: rgba(0, 0, 0, .55);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ge-ss .ge-ss-pl-val {
  min-width: 0;
  color: #050505;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.ge-ss .ge-ss-pl-val .amount-bgn {
  white-space: nowrap;
}

.ge-ss .ge-ss-btn {
  border-radius: 999px;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #050505;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.ge-ss .ge-ss-btn:hover,
.ge-ss .ge-ss-btn:focus-visible {
  background: #afcb20;
  color: #050505;
}

@media (max-width: 720px) {
  .ge-ss .ge-ss-modal {
    width: calc(100vw - 18px);
    border-radius: 24px;
  }

  .ge-ss .ge-ss-search {
    grid-template-columns: 1fr 44px;
  }

  .ge-ss .ge-ss-controls {
    grid-template-columns: 1fr;
  }

  .ge-ss .ge-ss-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .ge-ss .ge-ss-thumb {
    width: 78px;
    height: 78px;
    border-radius: 16px;
  }

  .ge-ss .ge-ss-row {
    display: grid;
    gap: 10px;
  }

  .ge-ss .ge-ss-price-block {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .ge-ss .ge-ss-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .ge-ss .ge-ss-thumb {
    width: 64px;
    height: 64px;
  }

  .ge-ss .ge-ss-pl {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .ge-ss .ge-ss-pl-val {
    text-align: left;
  }
}

/* v1.0.49 - mini cart actions always visible + SKU label in product cards. */
.cart-drawer .cart-panel {
    min-height: 0;
    max-height: 100dvh;
}

.cart-drawer .goemotion-mini-cart {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
}

.cart-drawer .goemotion-mini-cart-body {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: stretch;
    gap: 10px;
    min-height: 0;
    overflow: hidden;
    padding: 0;
}

.cart-drawer .goemotion-mini-cart-list,
.cart-drawer .goemotion-mini-cart ul.woocommerce-mini-cart {
    min-height: 0;
    height: auto;
    max-height: none;
    overflow-y: auto;
    padding-right: 4px;
    padding-bottom: 2px;
    scrollbar-gutter: stable;
}

.cart-drawer .goemotion-mini-cart-footer {
    position: relative;
    bottom: auto;
    flex-shrink: 0;
    margin: 0;
}

.cart-drawer .goemotion-mini-cart-actions,
.cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__buttons {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.cart-drawer .goemotion-mini-cart-actions a,
.cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__buttons a {
    min-width: 0;
    white-space: nowrap;
}

.cart-drawer .goemotion-cart-benefits {
    flex-shrink: 0;
    overflow: hidden;
}

.cart-drawer .goemotion-mini-cart-price,
.cart-drawer .goemotion-mini-cart-total-value {
    min-width: 0;
}

@media (max-height: 700px) {
    .cart-drawer .cart-panel-head {
        padding-top: 14px;
        padding-bottom: 12px;
    }

    .cart-drawer .goemotion-mini-cart {
        gap: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .cart-drawer .goemotion-cart-benefits {
        display: none;
    }
}

@media (max-width: 560px) {
    .cart-drawer .goemotion-mini-cart-actions,
    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__buttons {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .cart-drawer .goemotion-mini-cart-actions a,
    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__buttons a {
        min-height: 42px;
        padding-inline: 8px;
        font-size: 12px;
    }
}

@media (max-width: 340px) {
    .cart-drawer .goemotion-mini-cart-actions,
    .cart-drawer .goemotion-mini-cart .woocommerce-mini-cart__buttons {
        grid-template-columns: 1fr;
    }
}

/* v1.0.50 - pixel-perfect cart/checkout polish, stable mini-cart remove and add-to-cart notice flow. */
.cart-drawer .goemotion-mini-cart .goemotion-mini-cart-item,
.cart-drawer .goemotion-mini-cart-item {
    position: relative;
    grid-template-columns: clamp(104px, 22vw, 132px) minmax(0, 1fr);
    grid-template-areas: "thumb content";
    padding: clamp(11px, 1.8vw, 14px) clamp(44px, 5vw, 50px) clamp(11px, 1.8vw, 14px) clamp(11px, 1.8vw, 14px);
    min-height: clamp(118px, 15vw, 148px);
}

.cart-drawer .goemotion-mini-cart-remove,
.cart-drawer .goemotion-mini-cart .remove_from_cart_button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    grid-area: auto;
    width: 32px;
    height: 32px;
    font-size: 22px;
    box-shadow: 0 10px 22px rgba(21, 28, 34, .08);
}

.cart-drawer .goemotion-mini-cart-line {
    min-width: 0;
    padding-right: 0;
}

.cart-drawer .goemotion-mini-cart-price {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
    max-width: 100%;
    line-height: 1.25;
}

.cart-drawer .goemotion-mini-cart-price-label {
    flex: 0 0 auto;
}

.cart-drawer .goemotion-mini-cart-price-value,
.cart-drawer .goemotion-mini-cart-price-value .amount,
.cart-drawer .goemotion-mini-cart-price-value .woocommerce-Price-amount,
.cart-drawer .goemotion-mini-cart-total-value,
.cart-drawer .goemotion-mini-cart-total-value .amount,
.cart-drawer .goemotion-mini-cart-total-value .woocommerce-Price-amount {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

@media (max-width: 480px) {
    .cart-drawer .goemotion-mini-cart .goemotion-mini-cart-item,
    .cart-drawer .goemotion-mini-cart-item {
        grid-template-columns: 82px minmax(0, 1fr);
        padding-right: 42px;
        min-height: 106px;
    }

    .cart-drawer .goemotion-mini-cart-thumb {
        min-height: 82px;
        border-radius: 16px;
    }

    .cart-drawer .goemotion-mini-cart-remove,
    .cart-drawer .goemotion-mini-cart .remove_from_cart_button {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
    }
}

.goemotion-wc-product-card .product-actions {
    position: relative;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 88px;
    align-content: start;
    padding-bottom: 40px;
}

.goemotion-wc-product-card .product-actions > .button,
.goemotion-wc-product-card .product-actions > .btn,
.goemotion-wc-product-card .product-actions > .btn-ghost {
    align-self: start;
}

.goemotion-wc-product-card .product-actions > .added_to_cart {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid rgba(175, 203, 32, .34);
    border-radius: 12px;
    background: rgba(175, 203, 32, .16);
    color: #172000;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 900;
    text-align: center;
    white-space: normal;
    z-index: 2;
}

.woocommerce-cart .goemotion-content,
.woocommerce-checkout .goemotion-content {
    width: min(1480px, calc(100% - 28px));
}

.woocommerce-cart .goemotion-content-box,
.woocommerce-checkout .goemotion-content-box {
    width: 100%;
    padding: clamp(16px, 2.5vw, 34px);
    overflow: visible;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    width: 100%;
    max-width: none;
}

.goemotion-cart-layout,
.woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 500px);
    gap: clamp(18px, 2.2vw, 34px);
    width: 100%;
    max-width: 100%;
}

.goemotion-cart-heading,
.goemotion-checkout-heading,
.goemotion-cart-summary,
.goemotion-checkout-summary,
.goemotion-cart-item,
.goemotion-checkout-card,
.goemotion-cart-actions,
.goemotion-cart-cross-sells {
    max-width: 100%;
    min-width: 0;
}

.goemotion-cart-summary__head,
.goemotion-checkout-summary__head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 6px;
    padding: clamp(18px, 2.2vw, 24px);
}

.goemotion-cart-summary__head strong,
.goemotion-checkout-summary__head h3 {
    display: block;
    width: 100%;
    margin-top: 0;
    word-break: normal;
    overflow-wrap: anywhere;
}

.goemotion-cart-item__details {
    grid-template-columns: minmax(0, 1fr) minmax(104px, 122px) minmax(0, 1fr);
}

.goemotion-cart-item__price,
.goemotion-cart-item__quantity,
.goemotion-cart-item__subtotal {
    overflow: hidden;
}

.goemotion-cart-item__quantity {
    justify-items: stretch;
}

.goemotion-cart-item__quantity .quantity {
    display: block;
    width: min(100%, 104px);
    max-width: 100%;
    min-width: 0;
}

.goemotion-cart-item__quantity input.qty,
.woocommerce-cart .goemotion-cart-item__quantity .quantity input.qty {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    appearance: textfield;
}

.goemotion-cart-item__quantity input.qty::-webkit-outer-spin-button,
.goemotion-cart-item__quantity input.qty::-webkit-inner-spin-button {
    margin: 0;
}

.goemotion-cart-item__price strong,
.goemotion-cart-item__subtotal strong,
.goemotion-cart-summary table.shop_table td,
.goemotion-checkout-summary table.shop_table td,
.goemotion-checkout-summary table.shop_table .product-total {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 0 18px;
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0 0 14px;
    padding: 16px 18px 16px 54px;
    border: 1px solid rgba(0, 0, 0, .09);
    border-left: 0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .06);
    color: #161616;
    font-size: 14px;
    line-height: 1.55;
    overflow: hidden;
}

.woocommerce-cart .woocommerce-message::before,
.woocommerce-cart .woocommerce-info::before,
.woocommerce-cart .woocommerce-error::before,
.woocommerce-checkout .woocommerce-message::before,
.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-error::before {
    position: absolute;
    top: 16px;
    left: 18px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #050505;
    font-size: 17px;
    line-height: 1;
}

.woocommerce-cart .woocommerce-message::after,
.woocommerce-checkout .woocommerce-message::after,
.woocommerce-cart .woocommerce-info::after,
.woocommerce-checkout .woocommerce-info::after,
.woocommerce-cart .woocommerce-error::after,
.woocommerce-checkout .woocommerce-error::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: #afcb20;
}

.woocommerce-cart .woocommerce-error::after,
.woocommerce-checkout .woocommerce-error::after {
    background: #ff5a3d;
}

.woocommerce-cart .woocommerce-message .button,
.woocommerce-cart .woocommerce-info .button,
.woocommerce-checkout .woocommerce-message .button,
.woocommerce-checkout .woocommerce-info .button {
    float: none;
    display: inline-flex;
    vertical-align: middle;
    margin: 0 10px 0 0;
    max-width: 100%;
}

.woocommerce-cart ul.woocommerce-error,
.woocommerce-checkout ul.woocommerce-error {
    list-style: none;
}

.woocommerce-cart ul.woocommerce-error li,
.woocommerce-checkout ul.woocommerce-error li {
    margin: 0;
    padding: 0;
}

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

.goemotion-checkout-card input.input-text,
.goemotion-checkout-card textarea,
.goemotion-checkout-card select,
.goemotion-checkout-card .select2-container,
.goemotion-checkout-card .select2-container--default .select2-selection--single,
.woocommerce-checkout .checkout_coupon input.input-text,
.woocommerce-checkout #speedy_form input[type="text"],
.woocommerce-checkout #speedy_form input[type="tel"],
.woocommerce-checkout #speedy_form select,
.woocommerce-checkout #econt_delivery_calculate_buttons .econt-button {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.goemotion-checkout-summary {
    overflow: hidden;
}

.goemotion-checkout-summary #order_review,
.goemotion-checkout-summary .goemotion-checkout-review,
.goemotion-checkout-summary table.shop_table,
.goemotion-checkout-summary #payment {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.goemotion-checkout-summary table.shop_table tr,
.goemotion-cart-summary table.shop_table tr {
    min-width: 0;
}

.goemotion-checkout-summary table.shop_table .product-name,
.goemotion-checkout-summary table.shop_table .product-total {
    min-width: 0;
    overflow-wrap: anywhere;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table tbody,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table tr,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table td {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table tr {
    grid-template-columns: minmax(0, .34fr) minmax(0, 1fr);
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form td {
    overflow: hidden;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form td input,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form td select {
    max-width: 100%;
}

@media (max-width: 1240px) {
    .goemotion-cart-layout,
    .woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
        grid-template-columns: 1fr;
    }

    .goemotion-cart-summary,
    .goemotion-checkout-summary {
        position: static;
    }
}

@media (max-width: 780px) {
    .woocommerce-cart .goemotion-content,
    .woocommerce-checkout .goemotion-content {
        width: min(100% - 18px, 1480px);
    }

    .woocommerce-cart .goemotion-content-box,
    .woocommerce-checkout .goemotion-content-box {
        padding: 12px;
        border-radius: 22px;
    }

    .goemotion-cart-heading,
    .goemotion-checkout-heading,
    .goemotion-cart-summary__head,
    .goemotion-checkout-summary__head {
        padding: 18px;
        border-radius: 22px;
    }

    .goemotion-cart-item {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
        border-radius: 22px;
    }

    .goemotion-cart-item__media img {
        width: 92px;
        height: 92px;
        border-radius: 16px;
    }

    .goemotion-cart-item__details {
        grid-template-columns: 1fr;
    }

    .goemotion-cart-item__price,
    .goemotion-cart-item__quantity,
    .goemotion-cart-item__subtotal {
        grid-template-columns: minmax(86px, auto) minmax(0, 1fr);
        align-items: center;
        padding: 10px;
    }

    .goemotion-cart-item__quantity .quantity {
        justify-self: end;
        width: min(100%, 92px);
    }

    .goemotion-cart-actions,
    .goemotion-cart-coupon__row,
    .goemotion-checkout-card .woocommerce-billing-fields__field-wrapper,
    .goemotion-checkout-card .woocommerce-shipping-fields__field-wrapper,
    .goemotion-checkout-card .woocommerce-additional-fields__field-wrapper,
    .woocommerce-checkout .checkout_coupon {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart .woocommerce-message,
    .woocommerce-cart .woocommerce-info,
    .woocommerce-cart .woocommerce-error,
    .woocommerce-checkout .woocommerce-message,
    .woocommerce-checkout .woocommerce-info,
    .woocommerce-checkout .woocommerce-error {
        padding: 15px 14px 15px 48px;
        border-radius: 18px;
        font-size: 13px;
    }

    .woocommerce-cart .woocommerce-message .button,
    .woocommerce-cart .woocommerce-info .button,
    .woocommerce-checkout .woocommerce-message .button,
    .woocommerce-checkout .woocommerce-info .button {
        display: flex;
        width: 100%;
        margin: 10px 0 0;
    }

    .woocommerce-checkout .goemotion-checkout-summary #speedy_form table#speedy_client_table tr {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .goemotion-cart-item {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .goemotion-cart-item__media img {
        width: 78px;
        height: 78px;
    }

    .goemotion-cart-item__top {
        grid-template-columns: minmax(0, 1fr) 30px;
        gap: 8px;
    }

    .goemotion-cart-item__remove,
    .woocommerce .goemotion-cart-item__remove.remove {
        width: 30px;
        height: 30px;
    }

    .goemotion-cart-item__price,
    .goemotion-cart-item__quantity,
    .goemotion-cart-item__subtotal {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .goemotion-cart-item__quantity .quantity {
        justify-self: start;
        width: min(100%, 104px);
    }

    .goemotion-cart-item__price strong,
    .goemotion-cart-item__subtotal strong,
    .goemotion-cart-summary table.shop_table td,
    .goemotion-checkout-summary table.shop_table td,
    .goemotion-checkout-summary table.shop_table .product-total {
        font-size: 12px;
    }
}


/* v1.0.51 - checkout courier responsiveness, theme accent color and cleaner cart labels. */
:root {
    --go-theme-accent: #afcb20;
}

.goemotion-cart-layout,
.woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout,
.ge-ss,
.go-about-page,
.go-about-custom {
    --go-flow-accent: #afcb20;
    --go-green: #afcb20;
    --go-wc-accent: #afcb20;
}

.goemotion-cart-heading,
.goemotion-checkout-heading,
.goemotion-cart-summary__head,
.goemotion-checkout-summary__head,
.ge-ss .ge-ss-head {
    background-image: radial-gradient(circle at 100% 0%, rgba(175, 203, 32, .22), transparent 36%);
}

.goemotion-cart-summary .wc-proceed-to-checkout a.checkout-button:hover,
.goemotion-cart-summary .wc-proceed-to-checkout a.checkout-button:focus-visible,
.goemotion-checkout-summary #place_order:hover,
.goemotion-checkout-summary #place_order:focus-visible,
.woocommerce-checkout .checkout_coupon button.button:hover,
.woocommerce-checkout .checkout_coupon button.button:focus-visible,
.goemotion-cart-coupon button.button:hover,
.goemotion-cart-coupon button.button:focus-visible,
.goemotion-wc-product-card .product-actions > .button:hover,
.goemotion-wc-product-card .product-actions > .button:focus-visible,
.goemotion-wc-product-card .product-actions > .btn:hover,
.goemotion-wc-product-card .product-actions > .btn:focus-visible {
    background: #afcb20;
    color: #050505;
}

.woocommerce-cart .woocommerce-message::after,
.woocommerce-checkout .woocommerce-message::after,
.woocommerce-cart .woocommerce-info::after,
.woocommerce-checkout .woocommerce-info::after,
.goemotion-wc-product-card .product-actions > .added_to_cart {
    background-color: rgba(175, 203, 32, .18);
    border-color: rgba(175, 203, 32, .38);
}

.woocommerce-cart .woocommerce-message::after,
.woocommerce-checkout .woocommerce-message::after,
.woocommerce-cart .woocommerce-info::after,
.woocommerce-checkout .woocommerce-info::after {
    background: #afcb20;
}

.goemotion-checkout-card input.input-text:focus,
.goemotion-checkout-card textarea:focus,
.goemotion-checkout-card select:focus,
.goemotion-checkout-card .select2-container--default.select2-container--open .select2-selection--single,
.woocommerce-checkout .checkout_coupon input.input-text:focus,
.woocommerce-checkout #speedy_form input[type="text"]:focus,
.woocommerce-checkout #speedy_form input[type="tel"]:focus,
.woocommerce-checkout #speedy_form select:focus {
    border-color: rgba(175, 203, 32, .72);
    box-shadow: 0 0 0 4px rgba(175, 203, 32, .18);
}

/* Courier plugins often inject old table markup inside the order summary. Make it card-based and responsive. */
.woocommerce-checkout .goemotion-checkout-summary .speedy_row,
.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.speedy_row,
.woocommerce-checkout .goemotion-checkout-summary tr.speedy_row {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 16px 18px;
    border-bottom: 1px solid var(--go-flow-line, rgba(0,0,0,.1));
    background: #fbfcfc;
}

.woocommerce-checkout .goemotion-checkout-summary .speedy_row > td,
.woocommerce-checkout .goemotion-checkout-summary tr.speedy_row > td,
.woocommerce-checkout .goemotion-checkout-summary tr.speedy_row td[colspan] {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
    overflow: visible;
    box-sizing: border-box;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods,
.woocommerce-checkout .goemotion-checkout-summary #speedy_compare_address_warning,
.woocommerce-checkout .goemotion-checkout-summary #econt_detailed_shipping,
.woocommerce-checkout .goemotion-checkout-summary #econt_delivery_calculate_buttons {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form {
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form *,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods *,
.woocommerce-checkout .goemotion-checkout-summary #econt_detailed_shipping * {
    box-sizing: border-box;
    max-width: 100%;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form table,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form tbody,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form tr,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form td,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods table,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods tbody,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods tr,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods td {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    border: 0;
    background: transparent;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form table,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form tbody {
    display: grid;
    gap: 12px;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 18px;
    background: #f8f9fa;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form td {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    gap: 8px;
    align-items: end;
    padding: 0;
    text-align: left;
    overflow: visible;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form td:first-child {
    display: block;
    color: #515151;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form label,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    margin: 0;
    color: #2d2d2d;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 850;
    word-break: break-word;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form input[type="text"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_form input[type="tel"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_form select,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods input[type="text"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods select,
.woocommerce-checkout .goemotion-checkout-summary #econt_detailed_shipping input,
.woocommerce-checkout .goemotion-checkout-summary #econt_detailed_shipping select {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 14px;
    background: #fff;
    color: #050505;
    font-size: 13px;
    font-weight: 700;
    box-shadow: none;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form input[disabled],
.woocommerce-checkout .goemotion-checkout-summary #speedy_form select[disabled] {
    opacity: .68;
    background: #f0f1f2;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form input[type="radio"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_form input[type="checkbox"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods input[type="radio"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods input[type="checkbox"] {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #afcb20;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form label:has(input[type="radio"]),
.woocommerce-checkout .goemotion-checkout-summary #speedy_form label:has(input[type="checkbox"]),
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods label:has(input[type="radio"]),
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods label:has(input[type="checkbox"]) {
    padding: 10px 11px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    background: #fff;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods {
    margin-top: 12px;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods table,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods tbody {
    display: grid;
    gap: 9px;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 11px 12px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    background: #fff;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods tr:first-child {
    grid-template-columns: 1fr;
    background: #050505;
    color: #fff;
    font-weight: 950;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods td {
    display: block;
    padding: 0;
    text-align: left;
    color: inherit;
    font-size: 12px;
    line-height: 1.4;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods td.right,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods .speedy_table_right {
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
    font-weight: 950;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods .amount,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods .amount-bgn {
    white-space: normal;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form .woocommerce-error,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form .speedy_error {
    display: block;
    margin: 0 0 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 90, 61, .22);
    border-radius: 16px;
    background: #fff4f1;
    color: #8d1800;
    font-size: 12px;
    line-height: 1.45;
    list-style: none;
}

@media (min-width: 1280px) {
    .woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
        grid-template-columns: minmax(0, 1fr) minmax(430px, 560px);
    }
}

@media (max-width: 640px) {
    .woocommerce-checkout .goemotion-checkout-summary .speedy_row,
    .woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.speedy_row,
    .woocommerce-checkout .goemotion-checkout-summary tr.speedy_row {
        padding: 12px;
    }

    .woocommerce-checkout .goemotion-checkout-summary #speedy_form {
        padding: 10px;
        border-radius: 18px;
    }

    .woocommerce-checkout .goemotion-checkout-summary #speedy_form tr {
        padding: 10px;
        border-radius: 15px;
    }

    .woocommerce-checkout .goemotion-checkout-summary #speedy_form td,
    .woocommerce-checkout .goemotion-checkout-summary #speedy_methods tr {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout .goemotion-checkout-summary #speedy_methods td.right,
    .woocommerce-checkout .goemotion-checkout-summary #speedy_methods .speedy_table_right {
        text-align: left;
    }
}


/* v1.0.52 - fully responsive courier fields, Econt modal polish and checkout spacing. */
:root {
    --go-flow-accent: #afcb20;
}

.woocommerce-cart .goemotion-content,
.woocommerce-checkout .goemotion-content {
    width: min(100% - 28px, 1540px);
}

.woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(560px, 660px);
    gap: clamp(20px, 2.6vw, 42px);
}

.woocommerce-checkout .goemotion-checkout-summary {
    overflow: visible;
}

.woocommerce-checkout .goemotion-checkout-summary #order_review,
.woocommerce-checkout .goemotion-checkout-summary .goemotion-checkout-review,
.woocommerce-checkout .goemotion-checkout-summary table.shop_table,
.woocommerce-checkout .goemotion-checkout-summary #payment {
    overflow: visible;
}

.woocommerce-checkout .goemotion-checkout-summary table.shop_table tfoot tr.shipping,
.woocommerce-checkout .goemotion-checkout-summary table.shop_table tfoot tr.woocommerce-shipping-totals.shipping {
    display: block;
    padding: 16px clamp(16px, 2vw, 24px);
    border-bottom: 1px solid var(--go-flow-line, rgba(0,0,0,.09));
    background: #fbfcfc;
}

.woocommerce-checkout .goemotion-checkout-summary table.shop_table tfoot tr.shipping > th,
.woocommerce-checkout .goemotion-checkout-summary table.shop_table tfoot tr.shipping > td,
.woocommerce-checkout .goemotion-checkout-summary table.shop_table tfoot tr.woocommerce-shipping-totals.shipping > th,
.woocommerce-checkout .goemotion-checkout-summary table.shop_table tfoot tr.woocommerce-shipping-totals.shipping > td {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
}

.woocommerce-checkout .goemotion-checkout-summary table.shop_table tfoot tr.shipping > th,
.woocommerce-checkout .goemotion-checkout-summary table.shop_table tfoot tr.woocommerce-shipping-totals.shipping > th {
    margin-bottom: 12px;
    color: #050505;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -.01em;
}

.woocommerce-cart ul#shipping_method.woocommerce-shipping-methods,
.woocommerce-checkout ul#shipping_method.woocommerce-shipping-methods,
.woocommerce-checkout .woocommerce-shipping-methods {
    display: grid;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-cart ul#shipping_method.woocommerce-shipping-methods li,
.woocommerce-checkout ul#shipping_method.woocommerce-shipping-methods li,
.woocommerce-checkout .woocommerce-shipping-methods li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    width: 100%;
    min-width: 0;
    padding: 13px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .035);
}

.woocommerce-cart ul#shipping_method.woocommerce-shipping-methods input.shipping_method,
.woocommerce-checkout ul#shipping_method.woocommerce-shipping-methods input.shipping_method,
.woocommerce-checkout .woocommerce-shipping-methods input.shipping_method {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #afcb20;
}

.woocommerce-cart ul#shipping_method.woocommerce-shipping-methods label,
.woocommerce-checkout ul#shipping_method.woocommerce-shipping-methods label,
.woocommerce-checkout .woocommerce-shipping-methods label {
    display: block;
    min-width: 0;
    margin: 0;
    color: #171717;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 850;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
}

.woocommerce-cart ul#shipping_method.woocommerce-shipping-methods label .amount,
.woocommerce-cart ul#shipping_method.woocommerce-shipping-methods label .amount-bgn,
.woocommerce-checkout ul#shipping_method.woocommerce-shipping-methods label .amount,
.woocommerce-checkout ul#shipping_method.woocommerce-shipping-methods label .amount-bgn,
.woocommerce-checkout .woocommerce-shipping-methods label .amount,
.woocommerce-checkout .woocommerce-shipping-methods label .amount-bgn,
.woocommerce-checkout #price-not-calculated {
    display: inline;
    white-space: normal;
    overflow-wrap: anywhere;
}

.woocommerce-checkout #price-not-calculated {
    color: #747474;
    font-size: 12px;
    font-weight: 650;
}

.woocommerce-checkout #econt_detailed_shipping,
.woocommerce-checkout #econt_delivery_calculate_buttons {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.woocommerce-checkout #econt_delivery_calculate_buttons {
    display: block;
    margin: 10px 0 0 32px;
}

.woocommerce-checkout #econt_delivery_calculate_buttons .econt-button,
.woocommerce-checkout #calculate_shipping_button,
.woocommerce-checkout button.econt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 220px);
    min-height: 44px;
    padding: 11px 16px;
    border: 0;
    border-radius: 999px;
    background: #050505;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    cursor: pointer;
    box-shadow: none;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.woocommerce-checkout #econt_delivery_calculate_buttons .econt-button:hover,
.woocommerce-checkout #calculate_shipping_button:hover,
.woocommerce-checkout button.econt-button:hover {
    transform: translateY(-1px);
    background: #afcb20;
    color: #050505;
}

.woocommerce-checkout .goemotion-checkout-summary .speedy_row,
.woocommerce-checkout .goemotion-checkout-summary tr.speedy_row,
.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.speedy_row {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 14px clamp(12px, 2vw, 20px);
    border-bottom: 1px solid var(--go-flow-line, rgba(0,0,0,.09));
    background: #fbfcfc;
}

.woocommerce-checkout .goemotion-checkout-summary .speedy_row > td,
.woocommerce-checkout .goemotion-checkout-summary tr.speedy_row > td,
.woocommerce-checkout .goemotion-checkout-summary tr.speedy_row td[colspan] {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0;
    border: 0;
    text-align: left;
    overflow: visible;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods,
.woocommerce-checkout .goemotion-checkout-summary #econt_detailed_shipping {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form {
    display: block;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 22px;
    background: #fff;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form table,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form tbody,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form tr,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form td,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods table,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods tbody,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods tr,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods td {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form table,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form tbody {
    display: grid;
    gap: 12px;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 18px;
    background: #f8f9fa;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form td {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
    padding: 0;
    text-align: left;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form tr > td:first-child {
    color: #525252;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form label,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods label,
.woocommerce-checkout .goemotion-checkout-summary #econt_detailed_shipping label {
    display: block;
    width: 100%;
    margin: 0;
    color: #4b4b4b;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 900;
    white-space: normal;
    overflow-wrap: anywhere;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form input[type="text"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_form input[type="tel"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_form select,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods input[type="text"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods select,
.woocommerce-checkout .goemotion-checkout-summary #econt_detailed_shipping input,
.woocommerce-checkout .goemotion-checkout-summary #econt_detailed_shipping select {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 15px;
    background: #fff;
    color: #151515;
    font: inherit;
    font-size: 13px;
    font-weight: 650;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form #speedy_city,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form #speedy_postcode,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form #speedy_street,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form #speedy_street_no,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form #speedy_block_no,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form #speedy_office_id,
.woocommerce-checkout .goemotion-checkout-summary #speedy_form #speedy_note {
    grid-column: 1 / -1;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form input[disabled],
.woocommerce-checkout .goemotion-checkout-summary #speedy_form select[disabled] {
    color: #454545;
    -webkit-text-fill-color: #454545;
    background: #f1f2f3;
    opacity: 1;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form input[type="radio"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_form input[type="checkbox"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods input[type="radio"],
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 0;
    accent-color: #afcb20;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_form label:has(input[type="radio"]),
.woocommerce-checkout .goemotion-checkout-summary #speedy_form label:has(input[type="checkbox"]),
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods label:has(input[type="radio"]),
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods label:has(input[type="checkbox"]) {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    padding: 10px 12px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods {
    display: block;
    margin-top: 12px;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods table,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods tbody {
    display: grid;
    gap: 10px;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 17px;
    background: #fff;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods tr:first-child {
    background: #050505;
    color: #fff;
    font-weight: 950;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods td,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods td.right,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods .speedy_table_right {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods td.right,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods .speedy_table_right {
    color: #050505;
    font-weight: 950;
}

.woocommerce-checkout .goemotion-checkout-summary #speedy_methods .amount,
.woocommerce-checkout .goemotion-checkout-summary #speedy_methods .amount-bgn,
.woocommerce-checkout .goemotion-checkout-summary #econt_detailed_shipping .amount,
.woocommerce-checkout .goemotion-checkout-summary #econt_detailed_shipping .amount-bgn {
    white-space: normal;
    overflow-wrap: anywhere;
}

body.woocommerce-checkout .goemotion-econt-responsive-modal,
body.woocommerce-checkout .ui-dialog.goemotion-econt-responsive-modal,
body.woocommerce-checkout [role="dialog"].goemotion-econt-responsive-modal,
body.woocommerce-checkout .modal.goemotion-econt-responsive-modal {
    width: min(760px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    overflow: auto;
    box-sizing: border-box;
    border-radius: 24px;
    background: #fff;
    color: #151515;
    box-shadow: 0 26px 84px rgba(0, 0, 0, .22);
}

body.woocommerce-checkout .goemotion-econt-responsive-modal *,
body.woocommerce-checkout .goemotion-econt-responsive-modal table,
body.woocommerce-checkout .goemotion-econt-responsive-modal tbody,
body.woocommerce-checkout .goemotion-econt-responsive-modal tr,
body.woocommerce-checkout .goemotion-econt-responsive-modal td {
    max-width: 100%;
    box-sizing: border-box;
}

body.woocommerce-checkout .goemotion-econt-responsive-modal table,
body.woocommerce-checkout .goemotion-econt-responsive-modal tbody,
body.woocommerce-checkout .goemotion-econt-responsive-modal tr,
body.woocommerce-checkout .goemotion-econt-responsive-modal td {
    display: block;
    width: 100%;
}

body.woocommerce-checkout .goemotion-econt-responsive-modal input,
body.woocommerce-checkout .goemotion-econt-responsive-modal select,
body.woocommerce-checkout .goemotion-econt-responsive-modal textarea,
body.woocommerce-checkout .goemotion-econt-responsive-modal button {
    max-width: 100%;
    font-family: inherit;
}

body.woocommerce-checkout .goemotion-econt-responsive-modal input[type="text"],
body.woocommerce-checkout .goemotion-econt-responsive-modal input[type="tel"],
body.woocommerce-checkout .goemotion-econt-responsive-modal input[type="email"],
body.woocommerce-checkout .goemotion-econt-responsive-modal select,
body.woocommerce-checkout .goemotion-econt-responsive-modal textarea {
    display: block;
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 15px;
    background: #f8f9fa;
    color: #151515;
    font-size: 14px;
}

body.woocommerce-checkout .ui-widget-overlay,
body.woocommerce-checkout .modal-backdrop,
body.woocommerce-checkout .goemotion-econt-modal-backdrop {
    background: rgba(0, 0, 0, .48);
    backdrop-filter: blur(6px);
}

@media (max-width: 1380px) {
    .woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout .goemotion-checkout-summary {
        position: static;
    }
}

@media (max-width: 720px) {
    .woocommerce-cart .goemotion-content,
    .woocommerce-checkout .goemotion-content {
        width: min(100% - 16px, 1540px);
    }

    .woocommerce-checkout .goemotion-checkout-summary table.shop_table tfoot tr.shipping,
    .woocommerce-checkout .goemotion-checkout-summary table.shop_table tfoot tr.woocommerce-shipping-totals.shipping,
    .woocommerce-checkout .goemotion-checkout-summary .speedy_row,
    .woocommerce-checkout .goemotion-checkout-summary tr.speedy_row,
    .woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.speedy_row {
        padding: 12px;
    }

    .woocommerce-checkout #econt_delivery_calculate_buttons {
        margin-left: 0;
    }

    .woocommerce-checkout #econt_delivery_calculate_buttons .econt-button,
    .woocommerce-checkout #calculate_shipping_button,
    .woocommerce-checkout button.econt-button {
        width: 100%;
    }

    body.woocommerce-checkout .goemotion-econt-responsive-modal,
    body.woocommerce-checkout .ui-dialog.goemotion-econt-responsive-modal,
    body.woocommerce-checkout [role="dialog"].goemotion-econt-responsive-modal,
    body.woocommerce-checkout .modal.goemotion-econt-responsive-modal {
        width: calc(100vw - 14px);
        max-width: calc(100vw - 14px);
        max-height: calc(100dvh - 14px);
        border-radius: 18px;
    }
}

/* v1.0.53 - Econt customer modal and courier checkout responsiveness. */
.woocommerce-checkout {
    --go-theme-accent: #afcb20;
}

.woocommerce-checkout .woocommerce-shipping-methods,
.woocommerce-checkout ul#shipping_method.woocommerce-shipping-methods {
    container-type: inline-size;
}

.woocommerce-checkout .woocommerce-shipping-methods li,
.woocommerce-checkout ul#shipping_method.woocommerce-shipping-methods li {
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    overflow: visible;
}

.woocommerce-checkout .woocommerce-shipping-methods li > label,
.woocommerce-checkout ul#shipping_method.woocommerce-shipping-methods li > label {
    padding-top: 1px;
}

.woocommerce-checkout .woocommerce-shipping-methods #econt_delivery_calculate_buttons,
.woocommerce-checkout ul#shipping_method.woocommerce-shipping-methods #econt_delivery_calculate_buttons {
    grid-column: 2;
    margin: 12px 0 0;
    width: 100%;
}

.woocommerce-checkout .woocommerce-shipping-methods #econt_delivery_calculate_buttons .econt-button,
.woocommerce-checkout #calculate_shipping_button,
.woocommerce-checkout button.econt-button {
    width: min(100%, 260px);
    white-space: normal;
}

.woocommerce-checkout #econt_detailed_shipping,
.woocommerce-checkout #econt_delivery_calculate_buttons,
.woocommerce-checkout .customer-info-form,
.woocommerce-checkout .customer-info-form form,
body .customer-info-form,
body .customer-info-form form {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

body .goemotion-econt-responsive-modal,
body .goemotion-econt-modal-shell,
body .ui-dialog:has(.customer-info-form),
body [role="dialog"]:has(.customer-info-form),
body .modal:has(.customer-info-form) {
    width: min(820px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    max-height: calc(100dvh - 28px);
    overflow: auto;
    box-sizing: border-box;
    border-radius: 26px;
    background: #fff;
    color: #151515;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
}

body .customer-info-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: clamp(16px, 3vw, 28px);
    border-radius: 24px;
    background: #fff;
    color: #151515;
    font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: visible;
}

body .customer-info-form *,
body .customer-info-form *::before,
body .customer-info-form *::after {
    box-sizing: border-box;
    max-width: 100%;
}

body .customer-info-form form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    height: auto;
    min-width: 0;
    margin: 0;
    overflow: visible;
}

body .customer-info-form input[type="hidden"] {
    display: none;
}

body .customer-info-form .form-element,
body .customer-info-form .address-fields,
body .customer-info-form .change-language,
body .customer-info-form .office_code {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    margin: 0;
    overflow: visible;
}

body .customer-info-form .form-element.name,
body .customer-info-form .form-element.face,
body .customer-info-form .form-element.email,
body .customer-info-form .form-element.country,
body .customer-info-form .form-element.city_name,
body .customer-info-form .address-fields,
body .customer-info-form .form-element.address,
body .customer-info-form .form-element.office_code,
body .customer-info-form .change-language {
    grid-column: 1 / -1;
}

body .customer-info-form .form-element label,
body .customer-info-form label {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    order: -1;
    margin: 0;
    padding: 0;
    color: #4a4a4a;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: .01em;
    transform: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    pointer-events: auto;
}

body .customer-info-form input[type="text"],
body .customer-info-form input[type="tel"],
body .customer-info-form input[type="email"],
body .customer-info-form input[inputmode="email"],
body .customer-info-form select,
body .customer-info-form textarea,
body .customer-info-form what3words-autosuggest,
body .customer-info-form .what3words-autosuggest,
body .customer-info-form .what3words-autosuggest-input-wrapper {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 48px;
    margin: 0;
    border-radius: 16px;
    font-family: inherit;
}

body .customer-info-form input[type="text"],
body .customer-info-form input[type="tel"],
body .customer-info-form input[type="email"],
body .customer-info-form input[inputmode="email"],
body .customer-info-form select,
body .customer-info-form textarea {
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    background-color: #f8f9fa;
    color: #111;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 650;
    box-shadow: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

body .customer-info-form input[type="text"]:focus,
body .customer-info-form input[type="tel"]:focus,
body .customer-info-form input[type="email"]:focus,
body .customer-info-form input[inputmode="email"]:focus,
body .customer-info-form select:focus,
body .customer-info-form textarea:focus {
    outline: 0;
    border-color: rgba(175, 203, 32, .82);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(175, 203, 32, .18);
}

body .customer-info-form .delivery-wrap {
    display: none;
}

body .customer-info-form .delivery-radio,
body .customer-info-form button.radio.delivery-radio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 40px;
    margin: 0;
    padding: 10px 14px 10px 38px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 999px;
    background-color: #fff;
    background-position: 14px center;
    background-size: 17px 17px;
    color: #111;
    font: inherit;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 850;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .045);
    white-space: normal;
    cursor: pointer;
}

body .customer-info-form .delivery-radio:not([disabled]):hover,
body .customer-info-form button.radio.delivery-radio:not([disabled]):hover {
    border-color: rgba(175, 203, 32, .62);
    transform: translateY(-1px);
}

body .customer-info-form .delivery-radio[disabled],
body .customer-info-form button.radio.delivery-radio[disabled] {
    opacity: .72;
    cursor: not-allowed;
}

body .customer-info-form .address-fields {
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 20px;
    background: #fbfcfc;
}

body .customer-info-form .address-fields > br {
    display: none;
}

body .customer-info-form .address-fields > div,
body .customer-info-form .address-fields > a,
body .customer-info-form .address-fields > what3words-autosuggest {
    max-width: 100%;
    min-width: 0;
}

body .customer-info-form .address-fields [style*="display: flex"] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body .customer-info-form .w3w,
body .customer-info-form .w3w-locator,
body .customer-info-form .office-locator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 42px;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 14px;
    background-color: #fff;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    white-space: normal;
}

body .customer-info-form .confirm,
body .customer-info-form button.confirm {
    justify-self: end;
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 220px);
    min-height: 48px;
    margin: 8px 0 0;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    background: #050505;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 950;
    cursor: pointer;
    box-shadow: none;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

body .customer-info-form .confirm:hover,
body .customer-info-form button.confirm:hover {
    transform: translateY(-1px);
    background: #afcb20;
    color: #050505;
}

body .customer-info-form .change-language {
    justify-items: center;
    padding-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

body .customer-info-form .change-language a {
    color: #4d4d4d;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

body .customer-info-form .other-supported-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

body .customer-info-form .ui-autocomplete,
body .customer-info-form .what3words-autosuggest-suggestions {
    z-index: 999999;
    max-width: min(100%, calc(100vw - 40px));
}

body .customer-info-form .suggest-loader {
    position: absolute;
    right: 14px;
    bottom: 15px;
}

@media (max-width: 860px) {
    body .customer-info-form form {
        grid-template-columns: 1fr;
    }

    body .customer-info-form .delivery-radio,
    body .customer-info-form button.radio.delivery-radio {
        width: 100%;
    }

    body .customer-info-form .confirm,
    body .customer-info-form button.confirm {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 560px) {
    body .goemotion-econt-responsive-modal,
    body .goemotion-econt-modal-shell,
    body .ui-dialog:has(.customer-info-form),
    body [role="dialog"]:has(.customer-info-form),
    body .modal:has(.customer-info-form) {
        width: calc(100vw - 12px);
        max-width: calc(100vw - 12px);
        max-height: calc(100dvh - 12px);
        border-radius: 18px;
    }

    body .customer-info-form {
        padding: 14px;
        border-radius: 18px;
    }

    body .customer-info-form input[type="text"],
    body .customer-info-form input[type="tel"],
    body .customer-info-form input[type="email"],
    body .customer-info-form input[inputmode="email"],
    body .customer-info-form select,
    body .customer-info-form textarea {
        font-size: 13px;
    }
}

/* v1.0.54 - adaptive widget footer columns and GO E-Motion contacts page */
.ge-footer-widget-grid {
    --ge-footer-min-column: 0;
    grid-template-columns: repeat(var(--ge-footer-columns, 4), minmax(var(--ge-footer-min-column), 1fr));
}

.ge-footer-widget-column {
    min-width: 0;
}

.ge-footer-widget-grid[data-footer-columns="1"] {
    max-width: min(100%, 720px);
}

.ge-footer-widget-grid[data-footer-columns="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ge-footer-widget-grid[data-footer-columns="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ge-footer-widget-grid[data-footer-columns="4"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ge-footer-widget-grid[data-footer-columns="5"] {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1180px) {
    .ge-footer-widget-grid[data-footer-columns="5"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ge-footer-widget-grid[data-footer-columns="4"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .ge-footer-widget-grid[data-footer-columns="5"],
    .ge-footer-widget-grid[data-footer-columns="4"],
    .ge-footer-widget-grid[data-footer-columns="3"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ge-footer-topline {
        grid-template-columns: 1fr;
    }

    .ge-footer-socials {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .ge-footer-widget-grid,
    .ge-footer-widget-grid[data-footer-columns] {
        grid-template-columns: 1fr;
    }

    .ge-footer-bottom {
        display: grid;
        justify-content: stretch;
    }
}

.ge-contact-page {
    --ge-contact-accent: #afcb20;
    --ge-contact-ink: #121920;
    --ge-contact-muted: #64717b;
    --ge-contact-line: rgba(18, 25, 32, .12);
    --ge-contact-soft: #f4f7f8;
    display: grid;
    gap: clamp(28px, 5vw, 58px);
    width: min(100%, 1240px);
    margin-inline: auto;
    padding: clamp(18px, 3vw, 34px) 0 clamp(36px, 6vw, 76px);
    color: var(--ge-contact-ink);
}

.ge-contact-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(18, 25, 32, .08);
    border-radius: clamp(24px, 3vw, 42px);
    background:
        radial-gradient(circle at 12% 8%, rgba(175, 203, 32, .28), transparent 28rem),
        linear-gradient(135deg, #fff, #f7fafb 58%, #eef3f5);
    box-shadow: 0 26px 80px rgba(18, 25, 32, .08);
}

.ge-contact-hero::after {
    content: "";
    position: absolute;
    right: clamp(20px, 6vw, 72px);
    top: 50%;
    width: clamp(110px, 16vw, 220px);
    aspect-ratio: 1;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(175, 203, 32, .24), rgba(175, 203, 32, .04));
    transform: translateY(-50%);
    pointer-events: none;
}

.ge-contact-eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(175, 203, 32, .14);
    color: color-mix(in srgb, var(--ge-contact-accent) 58%, #1b2610);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ge-contact-hero h1,
.ge-contact-location__title h2,
.ge-contact-form h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--ge-contact-ink);
    font-family: var(--display-font, inherit);
    letter-spacing: -.055em;
    line-height: .96;
}

.ge-contact-hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 7vw, 88px);
}

.ge-contact-hero p {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0;
    color: var(--ge-contact-muted);
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.7;
}

.ge-contact-location {
    display: grid;
    gap: clamp(18px, 3vw, 30px);
}

.ge-contact-location__title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
}

.ge-contact-location__title h2 {
    font-size: clamp(34px, 4.8vw, 62px);
}

.ge-contact-location__title p {
    max-width: 560px;
    margin: 8px 0 0;
    color: var(--ge-contact-muted);
    line-height: 1.65;
}

.ge-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #111820;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    white-space: nowrap;
}

.ge-contact-badge::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--ge-contact-accent);
}

.ge-contact-map {
    overflow: hidden;
    border: 1px solid rgba(18, 25, 32, .08);
    border-radius: clamp(22px, 3vw, 36px);
    background: #e8eef0;
    box-shadow: 0 22px 70px rgba(18, 25, 32, .1);
}

.ge-contact-map iframe {
    display: block;
    width: 100%;
    height: clamp(320px, 42vw, 480px);
    border: 0;
}

.ge-contact-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

.ge-contact-card,
.ge-contact-hours-card,
.ge-contact-form {
    min-width: 0;
    border: 1px solid rgba(18, 25, 32, .09);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(18, 25, 32, .07);
}

.ge-contact-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: clamp(18px, 2.5vw, 26px);
}

.ge-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(175, 203, 32, .15);
    color: #111820;
}

.ge-contact-icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.ge-contact-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.15;
}

.ge-contact-card p {
    margin: 0;
    color: var(--ge-contact-muted);
    line-height: 1.55;
}

.ge-contact-card a,
.ge-contact-hours-card a,
.ge-contact-form a {
    color: var(--ge-contact-ink);
    text-decoration: none;
    overflow-wrap: anywhere;
}

.ge-contact-card a:hover,
.ge-contact-card a:focus-visible,
.ge-contact-hours-card a:hover,
.ge-contact-hours-card a:focus-visible,
.ge-contact-form a:hover,
.ge-contact-form a:focus-visible {
    color: color-mix(in srgb, var(--ge-contact-accent) 64%, #111820);
    outline: 0;
}

.ge-contact-hours {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

.ge-contact-hours--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ge-contact-hours-card {
    display: grid;
    gap: 12px;
    padding: clamp(20px, 2.6vw, 28px);
}

.ge-contact-hours-card__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    color: var(--ge-contact-ink);
    font-size: 20px;
    line-height: 1.15;
}

.ge-contact-hours-card__title::after {
    content: "";
    flex: 0 0 38px;
    height: 4px;
    border-radius: 999px;
    background: var(--ge-contact-accent);
}

.ge-contact-hours-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(18, 25, 32, .08);
}

.ge-contact-hours-row:last-of-type {
    border-bottom: 0;
}

.ge-contact-hours-row span:first-child {
    color: var(--ge-contact-muted);
    line-height: 1.35;
}

.ge-contact-hours-row strong {
    color: var(--ge-contact-ink);
    text-align: right;
    white-space: nowrap;
}

.ge-contact-hours-note {
    display: inline-flex;
    width: fit-content;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--ge-contact-soft);
    color: var(--ge-contact-muted);
    font-size: 13px;
    line-height: 1.25;
}

.ge-contact-phone-list {
    display: grid;
    gap: 8px;
    margin-top: 2px;
}

.ge-contact-phone-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-weight: 800;
}

.ge-contact-phone-list svg {
    width: 17px;
    height: 17px;
    fill: var(--ge-contact-accent);
}

.ge-contact-form {
    display: grid;
    gap: 20px;
    padding: clamp(24px, 4vw, 42px);
}

.ge-contact-form h2 {
    font-size: clamp(30px, 4vw, 52px);
}

.ge-contact-form p {
    max-width: 760px;
    margin: 0;
    color: var(--ge-contact-muted);
    line-height: 1.65;
}

.ge-contact-form .wpcf7,
.ge-contact-form form {
    min-width: 0;
}

.ge-contact-form input:not([type="submit"]),
.ge-contact-form select,
.ge-contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(18, 25, 32, .13);
    border-radius: 16px;
    background: #fff;
    color: var(--ge-contact-ink);
}

.ge-contact-form input[type="submit"],
.ge-contact-form button[type="submit"] {
    border-radius: 999px;
    background: var(--ge-contact-accent);
    color: #111820;
    font-weight: 900;
}

.ge-contact-form input[type="submit"]:hover,
.ge-contact-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--ge-contact-accent) 82%, #111820);
    color: #111820;
}

@media (max-width: 980px) {
    .ge-contact-location__title,
    .ge-contact-card-grid,
    .ge-contact-hours,
    .ge-contact-hours--two {
        grid-template-columns: 1fr;
    }

    .ge-contact-badge {
        width: fit-content;
    }
}

@media (max-width: 640px) {
    .ge-contact-page {
        gap: 30px;
        padding-top: 8px;
    }

    .ge-contact-hero,
    .ge-contact-form {
        border-radius: 24px;
        padding: 24px 18px;
    }

    .ge-contact-hero::after {
        opacity: .55;
        right: -46px;
    }

    .ge-contact-location__title h2 {
        font-size: 34px;
    }

    .ge-contact-card {
        grid-template-columns: 1fr;
    }

    .ge-contact-hours-row {
        display: grid;
        gap: 6px;
    }

    .ge-contact-hours-row strong {
        text-align: left;
        white-space: normal;
    }

    .ge-contact-map iframe {
        height: 320px;
    }
}

/* v1.0.59 - responsive footer working hours widget */
.working-hours-widget {
    --ge-wh-accent: #afcb20;
    --ge-wh-ink: #f7fafc;
    --ge-wh-muted: rgba(247, 250, 252, 0.72);
    --ge-wh-soft: rgba(247, 250, 252, 0.10);
    --ge-wh-line: rgba(247, 250, 252, 0.16);
    --ge-wh-card: rgba(255, 255, 255, 0.07);
    --ge-wh-card-strong: rgba(255, 255, 255, 0.11);
    width: 100%;
    max-width: 100%;
    container-type: inline-size;
}

.working-hours-widget,
.working-hours-widget * {
    box-sizing: border-box;
}

.working-hours-widget ul,
.working-hours-widget__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
    gap: clamp(10px, 2.2cqi, 16px);
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.working-hours-widget li,
.working-hours-widget__card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 168px;
    gap: 8px;
    padding: clamp(15px, 3cqi, 20px);
    overflow: hidden;
    border: 1px solid var(--ge-wh-line);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(175, 203, 32, 0.16), transparent 36%),
        linear-gradient(145deg, var(--ge-wh-card-strong), var(--ge-wh-card));
}

.working-hours-widget li::before,
.working-hours-widget__card::before {
    content: "";
    position: absolute;
    inset: 12px auto auto 12px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ge-wh-accent);
    box-shadow: 0 0 0 6px rgba(175, 203, 32, 0.12);
}

.working-hours-widget .service,
.working-hours-widget__service {
    display: block;
    min-width: 0;
    margin: 0 0 2px;
    padding-left: 24px;
    color: var(--ge-wh-ink);
    font-size: clamp(14px, 2.2cqi, 16px);
    font-weight: 850;
    line-height: 1.18;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
}

.working-hours-widget .days,
.working-hours-widget .hours,
.working-hours-widget .break,
.working-hours-widget__days,
.working-hours-widget__hours,
.working-hours-widget__break {
    display: block;
    min-width: 0;
    max-width: 100%;
    color: var(--ge-wh-muted);
    font-size: clamp(12px, 1.9cqi, 13px);
    line-height: 1.42;
    overflow-wrap: anywhere;
}

.working-hours-widget .days,
.working-hours-widget__days {
    margin-top: 2px;
}

.working-hours-widget .hours,
.working-hours-widget__hours {
    width: fit-content;
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    color: #11170a;
    font-weight: 900;
    line-height: 1.2;
    background: var(--ge-wh-accent);
}

.working-hours-widget .break,
.working-hours-widget__break {
    color: rgba(247, 250, 252, 0.60);
    font-size: clamp(11px, 1.8cqi, 12px);
}

.working-hours-widget .phone,
.working-hours-widget__phone {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
    min-height: 34px;
    margin-top: auto;
    padding: 8px 12px;
    gap: 7px;
    border: 1px solid rgba(175, 203, 32, 0.42);
    border-radius: 999px;
    color: var(--ge-wh-ink);
    font-size: clamp(12px, 1.85cqi, 13px);
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
    background: rgba(175, 203, 32, 0.10);
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.working-hours-widget .phone + .phone,
.working-hours-widget__phone + .working-hours-widget__phone {
    margin-top: 4px;
}

.working-hours-widget .phone::before,
.working-hours-widget__phone::before {
    content: "";
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: currentColor;
    clip-path: path("M3.2 2.2c.3-.3.8-.3 1.1 0l1.6 1.6c.3.3.3.8 0 1.1l-.8.8c.8 1.7 2.1 3 3.8 3.8l.8-.8c.3-.3.8-.3 1.1 0l1.6 1.6c.3.3.3.8 0 1.1l-.7.7c-.5.5-1.2.7-1.9.5C6.1 11.8 2.2 7.9 1.4 4.2c-.1-.7.1-1.4.6-1.9l1.2-.1z");
}

.working-hours-widget .phone:hover,
.working-hours-widget .phone:focus-visible,
.working-hours-widget__phone:hover,
.working-hours-widget__phone:focus-visible {
    color: #11170a;
    border-color: var(--ge-wh-accent);
    background: var(--ge-wh-accent);
    transform: translateY(-1px);
}

@container (max-width: 520px) {
    .working-hours-widget ul,
    .working-hours-widget__list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .working-hours-widget li,
    .working-hours-widget__card {
        min-height: 0;
        border-radius: 18px;
    }

    .working-hours-widget .phone,
    .working-hours-widget__phone {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .working-hours-widget ul,
    .working-hours-widget__list {
        grid-template-columns: 1fr;
    }

    .working-hours-widget li,
    .working-hours-widget__card {
        min-height: 0;
    }

    .working-hours-widget .phone,
    .working-hours-widget__phone {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}


/* v1.0.60 - KuKirin/home, GE Smart Search GO price and premium product page polish. */
.ge-ss .ge-ss-pl--go {
    border: 1px solid rgba(175, 203, 32, .46);
    background: linear-gradient(135deg, rgba(175, 203, 32, .18), rgba(175, 203, 32, .08)), #fbfdf2;
}

.ge-ss .ge-ss-pl--go .ge-ss-pl-lbl,
.ge-ss .ge-ss-pl--go .ge-ss-pl-val,
.ge-ss .ge-ss-pl--go .amount,
.ge-ss .ge-ss-pl--go .woocommerce-Price-amount,
.ge-ss .ge-ss-pl--go .woocommerce-Price-currencySymbol {
    color: #6f8700;
}

.ge-ss .ge-ss-pl--go .ge-ss-pl-val,
.ge-ss .ge-ss-pl--go .amount {
    font-weight: 1000;
}

.ge-ss .ge-ss-pl--regular .ge-ss-pl-val {
    color: #151c22;
}

.goemotion-product-main {
    background:
        radial-gradient(circle at 8% 0%, rgba(175, 203, 32, .13), transparent 30%),
        linear-gradient(180deg, rgba(248, 249, 250, .96), rgba(255, 255, 255, 1));
}

.goemotion-wc-product-detail.product-detail {
    grid-template-columns: minmax(360px, .96fr) minmax(0, 1.04fr);
    gap: clamp(18px, 2.3vw, 34px);
    width: min(1480px, calc(100% - clamp(24px, 4vw, 64px)));
    max-width: 1480px;
    align-items: start;
    margin-top: clamp(18px, 3vw, 42px);
}

.goemotion-wc-product-detail .detail-gallery,
.goemotion-wc-product-detail .detail-info,
.goemotion-scroll-tabs {
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 28px;
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 24px 70px rgba(21, 28, 34, .09);
    backdrop-filter: none;
}

.goemotion-wc-product-detail .detail-gallery {
    position: sticky;
    top: calc(var(--ge-header-desktop-offset, 116px) + 18px);
    gap: 14px;
    padding: clamp(14px, 1.7vw, 24px);
}

.goemotion-wc-product-detail .detail-gallery > img,
.goemotion-wc-product-detail .detail-gallery .goemotion-single-main-image,
.goemotion-wc-product-detail .detail-gallery .product-placeholder-large {
    display: block;
    width: 100%;
    min-height: clamp(340px, 42vw, 620px);
    max-height: 640px;
    padding: clamp(12px, 2vw, 24px);
    border: 1px solid rgba(21, 28, 34, .06);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f4f6f7);
    object-fit: contain;
}

.goemotion-wc-product-detail .detail-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
    gap: 10px;
}

.goemotion-wc-product-detail .detail-thumbs img {
    aspect-ratio: 1;
    padding: 7px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 18px;
    background: #f6f8f9;
    object-fit: contain;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.goemotion-wc-product-detail .detail-thumbs img:hover {
    transform: translateY(-2px);
    border-color: rgba(175, 203, 32, .46);
    background: #fff;
}

.goemotion-wc-product-detail .detail-info {
    display: grid;
    gap: clamp(14px, 1.5vw, 20px);
    padding: clamp(18px, 2.2vw, 32px);
}

.goemotion-wc-product-detail .back-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 999px;
    background: #f4f6f7;
    color: rgba(21, 28, 34, .72);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.goemotion-wc-product-detail .back-link::before {
    content: "←";
    font-weight: 1000;
}

.goemotion-wc-product-detail .back-link:hover,
.goemotion-wc-product-detail .back-link:focus-visible {
    border-color: rgba(175, 203, 32, .5);
    background: rgba(175, 203, 32, .16);
    color: #151c22;
}

.goemotion-wc-product-detail .detail-info .eyebrow {
    margin: 0;
    color: rgba(21, 28, 34, .58);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.goemotion-wc-product-detail .detail-info h1 {
    max-width: 880px;
    font-size: clamp(34px, 4.15vw, 64px);
    line-height: .98;
}

.goemotion-wc-product-detail .detail-price,
.goemotion-wc-product-detail .detail-price.has-go-price,
.goemotion-wc-product-detail .detail-price.has-promo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.goemotion-wc-product-detail .detail-price > div,
.goemotion-wc-product-detail .detail-price .regular-price-line,
.goemotion-wc-product-detail .detail-price .go-price-line,
.goemotion-wc-product-detail .detail-price .detail-price-full {
    min-height: 74px;
    padding: 14px 15px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 20px;
    background: #f8f9fa;
    display: grid;
    gap: 5px;
    align-content: center;
}

.goemotion-wc-product-detail .detail-price > div span:first-child {
    color: rgba(21, 28, 34, .56);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.goemotion-wc-product-detail .detail-price strong,
.goemotion-wc-product-detail .detail-price .amount,
.goemotion-wc-product-detail .detail-price .woocommerce-Price-amount {
    color: #151c22;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 1000;
    line-height: 1;
    text-align: left;
    white-space: normal;
}

.goemotion-wc-product-detail .detail-price .go-price-line {
    border-color: rgba(175, 203, 32, .48);
    background: linear-gradient(135deg, rgba(175, 203, 32, .22), rgba(175, 203, 32, .09)), #fbfdf2;
}

.goemotion-wc-product-detail .detail-price .go-price-line span:first-child,
.goemotion-wc-product-detail .detail-price .go-price-line strong,
.goemotion-wc-product-detail .detail-price .go-price-line .amount,
.goemotion-wc-product-detail .detail-price .go-price-line .woocommerce-Price-amount,
.goemotion-wc-product-detail .detail-price .go-price-line .woocommerce-Price-currencySymbol {
    color: #6f8700;
}

.goemotion-wc-product-detail .detail-copy {
    padding: 16px;
    border: 1px solid rgba(21, 28, 34, .07);
    border-radius: 22px;
    background: rgba(248, 249, 250, .78);
    color: rgba(21, 28, 34, .72);
    font-weight: 650;
    line-height: 1.58;
}

.goemotion-wc-product-detail .icons-specifications {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.goemotion-wc-product-detail .specification-item,
.goemotion-wc-product-detail .btn-specifications {
    min-width: 0;
}

.goemotion-wc-product-detail .specification-item > p,
.goemotion-wc-product-detail .btn-specifications > p:empty {
    display: none;
}

.goemotion-wc-product-detail .btn-specifications {
    min-height: 132px;
    padding: 13px 10px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 18px;
    background: #fff;
    display: grid;
    place-items: center;
    gap: 5px;
    text-align: center;
}

.goemotion-wc-product-detail .btn-specifications img {
    width: auto;
    max-width: 58px;
    height: 42px;
    object-fit: contain;
}

.goemotion-wc-product-detail .btn-specifications p {
    margin: 0;
}

.goemotion-wc-product-detail .btn-specifications span {
    display: block;
    color: rgba(21, 28, 34, .68);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.25;
}

.goemotion-wc-product-detail .btn-specifications p:last-child span {
    color: #151c22;
    font-size: 14px;
    font-weight: 1000;
}

.goemotion-wc-product-detail .facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.goemotion-wc-product-detail .facts div {
    min-width: 0;
    padding: 12px 13px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 17px;
    background: #fff;
}

.goemotion-wc-product-detail .facts dt {
    color: rgba(21, 28, 34, .52);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.goemotion-wc-product-detail .facts dd {
    margin: 4px 0 0;
    color: #151c22;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.goemotion-wc-product-detail .detail-actions {
    padding: 14px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 22px;
    background: #f8f9fa;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: stretch;
}

.goemotion-wc-product-detail .detail-actions .stock {
    grid-column: 1 / -1;
    margin: 0;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(175, 203, 32, .18);
    color: #6f8700;
    font-size: 12px;
    font-weight: 950;
}

.goemotion-wc-product-detail .detail-actions form.cart,
.goemotion-wc-product-detail .detail-actions .cart {
    min-width: 0;
    display: grid;
    grid-template-columns: 88px minmax(180px, 1fr) auto;
    gap: 10px;
    align-items: stretch;
    width: 100%;
}

.goemotion-wc-product-detail .detail-actions .quantity,
.goemotion-wc-product-detail .detail-actions .quantity input.qty {
    width: 100%;
    max-width: 100%;
}

.goemotion-wc-product-detail .detail-actions .quantity input.qty {
    min-height: 48px;
    border-radius: 15px;
    background: #fff;
    text-align: center;
}

.goemotion-wc-product-detail .single_add_to_cart_button,
.goemotion-wc-product-detail .detail-actions .button,
.goemotion-wc-product-detail .detail-actions .btn {
    min-height: 48px;
    border-radius: 15px;
    padding-inline: 16px;
    text-decoration: none;
}

.goemotion-wc-product-detail .ge-wl-single-heart {
    display: flex;
    align-items: stretch;
}

.goemotion-wc-product-detail .ge-wl-heart-single {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(21, 28, 34, .10);
    border-radius: 15px;
    background: #fff;
    color: #151c22;
    display: grid;
    place-items: center;
}

.goemotion-wc-product-detail .ge-wl-heart-single:hover,
.goemotion-wc-product-detail .ge-wl-heart-single:focus-visible {
    border-color: rgba(175, 203, 32, .52);
    background: rgba(175, 203, 32, .14);
}

.goemotion-wc-product-detail .detail-actions > .btn {
    justify-self: stretch;
    background: #151c22;
    color: #fff;
}

.goemotion-wc-product-detail .detail-actions > .btn:hover,
.goemotion-wc-product-detail .detail-actions > .btn:focus-visible {
    background: #afcb20;
    color: #151c22;
}

.goemotion-wc-product-detail .specs {
    padding: 16px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 22px;
    background: #fff;
}

.goemotion-wc-product-detail .specs h2 {
    margin: 0 0 12px;
    color: #151c22;
    font-family: var(--display-font);
    font-size: clamp(22px, 2vw, 30px);
    letter-spacing: -.035em;
}

.goemotion-wc-product-detail .specs > div {
    display: grid;
    grid-template-columns: minmax(140px, .8fr) minmax(0, 1fr);
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid rgba(21, 28, 34, .07);
}

.goemotion-wc-product-detail .specs span {
    color: rgba(21, 28, 34, .58);
    font-size: 13px;
    font-weight: 850;
}

.goemotion-wc-product-detail .specs strong {
    min-width: 0;
    color: #151c22;
    font-size: 13px;
    font-weight: 950;
    text-align: right;
    overflow-wrap: anywhere;
}

.goemotion-scroll-tabs {
    width: min(1480px, calc(100% - clamp(24px, 4vw, 64px)));
    max-width: 1480px;
    margin-top: 0;
    padding: clamp(18px, 2.4vw, 34px);
    border-radius: 28px;
}

.goemotion-scroll-tabs {
    display: grid;
    gap: 18px;
}

.goemotion-scroll-tabs ul.tabs,
.woocommerce div.product .goemotion-scroll-tabs ul.tabs,
.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 8px;
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 22px;
    background: #f5f7f8;
    list-style: none;
}

.goemotion-scroll-tabs ul.tabs::before,
.goemotion-scroll-tabs ul.tabs::after,
.goemotion-scroll-tabs ul.tabs li::before,
.goemotion-scroll-tabs ul.tabs li::after {
    content: none;
    display: none;
}

.goemotion-scroll-tabs ul.tabs li,
.woocommerce div.product .goemotion-scroll-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    flex: 0 1 auto;
}

.goemotion-scroll-tabs ul.tabs li a,
.woocommerce div.product .goemotion-scroll-tabs ul.tabs li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 15px;
    color: rgba(21, 28, 34, .72);
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
}

.goemotion-scroll-tabs ul.tabs li a:hover,
.goemotion-scroll-tabs ul.tabs li.active a,
.woocommerce div.product .goemotion-scroll-tabs ul.tabs li.active a {
    background: #afcb20;
    color: #151c22;
}

.goemotion-scroll-tabs .woocommerce-Tabs-panel,
.woocommerce div.product .goemotion-scroll-tabs .woocommerce-Tabs-panel {
    margin: 0;
    padding: clamp(16px, 2vw, 28px);
    border: 1px solid rgba(21, 28, 34, .08);
    border-radius: 24px;
    background: #fff;
    color: rgba(21, 28, 34, .76);
    line-height: 1.72;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.goemotion-scroll-tabs .woocommerce-Tabs-panel h2,
.goemotion-scroll-tabs .woocommerce-Tabs-panel h3 {
    margin-top: 0;
    color: #151c22;
}

.goemotion-scroll-tabs .woocommerce-product-attributes,
.goemotion-scroll-tabs table.shop_attributes {
    width: 100%;
    border: 0;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.goemotion-scroll-tabs table.shop_attributes tr,
.goemotion-scroll-tabs table.shop_attributes th,
.goemotion-scroll-tabs table.shop_attributes td {
    border: 0;
    background: transparent;
}

.goemotion-scroll-tabs table.shop_attributes th,
.goemotion-scroll-tabs table.shop_attributes td {
    padding: 12px 14px;
    background: #f6f8f9;
}

.goemotion-scroll-tabs table.shop_attributes th {
    border-radius: 14px 0 0 14px;
    color: rgba(21, 28, 34, .58);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.goemotion-scroll-tabs table.shop_attributes td {
    border-radius: 0 14px 14px 0;
    color: #151c22;
    font-weight: 850;
}

@media (max-width: 1180px) {
    .goemotion-wc-product-detail.product-detail {
        grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
    }

    .goemotion-wc-product-detail .icons-specifications {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .goemotion-wc-product-detail.product-detail,
    .goemotion-scroll-tabs {
        width: min(100% - 24px, 720px);
    }

    .goemotion-wc-product-detail.product-detail {
        grid-template-columns: 1fr;
    }

    .goemotion-wc-product-detail .detail-gallery {
        position: static;
    }

    .goemotion-wc-product-detail .detail-gallery > img,
    .goemotion-wc-product-detail .detail-gallery .goemotion-single-main-image,
    .goemotion-wc-product-detail .detail-gallery .product-placeholder-large {
        min-height: clamp(280px, 78vw, 520px);
    }
}

@media (max-width: 680px) {
    .goemotion-wc-product-detail .detail-price,
    .goemotion-wc-product-detail .detail-price.has-go-price,
    .goemotion-wc-product-detail .detail-price.has-promo,
    .goemotion-wc-product-detail .facts,
    .goemotion-wc-product-detail .icons-specifications {
        grid-template-columns: 1fr;
    }

    .goemotion-wc-product-detail .detail-actions {
        grid-template-columns: 1fr;
    }

    .goemotion-wc-product-detail .detail-actions form.cart,
    .goemotion-wc-product-detail .detail-actions .cart {
        grid-template-columns: 82px minmax(0, 1fr) 48px;
    }

    .goemotion-wc-product-detail .specs > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .goemotion-wc-product-detail .specs strong {
        text-align: left;
    }

    .goemotion-scroll-tabs ul.tabs,
    .woocommerce div.product .goemotion-scroll-tabs ul.tabs.wc-tabs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .goemotion-scroll-tabs ul.tabs li a,
    .woocommerce div.product .goemotion-scroll-tabs ul.tabs li a {
        width: 100%;
    }

    .goemotion-scroll-tabs table.shop_attributes,
    .goemotion-scroll-tabs table.shop_attributes tbody,
    .goemotion-scroll-tabs table.shop_attributes tr,
    .goemotion-scroll-tabs table.shop_attributes th,
    .goemotion-scroll-tabs table.shop_attributes td {
        display: block;
        width: 100%;
    }

    .goemotion-scroll-tabs table.shop_attributes th,
    .goemotion-scroll-tabs table.shop_attributes td {
        border-radius: 14px;
    }

    .goemotion-scroll-tabs table.shop_attributes th {
        margin-bottom: 3px;
    }
}

@media (max-width: 440px) {
    .goemotion-wc-product-detail.product-detail,
    .goemotion-scroll-tabs {
        width: min(100% - 18px, 420px);
    }

    .goemotion-wc-product-detail .detail-info,
    .goemotion-wc-product-detail .detail-gallery,
    .goemotion-scroll-tabs {
        border-radius: 22px;
        padding: 14px;
    }

    .goemotion-wc-product-detail .detail-actions form.cart,
    .goemotion-wc-product-detail .detail-actions .cart {
        grid-template-columns: 1fr;
    }

    .goemotion-wc-product-detail .ge-wl-heart-single,
    .goemotion-wc-product-detail .single_add_to_cart_button,
    .goemotion-wc-product-detail .detail-actions .button,
    .goemotion-wc-product-detail .detail-actions .btn {
        width: 100%;
    }
}

/* v1.0.64 - Modern blog archive, blog template and single article layouts */
.goemotion-blog-page,
.goemotion-article-page {
    width: min(var(--container), calc(100vw - 32px));
    margin-inline: auto;
    padding-block: clamp(34px, 6vw, 92px);
}

.goemotion-blog-shell,
.goemotion-article-shell,
.goemotion-related-posts,
.goemotion-article-nav,
.goemotion-article-comments {
    width: 100%;
    min-width: 0;
}

.goemotion-blog-hero,
.goemotion-article-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: clamp(24px, 3vw, 38px);
    background:
        radial-gradient(circle at 12% 18%, rgba(175, 203, 32, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 241, 0.82));
    box-shadow: 0 24px 76px rgba(21, 28, 34, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    padding: clamp(28px, 5vw, 64px);
    margin-bottom: clamp(22px, 4vw, 42px);
}

.goemotion-blog-hero::after,
.goemotion-article-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -34% auto;
    width: clamp(180px, 26vw, 360px);
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(175, 203, 32, 0.18);
    filter: blur(3px);
    pointer-events: none;
}

.goemotion-blog-eyebrow,
.goemotion-article-cats a,
.goemotion-blog-card__cats a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    min-height: 28px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(175, 203, 32, 0.16);
    color: #53630d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

.goemotion-blog-hero h1,
.goemotion-article-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 14px 0 0;
    color: var(--graphite);
    font-family: var(--display-font);
    font-size: clamp(34px, 5.6vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.goemotion-blog-hero p,
.goemotion-blog-hero__text,
.goemotion-article-excerpt {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(30, 35, 39, 0.72);
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 650;
    line-height: 1.7;
}

.goemotion-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 26px);
    align-items: stretch;
}

.goemotion-blog-card {
    min-width: 0;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 54px rgba(21, 28, 34, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.goemotion-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(175, 203, 32, 0.4);
    box-shadow: 0 24px 68px rgba(21, 28, 34, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.goemotion-blog-card--featured {
    grid-column: span 2;
}

.goemotion-blog-card__media {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(175, 203, 32, 0.18), rgba(255, 255, 255, 0.65));
    text-decoration: none;
}

.goemotion-blog-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.3s ease;
}

.goemotion-blog-card:hover .goemotion-blog-card__media img {
    transform: scale(1.055);
}

.goemotion-blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(83, 99, 13, 0.8);
}

.goemotion-blog-card__placeholder svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.goemotion-blog-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(18px, 2.2vw, 26px);
}

.goemotion-blog-card__meta,
.goemotion-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: rgba(30, 35, 39, 0.58);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.goemotion-blog-card__title {
    margin: 0;
    color: var(--graphite);
    font-family: var(--display-font);
    font-size: clamp(21px, 2.1vw, 30px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.goemotion-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.goemotion-blog-card__excerpt {
    color: rgba(30, 35, 39, 0.68);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.goemotion-blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

.goemotion-blog-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.goemotion-blog-card__cats a {
    min-height: 25px;
    padding: 5px 9px;
    font-size: 10px;
}

.goemotion-blog-card__link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    background: #161b1f;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.goemotion-blog-card__link:hover {
    background: #afcb20;
    color: #161b1f;
    transform: translateY(-1px);
}

.goemotion-blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: clamp(24px, 4vw, 44px);
}

.goemotion-blog-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.goemotion-blog-pagination a,
.goemotion-blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(21, 28, 34, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--graphite);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.goemotion-blog-pagination .current,
.goemotion-blog-pagination a:hover {
    background: #afcb20;
    border-color: #afcb20;
    color: #161b1f;
}

.goemotion-blog-empty {
    padding: clamp(26px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.goemotion-article-back {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    color: rgba(30, 35, 39, 0.72);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.goemotion-article-back:hover {
    color: #53630d;
}

.goemotion-article-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.goemotion-article-meta {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.goemotion-article-cover {
    overflow: hidden;
    margin: 0 0 clamp(22px, 4vw, 42px);
    border-radius: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 22px 70px rgba(21, 28, 34, 0.12);
}

.goemotion-article-cover img {
    display: block;
    width: 100%;
    max-height: min(620px, 62vh);
    object-fit: cover;
}

.goemotion-article-layout {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 38px);
    align-items: start;
}

.goemotion-article-sidebar {
    position: sticky;
    top: calc(var(--sticky-offset, 104px) + 24px);
    display: grid;
    gap: 10px;
}

.goemotion-article-sidecard {
    padding: 16px;
    border: 1px solid rgba(21, 28, 34, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 40px rgba(21, 28, 34, 0.07);
}

.goemotion-article-sidecard span {
    display: block;
    margin-bottom: 4px;
    color: rgba(30, 35, 39, 0.58);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.goemotion-article-sidecard strong {
    color: var(--graphite);
    font-size: 14px;
    font-weight: 900;
}

.goemotion-article-sidecard--cats div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.goemotion-article-content {
    min-width: 0;
    padding: clamp(24px, 4vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: clamp(24px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 70px rgba(21, 28, 34, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
    color: rgba(30, 35, 39, 0.82);
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 550;
    line-height: 1.85;
}

.goemotion-article-content > *:first-child {
    margin-top: 0;
}

.goemotion-article-content > *:last-child {
    margin-bottom: 0;
}

.goemotion-article-content h2,
.goemotion-article-content h3,
.goemotion-article-content h4 {
    color: var(--graphite);
    font-family: var(--display-font);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.goemotion-article-content h2 {
    margin-top: 1.8em;
    font-size: clamp(28px, 3vw, 44px);
}

.goemotion-article-content h3 {
    margin-top: 1.55em;
    font-size: clamp(22px, 2.3vw, 32px);
}

.goemotion-article-content a {
    color: #53630d;
    font-weight: 850;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.goemotion-article-content img {
    height: auto;
    border-radius: 18px;
}

.goemotion-article-content blockquote {
    margin: 28px 0;
    padding: 22px 24px;
    border-left: 5px solid #afcb20;
    border-radius: 16px;
    background: rgba(175, 203, 32, 0.1);
    color: var(--graphite);
    font-size: 1.08em;
    font-weight: 750;
}

.goemotion-article-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(21, 28, 34, 0.08);
    border-radius: 16px;
    background: #fff;
}

.goemotion-article-content th,
.goemotion-article-content td {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(21, 28, 34, 0.08);
    text-align: left;
    vertical-align: top;
}

.goemotion-article-content tr:last-child th,
.goemotion-article-content tr:last-child td {
    border-bottom: 0;
}

.goemotion-article-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(20px, 3vw, 36px);
}

.goemotion-article-nav a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 96px;
    padding: 18px;
    border: 1px solid rgba(21, 28, 34, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--graphite);
    text-decoration: none;
    box-shadow: 0 14px 42px rgba(21, 28, 34, 0.07);
}

.goemotion-article-nav span {
    color: rgba(30, 35, 39, 0.55);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.goemotion-article-nav strong {
    font-size: 16px;
    line-height: 1.25;
}

.goemotion-related-posts,
.goemotion-article-comments {
    margin-top: clamp(28px, 5vw, 58px);
}

.goemotion-related-posts__head {
    margin-bottom: 18px;
}

.goemotion-related-posts__head span {
    color: #53630d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.goemotion-related-posts__head h2 {
    margin: 4px 0 0;
    color: var(--graphite);
    font-family: var(--display-font);
    font-size: clamp(28px, 3vw, 44px);
    letter-spacing: -0.05em;
}

.goemotion-blog-grid--related .goemotion-blog-card--featured {
    grid-column: span 1;
}

@media (max-width: 1100px) {
    .goemotion-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .goemotion-blog-card--featured {
        grid-column: span 2;
    }

    .goemotion-article-layout {
        grid-template-columns: 1fr;
    }

    .goemotion-article-sidebar {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .goemotion-blog-page,
    .goemotion-article-page {
        width: min(var(--container), calc(100vw - 20px));
        padding-block: 24px 52px;
    }

    .goemotion-blog-grid,
    .goemotion-article-nav,
    .goemotion-article-sidebar {
        grid-template-columns: 1fr;
    }

    .goemotion-blog-card--featured {
        grid-column: span 1;
    }

    .goemotion-blog-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .goemotion-blog-card__link {
        width: 100%;
    }

    .goemotion-article-cover img {
        max-height: 420px;
    }

    .goemotion-article-content {
        border-radius: 22px;
    }

    .goemotion-article-content table,
    .goemotion-article-content thead,
    .goemotion-article-content tbody,
    .goemotion-article-content tr,
    .goemotion-article-content th,
    .goemotion-article-content td {
        display: block;
        width: 100%;
    }

    .goemotion-article-content th,
    .goemotion-article-content td {
        border-bottom: 1px solid rgba(21, 28, 34, 0.08);
    }
}

/* v1.0.65 - Compact single article hero, responsive blog media and KuKirin CTA click safety. */
.goemotion-article-page {
    padding-block: clamp(24px, 4.6vw, 64px);
}

.goemotion-article-hero {
    display: grid;
    gap: 12px;
    padding: clamp(22px, 3.6vw, 42px);
    margin-bottom: clamp(18px, 3vw, 30px);
    border-radius: clamp(20px, 2.4vw, 30px);
}

.goemotion-article-hero h1 {
    max-width: 860px;
    margin: 2px 0 0;
    font-size: clamp(28px, 3.8vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.goemotion-article-hero .goemotion-article-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.goemotion-article-back {
    width: fit-content;
}

.goemotion-article-excerpt {
    max-width: 820px;
    margin-top: 2px;
    font-size: clamp(14px, 1.16vw, 16.5px);
    line-height: 1.6;
}

.goemotion-article-meta {
    margin-top: 2px;
}

.goemotion-article-cover {
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: clamp(8px, 1.2vw, 14px);
    border: 1px solid rgba(21, 28, 34, 0.07);
    border-radius: clamp(18px, 2.4vw, 30px);
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,248,241,.9));
}

.goemotion-article-cover img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(62vh, 620px);
    object-fit: contain;
    border-radius: clamp(14px, 1.8vw, 24px);
}

.goemotion-blog-card__media {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    padding: clamp(8px, 1vw, 12px);
    background: linear-gradient(135deg, rgba(175,203,32,.11), rgba(255,255,255,.78));
}

.goemotion-blog-card__media img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 18px;
    transform: none;
}

.goemotion-blog-card:hover .goemotion-blog-card__media img {
    transform: scale(1.025);
}

.goemotion-blog-card--featured .goemotion-blog-card__media {
    aspect-ratio: 16 / 9;
}

.goemotion-blog-card__title {
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.12;
}

.goemotion-blog-card:not(.goemotion-blog-card--featured) .goemotion-blog-card__title {
    font-size: clamp(18px, 1.45vw, 22px);
}

.goemotion-article-content img,
.goemotion-article-content figure img,
.goemotion-article-content .wp-block-image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-inline: auto;
}

.goemotion-article-content figure {
    max-width: 100%;
    margin-inline: 0;
}

.scroll-zoom-showcase .zoom-final-copy {
    z-index: 24;
    pointer-events: auto;
}

.scroll-zoom-showcase .zoom-final-copy .btn,
.scroll-zoom-showcase .zoom-final-copy a[href*="elektricni-motor-kukirin-x1"] {
    position: relative;
    z-index: 25;
    pointer-events: auto;
}

@media (max-width: 1100px) {
    .goemotion-article-hero h1 {
        font-size: clamp(28px, 5vw, 46px);
    }

    .goemotion-blog-card--featured .goemotion-blog-card__media,
    .goemotion-blog-card__media {
        aspect-ratio: 16 / 11;
    }
}

@media (max-width: 720px) {
    .goemotion-article-hero {
        padding: 18px;
        gap: 10px;
    }

    .goemotion-article-hero h1 {
        font-size: clamp(25px, 8vw, 36px);
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .goemotion-article-meta {
        gap: 8px;
    }

    .goemotion-article-meta span {
        width: fit-content;
    }

    .goemotion-article-cover {
        padding: 7px;
        border-radius: 18px;
    }

    .goemotion-article-cover img {
        max-height: none;
        border-radius: 14px;
    }

    .goemotion-blog-card__media,
    .goemotion-blog-card--featured .goemotion-blog-card__media {
        aspect-ratio: 1 / 1;
        padding: 8px;
    }

    .goemotion-blog-card__media img {
        border-radius: 14px;
    }
}

/* v1.0.66 - Single article H1 cleanup and modern back-to-blog button. */
.goemotion-article-back {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-height: 44px;
    margin-bottom: 18px;
    padding: 0 18px 0 14px;
    border: 1px solid rgba(21, 28, 34, 0.1);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.7)),
        radial-gradient(circle at 18% 18%, rgba(175, 203, 32, 0.22), transparent 42%);
    box-shadow:
        0 16px 36px rgba(21, 28, 34, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    color: var(--graphite);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.01em;
    line-height: 1;
    text-decoration: none;
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.goemotion-article-back::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(175, 203, 32, 0.18), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.goemotion-article-back__icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 8px 18px rgba(175, 203, 32, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.goemotion-article-back__icon::before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid var(--graphite);
    border-bottom: 2px solid var(--graphite);
    transform: translateX(2px) rotate(45deg);
}

.goemotion-article-back:hover,
.goemotion-article-back:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(175, 203, 32, 0.58);
    color: var(--graphite);
    box-shadow:
        0 20px 46px rgba(21, 28, 34, 0.14),
        0 0 0 5px rgba(175, 203, 32, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    outline: none;
}

.goemotion-article-back:hover::before,
.goemotion-article-back:focus-visible::before {
    opacity: 1;
}

.goemotion-article-back:hover .goemotion-article-back__icon,
.goemotion-article-back:focus-visible .goemotion-article-back__icon {
    transform: translateX(-3px);
    box-shadow: 0 10px 24px rgba(175, 203, 32, 0.36);
}

@media (max-width: 560px) {
    .goemotion-article-back {
        min-height: 42px;
        padding-right: 15px;
        font-size: 12px;
    }

    .goemotion-article-back__icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }
}


/* v1.0.67: restore visible WordPress dropdown submenus in the primary header navigation. */
.site-header .main-nav .primary-menu,
.site-header.is-scrolled .main-nav .primary-menu,
.page-video-hero .site-header:not(.is-scrolled) .main-nav .primary-menu,
.page-video-hero .site-header.is-scrolled .main-nav .primary-menu,
.site-header .main-nav .primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .main-nav .primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, .65vw, 12px);
    width: 100%;
    min-width: 0;
}

.site-header .main-nav .primary-menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.site-header .main-nav .primary-menu > li {
    flex: 0 0 auto;
}

.site-header .main-nav .primary-menu a {
    text-decoration: none;
}

.site-header .main-nav .primary-menu a > span:first-child {
    min-width: 0;
}

.site-header .main-nav .submenu-caret {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: .72;
    transition: transform .2s ease, opacity .2s ease;
}

.site-header .main-nav li:hover > a .submenu-caret,
.site-header .main-nav li:focus-within > a .submenu-caret {
    opacity: 1;
    transform: translateY(0) rotate(225deg);
}

@media (min-width: 1181px) {
    .site-header,
    .site-header .nav-shell,
    .site-header.is-scrolled .nav-shell,
    body:not(.page-video-hero) .site-header .nav-shell,
    body:not(.page-video-hero) .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header:not(.is-scrolled) .nav-shell,
    .page-video-hero .site-header.is-scrolled .nav-shell {
        overflow: visible !important;
    }

    .site-header .main-nav,
    .site-header.is-scrolled .main-nav,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav,
    .page-video-hero .site-header.is-scrolled .main-nav {
        overflow: visible !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
        z-index: 40;
    }

    .site-header .main-nav .primary-menu > li > a,
    .site-header.is-scrolled .main-nav .primary-menu > li > a,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav .primary-menu > li > a,
    .page-video-hero .site-header.is-scrolled .main-nav .primary-menu > li > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .site-header .main-nav .sub-menu,
    .site-header .main-nav .children,
    .site-header.is-scrolled .main-nav .sub-menu,
    .site-header.is-scrolled .main-nav .children,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav .sub-menu,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav .children,
    .page-video-hero .site-header.is-scrolled .main-nav .sub-menu,
    .page-video-hero .site-header.is-scrolled .main-nav .children {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        z-index: 999;
        display: grid !important;
        min-width: 230px;
        max-width: min(320px, calc(100vw - 32px));
        gap: 4px;
        padding: 10px;
        border: 1px solid rgba(255,255,255,.68);
        border-radius: 20px;
        background:
            linear-gradient(145deg, rgba(255,255,255,.96), rgba(242,247,249,.92)),
            radial-gradient(circle at 16% 0%, rgba(175,203,32,.18), transparent 14rem);
        box-shadow:
            0 26px 70px rgba(14, 22, 28, .18),
            inset 0 1px 0 rgba(255,255,255,.78);
        backdrop-filter: blur(16px) saturate(145%);
        -webkit-backdrop-filter: blur(16px) saturate(145%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(-50%, 10px, 0) scale(.985);
        transform-origin: top center;
        transition: opacity .18s ease, visibility .18s ease, transform .22s cubic-bezier(.2,.8,.2,1);
    }

    .site-header .main-nav .sub-menu::before,
    .site-header .main-nav .children::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: 14px;
    }

    .site-header .main-nav .primary-menu > li:nth-last-child(-n + 2) > .sub-menu,
    .site-header .main-nav .primary-menu > li:nth-last-child(-n + 2) > .children {
        right: 0;
        left: auto;
        transform: translate3d(0, 10px, 0) scale(.985);
        transform-origin: top right;
    }

    .site-header .main-nav li:hover > .sub-menu,
    .site-header .main-nav li:focus-within > .sub-menu,
    .site-header .main-nav li:hover > .children,
    .site-header .main-nav li:focus-within > .children,
    .site-header.is-scrolled .main-nav li:hover > .sub-menu,
    .site-header.is-scrolled .main-nav li:focus-within > .sub-menu,
    .site-header.is-scrolled .main-nav li:hover > .children,
    .site-header.is-scrolled .main-nav li:focus-within > .children {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(-50%, 0, 0) scale(1);
    }

    .site-header .main-nav .primary-menu > li:nth-last-child(-n + 2):hover > .sub-menu,
    .site-header .main-nav .primary-menu > li:nth-last-child(-n + 2):focus-within > .sub-menu,
    .site-header .main-nav .primary-menu > li:nth-last-child(-n + 2):hover > .children,
    .site-header .main-nav .primary-menu > li:nth-last-child(-n + 2):focus-within > .children {
        transform: translate3d(0, 0, 0) scale(1);
    }

    .site-header .main-nav .sub-menu .sub-menu,
    .site-header .main-nav .children .children {
        top: -10px;
        left: calc(100% + 10px);
        transform: translate3d(8px, 0, 0) scale(.985);
        transform-origin: top left;
    }

    .site-header .main-nav .sub-menu li:hover > .sub-menu,
    .site-header .main-nav .sub-menu li:focus-within > .sub-menu,
    .site-header .main-nav .children li:hover > .children,
    .site-header .main-nav .children li:focus-within > .children {
        transform: translate3d(0, 0, 0) scale(1);
    }

    .site-header .main-nav .sub-menu a,
    .site-header.is-scrolled .main-nav .sub-menu a,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav .sub-menu a,
    .page-video-hero .site-header.is-scrolled .main-nav .sub-menu a,
    .site-header .main-nav .children a,
    .site-header.is-scrolled .main-nav .children a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        min-width: 0 !important;
        max-width: none !important;
        padding: 11px 12px !important;
        border-radius: 13px;
        color: #18212a !important;
        background: transparent;
        font-size: 13px !important;
        font-weight: 850;
        line-height: 1.25;
        white-space: normal !important;
        overflow-wrap: anywhere;
        box-shadow: none;
    }

    .site-header .main-nav .sub-menu a::before,
    .site-header .main-nav .sub-menu a::after,
    .site-header .main-nav .children a::before,
    .site-header .main-nav .children a::after {
        display: none !important;
    }

    .site-header .main-nav .sub-menu a:hover,
    .site-header .main-nav .sub-menu a:focus-visible,
    .site-header .main-nav .children a:hover,
    .site-header .main-nav .children a:focus-visible {
        color: #0f171d !important;
        background:
            linear-gradient(135deg, rgba(175,203,32,.18), rgba(175,203,32,.08)),
            rgba(255,255,255,.62);
        transform: translateX(2px);
        box-shadow: inset 3px 0 0 rgba(175,203,32,.9);
    }

    .site-header .main-nav .sub-menu .submenu-caret,
    .site-header .main-nav .children .submenu-caret {
        margin-left: auto;
        transform: rotate(-45deg);
    }

    .site-header .main-nav .sub-menu li:hover > a .submenu-caret,
    .site-header .main-nav .sub-menu li:focus-within > a .submenu-caret,
    .site-header .main-nav .children li:hover > a .submenu-caret,
    .site-header .main-nav .children li:focus-within > a .submenu-caret {
        transform: translateX(2px) rotate(-45deg);
    }
}

@media (max-width: 1180px) {
    .site-header .main-nav .primary-menu,
    .site-header.is-scrolled .main-nav .primary-menu,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav .primary-menu,
    .page-video-hero .site-header.is-scrolled .main-nav .primary-menu {
        display: grid;
        align-items: stretch;
        justify-content: stretch;
        gap: 8px;
        width: 100%;
    }

    .site-header .main-nav .primary-menu > li,
    .site-header.is-scrolled .main-nav .primary-menu > li {
        width: 100%;
        min-width: 0;
    }

    .site-header .main-nav .primary-menu > li > a,
    .site-header.is-scrolled .main-nav .primary-menu > li > a,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav .primary-menu > li > a,
    .page-video-hero .site-header.is-scrolled .main-nav .primary-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 14px !important;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 14px;
        background: rgba(255,255,255,.06);
        color: #fff !important;
        font-size: 15px !important;
        line-height: 1.2;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .site-header .main-nav .primary-menu a::before,
    .site-header .main-nav .primary-menu a::after {
        display: none !important;
    }

    .site-header .main-nav .sub-menu,
    .site-header .main-nav .children,
    .site-header.is-scrolled .main-nav .sub-menu,
    .site-header.is-scrolled .main-nav .children,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav .sub-menu,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav .children,
    .page-video-hero .site-header.is-scrolled .main-nav .sub-menu,
    .page-video-hero .site-header.is-scrolled .main-nav .children {
        position: static;
        display: grid !important;
        gap: 6px;
        margin: 7px 0 0 12px;
        padding: 8px;
        border: 1px solid rgba(255,255,255,.1);
        border-left: 3px solid rgba(175,203,32,.72);
        border-radius: 14px;
        background: rgba(255,255,255,.055);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .site-header .main-nav .sub-menu a,
    .site-header.is-scrolled .main-nav .sub-menu a,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav .sub-menu a,
    .page-video-hero .site-header.is-scrolled .main-nav .sub-menu a,
    .site-header .main-nav .children a,
    .site-header.is-scrolled .main-nav .children a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 11px 12px !important;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 12px;
        background: rgba(255,255,255,.055);
        color: rgba(255,255,255,.9) !important;
        font-size: 14px !important;
        line-height: 1.25;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .site-header .main-nav li:hover > a .submenu-caret,
    .site-header .main-nav li:focus-within > a .submenu-caret {
        transform: translateY(-2px) rotate(45deg);
    }
}

/* v1.0.69: compact, lightweight mega menu only for the explicitly marked menu item. */
@media (min-width: 1181px) {
    .site-header,
    .site-header .nav-shell,
    .site-header .main-nav,
    .site-header .primary-menu,
    .site-header.is-scrolled,
    .site-header.is-scrolled .nav-shell,
    .site-header.is-scrolled .main-nav,
    .page-video-hero .site-header:not(.is-scrolled),
    .page-video-hero .site-header:not(.is-scrolled) .nav-shell,
    .page-video-hero .site-header:not(.is-scrolled) .main-nav,
    .page-video-hero .site-header.is-scrolled,
    .page-video-hero .site-header.is-scrolled .nav-shell,
    .page-video-hero .site-header.is-scrolled .main-nav {
        overflow: visible !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    .site-header .main-nav {
        position: relative;
        isolation: isolate;
    }

    .site-header .main-nav .primary-menu > li {
        position: relative;
    }

    .site-header .main-nav .primary-menu > li > a {
        position: relative;
        z-index: 2;
    }

    .site-header .main-nav .primary-menu > li.menu-item-has-children::after {
        content: "";
        position: absolute;
        top: 100%;
        right: -12px;
        left: -12px;
        height: 16px;
        pointer-events: auto;
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children {
        top: calc(100% + 7px);
        min-width: 260px;
        max-width: min(360px, calc(100vw - 28px));
        max-height: none;
        overflow: visible;
        padding: 9px !important;
        gap: 4px;
        border-radius: 18px;
        background: rgba(255,255,255,.98) !important;
        box-shadow: 0 18px 48px rgba(14, 22, 28, .16), inset 0 1px 0 rgba(255,255,255,.8) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: opacity .14s ease, visibility .14s ease, transform .16s cubic-bezier(.2,.8,.2,1);
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu::before,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children::before {
        height: 12px;
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu .sub-menu,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu .children,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children .sub-menu,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children .children {
        position: static !important;
        inset: auto !important;
        display: grid !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 3px 0 3px 9px !important;
        padding: 3px 0 3px 9px !important;
        gap: 3px !important;
        border: 0 !important;
        border-left: 1px solid rgba(175,203,32,.42) !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu .sub-menu::before,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu .children::before,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children .sub-menu::before,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children .children::before {
        display: none !important;
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu a,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children a {
        padding: 9px 11px !important;
        font-size: 12.6px !important;
        line-height: 1.18;
        border-radius: 11px;
        transition: background-color .12s ease, color .12s ease, transform .12s ease, box-shadow .12s ease;
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu .menu-item-has-children > a,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children .menu-item-has-children > a {
        background: rgba(175,203,32,.08) !important;
        box-shadow: inset 3px 0 0 rgba(175,203,32,.7) !important;
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu .sub-menu a,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children .children a,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu .children a,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children .sub-menu a {
        padding: 7px 9px !important;
        font-size: 12px !important;
        font-weight: 720 !important;
    }

    .site-header .main-nav .is-mega-menu {
        position: static !important;
    }

    .site-header .main-nav .is-mega-menu::after {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        height: 14px;
        pointer-events: auto;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        right: auto !important;
        left: 50% !important;
        z-index: 10050 !important;
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: start;
        width: min(1080px, calc(100vw - 24px));
        min-width: 0 !important;
        max-width: calc(100vw - 24px) !important;
        max-height: none !important;
        gap: 7px;
        padding: 12px !important;
        border: 1px solid rgba(16,28,35,.08) !important;
        border-radius: 20px !important;
        background: rgba(255,255,255,.99) !important;
        box-shadow: 0 22px 58px rgba(11, 21, 27, .18), inset 0 1px 0 rgba(255,255,255,.86) !important;
        overflow: visible !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(-50%, 8px, 0) !important;
        transform-origin: top center !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: opacity .14s ease, visibility .14s ease, transform .16s cubic-bezier(.2,.8,.2,1);
        will-change: opacity, transform;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: 12px;
    }

    .site-header .main-nav .is-mega-menu:hover > .mega-menu-panel,
    .site-header .main-nav .is-mega-menu:focus-within > .mega-menu-panel {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate3d(-50%, 0, 0) !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li {
        display: grid;
        align-content: start;
        gap: 3px;
        min-width: 0;
        padding: 5px;
        border: 1px solid rgba(16,28,35,.055);
        border-radius: 14px;
        background: rgba(246,249,250,.74);
        box-shadow: none;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li > a {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100%;
        padding: 8px 9px !important;
        border-radius: 10px !important;
        color: #121c22 !important;
        background: rgba(175,203,32,.13) !important;
        font-size: 12.4px !important;
        font-weight: 850 !important;
        line-height: 1.16;
        letter-spacing: -.01em;
        box-shadow: inset 3px 0 0 rgba(175,203,32,.85) !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children {
        position: static !important;
        inset: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: none !important;
        gap: 1px !important;
        margin: 0 !important;
        padding: 1px 0 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu .sub-menu,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children .children {
        margin-left: 7px !important;
        padding-left: 7px !important;
        border-left: 1px solid rgba(175,203,32,.32) !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu::before,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children::before {
        display: none !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel a {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100%;
        white-space: normal !important;
        overflow-wrap: anywhere;
        transition: background-color .12s ease, color .12s ease, transform .12s ease, box-shadow .12s ease;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu a,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children a {
        padding: 5px 8px !important;
        border-radius: 8px !important;
        color: #26323a !important;
        background: transparent !important;
        font-size: 11.7px !important;
        font-weight: 700 !important;
        line-height: 1.14;
        box-shadow: none !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel a:hover,
    .site-header .main-nav .is-mega-menu .mega-menu-panel a:focus-visible {
        color: #101820 !important;
        background: rgba(175,203,32,.16) !important;
        transform: translateX(1px);
        box-shadow: inset 3px 0 0 rgba(175,203,32,.82) !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .submenu-caret {
        display: none !important;
    }
}

@media (min-width: 1360px) {
    .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        width: min(1240px, calc(100vw - 32px));
        gap: 8px;
    }
}

@media (max-width: 1180px) {
    .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        max-height: none !important;
        overflow: visible !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li {
        border-radius: 14px;
        background: rgba(255,255,255,.04);
    }
}


/* v1.0.71: stable, managed mega menu for the exact ID 81 target. */
@media (min-width: 1181px) {
    body.goemotion-mega-menu-managed .site-header .main-nav .is-mega-menu:not(.is-mega-open):not(:focus-within) > .mega-menu-panel,
    body.goemotion-mega-menu-managed .site-header .main-nav .is-mega-menu:hover:not(.is-mega-open):not(:focus-within) > .mega-menu-panel {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate3d(-50%, 6px, 0) !important;
    }

    body.goemotion-mega-menu-managed .site-header .main-nav .is-mega-menu.is-mega-open > .mega-menu-panel,
    body.goemotion-mega-menu-managed .site-header .main-nav .is-mega-menu:focus-within > .mega-menu-panel {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate3d(-50%, 0, 0) !important;
    }

    .site-header .main-nav .is-mega-menu {
        position: static !important;
    }

    .site-header .main-nav .is-mega-menu::after {
        right: auto !important;
        left: auto !important;
        width: min(100%, 190px) !important;
        height: 8px !important;
        pointer-events: none !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        top: calc(100% + 3px) !important;
        z-index: 10060 !important;
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
        width: min(1180px, calc(100vw - 18px)) !important;
        max-width: calc(100vw - 18px) !important;
        gap: 5px !important;
        padding: 8px !important;
        border-radius: 16px !important;
        box-shadow: 0 16px 42px rgba(11, 21, 27, .15), inset 0 1px 0 rgba(255,255,255,.86) !important;
        overflow: visible !important;
        transition: opacity .1s ease, visibility .1s ease, transform .12s cubic-bezier(.2,.8,.2,1) !important;
        will-change: auto !important;
        contain: layout paint;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel::before {
        height: 6px !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li,
    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li.mega-menu-group {
        gap: 1px !important;
        padding: 3px !important;
        border-radius: 10px !important;
        border-color: rgba(16,28,35,.045) !important;
        background: rgba(247,250,251,.72) !important;
        box-shadow: none !important;
        min-width: 0 !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li > a {
        padding: 5px 6px !important;
        border-radius: 8px !important;
        font-size: 11px !important;
        line-height: 1.06 !important;
        font-weight: 860 !important;
        letter-spacing: -.012em !important;
        box-shadow: inset 2px 0 0 rgba(175,203,32,.84) !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children {
        gap: 0 !important;
        padding-top: 1px !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu .sub-menu,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children .children {
        margin-left: 4px !important;
        padding-left: 4px !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu a,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children a {
        padding: 3px 5px !important;
        border-radius: 6px !important;
        font-size: 10.35px !important;
        line-height: 1.04 !important;
        font-weight: 720 !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel a:hover,
    .site-header .main-nav .is-mega-menu .mega-menu-panel a:focus-visible {
        transform: none !important;
        box-shadow: inset 2px 0 0 rgba(175,203,32,.84) !important;
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children {
        top: calc(100% + 4px) !important;
        transition: opacity .1s ease, visibility .1s ease, transform .12s cubic-bezier(.2,.8,.2,1) !important;
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu)::after {
        height: 8px !important;
    }
}

@media (min-width: 1440px) {
    .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
        width: min(1360px, calc(100vw - 24px)) !important;
        gap: 5px !important;
    }
}

@media (min-width: 1680px) {
    .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
        width: min(1540px, calc(100vw - 28px)) !important;
    }
}

@media (min-width: 1181px) and (max-width: 1280px) {
    .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        width: calc(100vw - 16px) !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu a,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children a {
        font-size: 10px !important;
        padding: 3px 4px !important;
    }
}

/* v1.0.72: stable 4-column mega menu, compact full visibility, and no category eyebrow. */
.goemotion-shop-head > div > .eyebrow {
    display: none !important;
}

@media (min-width: 1181px) {
    body.goemotion-mega-menu-managed .site-header .main-nav .is-mega-menu:not(.is-mega-open) > .mega-menu-panel,
    body.goemotion-mega-menu-managed .site-header .main-nav .is-mega-menu:hover:not(.is-mega-open) > .mega-menu-panel,
    body.goemotion-mega-menu-managed .site-header .main-nav .is-mega-menu:focus-within:not(.is-mega-open) > .mega-menu-panel {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate3d(-50%, 4px, 0) !important;
    }

    body.goemotion-mega-menu-managed .site-header .main-nav .is-mega-menu.is-mega-open > .mega-menu-panel {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate3d(-50%, 0, 0) !important;
    }

    .site-header .main-nav .is-mega-menu {
        position: static !important;
    }

    .site-header .main-nav .is-mega-menu::after {
        display: none !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        top: calc(100% + 2px) !important;
        left: 50% !important;
        right: auto !important;
        width: min(1280px, calc(100vw - 16px)) !important;
        max-width: calc(100vw - 16px) !important;
        max-height: none !important;
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        grid-auto-flow: row !important;
        align-items: start !important;
        gap: 4px !important;
        padding: 6px !important;
        overflow: visible !important;
        border-radius: 14px !important;
        background: rgba(255,255,255,.992) !important;
        box-shadow: 0 12px 30px rgba(11, 21, 27, .13), inset 0 1px 0 rgba(255,255,255,.9) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: opacity .09s ease, visibility .09s ease, transform .1s ease !important;
        will-change: auto !important;
        contain: none !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 100% !important;
        height: 5px !important;
        display: block !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li,
    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li.mega-menu-group {
        min-width: 0 !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        align-content: start !important;
        gap: 0 !important;
        padding: 3px !important;
        border: 1px solid rgba(16,28,35,.045) !important;
        border-radius: 9px !important;
        background: rgba(247,250,251,.62) !important;
        box-shadow: none !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li > a {
        min-height: 0 !important;
        padding: 4px 5px !important;
        border-radius: 7px !important;
        font-size: 10.8px !important;
        line-height: 1.03 !important;
        font-weight: 850 !important;
        letter-spacing: -.018em !important;
        color: #101820 !important;
        background: rgba(175,203,32,.10) !important;
        box-shadow: inset 2px 0 0 rgba(175,203,32,.9) !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children {
        position: static !important;
        inset: auto !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0 !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 1px 0 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        overflow: visible !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel > li.mega-menu-group--medium > .sub-menu,
    .site-header .main-nav .is-mega-menu .mega-menu-panel > li.mega-menu-group--medium > .children,
    .site-header .main-nav .is-mega-menu .mega-menu-panel > li.mega-menu-group--large > .sub-menu,
    .site-header .main-nav .is-mega-menu .mega-menu-panel > li.mega-menu-group--large > .children {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 3px !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu .sub-menu,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children .children {
        grid-column: 1 / -1 !important;
        margin: 0 0 0 4px !important;
        padding: 0 0 0 4px !important;
        border-left: 1px solid rgba(175,203,32,.28) !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu::before,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children::before,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .submenu-caret {
        display: none !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel a {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
        transition: background-color .08s ease, color .08s ease, box-shadow .08s ease !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu a,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children a {
        padding: 2px 4px !important;
        border-radius: 5px !important;
        font-size: 9.45px !important;
        line-height: 1.06 !important;
        font-weight: 700 !important;
        color: #26323a !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel a:hover,
    .site-header .main-nav .is-mega-menu .mega-menu-panel a:focus-visible {
        color: #101820 !important;
        background: rgba(175,203,32,.15) !important;
        transform: none !important;
        box-shadow: inset 2px 0 0 rgba(175,203,32,.88) !important;
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu)::after {
        height: 10px !important;
        left: -10px !important;
        right: -10px !important;
    }

    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu,
    .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children {
        top: calc(100% + 3px) !important;
        transition: opacity .09s ease, visibility .09s ease, transform .1s ease !important;
    }
}

@media (min-width: 1500px) {
    .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        width: min(1360px, calc(100vw - 24px)) !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel > li.mega-menu-group--large > .sub-menu,
    .site-header .main-nav .is-mega-menu .mega-menu-panel > li.mega-menu-group--large > .children {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 1181px) and (max-width: 1280px) {
    .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        width: calc(100vw - 12px) !important;
        gap: 3px !important;
        padding: 5px !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li,
    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li.mega-menu-group {
        padding: 2px !important;
    }

    .site-header .main-nav .is-mega-menu > .mega-menu-panel > li > a {
        font-size: 10.1px !important;
        padding: 3px 4px !important;
    }

    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu a,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children a {
        font-size: 8.9px !important;
        padding: 2px 3px !important;
        line-height: 1.04 !important;
    }
}

@media (max-width: 1180px) {
    .site-header .main-nav .is-mega-menu > .mega-menu-panel,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu,
    .site-header .main-nav .is-mega-menu .mega-menu-panel .children {
        max-height: none !important;
        overflow: visible !important;
    }
}


/* v1.0.73: managed, stable dropdowns for all desktop header submenus. */
@media (min-width: 1181px) {
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) {
        position: relative !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu)::after {
        content: "" !important;
        position: absolute !important;
        top: 100% !important;
        right: -14px !important;
        left: -14px !important;
        height: 16px !important;
        pointer-events: auto !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children {
        top: calc(100% + 1px) !important;
        z-index: 10040 !important;
        min-width: 248px !important;
        max-width: min(360px, calc(100vw - 20px)) !important;
        padding: 8px !important;
        gap: 3px !important;
        border-radius: 16px !important;
        background: rgba(255,255,255,.992) !important;
        box-shadow: 0 14px 38px rgba(11, 21, 27, .14), inset 0 1px 0 rgba(255,255,255,.88) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: opacity .08s ease, visibility .08s ease, transform .1s ease !important;
        will-change: auto !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu::before,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children::before {
        content: "" !important;
        position: absolute !important;
        right: 0 !important;
        bottom: 100% !important;
        left: 0 !important;
        display: block !important;
        height: 14px !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):not(.is-submenu-open):not(:focus-within) > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):not(.is-submenu-open):not(:focus-within) > .children,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):hover:not(.is-submenu-open):not(:focus-within) > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):hover:not(.is-submenu-open):not(:focus-within) > .children {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate3d(-50%, 4px, 0) scale(.99) !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu).is-submenu-open > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu).is-submenu-open > .children,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):focus-within > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):focus-within > .children {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate3d(-50%, 0, 0) scale(1) !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2):not(.is-submenu-open):not(:focus-within) > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2):not(.is-submenu-open):not(:focus-within) > .children,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2):hover:not(.is-submenu-open):not(:focus-within) > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2):hover:not(.is-submenu-open):not(:focus-within) > .children {
        transform: translate3d(0, 4px, 0) scale(.99) !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2).is-submenu-open > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2).is-submenu-open > .children,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2):focus-within > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2):focus-within > .children {
        transform: translate3d(0, 0, 0) scale(1) !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu a,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children a {
        padding: 8px 10px !important;
        border-radius: 10px !important;
        font-size: 12.4px !important;
        line-height: 1.16 !important;
        transition: background-color .08s ease, color .08s ease, box-shadow .08s ease !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu a:hover,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children a:hover,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu a:focus-visible,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children a:focus-visible {
        transform: none !important;
        background: rgba(175,203,32,.15) !important;
        box-shadow: inset 2px 0 0 rgba(175,203,32,.86) !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu:not(.is-mega-open):not(:focus-within) > .mega-menu-panel,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu:hover:not(.is-mega-open):not(:focus-within) > .mega-menu-panel {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate3d(-50%, 4px, 0) !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu.is-mega-open > .mega-menu-panel,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu:focus-within > .mega-menu-panel {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate3d(-50%, 0, 0) !important;
    }
}

/* v1.0.74: single-state desktop menu controller; prevents mega menu from staying above sibling dropdowns. */
@media (min-width: 1181px) {
    body.goemotion-menu-managed .site-header .main-nav,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu {
        position: relative !important;
        overflow: visible !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li > a {
        position: relative !important;
        z-index: 10090 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu > .mega-menu-panel,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu:hover > .mega-menu-panel,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu:focus-within > .mega-menu-panel,
    body.goemotion-menu-managed .site-header.is-scrolled .main-nav .primary-menu > li.is-mega-menu:hover > .mega-menu-panel,
    body.goemotion-menu-managed .page-video-hero .site-header .main-nav .primary-menu > li.is-mega-menu:hover > .mega-menu-panel {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate3d(-50%, 4px, 0) !important;
        z-index: 10020 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu.is-mega-open > .mega-menu-panel,
    body.goemotion-menu-managed .site-header.is-scrolled .main-nav .primary-menu > li.is-mega-menu.is-mega-open > .mega-menu-panel,
    body.goemotion-menu-managed .page-video-hero .site-header .main-nav .primary-menu > li.is-mega-menu.is-mega-open > .mega-menu-panel {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate3d(-50%, 0, 0) !important;
        z-index: 10045 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):hover > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):focus-within > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):hover > .children,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):focus-within > .children {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        z-index: 10070 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu).is-submenu-open > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu).is-submenu-open > .children {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: 10080 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2) > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2) > .children,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2):hover > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2):focus-within > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2):hover > .children,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2):focus-within > .children {
        transform: translate3d(0, 4px, 0) scale(.99) !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2).is-submenu-open > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu):nth-last-child(-n + 2).is-submenu-open > .children {
        transform: translate3d(0, 0, 0) scale(1) !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu::after {
        display: none !important;
        pointer-events: none !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        top: calc(100% + 1px) !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        width: min(1320px, calc(100vw - 14px)) !important;
        max-width: calc(100vw - 14px) !important;
        gap: 3px !important;
        padding: 5px !important;
        border-radius: 13px !important;
        box-shadow: 0 10px 28px rgba(11, 21, 27, .12), inset 0 1px 0 rgba(255,255,255,.92) !important;
        transition: opacity .07s ease, visibility .07s ease, transform .08s ease !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu > .mega-menu-panel::before {
        height: 3px !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu > .mega-menu-panel > li {
        padding: 2px !important;
        border-radius: 8px !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu > .mega-menu-panel > li > a {
        padding: 3px 4px !important;
        font-size: 10px !important;
        line-height: 1.02 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu a,
    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu .mega-menu-panel .children a {
        padding: 2px 3px !important;
        font-size: 8.7px !important;
        line-height: 1.03 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu .mega-menu-panel > li.mega-menu-group--medium > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu .mega-menu-panel > li.mega-menu-group--medium > .children,
    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu .mega-menu-panel > li.mega-menu-group--large > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu .mega-menu-panel > li.mega-menu-group--large > .children {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 2px !important;
    }
}

@media (min-width: 1181px) and (max-width: 1280px) {
    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu > .mega-menu-panel {
        width: calc(100vw - 10px) !important;
        gap: 2px !important;
        padding: 4px !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu > .mega-menu-panel > li > a {
        font-size: 9.4px !important;
        padding: 3px !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu .mega-menu-panel .sub-menu a,
    body.goemotion-menu-managed .site-header .main-nav .is-mega-menu .mega-menu-panel .children a {
        font-size: 8.15px !important;
        padding: 1px 2px !important;
    }
}


/* v1.0.75: mega menu can no longer self-activate from its wide hidden panel area. */
@media (min-width: 1181px) {
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu > .mega-menu-panel,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu:hover > .mega-menu-panel,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu:focus-within > .mega-menu-panel,
    body.goemotion-menu-managed .site-header.is-scrolled .main-nav .primary-menu > li.is-mega-menu:hover > .mega-menu-panel,
    body.goemotion-menu-managed .page-video-hero .site-header .main-nav .primary-menu > li.is-mega-menu:hover > .mega-menu-panel {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate3d(-50%, 4px, 0) !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu.is-mega-open > .mega-menu-panel,
    body.goemotion-menu-managed .site-header.is-scrolled .main-nav .primary-menu > li.is-mega-menu.is-mega-open > .mega-menu-panel,
    body.goemotion-menu-managed .page-video-hero .site-header .main-nav .primary-menu > li.is-mega-menu.is-mega-open > .mega-menu-panel {
        display: grid !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate3d(-50%, 0, 0) !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu:not(.is-mega-open) > .mega-menu-panel *,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu:not(.is-mega-open) > .mega-menu-panel::before,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu:not(.is-mega-open) > .mega-menu-panel::after {
        pointer-events: none !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu > a {
        isolation: isolate !important;
    }
}

/* v1.0.76: compact footer working hours widget to reduce footer height. */
.site-footer .working-hours-widget {
    --ge-wh-compact-card: rgba(255,255,255,.055);
    --ge-wh-compact-line: rgba(247,250,252,.13);
}

.site-footer .working-hours-widget ul,
.site-footer .working-hours-widget__list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
}

.site-footer .working-hours-widget li,
.site-footer .working-hours-widget__card {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
        "service hours"
        "days hours"
        "break break"
        "phone phone" !important;
    align-items: center !important;
    gap: 2px 8px !important;
    padding: 8px 10px 8px 12px !important;
    border-radius: 13px !important;
    background: linear-gradient(135deg, var(--ge-wh-compact-card), rgba(255,255,255,.03)) !important;
    border-color: var(--ge-wh-compact-line) !important;
}

.site-footer .working-hours-widget li::before,
.site-footer .working-hours-widget__card::before {
    inset: 10px auto auto 0 !important;
    width: 3px !important;
    height: calc(100% - 20px) !important;
    min-height: 22px !important;
    border-radius: 999px !important;
    box-shadow: none !important;
}

.site-footer .working-hours-widget .service,
.site-footer .working-hours-widget__service {
    grid-area: service !important;
    margin: 0 !important;
    padding-left: 0 !important;
    font-size: 12.5px !important;
    line-height: 1.12 !important;
    font-weight: 850 !important;
}

.site-footer .working-hours-widget .days,
.site-footer .working-hours-widget__days {
    grid-area: days !important;
    margin: 0 !important;
    font-size: 11.2px !important;
    line-height: 1.18 !important;
    color: rgba(247,250,252,.66) !important;
}

.site-footer .working-hours-widget .hours,
.site-footer .working-hours-widget__hours {
    grid-area: hours !important;
    justify-self: end !important;
    align-self: center !important;
    padding: 4px 7px !important;
    border-radius: 999px !important;
    font-size: 11.2px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.site-footer .working-hours-widget .break,
.site-footer .working-hours-widget__break {
    grid-area: break !important;
    margin: 1px 0 0 !important;
    font-size: 10.6px !important;
    line-height: 1.12 !important;
    color: rgba(247,250,252,.54) !important;
}

.site-footer .working-hours-widget .phone,
.site-footer .working-hours-widget__phone {
    grid-column: 1 / -1 !important;
    width: auto !important;
    max-width: 100% !important;
    min-height: 24px !important;
    margin: 4px 0 0 !important;
    padding: 4px 8px !important;
    gap: 5px !important;
    border-radius: 999px !important;
    font-size: 11.2px !important;
    line-height: 1.05 !important;
    justify-content: center !important;
    text-align: center !important;
}

.site-footer .working-hours-widget .phone + .phone,
.site-footer .working-hours-widget__phone + .working-hours-widget__phone {
    margin-top: 3px !important;
}

.site-footer .working-hours-widget .phone::before,
.site-footer .working-hours-widget__phone::before {
    flex-basis: 11px !important;
    width: 11px !important;
    height: 11px !important;
    border-radius: 3px !important;
}

@container (min-width: 420px) {
    .site-footer .working-hours-widget li,
    .site-footer .working-hours-widget__card {
        grid-template-columns: minmax(96px, .95fr) auto !important;
    }

    .site-footer .working-hours-widget .phone,
    .site-footer .working-hours-widget__phone {
        width: fit-content !important;
        justify-content: flex-start !important;
    }
}

@media (max-width: 560px) {
    .site-footer .working-hours-widget li,
    .site-footer .working-hours-widget__card {
        grid-template-columns: minmax(0, 1fr) auto !important;
        padding: 8px 10px 8px 12px !important;
    }

    .site-footer .working-hours-widget .phone,
    .site-footer .working-hours-widget__phone {
        width: auto !important;
    }
}

/* v1.0.77: tighter Spletna naročila phones in footer working-hours widget. */
.site-footer .working-hours-widget li:nth-child(3),
.site-footer .working-hours-widget__card:nth-child(3) {
    gap: 1px 7px !important;
    padding-block: 7px !important;
}

.site-footer .working-hours-widget li:nth-child(3) .phone,
.site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone {
    min-height: 21px !important;
    margin-top: 2px !important;
    padding: 3px 7px !important;
    gap: 4px !important;
    font-size: 10.8px !important;
    line-height: 1 !important;
    letter-spacing: -0.01em !important;
}

.site-footer .working-hours-widget li:nth-child(3) .phone + .phone,
.site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone + .working-hours-widget__phone {
    margin-top: 2px !important;
}

.site-footer .working-hours-widget li:nth-child(3) .phone::before,
.site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone::before {
    flex-basis: 9px !important;
    width: 9px !important;
    height: 9px !important;
    border-radius: 2.5px !important;
}

@container (min-width: 315px) {
    .site-footer .working-hours-widget li:nth-child(3),
    .site-footer .working-hours-widget__card:nth-child(3) {
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas:
            "service hours"
            "days hours"
            "break break"
            "phone-a phone-b" !important;
        align-items: center !important;
    }

    .site-footer .working-hours-widget li:nth-child(3) .phone,
    .site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone {
        grid-column: auto !important;
        width: 100% !important;
        max-width: none !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    .site-footer .working-hours-widget li:nth-child(3) .phone:nth-of-type(1),
    .site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone:nth-of-type(1) {
        grid-area: phone-a !important;
    }

    .site-footer .working-hours-widget li:nth-child(3) .phone:nth-of-type(2),
    .site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone:nth-of-type(2) {
        grid-area: phone-b !important;
        margin-top: 2px !important;
    }
}

@container (max-width: 314px) {
    .site-footer .working-hours-widget li:nth-child(3) .phone,
    .site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone {
        width: fit-content !important;
        justify-content: flex-start !important;
    }
}



/* v1.0.78: full responsive hardening pass for header, WooCommerce, footer and rich content. */
:root {
    --ge-page-gutter: clamp(14px, 3.2vw, 32px);
    --ge-mobile-dock-h: 64px;
    --ge-touch-target: 44px;
}

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

html {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    max-width: 100%;
    overflow-x: clip;
}

img,
svg,
video,
canvas,
iframe,
embed,
object {
    max-width: 100%;
}

img,
video {
    height: auto;
}

iframe,
embed,
object {
    display: block;
}

body,
.site,
.site-main,
.goemotion-content,
.goemotion-shop-main,
.goemotion-product-main,
.goemotion-home-main,
.goemotion-blog-main,
.goemotion-article-main,
.woocommerce,
.woocommerce-page {
    min-width: 0;
}

.wp-site-blocks,
.goemotion-content,
.goemotion-loop,
.woocommerce-content,
.goemotion-wc-catalog.catalog-layout,
.goemotion-wc-product-detail.product-detail,
.goemotion-scroll-tabs,
.goemotion-cart-layout,
.woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout,
.goemotion-article-page,
.goemotion-blog-page,
.ge-footer-shell {
    width: min(var(--container, 1180px), calc(100vw - (var(--ge-page-gutter) * 2))) !important;
    max-width: calc(100vw - (var(--ge-page-gutter) * 2)) !important;
    margin-inline: auto !important;
}

.entry-content,
.goemotion-content-box,
.goemotion-article-content,
.goemotion-scroll-tabs,
.goemotion-checkout-card,
.goemotion-cart-main,
.goemotion-cart-summary,
.goemotion-checkout-summary,
.goemotion-checkout-review,
.goemotion-cart-form,
.woocommerce table,
.woocommerce form,
.woocommerce .woocommerce-billing-fields,
.woocommerce .woocommerce-shipping-fields {
    min-width: 0 !important;
    max-width: 100% !important;
}

.entry-content table,
.goemotion-content table,
.goemotion-article-content table,
.woocommerce table.shop_table,
.woocommerce-cart table.cart,
.woocommerce-checkout-review-order-table {
    width: 100% !important;
    max-width: 100% !important;
    border-collapse: separate;
    border-spacing: 0;
}

.entry-content :where(pre, code),
.goemotion-content :where(pre, code),
.goemotion-article-content :where(pre, code) {
    max-width: 100%;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.entry-content :where(p, li, h1, h2, h3, h4, h5, h6),
.goemotion-content :where(p, li, h1, h2, h3, h4, h5, h6),
.goemotion-article-content :where(p, li, h1, h2, h3, h4, h5, h6),
.product-card :where(h3, p, span, strong, a),
.detail-info :where(h1, p, span, strong, dd, dt, a),
.woocommerce :where(label, p, li, td, th, span, strong, a) {
    overflow-wrap: anywhere;
}

.site-header,
.site-header .nav-shell,
.site-header .main-nav,
.site-header .primary-menu,
.header-actions,
.topbar,
.topbar-info {
    min-width: 0 !important;
}

@media (min-width: 1181px) {
    .site-header .nav-shell {
        width: min(var(--container, 1180px), calc(100vw - 24px)) !important;
        max-width: calc(100vw - 24px) !important;
        gap: clamp(8px, 1vw, 16px) !important;
    }

    .site-header .main-nav .primary-menu {
        gap: clamp(3px, .45vw, 8px) !important;
    }

    .site-header .main-nav .primary-menu > li > a {
        max-width: clamp(88px, 8vw, 152px) !important;
        min-height: 42px !important;
        padding-inline: clamp(7px, .66vw, 12px) !important;
        white-space: normal !important;
        text-align: center;
        line-height: 1.12 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children {
        top: calc(100% + 5px) !important;
        min-width: min(260px, calc(100vw - 28px)) !important;
        max-width: min(310px, calc(100vw - 28px)) !important;
        padding: 8px !important;
        gap: 3px !important;
        border-radius: 16px !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu::before,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children::before {
        height: 8px !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .sub-menu a,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li:not(.is-mega-menu) > .children a {
        min-height: 34px !important;
        padding: 8px 10px !important;
        font-size: 12.6px !important;
        line-height: 1.16 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu > .mega-menu-panel {
        top: calc(100% + 4px) !important;
        width: min(1260px, calc(100vw - 18px)) !important;
        max-width: calc(100vw - 18px) !important;
        max-height: calc(100dvh - var(--ge-header-offset, 96px) - 16px) !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 4px !important;
        padding: 6px !important;
        border-radius: 14px !important;
        overflow: visible !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu > .mega-menu-panel > li {
        min-width: 0 !important;
        padding: 3px !important;
        border-radius: 9px !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu > .mega-menu-panel > li > a {
        min-height: 24px !important;
        padding: 3px 5px !important;
        font-size: 9.8px !important;
        line-height: 1.05 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu .mega-menu-panel .sub-menu,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu .mega-menu-panel .children {
        gap: 0 !important;
    }

    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu .mega-menu-panel .sub-menu a,
    body.goemotion-menu-managed .site-header .main-nav .primary-menu > li.is-mega-menu .mega-menu-panel .children a {
        min-height: 19px !important;
        padding: 1px 3px !important;
        font-size: 8.2px !important;
        line-height: 1.05 !important;
        letter-spacing: -.01em !important;
    }
}

@media (min-width: 1181px) and (max-width: 1320px) {
    .site-header .nav-shell {
        grid-template-columns: auto minmax(0, 1fr) auto !important;
    }

    .site-header .main-nav .primary-menu > li > a {
        max-width: clamp(76px, 7.2vw, 118px) !important;
        font-size: clamp(11px, .86vw, 13px) !important;
        padding-inline: 6px !important;
    }

    .header-actions {
        gap: 6px !important;
    }
}

@media (max-width: 1180px) {
    body.nav-open,
    body.cart-open,
    body.search-open {
        overflow: hidden;
        touch-action: none;
    }

    .topbar.topbar--modern {
        display: none !important;
    }

    .site-header .nav-shell {
        width: min(var(--container, 1180px), calc(100vw - 18px)) !important;
        max-width: calc(100vw - 18px) !important;
        min-height: 64px !important;
        grid-template-columns: auto minmax(0, 1fr) auto !important;
        gap: 8px !important;
        padding: 8px 10px !important;
    }

    .site-header .brand,
    .site-header .site-logo,
    .site-header .custom-logo-link {
        min-width: 0 !important;
        max-width: min(52vw, 210px) !important;
    }

    .site-header .custom-logo,
    .site-header .site-logo img,
    .site-header .brand img {
        width: auto !important;
        max-width: min(52vw, 210px) !important;
        max-height: 46px !important;
        object-fit: contain;
    }

    .nav-toggle {
        grid-column: 3 !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
    }

    .header-actions {
        justify-self: end !important;
        min-width: 0 !important;
        gap: 6px !important;
    }

    .header-actions > *:not(.cart-button):not(.header-search):not(.header-search--ge-smart) {
        display: none !important;
    }

    .cart-button,
    .header-search-toggle,
    .header-search-toggle--ge-smart,
    .account-button {
        width: var(--ge-touch-target) !important;
        height: var(--ge-touch-target) !important;
        min-width: var(--ge-touch-target) !important;
        min-height: var(--ge-touch-target) !important;
    }

    .main-nav {
        width: min(420px, calc(100vw - 18px)) !important;
        max-width: calc(100vw - 18px) !important;
        height: calc(var(--ge-vh, 1vh) * 100 - 18px) !important;
        max-height: calc(100dvh - 18px) !important;
        padding: 12px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav .primary-menu {
        gap: 7px !important;
    }

    .main-nav .primary-menu > li > a {
        min-height: 46px !important;
        padding: 12px 13px !important;
        border-radius: 13px !important;
        font-size: 14.5px !important;
    }

    .main-nav .primary-menu .sub-menu,
    .main-nav .primary-menu .children,
    .main-nav .primary-menu .mega-menu-panel {
        display: grid !important;
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        max-height: none !important;
        margin: 5px 0 0 8px !important;
        padding: 4px 0 4px 8px !important;
        border: 0 !important;
        border-left: 1px solid rgba(175,203,32,.36) !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        overflow: visible !important;
    }

    .main-nav .primary-menu .sub-menu a,
    .main-nav .primary-menu .children a,
    .main-nav .primary-menu .mega-menu-panel a {
        min-height: 38px !important;
        padding: 9px 10px !important;
        border-radius: 10px !important;
        font-size: 12.8px !important;
        line-height: 1.16 !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .main-nav .primary-menu .mega-menu-panel > li {
        padding: 4px !important;
        border-radius: 11px !important;
        background: rgba(255,255,255,.05) !important;
    }

    .nav-panel-actions,
    .nav-panel-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .header-search-panel,
    .site-header .header-search-panel {
        position: fixed !important;
        top: max(10px, env(safe-area-inset-top)) !important;
        right: 9px !important;
        left: 9px !important;
        width: auto !important;
        max-width: none !important;
        padding: 8px !important;
        grid-template-columns: minmax(0, 1fr) 42px !important;
        border-radius: 16px !important;
    }
}

@media (max-width: 760px) {
    :root {
        --ge-page-gutter: 12px;
        --ge-mobile-dock-h: 60px;
    }

    body {
        padding-bottom: calc(var(--ge-mobile-dock-h) + env(safe-area-inset-bottom, 0px));
    }

    .wp-site-blocks,
    .goemotion-content,
    .goemotion-loop,
    .woocommerce-content,
    .goemotion-wc-catalog.catalog-layout,
    .goemotion-wc-product-detail.product-detail,
    .goemotion-scroll-tabs,
    .goemotion-cart-layout,
    .woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout,
    .goemotion-article-page,
    .goemotion-blog-page,
    .ge-footer-shell {
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
    }

    .site-main,
    .goemotion-shop-main,
    .goemotion-product-main,
    .goemotion-content {
        padding-top: 14px !important;
        padding-bottom: 34px !important;
    }

    .section-head,
    .goemotion-shop-head,
    .goemotion-cart-heading,
    .goemotion-checkout-heading,
    .goemotion-article-hero,
    .goemotion-blog-hero {
        gap: 10px !important;
    }

    .section-head,
    .goemotion-shop-head {
        display: grid !important;
        grid-template-columns: 1fr !important;
        align-items: start !important;
    }

    .section-head h1,
    .goemotion-shop-head h1,
    .woocommerce-products-header__title,
    .product_title,
    .detail-info h1,
    .goemotion-article-hero h1 {
        font-size: clamp(25px, 8.2vw, 36px) !important;
        line-height: 1.05 !important;
        letter-spacing: -.04em !important;
    }

    .goemotion-shop-tools,
    .sort-form {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        justify-content: stretch !important;
    }

    .goemotion-shop-tools .woocommerce-result-count,
    .goemotion-shop-tools .woocommerce-ordering,
    .goemotion-shop-tools .orderby {
        width: 100% !important;
        max-width: 100% !important;
    }

    .mobile-dock {
        min-height: calc(var(--ge-mobile-dock-h) + env(safe-area-inset-bottom, 0px)) !important;
        padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    }
}

@media (max-width: 640px) {
    .goemotion-products-section .product-grid,
    .woocommerce .goemotion-wc-product-grid.products,
    .woocommerce .goemotion-wc-product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .goemotion-wc-product-card.product-card,
    .woocommerce ul.products li.product {
        border-radius: 16px !important;
        min-height: 0 !important;
        contain-intrinsic-size: 300px !important;
    }

    .goemotion-wc-product-card .product-media {
        aspect-ratio: 1 / 1 !important;
        padding: 7px !important;
    }

    .goemotion-wc-product-card .product-body {
        padding: 9px !important;
        gap: 6px !important;
    }

    .goemotion-wc-product-card h3,
    .goemotion-wc-product-card h3 a {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 0 !important;
        font-size: 12.4px !important;
        line-height: 1.16 !important;
    }

    .goemotion-wc-product-card .product-meta,
    .goemotion-wc-product-card .product-category {
        display: none !important;
    }

    .goemotion-wc-product-card .stock-badge {
        width: 100% !important;
        justify-content: center !important;
        padding: 6px 7px !important;
        font-size: 10.5px !important;
    }

    .goemotion-wc-product-card .price-stack {
        grid-template-columns: 1fr !important;
        gap: 5px !important;
    }

    .goemotion-wc-product-card .price-line {
        min-height: 0 !important;
        padding: 7px !important;
    }

    .goemotion-wc-product-card .price-line > span {
        font-size: 9.8px !important;
    }

    .goemotion-wc-product-card .price-line strong,
    .goemotion-wc-product-card .price-line .amount,
    .goemotion-wc-product-card .price-line .woocommerce-Price-amount {
        font-size: 13px !important;
        line-height: 1.08 !important;
    }

    .goemotion-wc-product-card .product-actions {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }

    .goemotion-wc-product-card .product-actions .button,
    .goemotion-wc-product-card .product-actions .btn,
    .goemotion-wc-product-card .product-actions .added_to_cart {
        min-height: 38px !important;
        padding: 8px !important;
        font-size: 11.4px !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 380px) {
    .goemotion-products-section .product-grid,
    .woocommerce .goemotion-wc-product-grid.products,
    .woocommerce .goemotion-wc-product-grid,
    .woocommerce ul.products {
        gap: 8px !important;
    }

    .goemotion-wc-product-card .product-body {
        padding: 8px !important;
    }

    .goemotion-wc-product-card h3,
    .goemotion-wc-product-card h3 a {
        font-size: 11.6px !important;
    }

    .goemotion-wc-product-card .product-actions .button,
    .goemotion-wc-product-card .product-actions .btn {
        min-height: 36px !important;
        font-size: 10.8px !important;
    }
}

@media (max-width: 920px) {
    .goemotion-wc-catalog.catalog-layout,
    .goemotion-wc-product-detail.product-detail,
    .goemotion-cart-layout,
    .woocommerce-checkout form.checkout.woocommerce-checkout.goemotion-checkout-layout,
    .goemotion-checkout-fields {
        grid-template-columns: 1fr !important;
    }

    .goemotion-wc-catalog .goemotion-shop-filters.filters,
    .goemotion-wc-catalog .goemotion-products-section,
    .goemotion-cart-main,
    .goemotion-cart-summary,
    .goemotion-checkout-main,
    .goemotion-checkout-summary {
        grid-column: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .goemotion-wc-product-detail.product-detail {
        gap: 12px !important;
        margin-top: 12px !important;
    }

    .goemotion-wc-product-detail .detail-gallery,
    .goemotion-wc-product-detail .detail-info,
    .goemotion-scroll-tabs {
        padding: 13px !important;
        border-radius: 18px !important;
    }

    .goemotion-wc-product-detail .detail-gallery > img,
    .goemotion-wc-product-detail .detail-gallery .goemotion-single-main-image,
    .goemotion-wc-product-detail .detail-gallery .product-placeholder-large {
        max-height: min(58vh, 480px) !important;
        border-radius: 16px !important;
    }

    .goemotion-wc-product-detail .detail-thumbs {
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto !important;
        padding-bottom: 2px !important;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .goemotion-wc-product-detail .detail-thumbs img {
        flex: 0 0 72px !important;
        width: 72px !important;
        height: 72px !important;
        scroll-snap-align: start;
    }

    .goemotion-wc-product-detail .detail-price,
    .goemotion-wc-product-detail .detail-price.has-promo,
    .goemotion-single-actions,
    .goemotion-single-actions form.cart,
    .goemotion-wc-product-detail .single_variation_wrap,
    .goemotion-wc-product-detail .woocommerce-variation-add-to-cart {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .goemotion-single-actions .button,
    .goemotion-single-actions .btn,
    .goemotion-single-actions button,
    .goemotion-single-actions input,
    .goemotion-single-actions select,
    .goemotion-wc-product-detail .single_add_to_cart_button,
    .goemotion-wc-product-detail form.cart .quantity,
    .goemotion-wc-product-detail form.cart .quantity .qty {
        width: 100% !important;
        max-width: 100% !important;
    }

    .facts,
    .goemotion-wc-product-detail .facts {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 720px) {
    .goemotion-cart-item {
        grid-template-columns: 86px minmax(0, 1fr) !important;
        gap: 10px !important;
        padding: 10px !important;
        border-radius: 16px !important;
    }

    .goemotion-cart-item__media img {
        width: 86px !important;
        height: 86px !important;
        object-fit: contain !important;
    }

    .goemotion-cart-item__top,
    .goemotion-cart-item__details,
    .goemotion-cart-actions,
    .goemotion-cart-coupon__row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .goemotion-cart-item__remove {
        position: absolute !important;
        top: 8px !important;
        right: 8px !important;
    }

    .goemotion-cart-item__quantity .quantity,
    .goemotion-cart-item__quantity input.qty,
    .goemotion-cart-actions .button,
    .goemotion-cart-coupon input,
    .goemotion-cart-coupon button {
        width: 100% !important;
        max-width: 100% !important;
    }

    .woocommerce form .form-row,
    .woocommerce-page form .form-row,
    .woocommerce-checkout .form-row,
    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        float: none !important;
    }

    .woocommerce input.input-text,
    .woocommerce textarea,
    .woocommerce select,
    .select2-container,
    .select2-container--default,
    .select2-selection,
    .woocommerce-checkout input,
    .woocommerce-checkout textarea,
    .woocommerce-checkout select {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .woocommerce-checkout-review-order-table,
    .woocommerce-checkout-review-order-table thead,
    .woocommerce-checkout-review-order-table tbody,
    .woocommerce-checkout-review-order-table tfoot,
    .woocommerce-checkout-review-order-table tr,
    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
    }

    .woocommerce-checkout-review-order-table tr {
        padding: 8px 0 !important;
        border-bottom: 1px solid rgba(21,28,34,.08) !important;
    }
}

@media (max-width: 560px) {
    .goemotion-cart-item {
        grid-template-columns: 72px minmax(0, 1fr) !important;
    }

    .goemotion-cart-item__media img {
        width: 72px !important;
        height: 72px !important;
    }

    .goemotion-cart-item__name,
    .goemotion-cart-item__name a {
        font-size: 13px !important;
        line-height: 1.16 !important;
    }

    .cart-panel {
        width: 100vw !important;
        max-width: 100vw !important;
        border-left: 0 !important;
    }

    .cart-panel-head {
        padding: 16px 14px 12px !important;
    }

    .woocommerce-mini-cart,
    .mini-cart-list,
    .cart-panel .widget_shopping_cart_content {
        min-width: 0 !important;
        max-width: 100% !important;
    }
}

@media (max-width: 900px) {
    .ge-footer-topline,
    .ge-footer-widget-grid,
    .ge-footer-widget-grid[data-footer-columns],
    .ge-footer-layout-compact_stack .ge-footer-widget-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .ge-footer-widget-column,
    .ge-footer-brand-widget,
    .ge-footer-bottom {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .ge-footer-bottom {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        justify-items: center !important;
    }
}

@media (max-width: 620px) {
    .site-footer.ge-footer-widgetized {
        padding-bottom: calc(var(--ge-mobile-dock-h) + 22px + env(safe-area-inset-bottom, 0px)) !important;
    }

    .ge-footer-shell {
        padding-inline: 0 !important;
    }

    .ge-footer-widgetized .widgettitle,
    .ge-footer-widgetized h2,
    .ge-footer-widgetized h3 {
        font-size: 15px !important;
        line-height: 1.16 !important;
    }

    .site-footer .working-hours-widget li,
    .site-footer .working-hours-widget__card,
    .site-footer .working-hours-widget li:nth-child(3),
    .site-footer .working-hours-widget__card:nth-child(3) {
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas:
            "service hours"
            "days hours"
            "break break"
            "phone phone" !important;
        padding: 7px 9px 7px 11px !important;
        gap: 2px 7px !important;
    }

    .site-footer .working-hours-widget .service,
    .site-footer .working-hours-widget__service {
        font-size: 12px !important;
    }

    .site-footer .working-hours-widget .hours,
    .site-footer .working-hours-widget__hours {
        padding: 4px 6px !important;
        font-size: 10.6px !important;
    }

    .site-footer .working-hours-widget .phone,
    .site-footer .working-hours-widget__phone,
    .site-footer .working-hours-widget li:nth-child(3) .phone,
    .site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-height: 22px !important;
        margin-top: 2px !important;
        padding: 4px 7px !important;
        font-size: 10.7px !important;
        white-space: normal !important;
    }
}

.home-section,
.page-section,
.promo-banner,
.trust-strip,
.category-band,
.product-rail-section,
.goemotion-blog-grid,
.goemotion-article-layout,
.goemotion-article-nav,
.about-section,
.contact-section,
.franchise-section,
.franchise-grid,
.goemotion-contact-grid,
.goemotion-about-grid {
    min-width: 0 !important;
    max-width: 100% !important;
}

@media (max-width: 860px) {
    .trust-strip,
    .category-band,
    .promo-banner,
    .goemotion-blog-grid,
    .goemotion-article-layout,
    .goemotion-article-nav,
    .franchise-grid,
    .goemotion-contact-grid,
    .goemotion-about-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr !important;
    }

    .product-rail,
    .brand-marquee-track,
    .category-band,
    .goemotion-product-carousel {
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }
}

@media (hover: none), (pointer: coarse) {
    a,
    button,
    input,
    select,
    textarea,
    .button,
    .btn,
    .cart-button,
    .nav-toggle,
    .header-search-toggle,
    .mobile-dock a,
    .mobile-dock button {
        min-height: var(--ge-touch-target);
    }

    .product-card:hover,
    .goemotion-wc-product-card:hover,
    .goemotion-blog-card:hover,
    .account-menu:hover .account-dropdown {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}

/* v1.0.79: footer compaction, home hero tightening and modern stacked product tabs. */
.site-footer.ge-footer-widgetized {
    padding-top: clamp(26px, 4vw, 48px) !important;
    padding-bottom: clamp(18px, 3vw, 34px) !important;
}

.site-footer .ge-footer-shell {
    display: grid !important;
    gap: clamp(12px, 1.7vw, 22px) !important;
}

.site-footer .ge-footer-topline,
.site-footer .ge-footer-topline--brand-only {
    padding-bottom: clamp(10px, 1.5vw, 16px) !important;
    margin-bottom: 0 !important;
}

.site-footer .ge-footer-widget-grid,
.site-footer .ge-footer-widget-grid[data-footer-columns] {
    gap: clamp(12px, 1.8vw, 24px) !important;
}

.site-footer .goemotion-footer-widget .widget-title,
.site-footer.ge-footer-widgetized .widgettitle,
.site-footer.ge-footer-widgetized h2,
.site-footer.ge-footer-widgetized h3 {
    margin-bottom: 8px !important;
}

.site-footer .working-hours-widget ul,
.site-footer .working-hours-widget__list {
    gap: 4px !important;
}

.site-footer .working-hours-widget li,
.site-footer .working-hours-widget__card {
    min-height: 0 !important;
    padding: 6px 8px 6px 10px !important;
    gap: 1px 6px !important;
    border-radius: 12px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
        "service hours"
        "days hours"
        "break break"
        "phone phone" !important;
    align-items: center !important;
    align-content: start !important;
}

.site-footer .working-hours-widget .service,
.site-footer .working-hours-widget__service {
    font-size: 12px !important;
    line-height: 1.08 !important;
}

.site-footer .working-hours-widget .days,
.site-footer .working-hours-widget__days {
    font-size: 10.8px !important;
    line-height: 1.08 !important;
}

.site-footer .working-hours-widget .hours,
.site-footer .working-hours-widget__hours {
    padding: 3px 6px !important;
    font-size: 10.4px !important;
    line-height: 1 !important;
}

.site-footer .working-hours-widget .break,
.site-footer .working-hours-widget__break {
    margin-top: 0 !important;
    font-size: 10.2px !important;
    line-height: 1.08 !important;
}

.site-footer .working-hours-widget .phone,
.site-footer .working-hours-widget__phone {
    min-width: 0 !important;
    min-height: 20px !important;
    margin: 2px 0 0 !important;
    padding: 3px 6px !important;
    gap: 4px !important;
    font-size: 10.4px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.site-footer .working-hours-widget .phone + .phone,
.site-footer .working-hours-widget__phone + .working-hours-widget__phone {
    margin-top: 2px !important;
}

.site-footer .working-hours-widget .phone::before,
.site-footer .working-hours-widget__phone::before {
    flex: 0 0 10px !important;
    width: 10px !important;
    min-width: 10px !important;
    height: 10px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: visible !important;
}

@supports selector(.working-hours-widget__card:has(.phone + .phone)) {
    .site-footer .working-hours-widget li:has(.phone + .phone),
    .site-footer .working-hours-widget__card:has(.working-hours-widget__phone + .working-hours-widget__phone) {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto !important;
        grid-template-areas:
            "service service hours"
            "days days hours"
            "break break break" !important;
    }

    .site-footer .working-hours-widget li:has(.phone + .phone) .service,
    .site-footer .working-hours-widget__card:has(.working-hours-widget__phone + .working-hours-widget__phone) .working-hours-widget__service {
        grid-column: 1 / 3 !important;
    }

    .site-footer .working-hours-widget li:has(.phone + .phone) .days,
    .site-footer .working-hours-widget__card:has(.working-hours-widget__phone + .working-hours-widget__phone) .working-hours-widget__days {
        grid-column: 1 / 3 !important;
    }

    .site-footer .working-hours-widget li:has(.phone + .phone) .hours,
    .site-footer .working-hours-widget__card:has(.working-hours-widget__phone + .working-hours-widget__phone) .working-hours-widget__hours {
        grid-column: 3 !important;
        grid-row: 1 / 3 !important;
    }

    .site-footer .working-hours-widget li:has(.phone + .phone) .break,
    .site-footer .working-hours-widget__card:has(.working-hours-widget__phone + .working-hours-widget__phone) .working-hours-widget__break {
        grid-column: 1 / -1 !important;
    }

    .site-footer .working-hours-widget li:has(.phone + .phone) .phone,
    .site-footer .working-hours-widget__card:has(.working-hours-widget__phone + .working-hours-widget__phone) .working-hours-widget__phone {
        width: 100% !important;
        max-width: none !important;
        margin-top: 2px !important;
    }

    .site-footer .working-hours-widget li:has(.phone + .phone) .phone:first-of-type,
    .site-footer .working-hours-widget__card:has(.working-hours-widget__phone + .working-hours-widget__phone) .working-hours-widget__phone:first-of-type {
        grid-column: 1 !important;
    }

    .site-footer .working-hours-widget li:has(.phone + .phone) .phone:last-of-type,
    .site-footer .working-hours-widget__card:has(.working-hours-widget__phone + .working-hours-widget__phone) .working-hours-widget__phone:last-of-type {
        grid-column: 2 !important;
    }
}

.site-footer .ge-footer-bottom {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 8px 14px !important;
    padding-top: 10px !important;
    margin-top: 0 !important;
}

.site-footer .ge-footer-bottom-copy,
.site-footer .ge-footer-bottom-copy .widget,
.site-footer .ge-footer-bottom-copy p {
    min-width: 0 !important;
    margin: 0 !important;
}

.site-footer .ge-footer-socials--bottom,
.site-footer .ge-footer-bottom .ge-footer-socials {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
}

.site-footer .ge-footer-socials--bottom a,
.site-footer .ge-footer-bottom .ge-footer-socials a {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    padding: 6px !important;
    border-radius: 10px !important;
    display: inline-grid !important;
    place-items: center !important;
    transform: none !important;
}

.site-footer .ge-footer-socials--bottom img,
.site-footer .ge-footer-bottom .ge-footer-socials img {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    object-fit: contain !important;
}

.page-video-hero .goemotion-home-main,
.goemotion-home-main.goemotion-home-classic {
    padding-top: 0 !important;
}

.page-video-hero .hero-shop.hero-video-stage,
.goemotion-home-main .hero-shop.hero-video-stage {
    margin-top: 0 !important;
}

.page-video-hero .hero-shop.hero-video-stage {
    padding-top: max(84px, calc(var(--ge-header-offset, 86px) + 8px)) !important;
}

.goemotion-wc-product-detail .detail-copy table,
.goemotion-wc-product-detail .detail-copy .shop_attributes,
.goemotion-wc-product-detail .detail-copy .woocommerce-product-attributes,
.goemotion-wc-product-detail .detail-info > .specs {
    display: none !important;
}

.goemotion-scroll-tabs,
.woocommerce div.product .goemotion-scroll-tabs {
    display: grid !important;
    gap: 14px !important;
}

.goemotion-scroll-tabs__nav,
.woocommerce div.product .goemotion-scroll-tabs__nav.wc-tabs {
    position: sticky !important;
    top: calc(var(--ge-header-offset, 86px) + 10px) !important;
    z-index: 35 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 7px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    border: 1px solid rgba(21, 28, 34, .08) !important;
    border-radius: 18px !important;
    background: rgba(247, 249, 250, .92) !important;
    box-shadow: 0 12px 30px rgba(21, 28, 34, .08) !important;
    backdrop-filter: blur(14px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
}

.goemotion-scroll-tabs__nav::before,
.goemotion-scroll-tabs__nav::after,
.goemotion-scroll-tabs__nav li::before,
.goemotion-scroll-tabs__nav li::after {
    display: none !important;
    content: none !important;
}

.goemotion-scroll-tabs__nav li,
.woocommerce div.product .goemotion-scroll-tabs__nav li {
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    scroll-snap-align: start;
}

.goemotion-scroll-tabs__nav a,
.woocommerce div.product .goemotion-scroll-tabs__nav li a {
    min-height: 38px !important;
    padding: 9px 13px !important;
    border: 1px solid transparent !important;
    border-radius: 13px !important;
    background: rgba(255,255,255,.7) !important;
    color: rgba(21,28,34,.72) !important;
    font-size: 12.5px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .16s ease !important;
}

.goemotion-scroll-tabs__nav a:hover,
.goemotion-scroll-tabs__nav a:focus-visible,
.goemotion-scroll-tabs__nav li.active a,
.goemotion-scroll-tabs__nav a[aria-current="true"],
.woocommerce div.product .goemotion-scroll-tabs__nav li.active a {
    border-color: rgba(175,203,32,.48) !important;
    background: linear-gradient(135deg, #afcb20, #d4f04a) !important;
    color: #151c22 !important;
    outline: 0 !important;
}

.goemotion-scroll-tabs__panels {
    display: grid !important;
    gap: 14px !important;
}

.goemotion-scroll-tabs__panel,
.woocommerce div.product .goemotion-scroll-tabs .woocommerce-Tabs-panel.goemotion-scroll-tabs__panel {
    display: block !important;
    scroll-margin-top: calc(var(--ge-header-offset, 86px) + 86px) !important;
    padding: clamp(16px, 2vw, 26px) !important;
    border: 1px solid rgba(21, 28, 34, .08) !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 16px 42px rgba(21,28,34,.065) !important;
}

.goemotion-scroll-tabs__panel:focus {
    outline: 2px solid rgba(175,203,32,.52) !important;
    outline-offset: 3px !important;
}

.goemotion-scroll-tabs .woocommerce-tab-title {
    margin: 0 0 12px !important;
    color: #151c22 !important;
    font-family: var(--display-font, inherit) !important;
    font-size: clamp(21px, 2vw, 30px) !important;
    letter-spacing: -.035em !important;
    line-height: 1.05 !important;
}

.goemotion-scroll-tabs .woocommerce-tab-content > :last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 760px) {
    .site-footer .ge-footer-bottom {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
        gap: 7px !important;
        padding-top: 8px !important;
    }

    .site-footer .ge-footer-socials--bottom,
    .site-footer .ge-footer-bottom .ge-footer-socials {
        justify-content: center !important;
    }

    .site-footer .working-hours-widget li,
    .site-footer .working-hours-widget__card {
        padding: 6px 8px !important;
    }

    .page-video-hero .hero-shop.hero-video-stage {
        padding-top: max(68px, calc(var(--ge-header-offset, 64px) + 6px)) !important;
        min-height: calc(100svh - 0px) !important;
    }

    .goemotion-scroll-tabs__nav,
    .woocommerce div.product .goemotion-scroll-tabs__nav.wc-tabs {
        top: calc(var(--ge-header-offset, 64px) + 6px) !important;
        margin-inline: -4px !important;
        padding: 6px !important;
        border-radius: 16px !important;
    }

    .goemotion-scroll-tabs__nav a,
    .woocommerce div.product .goemotion-scroll-tabs__nav li a {
        min-height: 36px !important;
        padding: 8px 11px !important;
        font-size: 12px !important;
    }

    .goemotion-scroll-tabs__panel,
    .woocommerce div.product .goemotion-scroll-tabs .woocommerce-Tabs-panel.goemotion-scroll-tabs__panel {
        scroll-margin-top: calc(var(--ge-header-offset, 64px) + 76px) !important;
        border-radius: 18px !important;
        padding: 14px !important;
    }
}

@media (max-width: 420px) {
    @supports selector(.working-hours-widget__card:has(.phone + .phone)) {
        .site-footer .working-hours-widget li:has(.phone + .phone),
        .site-footer .working-hours-widget__card:has(.working-hours-widget__phone + .working-hours-widget__phone) {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            grid-template-areas:
                "service hours"
                "days hours"
                "break break" !important;
        }

        .site-footer .working-hours-widget li:has(.phone + .phone) .hours,
        .site-footer .working-hours-widget__card:has(.working-hours-widget__phone + .working-hours-widget__phone) .working-hours-widget__hours {
            grid-column: 2 !important;
            grid-row: 1 / 3 !important;
        }
    }

    .site-footer .working-hours-widget .phone,
    .site-footer .working-hours-widget__phone {
        font-size: 9.8px !important;
        padding-inline: 5px !important;
    }
}


/* v1.0.80: responsive product variation actions + temporary product-extra disable support */
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    align-items: stretch !important;
    padding: clamp(10px, 1.4vw, 14px) !important;
    overflow: visible !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions > * {
    min-width: 0 !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form,
.woocommerce div.product .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    min-width: 0 !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations tbody,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations tr,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations th,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    border: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations {
    margin: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations tbody {
    display: grid !important;
    gap: 8px !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations tr:not(.vhx-hint-row) {
    display: grid !important;
    grid-template-columns: minmax(82px, .28fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: center !important;
    padding: 8px !important;
    border: 1px solid rgba(21, 28, 34, .08) !important;
    border-radius: 16px !important;
    background: #fff !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations th.label,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations td.value {
    min-width: 0 !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations th.label label {
    display: block !important;
    margin: 0 !important;
    color: rgba(21, 28, 34, .66) !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    line-height: 1.2 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    overflow-wrap: anywhere !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form td.value {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
    align-items: center !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form select,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .value select {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 42px !important;
    max-width: 100% !important;
    border-radius: 13px !important;
    border: 1px solid rgba(21, 28, 34, .12) !important;
    background-color: #fff !important;
    padding: 9px 38px 9px 12px !important;
    color: #151c22 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .reset_variations {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 36px !important;
    padding: 7px 10px !important;
    border-radius: 999px !important;
    background: rgba(21, 28, 34, .06) !important;
    color: rgba(21, 28, 34, .66) !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .vhx-hint-row,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .vhx-hint-row td {
    display: block !important;
    width: 100% !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .vhx-hint,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .vhx-show {
    margin: 0 !important;
    padding: 8px 10px !important;
    border-radius: 14px !important;
    background: rgba(175, 203, 32, .15) !important;
    color: #566900 !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
    overflow-wrap: anywhere !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .single_variation_wrap,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .woocommerce-variation,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .woocommerce-variation-add-to-cart {
    min-width: 0 !important;
    width: 100% !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .woocommerce-variation.single_variation {
    margin: 0 !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .woocommerce-variation-add-to-cart {
    display: grid !important;
    grid-template-columns: minmax(72px, 88px) minmax(0, 1fr) 48px !important;
    gap: 8px !important;
    align-items: stretch !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .quantity,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .quantity input.qty {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .quantity input.qty {
    min-height: 46px !important;
    height: 46px !important;
    padding: 8px 6px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .single_add_to_cart_button,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions > .btn.btn-dark {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    height: auto !important;
    padding: 10px 14px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: 1.15 !important;
    text-align: center !important;
    white-space: normal !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .ge-wl-single-heart,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .ge-wl-heart-single {
    min-width: 0 !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .ge-wl-heart-single {
    width: 48px !important;
    height: 46px !important;
    min-height: 46px !important;
    border-radius: 14px !important;
    flex: 0 0 48px !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .ge-wl-ico,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .ge-wl-heart-single svg {
    width: 20px !important;
    height: 20px !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions > .btn.btn-dark {
    margin-top: 0 !important;
    background: #151c22 !important;
    color: #fff !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwginstock-subscribe-form,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwginstock-panel-primary,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwginstock-panel-body,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwginstock-subscribe-form .row,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwginstock-subscribe-form [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwginstock-subscribe-form {
    margin-top: 8px !important;
    padding: 10px !important;
    border: 1px solid rgba(21, 28, 34, .08) !important;
    border-radius: 16px !important;
    background: #fff !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwginstock-panel-heading h4 {
    margin: 0 0 8px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwgstock_name,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwgstock_email,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwgstock_button {
    width: 100% !important;
    min-height: 42px !important;
    border-radius: 13px !important;
    margin: 0 0 7px !important;
    box-sizing: border-box !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions .cwg_iagree_checkbox label {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 7px !important;
    align-items: start !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
}

@media (min-width: 760px) {
    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions > .btn.btn-dark {
        justify-self: stretch !important;
    }

    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart:not(.variations_form) {
        display: grid !important;
        grid-template-columns: minmax(72px, 88px) minmax(0, 1fr) 48px !important;
        gap: 8px !important;
        width: 100% !important;
        min-width: 0 !important;
    }
}

@media (max-width: 680px) {
    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions {
        padding: 10px !important;
        border-radius: 18px !important;
        gap: 9px !important;
    }

    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form table.variations tr:not(.vhx-hint-row) {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        padding: 8px !important;
    }

    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form td.value {
        grid-template-columns: 1fr !important;
    }

    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .reset_variations {
        justify-self: start !important;
        min-height: 32px !important;
    }

    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .woocommerce-variation-add-to-cart,
    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart:not(.variations_form) {
        grid-template-columns: minmax(68px, 80px) minmax(0, 1fr) 46px !important;
        gap: 7px !important;
    }
}

@media (max-width: 430px) {
    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .woocommerce-variation-add-to-cart,
    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart:not(.variations_form) {
        grid-template-columns: 70px minmax(0, 1fr) 44px !important;
        gap: 6px !important;
    }

    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .single_add_to_cart_button,
    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions > .btn.btn-dark {
        padding-inline: 9px !important;
        font-size: 12px !important;
    }

    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .quantity input.qty,
    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .ge-wl-heart-single {
        height: 44px !important;
        min-height: 44px !important;
    }
}

@media (max-width: 360px) {
    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .woocommerce-variation-add-to-cart,
    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart:not(.variations_form) {
        grid-template-columns: 1fr 44px !important;
    }

    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart.variations_form .quantity,
    .goemotion-wc-product-detail .detail-actions.goemotion-single-actions form.cart:not(.variations_form) .quantity {
        grid-column: 1 / -1 !important;
    }
}

/* --------------------------------------------------------------------------
   GO E-Motion order tracking shortcode
   Styles the [order_tracking_form] page without requiring extra page markup.
   -------------------------------------------------------------------------- */
.goemotion-order-tracking {
    --ge-track-accent: #afcb20;
    --ge-track-accent-2: #d9f23d;
    --ge-track-dark: #101820;
    --ge-track-muted: #66727d;
    --ge-track-border: rgba(16, 24, 32, 0.1);
    --ge-track-soft: #f5f7f8;
    --ge-track-card: #fff;

    width: min(100%, 760px);
    margin: clamp(20px, 4vw, 44px) auto clamp(34px, 6vw, 72px);
    color: var(--ge-track-dark);
}

.goemotion-order-tracking,
.goemotion-order-tracking * {
    box-sizing: border-box;
}

.goemotion-order-tracking a {
    color: inherit;
}

.goemotion-order-tracking .order-tracking-form {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: clamp(18px, 3.4vw, 30px);
    border: 1px solid var(--ge-track-border);
    border-radius: clamp(22px, 3vw, 32px);
    background:
        radial-gradient(circle at 100% 0%, rgba(175, 203, 32, 0.2), transparent 16rem),
        linear-gradient(135deg, #fff 0%, #f8fbfc 100%);
    box-shadow: 0 20px 60px rgba(16, 24, 32, 0.08);
}

.goemotion-order-tracking .order-tracking-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--ge-track-accent), rgba(175, 203, 32, 0));
}

.goemotion-order-tracking .order-tracking-form label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--ge-track-dark);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.3;
}

.goemotion-order-tracking .order-tracking-form label::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--ge-track-accent);
    box-shadow: 0 0 0 6px rgba(175, 203, 32, 0.14);
}

.goemotion-order-tracking .order-tracking-form__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.goemotion-order-tracking .order-tracking-form input[type="text"] {
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 12px 15px;
    border: 1px solid rgba(16, 24, 32, 0.13);
    border-radius: 15px;
    background: #fff;
    color: var(--ge-track-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: none;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.goemotion-order-tracking .order-tracking-form input[type="text"]:focus {
    border-color: rgba(175, 203, 32, 0.86);
    box-shadow: 0 0 0 4px rgba(175, 203, 32, 0.14);
}

.goemotion-order-tracking .order-tracking-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 0;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--ge-track-accent);
    color: var(--ge-track-dark);
    font-size: 14px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(175, 203, 32, 0.24);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.goemotion-order-tracking .order-tracking-form button[type="submit"]:hover,
.goemotion-order-tracking .order-tracking-form button[type="submit"]:focus-visible {
    background: var(--ge-track-accent-2);
    transform: translateY(-2px);
    outline: 0;
}

.goemotion-order-tracking .order-tracking-result {
    margin-top: 14px;
}

.goemotion-order-tracking .order-tracking-status-card,
.goemotion-order-tracking .order-tracking-error {
    border: 1px solid var(--ge-track-border);
    border-radius: clamp(20px, 2.8vw, 30px);
    background: var(--ge-track-card);
    box-shadow: 0 16px 46px rgba(16, 24, 32, 0.07);
}

.goemotion-order-tracking .order-tracking-status-card {
    overflow: hidden;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: clamp(20px, 3.4vw, 34px);
    text-align: center;
}

.goemotion-order-tracking .order-tracking-status-card h2,
.goemotion-order-tracking .order-tracking-status-card h3 {
    margin: 0;
    color: var(--ge-track-dark);
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.goemotion-order-tracking .order-tracking-status-card h2 {
    width: fit-content;
    max-width: 100%;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--ge-track-soft);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.goemotion-order-tracking .order-tracking-status-card h3 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 950;
}

.goemotion-order-tracking .order-tracking-status-card p {
    max-width: 620px;
    margin: 0;
    color: var(--ge-track-muted);
    font-size: 15px;
    line-height: 1.6;
}

.goemotion-order-tracking .order-tracking-error {
    position: relative;
    margin: 0;
    padding: 16px 18px 16px 48px;
    color: #8a3a0f;
    background: #fff8ed;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

.goemotion-order-tracking .order-tracking-error::before {
    content: "!";
    position: absolute;
    left: 17px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffd38a;
    color: #6b2f08;
    font-size: 13px;
    font-weight: 950;
    transform: translateY(-50%);
}

.goemotion-order-tracking .order-tracking-progress-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(34px, 0.28fr) minmax(0, 1fr) minmax(34px, 0.28fr) minmax(0, 1fr);
    align-items: center;
    width: 100%;
    max-width: 680px;
    margin-top: 12px;
    padding: clamp(14px, 2.2vw, 22px);
    border: 1px solid rgba(16, 24, 32, 0.08);
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fafb, #fff);
}

.goemotion-order-tracking .order-step {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--ge-track-muted);
}

.goemotion-order-tracking .order-step__icon-wrap {
    display: grid;
    place-items: center;
    width: clamp(54px, 6vw, 68px);
    height: clamp(54px, 6vw, 68px);
    border: 1px solid rgba(16, 24, 32, 0.09);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(16, 24, 32, 0.06);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.goemotion-order-tracking .order-status-icon {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.goemotion-order-tracking .status-label {
    display: block;
    max-width: 120px;
    color: currentColor;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
}

.goemotion-order-tracking .step-connector {
    height: 4px;
    min-width: 28px;
    border-radius: 999px;
    background: rgba(16, 24, 32, 0.1);
}

.goemotion-order-tracking .completed-step,
.goemotion-order-tracking .active-step {
    color: var(--ge-track-dark);
}

.goemotion-order-tracking .completed-step .order-step__icon-wrap {
    border-color: rgba(175, 203, 32, 0.28);
    background: rgba(175, 203, 32, 0.12);
}

.goemotion-order-tracking .active-step .order-step__icon-wrap {
    border-color: rgba(175, 203, 32, 0.72);
    background: var(--ge-track-accent);
    box-shadow: 0 16px 34px rgba(175, 203, 32, 0.28);
    transform: translateY(-2px);
}

.goemotion-order-tracking .upcoming-step {
    opacity: 0.68;
}

.goemotion-order-tracking .order-tracking-discount {
    width: 100%;
    margin-top: 4px;
    padding: 15px;
    border-radius: 20px;
    background: rgba(175, 203, 32, 0.1);
}

.goemotion-order-tracking .order-tracking-discount h3 {
    font-size: clamp(18px, 2vw, 22px);
}

.goemotion-order-tracking .order-tracking-discount p {
    margin-top: 5px;
}

@media (max-width: 640px) {
    .goemotion-order-tracking {
        width: 100%;
        margin-top: 16px;
        margin-bottom: 42px;
    }

    .goemotion-order-tracking .order-tracking-form {
        padding: 16px;
        border-radius: 22px;
    }

    .goemotion-order-tracking .order-tracking-form__controls {
        grid-template-columns: 1fr;
    }

    .goemotion-order-tracking .order-tracking-form button[type="submit"] {
        width: 100%;
    }

    .goemotion-order-tracking .order-tracking-status-card {
        padding: 18px 14px;
        border-radius: 22px;
    }

    .goemotion-order-tracking .order-tracking-progress-bar {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
        border-radius: 20px;
    }

    .goemotion-order-tracking .order-step {
        grid-template-columns: 50px minmax(0, 1fr);
        justify-items: start;
        align-items: center;
        width: 100%;
        padding: 8px;
        border: 1px solid rgba(16, 24, 32, 0.07);
        border-radius: 18px;
        background: #fff;
    }

    .goemotion-order-tracking .order-step__icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .goemotion-order-tracking .order-status-icon {
        width: 28px;
        height: 28px;
    }

    .goemotion-order-tracking .status-label {
        max-width: none;
        text-align: left;
    }

    .goemotion-order-tracking .step-connector {
        width: 4px;
        height: 18px;
        min-width: 4px;
        margin-left: 30px;
    }
}


/* v1.0.84: Product tabs heading dedupe + Product Video Manager compatibility. */
.detail-gallery--umg {
    display: block;
    padding: clamp(8px, 1.2vw, 14px);
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.92));
    border: 1px solid rgba(16, 24, 32, .08);
    border-radius: clamp(22px, 2.4vw, 32px);
    box-shadow: 0 22px 60px rgba(16, 24, 32, .08);
}

.detail-gallery--umg .umg-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.detail-gallery--umg .umg-wrap:empty,
.detail-gallery--umg #umg-gallery:empty {
    display: none !important;
}

.detail-gallery--umg .umg-main,
.detail-gallery--umg .umg-thumbs {
    border-color: rgba(16, 24, 32, .08) !important;
    border-radius: 22px !important;
    box-shadow: 0 14px 34px rgba(16, 24, 32, .075) !important;
}

.detail-gallery--umg .umg-main {
    overflow: hidden;
    background: #fff;
}

.detail-gallery--umg .umg-media--image,
.detail-gallery--umg .umg-media--video {
    border-radius: 18px !important;
}

.detail-gallery--umg .umg-media--image .umg-img,
.detail-gallery--umg .umg-video-poster img {
    object-fit: contain;
}

.detail-gallery--umg .umg-thumbs {
    margin-top: 10px !important;
    padding: 8px !important;
    background: rgba(255,255,255,.92) !important;
}

.detail-gallery--umg .umg-thumb {
    border-radius: 14px !important;
    border-color: rgba(16, 24, 32, .1) !important;
}

.detail-gallery--umg .umg-thumb.is-active,
.detail-gallery--umg .umg-thumb:hover,
.detail-gallery--umg .umg-thumb:focus-visible {
    border-color: var(--accent, #afcb20) !important;
    box-shadow: 0 10px 22px rgba(175, 203, 32, .22) !important;
}

.detail-gallery--umg .umg-arrow,
.detail-gallery--umg .umg-close {
    color: var(--text, #101820) !important;
    border-color: rgba(16, 24, 32, .1) !important;
    box-shadow: 0 12px 28px rgba(16, 24, 32, .12) !important;
}

.detail-gallery--umg .umg-arrow:hover,
.detail-gallery--umg .umg-close:hover {
    border-color: var(--accent, #afcb20) !important;
}

.goemotion-scroll-tabs .woocommerce-Tabs-panel--description .woocommerce-tab-content > h2:first-child,
.goemotion-scroll-tabs .woocommerce-Tabs-panel--additional_information .woocommerce-tab-content > h2:first-child,
.goemotion-scroll-tabs .woocommerce-Tabs-panel--reviews .woocommerce-tab-content > h2:first-child {
    margin-top: 0;
}

.goemotion-scroll-tabs .umg-assembly {
    display: grid;
    gap: 14px;
}

.goemotion-scroll-tabs .umg-assembly p:last-child,
.goemotion-scroll-tabs .umg-assembly ul:last-child,
.goemotion-scroll-tabs .umg-assembly ol:last-child {
    margin-bottom: 0;
}

.goemotion-scroll-tabs .umg-asm-box,
.goemotion-scroll-tabs .umg-assembly iframe,
.goemotion-scroll-tabs .umg-assembly video {
    max-width: 100%;
}

.goemotion-scroll-tabs .umg-asm-box {
    border-radius: 20px;
    overflow: hidden;
    background: #0b1220;
    box-shadow: 0 18px 45px rgba(16, 24, 32, .12);
}

@media (max-width: 920px) {
    .detail-gallery--umg {
        padding: 10px;
    }

    .detail-gallery--umg .umg-thumb {
        height: 64px !important;
    }
}

@media (max-width: 640px) {
    .detail-gallery--umg {
        border-radius: 22px;
        padding: 8px;
    }

    .detail-gallery--umg .umg-main,
    .detail-gallery--umg .umg-thumbs {
        border-radius: 18px !important;
    }

    .detail-gallery--umg .umg-video-poster .umg-play {
        width: 76px !important;
        height: 54px !important;
    }
}

/* v1.0.85: Full responsive Product Video Manager / UMG gallery layer. */
.goemotion-wc-product-detail.product-detail {
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
    max-width: min(1480px, calc(100vw - clamp(24px, 4vw, 64px)));
    overflow: visible;
}

.goemotion-wc-product-detail .detail-gallery,
.goemotion-wc-product-detail .detail-info,
.detail-gallery--umg,
.detail-gallery--umg *,
.detail-gallery--umg *::before,
.detail-gallery--umg *::after {
    min-width: 0;
    box-sizing: border-box;
}

.goemotion-wc-product-detail .detail-gallery.detail-gallery--umg {
    width: 100%;
    max-width: 100%;
    display: block;
    overflow: hidden;
    padding: clamp(8px, 1.1vw, 14px) !important;
    border-radius: clamp(20px, 2.2vw, 30px);
}

.detail-gallery--umg #umg-gallery,
.detail-gallery--umg .umg-wrap,
.detail-gallery--umg .splide,
.detail-gallery--umg .splide__track,
.detail-gallery--umg .splide__list,
.detail-gallery--umg .splide__slide,
.detail-gallery--umg .umg-main,
.detail-gallery--umg .umg-thumbs,
.detail-gallery--umg .umg-media,
.detail-gallery--umg .umg-video-poster,
.detail-gallery--umg .umg-video-holder {
    max-width: 100% !important;
}

.detail-gallery--umg #umg-gallery,
.detail-gallery--umg .umg-wrap {
    width: 100% !important;
    margin: 0 !important;
    overflow: hidden;
}

.detail-gallery--umg .umg-main {
    width: 100% !important;
    overflow: hidden !important;
    border-radius: clamp(18px, 2vw, 24px) !important;
}

.detail-gallery--umg .umg-main .splide__track,
.detail-gallery--umg .umg-main .splide__list,
.detail-gallery--umg .umg-main .splide__slide {
    width: 100% !important;
}

.detail-gallery--umg .umg-main .splide__slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.detail-gallery--umg .umg-media--image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: min(64vh, 620px) !important;
    display: grid !important;
    place-items: center !important;
    border-radius: clamp(16px, 1.8vw, 22px) !important;
    background: linear-gradient(180deg, #fff, #f7f9fa) !important;
}

.detail-gallery--umg .umg-media--image .umg-img,
.detail-gallery--umg .umg-video-poster img,
.detail-gallery--umg .umg-thumb img,
.detail-gallery--umg .umg-thumb-img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

.detail-gallery--umg .umg-media--video {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: min(62vh, 540px) !important;
    border-radius: clamp(16px, 1.8vw, 22px) !important;
    overflow: hidden !important;
}

.detail-gallery--umg .umg-video-poster,
.detail-gallery--umg .umg-video-holder,
.detail-gallery--umg .umg-video-holder iframe,
.detail-gallery--umg .umg-video-holder video,
.detail-gallery--umg .umg-video-holder .plyr,
.detail-gallery--umg .umg-video-holder .plyr__video-wrapper {
    width: 100% !important;
    height: 100% !important;
}

.detail-gallery--umg .umg-thumbs {
    width: 100% !important;
    overflow: hidden !important;
    margin-top: clamp(8px, 1.2vw, 12px) !important;
    padding: clamp(6px, 1vw, 10px) !important;
    border-radius: clamp(16px, 1.8vw, 22px) !important;
}

.detail-gallery--umg .umg-thumbs .splide__track {
    overflow: hidden !important;
}

.detail-gallery--umg .umg-thumbs .splide__list {
    align-items: stretch !important;
}

.detail-gallery--umg .umg-thumbs .splide__slide {
    max-width: min(104px, 28vw) !important;
}

.detail-gallery--umg .umg-thumb {
    width: 100% !important;
    height: clamp(58px, 7vw, 76px) !important;
    border-radius: clamp(12px, 1.4vw, 16px) !important;
}

.detail-gallery--umg .umg-arrow {
    width: clamp(36px, 4.2vw, 46px) !important;
    height: clamp(36px, 4.2vw, 46px) !important;
}

.detail-gallery--umg .umg-prev {
    left: clamp(6px, 1vw, 12px) !important;
}

.detail-gallery--umg .umg-next {
    right: clamp(6px, 1vw, 12px) !important;
}

.detail-gallery--umg .umg-close {
    width: clamp(32px, 4vw, 38px) !important;
    height: clamp(32px, 4vw, 38px) !important;
    right: clamp(8px, 1.2vw, 12px) !important;
    top: clamp(8px, 1.2vw, 12px) !important;
}

.detail-gallery--umg .umg-video-poster .umg-play {
    width: clamp(64px, 9vw, 96px) !important;
    height: auto !important;
    aspect-ratio: 96 / 68 !important;
}

.goemotion-scroll-tabs .umg-asm-box,
.goemotion-scroll-tabs .umg-assembly iframe,
.goemotion-scroll-tabs .umg-assembly video {
    width: 100% !important;
    max-width: 100% !important;
}

.goemotion-scroll-tabs .umg-asm-box {
    aspect-ratio: 16 / 9;
}

.goemotion-scroll-tabs .umg-assembly iframe,
.goemotion-scroll-tabs .umg-assembly video {
    height: 100% !important;
}

@media (max-width: 1180px) {
    .goemotion-wc-product-detail.product-detail {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    }

    .detail-gallery--umg .umg-media--image {
        max-height: min(60vh, 560px) !important;
    }
}

@media (max-width: 920px) {
    .goemotion-wc-product-detail.product-detail,
    .goemotion-scroll-tabs {
        width: min(100% - 24px, 760px);
        max-width: min(100% - 24px, 760px);
    }

    .goemotion-wc-product-detail.product-detail {
        grid-template-columns: minmax(0, 1fr);
    }

    .goemotion-wc-product-detail .detail-gallery.detail-gallery--umg {
        position: static;
    }

    .detail-gallery--umg .umg-media--image {
        aspect-ratio: 4 / 3 !important;
        max-height: none !important;
    }

    .detail-gallery--umg .umg-media--video {
        max-height: none !important;
    }

    .detail-gallery--umg .umg-thumbs .splide__slide {
        max-width: min(96px, 25vw) !important;
    }

    .detail-gallery--umg .umg-thumb {
        height: clamp(56px, 10vw, 72px) !important;
    }
}

@media (max-width: 640px) {
    .goemotion-wc-product-detail.product-detail,
    .goemotion-scroll-tabs {
        width: min(100% - 18px, 540px);
        max-width: min(100% - 18px, 540px);
    }

    .goemotion-wc-product-detail .detail-gallery.detail-gallery--umg {
        padding: 6px !important;
        border-radius: 20px !important;
    }

    .detail-gallery--umg .umg-main,
    .detail-gallery--umg .umg-thumbs {
        border-radius: 16px !important;
    }

    .detail-gallery--umg .umg-media--image {
        aspect-ratio: 1 / 1 !important;
    }

    .detail-gallery--umg .umg-media--video {
        aspect-ratio: 16 / 9 !important;
    }

    .detail-gallery--umg .umg-thumbs {
        margin-top: 7px !important;
        padding: 6px !important;
    }

    .detail-gallery--umg .umg-thumbs .splide__slide {
        max-width: 82px !important;
    }

    .detail-gallery--umg .umg-thumb {
        height: 58px !important;
        border-radius: 12px !important;
    }

    .detail-gallery--umg .umg-arrow {
        width: 34px !important;
        height: 34px !important;
    }

    .detail-gallery--umg .umg-arrow span {
        font-size: 22px !important;
    }

    .detail-gallery--umg .umg-video-poster .umg-play {
        width: 64px !important;
    }
}

@media (max-width: 420px) {
    .detail-gallery--umg .umg-media--image {
        aspect-ratio: 1 / 1 !important;
    }

    .detail-gallery--umg .umg-thumbs .splide__slide {
        max-width: 74px !important;
    }

    .detail-gallery--umg .umg-thumb {
        height: 54px !important;
    }
}

/* v1.0.86: extra compact footer working-hours widget, especially Spletna naročila. */
.site-footer .working-hours-widget,
.site-footer .working-hours-widget--sl {
    container-type: inline-size !important;
    width: 100% !important;
    max-width: 100% !important;
}

.site-footer .working-hours-widget ul,
.site-footer .working-hours-widget__list {
    gap: 3px !important;
}

.site-footer .working-hours-widget li,
.site-footer .working-hours-widget__card {
    min-height: 0 !important;
    padding: 5px 7px 5px 9px !important;
    gap: 0 6px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
        "service hours"
        "days hours"
        "break break"
        "phone phone" !important;
}

.site-footer .working-hours-widget li::before,
.site-footer .working-hours-widget__card::before {
    inset: 8px auto auto 0 !important;
    width: 2px !important;
    height: calc(100% - 16px) !important;
    min-height: 18px !important;
}

.site-footer .working-hours-widget .service,
.site-footer .working-hours-widget__service {
    font-size: 11.2px !important;
    line-height: 1.06 !important;
    letter-spacing: -0.015em !important;
}

.site-footer .working-hours-widget .days,
.site-footer .working-hours-widget__days {
    font-size: 10px !important;
    line-height: 1.06 !important;
    letter-spacing: -0.015em !important;
}

.site-footer .working-hours-widget .hours,
.site-footer .working-hours-widget__hours {
    padding: 2px 5px !important;
    border-radius: 999px !important;
    font-size: 9.8px !important;
    line-height: 1 !important;
    letter-spacing: -0.015em !important;
}

.site-footer .working-hours-widget .break,
.site-footer .working-hours-widget__break {
    margin-top: 0 !important;
    font-size: 9.6px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.015em !important;
}

.site-footer .working-hours-widget .phone,
.site-footer .working-hours-widget__phone {
    min-height: 18px !important;
    margin-top: 2px !important;
    padding: 2px 5px !important;
    gap: 3px !important;
    border-radius: 999px !important;
    font-size: 9.8px !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
}

.site-footer .working-hours-widget .phone::before,
.site-footer .working-hours-widget__phone::before {
    flex: 0 0 8px !important;
    width: 8px !important;
    min-width: 8px !important;
    height: 8px !important;
    border-radius: 2px !important;
}

.site-footer .working-hours-widget li:nth-child(3),
.site-footer .working-hours-widget__card:nth-child(3) {
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
        "service hours"
        "days hours"
        "break break"
        "phone-a phone-b" !important;
    padding-block: 5px !important;
    gap: 0 5px !important;
}

.site-footer .working-hours-widget li:nth-child(3) .service,
.site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__service,
.site-footer .working-hours-widget li:nth-child(3) .days,
.site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__days {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.site-footer .working-hours-widget li:nth-child(3) .break,
.site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__break {
    opacity: .78 !important;
}

.site-footer .working-hours-widget li:nth-child(3) .phone,
.site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone {
    width: 100% !important;
    max-width: none !important;
    min-height: 17px !important;
    margin-top: 2px !important;
    padding: 2px 4px !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    font-size: 9.4px !important;
}

.site-footer .working-hours-widget li:nth-child(3) .phone:first-of-type,
.site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone:first-of-type {
    grid-area: phone-a !important;
}

.site-footer .working-hours-widget li:nth-child(3) .phone:last-of-type,
.site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone:last-of-type {
    grid-area: phone-b !important;
    margin-top: 2px !important;
}

.site-footer .working-hours-widget li:nth-child(3) .phone::before,
.site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone::before {
    flex-basis: 7px !important;
    width: 7px !important;
    min-width: 7px !important;
    height: 7px !important;
}

@container (max-width: 245px) {
    .site-footer .working-hours-widget li:nth-child(3),
    .site-footer .working-hours-widget__card:nth-child(3) {
        grid-template-areas:
            "service hours"
            "days hours"
            "break break"
            "phone-a phone-a"
            "phone-b phone-b" !important;
    }

    .site-footer .working-hours-widget li:nth-child(3) .phone,
    .site-footer .working-hours-widget__card:nth-child(3) .working-hours-widget__phone {
        width: fit-content !important;
        max-width: 100% !important;
        justify-content: flex-start !important;
    }
}

@media (max-width: 620px) {
    .site-footer .working-hours-widget li,
    .site-footer .working-hours-widget__card {
        padding: 6px 8px 6px 10px !important;
    }

    .site-footer .working-hours-widget .service,
    .site-footer .working-hours-widget__service {
        font-size: 11.6px !important;
    }

    .site-footer .working-hours-widget .days,
    .site-footer .working-hours-widget__days {
        font-size: 10.3px !important;
    }
}



/* v1.0.87: No-crop full-image product gallery layer. */
.goemotion-wc-product-detail .detail-gallery.detail-gallery--umg,
.detail-gallery--umg #umg-gallery,
.detail-gallery--umg .umg-wrap,
.detail-gallery--umg .umg-main {
    overflow: visible !important;
}

.detail-gallery--umg .umg-main .splide__track {
    overflow: hidden !important;
    transition: height .18s ease !important;
}

.detail-gallery--umg.is-umg-image-active .umg-main .splide__list,
.detail-gallery--umg.is-umg-image-active .umg-main .splide__slide {
    height: auto !important;
    min-height: 0 !important;
}

.detail-gallery--umg.is-umg-image-active .umg-main .splide__slide {
    align-items: center !important;
}

.detail-gallery--umg .umg-media--image {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(6px, .9vw, 12px) !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #fff, #f8fafb) !important;
}

.detail-gallery--umg .umg-media--image::after {
    display: none !important;
}

.detail-gallery--umg .umg-media--image .umg-img {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 100% !important;
    max-height: min(74vh, 720px) !important;
    object-fit: contain !important;
    object-position: center center !important;
    flex: 0 1 auto !important;
}

.detail-gallery--umg .umg-video-poster img,
.detail-gallery--umg .umg-thumb img,
.detail-gallery--umg .umg-thumb-img {
    object-fit: contain !important;
    object-position: center center !important;
}

.goemotion-wc-product-detail .detail-gallery:not(.detail-gallery--umg) > img,
.goemotion-wc-product-detail .detail-gallery:not(.detail-gallery--umg) .goemotion-single-main-image,
.goemotion-wc-product-detail .detail-gallery:not(.detail-gallery--umg) .product-placeholder-large {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
}

@media (max-width: 920px) {
    .detail-gallery--umg .umg-media--image {
        aspect-ratio: auto !important;
        padding: 8px !important;
    }

    .detail-gallery--umg .umg-media--image .umg-img {
        max-height: min(70vh, 640px) !important;
    }
}

@media (max-width: 640px) {
    .detail-gallery--umg .umg-media--image {
        aspect-ratio: auto !important;
        padding: 6px !important;
    }

    .detail-gallery--umg .umg-media--image .umg-img {
        max-height: min(68vh, 560px) !important;
    }
}

/* === GO E-Motion Back In Stock Notifier compatibility v1.0.88 === */
.ge-cwg-bis-compatible {
    --ge-bis-accent: var(--accent, #afcb20);
    --ge-bis-accent-2: var(--accent-2, #d9f23d);
    --ge-bis-dark: var(--graphite, #101820);
    --ge-bis-muted: #66727d;
    --ge-bis-line: rgba(16, 24, 32, .1);
    --ge-bis-soft: #f6f8f9;
}

.cwginstock-subscribe-form,
.cwginstock-subscribe-form * {
    box-sizing: border-box;
}

.cwginstock-subscribe-form {
    width: 100%;
    max-width: 100%;
    margin: clamp(14px, 2.2vw, 24px) 0 0;
    clear: both;
}

.cwginstock-subscribe-form .panel,
.cwginstock-subscribe-form .panel-primary,
.cwginstock-subscribe-form .panel-heading,
.cwginstock-subscribe-form .panel-body,
.cwginstock-subscribe-form .row,
.cwginstock-subscribe-form [class*="col-md-"] {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.ge-bis-card,
.cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-primary {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(16, 24, 32, .1) !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at 0 0, rgba(175, 203, 32, .16), transparent 18rem),
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,251,252,.96)) !important;
    box-shadow: 0 18px 50px rgba(16, 24, 32, .08) !important;
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
}

.ge-bis-card::before,
.cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-primary::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--ge-bis-accent), rgba(175,203,32,0));
}

.ge-bis-card__header,
.cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-heading {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: clamp(16px, 2vw, 22px) clamp(16px, 2.2vw, 24px) 10px !important;
    color: var(--ge-bis-dark) !important;
}

.ge-bis-card__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(175,203,32,.18);
    color: var(--ge-bis-dark);
    box-shadow: inset 0 0 0 1px rgba(175,203,32,.28);
}

.ge-bis-card__icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.ge-bis-card h4,
.cwginstock-subscribe-form .cwginstock-panel-heading h4,
.swal2-container .cwginstock-panel-heading h4 {
    margin: 0 !important;
    color: var(--ge-bis-dark) !important;
    font-size: clamp(18px, 1.6vw, 22px) !important;
    font-weight: 950 !important;
    letter-spacing: -.035em;
    line-height: 1.12 !important;
    text-align: left !important;
}

.ge-bis-card__title-wrap p {
    margin: 6px 0 0;
    color: var(--ge-bis-muted);
    font-size: 13px;
    line-height: 1.5;
}

.ge-bis-card__body,
.cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-body {
    padding: 8px clamp(16px, 2.2vw, 24px) clamp(16px, 2.2vw, 24px) !important;
}

.ge-bis-fields,
.cwginstock-subscribe-form .form-group.center-block:first-of-type {
    display: grid !important;
    gap: 10px !important;
    margin: 0 0 12px !important;
}

.ge-bis-field {
    display: block;
    margin: 0;
}

.cwginstock-subscribe-form input[type="text"],
.cwginstock-subscribe-form input[type="email"],
.cwginstock-subscribe-form input[type="tel"],
.cwginstock-subscribe-form input[type="number"],
.cwginstock-subscribe-form select,
.cwginstock-subscribe-form textarea {
    width: 100% !important;
    min-height: 48px;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(16, 24, 32, .13) !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: var(--ge-bis-dark) !important;
    box-shadow: none !important;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 1.2;
    text-align: left !important;
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.cwginstock-subscribe-form input::placeholder,
.cwginstock-subscribe-form textarea::placeholder {
    color: rgba(102,114,125,.78);
    opacity: 1;
}

.cwginstock-subscribe-form input[type="text"]:focus,
.cwginstock-subscribe-form input[type="email"]:focus,
.cwginstock-subscribe-form input[type="tel"]:focus,
.cwginstock-subscribe-form input[type="number"]:focus,
.cwginstock-subscribe-form select:focus,
.cwginstock-subscribe-form textarea:focus {
    border-color: rgba(175,203,32,.86) !important;
    box-shadow: 0 0 0 4px rgba(175,203,32,.16) !important;
}

.cwginstock-subscribe-form .iti {
    width: 100% !important;
}

.cwginstock-subscribe-form .iti input.cwgstock_phone {
    padding-left: 96px !important;
}

.cwginstock-subscribe-form .iti__selected-country,
.cwginstock-subscribe-form .iti__selected-flag {
    border-radius: 12px 0 0 12px;
}

.cwginstock-subscribe-form .add_quantity_field {
    max-width: 140px;
}

.ge-bis-actions,
.cwginstock-subscribe-form .form-group.center-block[style*="text-align:center"],
.cwginstock-subscribe-form .form-group.center-block:last-of-type {
    display: grid !important;
    gap: 10px;
    margin: 12px 0 0 !important;
    text-align: initial !important;
}

.cwginstock-subscribe-form .cwgstock_button,
.cwg_popup_submit,
.cwgstock_button,
.product .cwg_popup_submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 13px 18px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--ge-bis-accent), var(--ge-bis-accent-2)) !important;
    color: var(--ge-bis-dark) !important;
    box-shadow: 0 14px 32px rgba(175,203,32,.24) !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    -webkit-appearance: none;
    appearance: none;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, opacity .18s ease;
}

.cwg_popup_submit {
    width: auto !important;
    min-width: 148px !important;
    margin-top: 10px !important;
}

.cwginstock-subscribe-form .cwgstock_button:hover,
.cwginstock-subscribe-form .cwgstock_button:focus-visible,
.cwg_popup_submit:hover,
.cwg_popup_submit:focus-visible {
    transform: translateY(-1px);
    filter: saturate(1.04) brightness(1.02);
    box-shadow: 0 18px 42px rgba(175,203,32,.3) !important;
    outline: 0;
}

.cwginstock-subscribe-form.ge-bis-loading .cwgstock_button,
.cwginstock-subscribe-form .cwgstock_button:disabled {
    opacity: .68;
    cursor: progress !important;
    transform: none !important;
}

.cwgstock_output,
.ge-bis-output {
    display: none;
    margin-top: 12px;
}

.cwgstock_output:not(:empty),
.ge-bis-output:not(:empty) {
    display: block;
}

.cwginstockerror,
.cwginstocksuccess,
.ge-bis-result,
.cwgstock_output > div,
.cwgstock_output > p {
    margin: 0 !important;
    padding: 11px 13px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.45 !important;
    text-align: left !important;
}

.cwginstockerror,
.ge-bis-result--error,
.cwgstock_output .ge-bis-output--error {
    border: 1px solid rgba(180,35,24,.18) !important;
    background: rgba(180,35,24,.08) !important;
    color: #9f1f17 !important;
}

.cwginstocksuccess,
.ge-bis-result--success,
.cwgstock_output .ge-bis-output--success {
    border: 1px solid rgba(55,126,68,.18) !important;
    background: rgba(55,126,68,.09) !important;
    color: #246b34 !important;
}

.cwg_iagree_checkbox {
    margin: 10px 0 0;
}

.cwg_iagree_checkbox label {
    position: relative;
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin: 0 !important;
    padding: 10px 12px;
    border: 1px solid rgba(16,24,32,.1);
    border-radius: 14px;
    background: rgba(246,248,249,.92);
    color: var(--ge-bis-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
}

.cwg_iagree_checkbox input[type="checkbox"] {
    position: relative;
    flex: 0 0 18px;
    width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    margin: 1px 0 0 !important;
    padding: 0 !important;
    border: 2px solid rgba(16,24,32,.26) !important;
    border-radius: 6px !important;
    background: #fff !important;
    box-shadow: none !important;
    cursor: pointer;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.cwg_iagree_checkbox input[type="checkbox"]::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid var(--ge-bis-dark);
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg) scale(.65);
    transition: opacity .16s ease, transform .16s ease;
}

.cwg_iagree_checkbox input[type="checkbox"]:checked {
    border-color: var(--ge-bis-accent) !important;
    background: var(--ge-bis-accent) !important;
}

.cwg_iagree_checkbox input[type="checkbox"]:checked::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

#cwg-bis-overlay,
.cwginstock-subscribe-form .blockUI.blockOverlay {
    border-radius: 22px !important;
    background: rgba(255,255,255,.72) !important;
    opacity: 1 !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#cwg-bis-overlay::after,
.cwginstock-subscribe-form .blockUI.blockOverlay::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    border-radius: 50%;
    border: 3px solid rgba(16,24,32,.1);
    border-top-color: var(--ge-bis-accent);
    border-right-color: var(--ge-bis-accent);
    animation: geBisSpin .72s linear infinite;
}

@keyframes geBisSpin { to { transform: rotate(360deg); } }

.swal2-container .swal2-popup {
    width: min(92vw, 560px) !important;
    padding: 0 !important;
    border: 1px solid rgba(16,24,32,.1) !important;
    border-radius: 28px !important;
    background: transparent !important;
    box-shadow: 0 28px 90px rgba(16,24,32,.22) !important;
    overflow: visible !important;
}

.swal2-container .swal2-html-container {
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.swal2-container .swal2-close {
    top: 12px !important;
    right: 12px !important;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid rgba(16,24,32,.1) !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: var(--ge-bis-dark) !important;
    box-shadow: 0 10px 24px rgba(16,24,32,.08) !important;
}

.swal2-container .cwginstock-subscribe-form {
    margin: 0 !important;
}

.swal2-container .ge-bis-card,
.swal2-container .cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-primary {
    border-radius: 28px !important;
    box-shadow: none !important;
}

.gom-modal .cwginstock-subscribe-form {
    margin-top: 0;
}

.gom-modal .ge-bis-card,
.gom-modal .cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-primary {
    box-shadow: none !important;
    border-radius: 18px !important;
}

.gom-modal .ge-bis-card__header,
.gom-modal .cwginstock-panel-heading {
    padding-top: 16px !important;
}

.gom-modal .ge-bis-card h4,
.gom-modal .cwginstock-panel-heading h4 {
    font-size: 18px !important;
}

.single-product .summary .cwginstock-subscribe-form,
.single-product .entry-summary .cwginstock-subscribe-form {
    margin-top: 16px;
}

.single-product .summary .ge-bis-card,
.single-product .entry-summary .ge-bis-card {
    max-width: 620px;
}

.woocommerce div.product form.cart + .cwginstock-subscribe-form,
.woocommerce div.product .stock.out-of-stock + .cwginstock-subscribe-form {
    margin-top: 14px;
}

@media (max-width: 780px) {
    .ge-bis-card__header,
    .cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ge-bis-card__icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .ge-bis-card__body,
    .cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-body {
        padding-bottom: 16px !important;
    }

    .cwg_popup_submit {
        width: 100% !important;
        min-width: 0 !important;
    }
}

@media (max-width: 480px) {
    .cwginstock-subscribe-form {
        margin-top: 12px;
    }

    .ge-bis-card,
    .cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-primary {
        border-radius: 18px !important;
    }

    .ge-bis-card__header,
    .cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-heading {
        padding: 15px 14px 8px !important;
    }

    .ge-bis-card__body,
    .cwginstock-subscribe-form:not(.ge-bis-subscribe-form) .cwginstock-panel-body {
        padding: 7px 14px 14px !important;
    }

    .cwginstock-subscribe-form input[type="text"],
    .cwginstock-subscribe-form input[type="email"],
    .cwginstock-subscribe-form input[type="tel"],
    .cwginstock-subscribe-form input[type="number"],
    .cwginstock-subscribe-form select,
    .cwginstock-subscribe-form textarea,
    .cwginstock-subscribe-form .cwgstock_button {
        min-height: 44px !important;
        border-radius: 13px !important;
    }
}

/* === GO E-Motion product specifications icon sizing legacy override === */
.goemotion-wc-product-detail .btn-specifications img,
.goemotion-wc-product-detail .btn-specifications svg {
    width: auto !important;
    max-width: clamp(68px, 5.2vw, 82px) !important;
    height: clamp(52px, 4.2vw, 64px) !important;
    object-fit: contain !important;
}

.goemotion-wc-product-detail .btn-specifications i,
.goemotion-wc-product-detail .btn-specifications [class^="icon-"],
.goemotion-wc-product-detail .btn-specifications [class*=" icon-"] {
    font-size: clamp(46px, 4.2vw, 62px) !important;
    line-height: 1 !important;
}

@media (max-width: 760px) {
    .goemotion-wc-product-detail .btn-specifications img,
    .goemotion-wc-product-detail .btn-specifications svg {
        max-width: 64px !important;
        height: 50px !important;
    }

    .goemotion-wc-product-detail .btn-specifications i,
    .goemotion-wc-product-detail .btn-specifications [class^="icon-"],
    .goemotion-wc-product-detail .btn-specifications [class*=" icon-"] {
        font-size: 48px !important;
    }
}

/* === GO E-Motion product specifications final icon sizing v1.0.91 === */
.goemotion-wc-product-detail .icons-specifications {
    gap: clamp(10px, 1.6vw, 16px) !important;
}

.goemotion-wc-product-detail .btn-specifications {
    min-height: clamp(150px, 13vw, 176px) !important;
    padding: clamp(14px, 1.6vw, 20px) 12px !important;
    gap: 7px !important;
}

.goemotion-wc-product-detail .btn-specifications img,
.goemotion-wc-product-detail .btn-specifications svg {
    width: auto !important;
    max-width: clamp(92px, 7.2vw, 116px) !important;
    height: clamp(72px, 6vw, 92px) !important;
    object-fit: contain !important;
    display: block !important;
}

.goemotion-wc-product-detail .btn-specifications i,
.goemotion-wc-product-detail .btn-specifications [class^="icon-"],
.goemotion-wc-product-detail .btn-specifications [class*=" icon-"] {
    font-size: clamp(62px, 5.8vw, 86px) !important;
    line-height: 1 !important;
}

.goemotion-wc-product-detail .btn-specifications span {
    font-size: 13px !important;
}

.goemotion-wc-product-detail .btn-specifications p:last-child span {
    font-size: 15px !important;
}

@media (max-width: 760px) {
    .goemotion-wc-product-detail .btn-specifications {
        min-height: 138px !important;
        padding: 13px 9px !important;
        gap: 6px !important;
    }

    .goemotion-wc-product-detail .btn-specifications img,
    .goemotion-wc-product-detail .btn-specifications svg {
        max-width: 78px !important;
        height: 62px !important;
    }

    .goemotion-wc-product-detail .btn-specifications i,
    .goemotion-wc-product-detail .btn-specifications [class^="icon-"],
    .goemotion-wc-product-detail .btn-specifications [class*=" icon-"] {
        font-size: 62px !important;
    }
}

@media (max-width: 480px) {
    .goemotion-wc-product-detail .btn-specifications {
        min-height: 128px !important;
    }

    .goemotion-wc-product-detail .btn-specifications img,
    .goemotion-wc-product-detail .btn-specifications svg {
        max-width: 70px !important;
        height: 56px !important;
    }
}

/* --------------------------------------------------------------------------
   v1.0.93 — Single product inquiry modal + GO E-Motion buy button hover.
   -------------------------------------------------------------------------- */
body.ge-inquiry-open {
    overflow: hidden;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions > .goemotion-product-inquiry-trigger {
    border: 1px solid rgba(16, 24, 32, .12) !important;
    background: #151c22 !important;
    color: #fff !important;
    cursor: pointer !important;
    box-shadow: 0 16px 38px rgba(16, 24, 32, .18), inset 0 1px 0 rgba(255,255,255,.08) !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease !important;
}

.goemotion-wc-product-detail .detail-actions.goemotion-single-actions > .goemotion-product-inquiry-trigger:hover,
.goemotion-wc-product-detail .detail-actions.goemotion-single-actions > .goemotion-product-inquiry-trigger:focus-visible {
    transform: translateY(-2px) !important;
    border-color: rgba(175, 203, 32, .55) !important;
    background: linear-gradient(135deg, #151c22, #26313a) !important;
    color: #fff !important;
    box-shadow: 0 20px 48px rgba(16, 24, 32, .24), 0 0 0 4px rgba(175,203,32,.13) !important;
    outline: none !important;
}

.goemotion-wc-product-detail .single_add_to_cart_button,
.goemotion-wc-product-detail button.single_add_to_cart_button,
.goemotion-wc-product-detail .single_add_to_cart_button.button,
.goemotion-wc-product-detail .single_add_to_cart_button.button.alt,
.woocommerce .goemotion-wc-product-detail .single_add_to_cart_button.button.alt,
.woocommerce div.product .goemotion-wc-product-detail form.cart .button.single_add_to_cart_button {
    background: linear-gradient(135deg, var(--accent, #afcb20), var(--accent-2, #d9f23d)) !important;
    color: var(--graphite, #101820) !important;
    border: 0 !important;
    box-shadow: 0 14px 34px rgba(175, 203, 32, .24), inset 0 1px 0 rgba(255,255,255,.45) !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, filter .2s ease !important;
}

.goemotion-wc-product-detail .single_add_to_cart_button:hover,
.goemotion-wc-product-detail button.single_add_to_cart_button:hover,
.goemotion-wc-product-detail .single_add_to_cart_button.button:hover,
.goemotion-wc-product-detail .single_add_to_cart_button.button.alt:hover,
.woocommerce .goemotion-wc-product-detail .single_add_to_cart_button.button.alt:hover,
.woocommerce div.product .goemotion-wc-product-detail form.cart .button.single_add_to_cart_button:hover,
.goemotion-wc-product-detail .single_add_to_cart_button:focus-visible,
.goemotion-wc-product-detail button.single_add_to_cart_button:focus-visible,
.goemotion-wc-product-detail .single_add_to_cart_button.button:focus-visible,
.goemotion-wc-product-detail .single_add_to_cart_button.button.alt:focus-visible,
.woocommerce .goemotion-wc-product-detail .single_add_to_cart_button.button.alt:focus-visible,
.woocommerce div.product .goemotion-wc-product-detail form.cart .button.single_add_to_cart_button:focus-visible {
    background: linear-gradient(135deg, #d9f23d, #afcb20) !important;
    color: var(--graphite, #101820) !important;
    transform: translateY(-2px) !important;
    filter: saturate(1.05) contrast(1.02) !important;
    box-shadow: 0 20px 46px rgba(175, 203, 32, .34), 0 0 0 4px rgba(175,203,32,.16), inset 0 1px 0 rgba(255,255,255,.55) !important;
    outline: none !important;
}

.ge-inquiry-modal {
    --ge-inquiry-accent: #afcb20;
    --ge-inquiry-accent-2: #d9f23d;
    --ge-inquiry-dark: #101820;
    --ge-inquiry-muted: #66727d;
    --ge-inquiry-border: rgba(16, 24, 32, .12);
    position: fixed;
    inset: 0;
    z-index: 999990;
    display: grid;
    place-items: center;
    padding: clamp(14px, 3vw, 32px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

.ge-inquiry-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ge-inquiry-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 16, .62);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ge-inquiry-modal__panel {
    position: relative;
    width: min(100%, 690px);
    max-height: min(88svh, 820px);
    overflow: auto;
    border: 1px solid rgba(255,255,255,.76);
    border-radius: clamp(24px, 3vw, 38px);
    background:
        radial-gradient(circle at 0% 0%, rgba(175,203,32,.20), transparent 25rem),
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,251,252,.96));
    box-shadow: 0 34px 110px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.75);
    padding: clamp(20px, 4vw, 38px);
    transform: translateY(18px) scale(.985);
    transition: transform .26s cubic-bezier(.16, 1, .3, 1);
}

.ge-inquiry-modal.is-open .ge-inquiry-modal__panel {
    transform: translateY(0) scale(1);
}

.ge-inquiry-modal__close {
    position: absolute;
    top: clamp(12px, 2vw, 18px);
    right: clamp(12px, 2vw, 18px);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(16,24,32,.08);
    color: var(--ge-inquiry-dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.ge-inquiry-modal__close:hover,
.ge-inquiry-modal__close:focus-visible {
    transform: rotate(6deg) scale(1.04);
    background: var(--ge-inquiry-dark);
    color: #fff;
    outline: none;
}

.ge-inquiry-modal__head {
    max-width: 560px;
    padding-right: 44px;
    margin-bottom: 18px;
}

.ge-inquiry-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #536611;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ge-inquiry-modal__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ge-inquiry-accent);
    box-shadow: 0 0 0 6px rgba(175,203,32,.15);
}

.ge-inquiry-modal__head h2 {
    margin: 0;
    color: var(--ge-inquiry-dark);
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: .98;
}

.ge-inquiry-modal__head p {
    margin: 12px 0 0;
    color: var(--ge-inquiry-muted);
    font-size: 14px;
    line-height: 1.6;
}

.ge-inquiry-form {
    display: grid;
    gap: 12px;
}

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

.ge-inquiry-field {
    display: grid;
    gap: 7px;
    margin: 0;
    color: var(--ge-inquiry-dark);
    font-size: 13px;
    font-weight: 850;
}

.ge-inquiry-field > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ge-inquiry-field input,
.ge-inquiry-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--ge-inquiry-border);
    border-radius: 16px;
    background: #fff;
    color: var(--ge-inquiry-dark);
    font-size: 14px;
    font-weight: 750;
    outline: none;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.ge-inquiry-field textarea {
    min-height: 126px;
    resize: vertical;
    line-height: 1.5;
}

.ge-inquiry-field input:focus,
.ge-inquiry-field textarea:focus {
    border-color: rgba(175, 203, 32, .82);
    box-shadow: 0 0 0 4px rgba(175,203,32,.14);
}

.ge-inquiry-field--product {
    padding: 12px;
    border: 1px solid rgba(16, 24, 32, .08);
    border-radius: 20px;
    background: rgba(16, 24, 32, .035);
}

.ge-inquiry-field--product input[readonly] {
    border-color: transparent;
    background: #eef1f2;
    color: #59636d;
    cursor: not-allowed;
}

.ge-inquiry-field--product small {
    margin-top: -2px;
    color: var(--ge-inquiry-muted);
    font-size: 12px;
    font-weight: 800;
}

.ge-inquiry-form__foot {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.ge-inquiry-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ge-inquiry-accent), var(--ge-inquiry-accent-2));
    color: var(--ge-inquiry-dark);
    font-size: 14px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(175,203,32,.25), inset 0 1px 0 rgba(255,255,255,.45);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ge-inquiry-submit:hover,
.ge-inquiry-submit:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(175,203,32,.34), 0 0 0 4px rgba(175,203,32,.14), inset 0 1px 0 rgba(255,255,255,.55);
    outline: none;
}

.ge-inquiry-form.is-loading .ge-inquiry-submit {
    opacity: .72;
    cursor: wait;
}

.ge-inquiry-status {
    margin: 0;
    min-height: 1.35em;
    color: var(--ge-inquiry-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.ge-inquiry-status.is-success {
    color: #27640f;
}

.ge-inquiry-status.is-error {
    color: #b42318;
}

@media (max-width: 680px) {
    .ge-inquiry-modal {
        align-items: end;
        padding: 10px;
    }

    .ge-inquiry-modal__panel {
        width: 100%;
        max-height: 92svh;
        border-radius: 26px 26px 20px 20px;
        padding: 20px;
    }

    .ge-inquiry-grid,
    .ge-inquiry-form__foot {
        grid-template-columns: 1fr;
    }

    .ge-inquiry-submit {
        width: 100%;
    }

    .ge-inquiry-modal__head {
        padding-right: 38px;
    }
}

@media (max-width: 420px) {
    .ge-inquiry-modal__panel {
        padding: 18px 14px;
    }

    .ge-inquiry-modal__head h2 {
        font-size: 30px;
    }

    .ge-inquiry-field input,
    .ge-inquiry-field textarea {
        border-radius: 14px;
    }
}

/* --------------------------------------------------------------------------
   v1.0.98 — Smarter home product rails + refined product inquiry modal.
   -------------------------------------------------------------------------- */
.ge-inquiry-modal {
    padding: clamp(12px, 2.4vw, 28px) !important;
}

.ge-inquiry-modal__panel {
    width: min(100%, 860px) !important;
    max-height: min(90svh, 840px) !important;
    padding: 0 !important;
    border-radius: clamp(24px, 3vw, 42px) !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 0% 0%, rgba(175,203,32,.18), transparent 26rem),
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,251,252,.97)) !important;
}

.ge-inquiry-modal__layout {
    display: grid;
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
    min-height: 0;
}

.ge-inquiry-modal__side {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(24px, 3.2vw, 38px);
    background:
        radial-gradient(circle at 15% 0%, rgba(217,242,61,.22), transparent 18rem),
        linear-gradient(160deg, rgba(16,24,32,.98), rgba(26,36,43,.96));
    color: #fff;
    overflow: hidden;
}

.ge-inquiry-modal__side::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 230px;
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(175,203,32,.18);
    pointer-events: none;
}

.ge-inquiry-modal__side .ge-inquiry-modal__eyebrow {
    color: #dff65a;
    margin-bottom: 0;
}

.ge-inquiry-modal__side .ge-inquiry-modal__eyebrow::before {
    background: #d9f23d;
    box-shadow: 0 0 0 6px rgba(217,242,61,.18);
}

.ge-inquiry-modal__side h2 {
    margin: 0;
    max-width: 360px;
    color: #fff;
    font-size: clamp(30px, 4.4vw, 50px);
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: .98;
}

.ge-inquiry-modal__side p {
    margin: -6px 0 0;
    max-width: 390px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.62;
}

.ge-inquiry-product-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    align-items: flex-start;
    margin-top: auto;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.09);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ge-inquiry-product-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(175,203,32,.18);
    color: #d9f23d;
}

.ge-inquiry-product-card__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ge-inquiry-product-card__body {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.ge-inquiry-product-card__body > span {
    color: rgba(255,255,255,.62);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.ge-inquiry-product-card input[readonly] {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    cursor: default;
    outline: none;
    box-shadow: none;
}

.ge-inquiry-product-card small {
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 800;
}

.ge-inquiry-modal__points {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ge-inquiry-modal__points li {
    position: relative;
    padding-left: 20px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.ge-inquiry-modal__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .48em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #afcb20;
    box-shadow: 0 0 0 5px rgba(175,203,32,.15);
}

.ge-inquiry-form {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255,255,255,.72);
}

.ge-inquiry-form-section {
    display: grid;
    gap: 12px;
    padding: clamp(14px, 2vw, 20px);
    border: 1px solid rgba(16,24,32,.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16,24,32,.045);
}

.ge-inquiry-section-title {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    margin-bottom: 2px;
}

.ge-inquiry-section-title > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: rgba(175,203,32,.16);
    color: #536611;
    font-size: 12px;
    font-weight: 950;
}

.ge-inquiry-section-title strong {
    display: block;
    color: #101820;
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.ge-inquiry-section-title small {
    display: block;
    margin-top: 2px;
    color: #66727d;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.ge-inquiry-field {
    gap: 6px !important;
    font-size: 13px !important;
}

.ge-inquiry-field input,
.ge-inquiry-field textarea {
    min-height: 45px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
}

.ge-inquiry-field textarea {
    min-height: 132px !important;
}

.ge-inquiry-field--message textarea {
    min-height: 145px !important;
}

.ge-inquiry-form__foot {
    grid-template-columns: minmax(210px, auto) minmax(0, 1fr) !important;
    margin-top: 0 !important;
    padding: 2px 2px 0;
}

.ge-inquiry-submit {
    gap: 10px;
    min-height: 50px !important;
    padding-inline: 22px !important;
}

.ge-inquiry-submit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
}

.ge-inquiry-submit:hover svg,
.ge-inquiry-submit:focus-visible svg {
    transform: translateX(3px);
}

.ge-inquiry-status {
    min-height: 0 !important;
    padding: 0;
}

.ge-inquiry-status.is-success,
.ge-inquiry-status.is-error {
    padding: 11px 13px;
    border-radius: 15px;
}

.ge-inquiry-status.is-success {
    background: rgba(39,100,15,.08);
}

.ge-inquiry-status.is-error {
    background: rgba(180,35,24,.08);
}

@media (max-width: 820px) {
    .ge-inquiry-modal {
        place-items: end center !important;
        padding: 10px !important;
    }

    .ge-inquiry-modal__panel {
        width: 100% !important;
        max-height: 93svh !important;
        border-radius: 28px 28px 20px 20px !important;
        overflow: auto !important;
    }

    .ge-inquiry-modal__layout {
        grid-template-columns: 1fr;
    }

    .ge-inquiry-modal__side {
        padding: 22px;
    }

    .ge-inquiry-product-card {
        margin-top: 4px;
    }

    .ge-inquiry-modal__points {
        display: none;
    }

    .ge-inquiry-form {
        padding: 16px;
    }

    .ge-inquiry-grid,
    .ge-inquiry-form__foot {
        grid-template-columns: 1fr !important;
    }

    .ge-inquiry-submit {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .ge-inquiry-modal__side {
        padding: 20px 16px;
    }

    .ge-inquiry-modal__side h2 {
        font-size: 30px;
    }

    .ge-inquiry-form {
        padding: 14px;
        gap: 12px;
    }

    .ge-inquiry-form-section {
        padding: 13px;
        border-radius: 20px;
    }

    .ge-inquiry-product-card {
        grid-template-columns: 1fr;
    }
}


/* === GO E-Motion GE Speedy Shipping compatibility v1.0.115 === */
body.ge-speedy-theme-compatible.woocommerce-cart,
body.ge-speedy-theme-compatible.woocommerce-checkout {
    --ge-speedy-accent: #afcb20;
    --ge-speedy-accent-dark: #8fa617;
    --ge-speedy-ink: #111827;
    --ge-speedy-muted: #667085;
    --ge-speedy-line: rgba(17, 24, 39, 0.10);
    --ge-speedy-soft: rgba(175, 203, 32, 0.10);
}

.woocommerce-cart .cart_totals ul#shipping_method li:has(input[value^="ge_speedy"]),
.woocommerce-checkout .goemotion-checkout-summary ul#shipping_method li:has(input[value^="ge_speedy"]),
.woocommerce-checkout ul#shipping_method li:has(input[value^="ge_speedy"]),
.woocommerce-cart .cart_totals .woocommerce-shipping-methods li.goemotion-ge-speedy-rate,
.woocommerce-checkout .woocommerce-shipping-methods li.goemotion-ge-speedy-rate {
    position: relative;
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    width: 100%;
    min-width: 0;
    padding: 14px 14px 14px 15px !important;
    border: 1px solid rgba(175, 203, 32, 0.42) !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at top right, rgba(175, 203, 32, 0.14), transparent 38%),
        linear-gradient(180deg, #ffffff, #fbfcf6) !important;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.055) !important;
    overflow: hidden;
}

.woocommerce-cart .cart_totals ul#shipping_method li:has(input[value^="ge_speedy"])::after,
.woocommerce-checkout .goemotion-checkout-summary ul#shipping_method li:has(input[value^="ge_speedy"])::after,
.woocommerce-checkout ul#shipping_method li:has(input[value^="ge_speedy"])::after,
.woocommerce-cart .cart_totals .woocommerce-shipping-methods li.goemotion-ge-speedy-rate::after,
.woocommerce-checkout .woocommerce-shipping-methods li.goemotion-ge-speedy-rate::after {
    content: "Speedy";
    grid-column: 2;
    justify-self: start;
    width: fit-content;
    margin-top: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--ge-speedy-soft);
    color: #52610b;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.woocommerce-cart .cart_totals ul#shipping_method input[value^="ge_speedy"],
.woocommerce-checkout ul#shipping_method input[value^="ge_speedy"],
.woocommerce-cart .cart_totals .woocommerce-shipping-methods li.goemotion-ge-speedy-rate input[type="radio"],
.woocommerce-checkout .woocommerce-shipping-methods li.goemotion-ge-speedy-rate input[type="radio"] {
    inline-size: 18px;
    block-size: 18px;
    margin: 2px 0 0 !important;
    accent-color: var(--ge-speedy-accent);
}

.woocommerce-cart .cart_totals ul#shipping_method input[value^="ge_speedy"] + label,
.woocommerce-checkout ul#shipping_method input[value^="ge_speedy"] + label,
.woocommerce-cart .cart_totals .woocommerce-shipping-methods li.goemotion-ge-speedy-rate label,
.woocommerce-checkout .woocommerce-shipping-methods li.goemotion-ge-speedy-rate label {
    min-width: 0;
    color: var(--ge-speedy-ink) !important;
    font-size: clamp(13px, 1.7vw, 15px);
    font-weight: 950 !important;
    line-height: 1.35;
    white-space: normal !important;
    overflow-wrap: anywhere;
}

.woocommerce-cart .cart_totals ul#shipping_method input[value^="ge_speedy"] + label .amount,
.woocommerce-checkout ul#shipping_method input[value^="ge_speedy"] + label .amount,
.woocommerce-cart .cart_totals .woocommerce-shipping-methods li.goemotion-ge-speedy-rate .amount,
.woocommerce-checkout .woocommerce-shipping-methods li.goemotion-ge-speedy-rate .amount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin-left: 6px;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--ge-speedy-accent);
    color: #11170a !important;
    font-weight: 950 !important;
    line-height: 1;
}

.woocommerce-cart .cart_totals ul#shipping_method li:has(input[value^="ge_speedy"]):has(input:checked),
.woocommerce-checkout ul#shipping_method li:has(input[value^="ge_speedy"]):has(input:checked),
.woocommerce-cart .cart_totals .woocommerce-shipping-methods li.goemotion-ge-speedy-rate.is-selected,
.woocommerce-checkout .woocommerce-shipping-methods li.goemotion-ge-speedy-rate.is-selected {
    border-color: var(--ge-speedy-accent) !important;
    box-shadow: 0 16px 38px rgba(175, 203, 32, 0.18) !important;
}

.woocommerce-checkout .goemotion-checkout-summary .shipping td,
.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-totals td,
.woocommerce-cart .cart_totals .shipping td,
.woocommerce-cart .cart_totals .woocommerce-shipping-totals td {
    min-width: 0;
}

.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-methods,
.woocommerce-cart .cart_totals .woocommerce-shipping-methods {
    display: grid !important;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-destination,
.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-calculator,
.woocommerce-cart .cart_totals .woocommerce-shipping-destination,
.woocommerce-cart .cart_totals .woocommerce-shipping-calculator {
    width: 100%;
    min-width: 0;
    color: var(--ge-speedy-muted);
    overflow-wrap: anywhere;
}

.woocommerce-checkout.processing .goemotion-checkout-summary ul#shipping_method li:has(input[value^="ge_speedy"]),
.woocommerce-checkout .goemotion-checkout-summary .blockUI.blockOverlay + ul#shipping_method li:has(input[value^="ge_speedy"]) {
    opacity: .78;
}

@media (max-width: 760px) {
    .woocommerce-cart .cart_totals ul#shipping_method li:has(input[value^="ge_speedy"]),
    .woocommerce-checkout .goemotion-checkout-summary ul#shipping_method li:has(input[value^="ge_speedy"]),
    .woocommerce-checkout ul#shipping_method li:has(input[value^="ge_speedy"]),
    .woocommerce-cart .cart_totals .woocommerce-shipping-methods li.goemotion-ge-speedy-rate,
    .woocommerce-checkout .woocommerce-shipping-methods li.goemotion-ge-speedy-rate {
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 10px;
        padding: 13px !important;
        border-radius: 16px !important;
    }

    .woocommerce-cart .cart_totals ul#shipping_method input[value^="ge_speedy"] + label .amount,
    .woocommerce-checkout ul#shipping_method input[value^="ge_speedy"] + label .amount,
    .woocommerce-cart .cart_totals .woocommerce-shipping-methods li.goemotion-ge-speedy-rate .amount,
    .woocommerce-checkout .woocommerce-shipping-methods li.goemotion-ge-speedy-rate .amount {
        display: flex;
        width: fit-content;
        margin: 7px 0 0;
    }
}

/* === GO E-Motion GE Speedy Shipping responsive checkout/card polish v1.0.116 === */
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals {
    min-width: 0;
}

body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.shipping,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.woocommerce-shipping-totals,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals table.shop_table tr.shipping,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals {
    width: 100%;
    min-width: 0;
}

body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.shipping > th,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.shipping > td,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.woocommerce-shipping-totals > th,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.woocommerce-shipping-totals > td,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals table.shop_table tr.shipping > th,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals table.shop_table tr.shipping > td,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals > th,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals > td {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box;
    overflow: visible !important;
}

body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary ul#shipping_method,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals ul#shipping_method,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-methods,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-shipping-methods {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary ul#shipping_method li,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals ul#shipping_method li {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere;
}

body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li.goemotion-ge-speedy-rate,
body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li.goemotion-ge-speedy-rate,
body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li:has(input[value^="ge_speedy"]),
body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li:has(input[value^="ge_speedy"]) {
    container-type: inline-size;
    isolation: isolate;
}

body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li.goemotion-ge-speedy-rate label,
body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li.goemotion-ge-speedy-rate label,
body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method input[value^="ge_speedy"] + label,
body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method input[value^="ge_speedy"] + label {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px 10px;
    width: 100%;
    min-width: 0 !important;
    max-width: 100%;
    padding: 0;
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li.goemotion-ge-speedy-rate label > span:not(.amount):not(.woocommerce-Price-amount),
body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li.goemotion-ge-speedy-rate label > span:not(.amount):not(.woocommerce-Price-amount) {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li.goemotion-ge-speedy-rate .amount,
body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li.goemotion-ge-speedy-rate .woocommerce-Price-amount,
body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li.goemotion-ge-speedy-rate .amount,
body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li.goemotion-ge-speedy-rate .woocommerce-Price-amount,
body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method input[value^="ge_speedy"] + label .amount,
body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method input[value^="ge_speedy"] + label .woocommerce-Price-amount,
body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method input[value^="ge_speedy"] + label .amount,
body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method input[value^="ge_speedy"] + label .woocommerce-Price-amount {
    white-space: nowrap !important;
    flex: 0 0 auto;
}

body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-destination,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-calculator,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-calculator-form,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-shipping-destination,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-shipping-calculator,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-shipping-calculator-form {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-top: 10px;
    padding: 11px 12px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.025);
    color: var(--ge-speedy-muted, #667085);
    font-size: clamp(12px, 1.65vw, 13px);
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-destination strong,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-shipping-destination strong {
    color: var(--ge-speedy-ink, #111827);
    font-weight: 950;
}

body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-destination a,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-calculator a,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-shipping-destination a,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-shipping-calculator a {
    color: #6e8500;
    font-weight: 900;
    text-decoration: none;
}

body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-info,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-message,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-error,
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .goemotion-ge-speedy-message,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-info,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-message,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-error,
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .goemotion-ge-speedy-message {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 10px 0 0 !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(175, 203, 32, 0.28) !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, rgba(175, 203, 32, 0.12), rgba(175, 203, 32, 0.055)) !important;
    color: var(--ge-speedy-ink, #111827) !important;
    font-size: clamp(12px, 1.65vw, 13px) !important;
    font-weight: 750 !important;
    line-height: 1.48 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    box-sizing: border-box !important;
}

body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary [class*="ge-speedy"],
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary [class*="ge_speedy"],
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary [id*="ge-speedy"],
body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary [id*="ge_speedy"],
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals [class*="ge-speedy"],
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals [class*="ge_speedy"],
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals [id*="ge-speedy"],
body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals [id*="ge_speedy"] {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}

@container (max-width: 360px) {
    body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li.goemotion-ge-speedy-rate label,
    body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li.goemotion-ge-speedy-rate label,
    body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method input[value^="ge_speedy"] + label,
    body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method input[value^="ge_speedy"] + label {
        grid-template-columns: 1fr;
        align-items: start;
    }

    body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li.goemotion-ge-speedy-rate .amount,
    body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li.goemotion-ge-speedy-rate .woocommerce-Price-amount,
    body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li.goemotion-ge-speedy-rate .amount,
    body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li.goemotion-ge-speedy-rate .woocommerce-Price-amount {
        justify-self: start;
        margin-left: 0 !important;
    }
}

@media (max-width: 680px) {
    body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.shipping,
    body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.woocommerce-shipping-totals,
    body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals table.shop_table tr.shipping,
    body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.shipping > th,
    body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary table.shop_table tr.woocommerce-shipping-totals > th,
    body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals table.shop_table tr.shipping > th,
    body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals table.shop_table tr.woocommerce-shipping-totals > th {
        width: 100% !important;
        padding-bottom: 0 !important;
        text-align: left !important;
    }

    body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li.goemotion-ge-speedy-rate,
    body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li.goemotion-ge-speedy-rate,
    body.ge-speedy-theme-compatible.woocommerce-checkout ul#shipping_method li:has(input[value^="ge_speedy"]),
    body.ge-speedy-theme-compatible.woocommerce-cart ul#shipping_method li:has(input[value^="ge_speedy"]) {
        grid-template-columns: 20px minmax(0, 1fr) !important;
        padding: 12px !important;
    }

    body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-shipping-destination,
    body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-shipping-destination,
    body.ge-speedy-theme-compatible.woocommerce-checkout .goemotion-checkout-summary .woocommerce-info,
    body.ge-speedy-theme-compatible.woocommerce-cart .cart_totals .woocommerce-info {
        padding: 10px 11px !important;
        border-radius: 14px !important;
    }
}



/* === GO E-Motion GE Speedy Shipping exact checkout row responsive fix v1.0.117 === */
:root {
    --ge-speedy-accent: #afcb20;
    --ge-speedy-accent-dark: #8da411;
    --ge-speedy-ink: #111827;
    --ge-speedy-muted: #667085;
    --ge-speedy-line: rgba(17, 24, 39, 0.10);
    --ge-speedy-card: #ffffff;
    --ge-speedy-soft: rgba(175, 203, 32, 0.11);
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping,
.woocommerce table.shop_table tr.shipping {
    min-width: 0;
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping > th,
.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping > td,
.woocommerce table.shop_table tr.shipping > th,
.woocommerce table.shop_table tr.shipping > td {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    vertical-align: top !important;
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping td[data-title],
.woocommerce table.shop_table tr.shipping td[data-title] {
    overflow: visible !important;
    overflow-wrap: anywhere !important;
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method,
.woocommerce table.shop_table tr.shipping ul#shipping_method,
.woocommerce ul#shipping_method.woocommerce-shipping-methods {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    box-sizing: border-box !important;
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method > li,
.woocommerce table.shop_table tr.shipping ul#shipping_method > li,
.woocommerce ul#shipping_method.woocommerce-shipping-methods > li {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    list-style: none !important;
    overflow: hidden !important;
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method > li:has(input[name^="shipping_method"][value^="ge_speedy"]),
.woocommerce table.shop_table tr.shipping ul#shipping_method > li:has(input[name^="shipping_method"][value^="ge_speedy"]),
.woocommerce ul#shipping_method.woocommerce-shipping-methods > li:has(input[name^="shipping_method"][value^="ge_speedy"]),
.woocommerce ul#shipping_method.woocommerce-shipping-methods > li.goemotion-ge-speedy-rate {
    display: block !important;
    position: relative !important;
    padding: 14px !important;
    border: 1px solid rgba(175, 203, 32, 0.42) !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at top right, rgba(175, 203, 32, 0.14), transparent 40%),
        linear-gradient(180deg, #ffffff, #fbfcf6) !important;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.055) !important;
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"],
.woocommerce table.shop_table tr.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"],
.woocommerce ul#shipping_method.woocommerce-shipping-methods input[name^="shipping_method"][value^="ge_speedy"] {
    flex: 0 0 auto !important;
    inline-size: 18px;
    block-size: 18px;
    margin: 2px 0 0 !important;
    accent-color: var(--ge-speedy-accent);
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method input[type="hidden"][name^="shipping_method"][value^="ge_speedy"],
.woocommerce table.shop_table tr.shipping ul#shipping_method input[type="hidden"][name^="shipping_method"][value^="ge_speedy"],
.woocommerce ul#shipping_method.woocommerce-shipping-methods input[type="hidden"][name^="shipping_method"][value^="ge_speedy"] {
    display: none !important;
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label,
.woocommerce table.shop_table tr.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label,
.woocommerce ul#shipping_method.woocommerce-shipping-methods input[name^="shipping_method"][value^="ge_speedy"] + label,
.woocommerce ul#shipping_method.woocommerce-shipping-methods li.goemotion-ge-speedy-rate > label {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px 12px !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    color: var(--ge-speedy-ink) !important;
    font-size: clamp(13px, 1.15vw, 15px) !important;
    font-weight: 950 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow: visible !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    box-sizing: border-box !important;
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method input[type="radio"][name^="shipping_method"][value^="ge_speedy"] + label,
.woocommerce table.shop_table tr.shipping ul#shipping_method input[type="radio"][name^="shipping_method"][value^="ge_speedy"] + label,
.woocommerce ul#shipping_method.woocommerce-shipping-methods input[type="radio"][name^="shipping_method"][value^="ge_speedy"] + label {
    display: inline-grid !important;
    width: calc(100% - 30px) !important;
    margin-left: 8px !important;
    vertical-align: top !important;
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label .amount,
.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label .woocommerce-Price-amount,
.woocommerce table.shop_table tr.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label .amount,
.woocommerce table.shop_table tr.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label .woocommerce-Price-amount,
.woocommerce ul#shipping_method.woocommerce-shipping-methods input[name^="shipping_method"][value^="ge_speedy"] + label .amount,
.woocommerce ul#shipping_method.woocommerce-shipping-methods input[name^="shipping_method"][value^="ge_speedy"] + label .woocommerce-Price-amount,
.woocommerce ul#shipping_method.woocommerce-shipping-methods li.goemotion-ge-speedy-rate label .amount,
.woocommerce ul#shipping_method.woocommerce-shipping-methods li.goemotion-ge-speedy-rate label .woocommerce-Price-amount {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    width: max-content !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 28px !important;
    margin: 0 !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    background: var(--ge-speedy-accent) !important;
    color: #11170a !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method li.goemotion-ge-speedy-rate > :not(input):not(label),
.woocommerce table.shop_table tr.shipping ul#shipping_method li.goemotion-ge-speedy-rate > :not(input):not(label),
.woocommerce ul#shipping_method.woocommerce-shipping-methods li.goemotion-ge-speedy-rate > :not(input):not(label) {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 10px !important;
    overflow-wrap: anywhere !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping,
    .woocommerce table.shop_table tr.shipping {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
        min-width: 0 !important;
        padding: 14px 0 !important;
    }

    .woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping > th,
    .woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping > td,
    .woocommerce table.shop_table tr.shipping > th,
    .woocommerce table.shop_table tr.shipping > td {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping > th,
    .woocommerce table.shop_table tr.shipping > th {
        color: var(--ge-speedy-ink) !important;
        font-size: 13px !important;
        font-weight: 950 !important;
        line-height: 1.25 !important;
    }

    .woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label,
    .woocommerce table.shop_table tr.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label,
    .woocommerce ul#shipping_method.woocommerce-shipping-methods input[name^="shipping_method"][value^="ge_speedy"] + label,
    .woocommerce ul#shipping_method.woocommerce-shipping-methods li.goemotion-ge-speedy-rate > label {
        grid-template-columns: 1fr !important;
        gap: 9px !important;
        align-items: start !important;
    }

    .woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label .amount,
    .woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label .woocommerce-Price-amount,
    .woocommerce table.shop_table tr.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label .amount,
    .woocommerce table.shop_table tr.shipping ul#shipping_method input[name^="shipping_method"][value^="ge_speedy"] + label .woocommerce-Price-amount,
    .woocommerce ul#shipping_method.woocommerce-shipping-methods input[name^="shipping_method"][value^="ge_speedy"] + label .amount,
    .woocommerce ul#shipping_method.woocommerce-shipping-methods input[name^="shipping_method"][value^="ge_speedy"] + label .woocommerce-Price-amount,
    .woocommerce ul#shipping_method.woocommerce-shipping-methods li.goemotion-ge-speedy-rate label .amount,
    .woocommerce ul#shipping_method.woocommerce-shipping-methods li.goemotion-ge-speedy-rate label .woocommerce-Price-amount {
        justify-self: start !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 420px) {
    .woocommerce table.shop_table tr.woocommerce-shipping-totals.shipping ul#shipping_method > li:has(input[name^="shipping_method"][value^="ge_speedy"]),
    .woocommerce table.shop_table tr.shipping ul#shipping_method > li:has(input[name^="shipping_method"][value^="ge_speedy"]),
    .woocommerce ul#shipping_method.woocommerce-shipping-methods > li:has(input[name^="shipping_method"][value^="ge_speedy"]),
    .woocommerce ul#shipping_method.woocommerce-shipping-methods > li.goemotion-ge-speedy-rate {
        padding: 12px !important;
        border-radius: 16px !important;
    }
}
