:root {
    --sfx-bg: #f7faf9;
    --sfx-surface: #ffffff;
    --sfx-surface-strong: #ffffff;
    --sfx-surface-soft: #eef5f1;
    --sfx-border: rgba(22, 37, 31, 0.08);
    --sfx-border-strong: rgba(22, 37, 31, 0.14);
    --sfx-text: #173229;
    --sfx-muted: #61766d;
    --sfx-accent: #1fb66a;
    --sfx-accent-contrast: #ffffff;
    --sfx-radius: 24px;
    --sfx-radius-sm: 16px;
    --sfx-shadow: 0 14px 32px rgba(40, 72, 55, 0.06);
    --sfx-shadow-soft: 0 8px 20px rgba(40, 72, 55, 0.05);
    --sfx-container: 1280px;
    --sfx-gradient: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #f8faf9;
    color: var(--sfx-text);
    line-height: 1.6;
}

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

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

button, input, select, textarea {
    font: inherit;
}

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

.narrow-content {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.glass-panel,
.page-card,
.post-card,
.widget,
.sidebar-area,
.category-card,
.brand-tile {
    background: #ffffff;
    border: 1px solid var(--sfx-border);
    border-radius: var(--sfx-radius);
    box-shadow: var(--sfx-shadow);
}

.site-shell {
    min-height: 100vh;
}

.announcement-bar {
    border-bottom: 1px solid var(--sfx-border);
    background: rgba(255, 255, 255, 0.82);
}

.announcement-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.93rem;
}

.announcement-inner p {
    margin: 0;
    color: var(--sfx-muted);
}

.announcement-inner a {
    font-weight: 700;
    color: var(--sfx-text);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid var(--sfx-border);
}

.header-main-row {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    gap: 20px;
    align-items: center;
}

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

.custom-logo,
.brand-fallback-logo,
.footer-logo {
    width: auto;
    max-height: 56px;
}

.header-search-wrap {
    min-width: 0;
}

.woocommerce-product-search,
.sfx-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--sfx-border);
    border-radius: 999px;
    box-shadow: var(--sfx-shadow-soft);
}

.woocommerce-product-search .search-field,
.sfx-search-form .search-field {
    flex: 1;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: var(--sfx-text);
    padding: 0 14px;
    outline: none;
}

.woocommerce-product-search button,
.sfx-search-form button,
.btn,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
}

.woocommerce-product-search button,
.sfx-search-form button,
.btn-primary {
    background: var(--sfx-accent);
    color: var(--sfx-accent-contrast);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.75);
    color: var(--sfx-text);
    border: 1px solid var(--sfx-border);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon-link,
.header-account,
.header-cart,
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--sfx-border);
    box-shadow: var(--sfx-shadow-soft);
}

.header-icon-circle {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(31, 182, 106, 0.12);
    color: var(--sfx-accent);
    font-size: 0.95rem;
}

.header-icon-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header-icon-copy small {
    color: var(--sfx-muted);
    font-size: 0.72rem;
}

.header-icon-copy strong {
    font-size: 0.92rem;
}

.cart-count {
    min-width: 24px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--sfx-accent);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--sfx-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--sfx-text);
    border-radius: 999px;
}

.header-nav-row {
    border-top: 1px solid var(--sfx-border);
}

.header-nav-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.site-nav {
    display: flex;
    align-items: center;
    min-width: 0;
}

.primary-menu,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.primary-menu a,
.footer-menu a {
    color: var(--sfx-muted);
    font-weight: 600;
    transition: color .2s ease, transform .2s ease;
}

.primary-menu a:hover,
.footer-menu a:hover {
    color: var(--sfx-text);
    transform: translateY(-1px);
}

.site-main {
    min-height: 60vh;
}

.hero-section {
    padding: 52px 0 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    align-items: center;
}

.eyebrow,
.section-kicker,
.slide-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(31, 182, 106, 0.10);
    color: var(--sfx-accent);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 14px 0 14px;
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-copy p,
.section-head p,
.footer-brand-card p,
.archive-description,
.entry-meta,
.entry-excerpt,
.entry-content,
.merchant-copy p,
.merchant-list li {
    color: var(--sfx-muted);
}

.hero-copy p {
    margin: 0 0 26px;
    max-width: 720px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero-stat {
    padding: 18px;
}

.hero-stat strong,
.brand-tile strong {
    display: block;
    font-size: 1rem;
}

.hero-stat span,
.brand-tile span {
    color: var(--sfx-muted);
    font-size: 0.9rem;
}

.hero-slider {
    position: relative;
    min-height: 420px;
    padding: 28px;
    overflow: hidden;
    isolation: isolate;
}

.hero-slider::before,
.hero-slider::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    z-index: -1;
}

.hero-slider::before {
    width: 220px;
    height: 220px;
    right: -30px;
    top: -30px;
    background: rgba(31, 182, 106, 0.12);
}

.hero-slider::after {
    width: 180px;
    height: 180px;
    left: -40px;
    bottom: -30px;
    background: rgba(56, 189, 248, 0.12);
}

.hero-slide {
    position: absolute;
    inset: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide h3 {
    margin: 14px 0 12px;
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
    line-height: 1.06;
}

.hero-slide p {
    max-width: 470px;
    margin: 0;
    color: var(--sfx-muted);
    font-size: 1rem;
}

.slider-dots {
    position: absolute;
    left: 28px;
    bottom: 24px;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(23, 50, 41, 0.16);
}

.slider-dot.is-active {
    width: 34px;
    background: var(--sfx-accent);
}

.trust-marquee-section,
.category-section,
.featured-section,
.brands-section,
.merchant-section {
    padding: 18px 0 48px;
}

.trust-marquee {
    overflow: hidden;
    padding: 16px 0;
}

.trust-track {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    min-width: max-content;
    animation: sfx-marquee 24s linear infinite;
}

.trust-track span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--sfx-border);
    font-weight: 700;
    color: var(--sfx-muted);
}

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

.section-head h2,
.shop-title,
.archive-title,
.entry-title {
    margin: 6px 0 8px;
    line-height: 1.08;
}

.section-head h2,
.shop-title,
.archive-title {
    font-size: clamp(1.6rem, 2.2vw, 2.5rem);
}

.category-grid,
.brands-grid,
.footer-top {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
    min-height: 180px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: auto -20px -40px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(31, 182, 106, 0.18), rgba(31, 182, 106, 0));
}

.category-card:hover,
.brand-tile:hover,
.page-card:hover,
.post-card:hover {
    transform: translateY(-4px);
}

.category-card span {
    font-size: 1.14rem;
    font-weight: 800;
}

.category-card small {
    color: var(--sfx-muted);
    font-size: 0.92rem;
}

.alt-surface {
    background: linear-gradient(180deg, rgba(242,248,245,0.88), rgba(242,248,245,0.32));
}

.brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-tile {
    min-height: 120px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    transition: transform .22s ease, box-shadow .22s ease;
}

.merchant-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.merchant-copy,
.merchant-list,
.footer-brand-card {
    padding: 26px;
}

.merchant-list ul,
.footer-column ul,
.feature-list,
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.merchant-list ul {
    display: grid;
    gap: 12px;
}

.merchant-list li {
    padding: 12px 14px;
    border-radius: var(--sfx-radius-sm);
    border: 1px solid var(--sfx-border);
    background: rgba(255,255,255,0.74);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    padding: 32px 0;
}

.sidebar-area,
.widget,
.page-card,
.post-card {
    padding: 20px;
}

.widget + .widget,
.post-card + .post-card {
    margin-top: 16px;
}

.post-thumb {
    display: block;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 18px;
}

.site-footer {
    margin-top: 44px;
    padding: 0 0 30px;
}

.footer-top {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    margin-bottom: 18px;
}

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

.footer-column {
    padding: 18px;
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--sfx-border);
    border-radius: var(--sfx-radius);
    box-shadow: var(--sfx-shadow-soft);
}

.footer-column h3,
.footer-brand-card h3,
.widget-title {
    margin-top: 0;
}

.footer-column ul {
    display: grid;
    gap: 10px;
}

.footer-column a,
.footer-contact-list a {
    color: var(--sfx-muted);
}

.footer-contact-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--sfx-border);
}

.footer-bottom p {
    margin: 0;
    color: var(--sfx-muted);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes sfx-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
    .header-main-row {
        grid-template-columns: auto 1fr auto;
    }

    .header-icon-link.is-phone {
        display: none;
    }

    .hero-grid,
    .merchant-grid,
    .footer-top,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .header-main-row {
        grid-template-columns: auto auto;
    }

    .header-search-wrap {
        grid-column: 1 / -1;
        order: 3;
    }

    .header-nav-inner {
        align-items: stretch;
        flex-direction: column;
        padding: 12px 0;
    }

    .site-nav {
        display: none;
        width: 100%;
    }

    .site-nav.is-open {
        display: block;
    }

    .primary-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .primary-menu a {
        display: block;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255,255,255,0.8);
        border: 1px solid var(--sfx-border);
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-account,
    .header-cta {
        display: none;
    }

    .hero-section {
        padding-top: 34px;
    }

    .hero-mini-stats,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        min-height: 360px;
    }

    .announcement-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--sfx-container), calc(100% - 20px));
    }

    .announcement-inner {
        min-height: auto;
        padding: 10px 0;
    }

    .hero-copy h1 {
        font-size: 2.2rem;
    }

    .hero-slide h3 {
        font-size: 1.7rem;
    }

    .category-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 140px;
    }

    .hero-slider {
        min-height: 320px;
        padding: 20px;
    }

    .hero-slide {
        inset: 20px;
    }

    .slider-dots {
        left: 20px;
        bottom: 18px;
    }
}


.shop-topbar__head {
    display: block;
    margin-bottom: 14px;
}

.shop-topbar__head--compact {
    padding-bottom: 8px;
}

.shop-subtitle {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--sfx-muted);
    font-size: 0.98rem;
}

.shop-meta-cards {
    display: grid;
    gap: 12px;
}

.shop-meta-card {
    background: #ffffff;
    border: 1px solid var(--sfx-border);
    border-radius: 18px;
    box-shadow: var(--sfx-shadow-soft);
    padding: 16px 18px;
}

.shop-meta-card strong,
.shop-meta-card span {
    display: block;
}

.shop-meta-card span {
    color: var(--sfx-muted);
    margin-top: 4px;
    font-size: .94rem;
}

.shop-filter-bar {
    display: grid;
    grid-template-columns: minmax(280px, 1.5fr) minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--sfx-border);
    border-radius: 18px;
    box-shadow: none;
    padding: 14px;
    margin-bottom: 18px;
}

.shop-filter-search input,
.shop-filter-grid select {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid var(--sfx-border-strong);
    background: #ffffff;
    padding: 0 14px;
    color: var(--sfx-text);
}

.shop-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

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

.shop-filter-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sfx-muted);
    font-size: .94rem;
}

.shop-reset-link {
    color: var(--sfx-muted);
    font-weight: 700;
}

.shop-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.shop-category-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--sfx-border);
    color: var(--sfx-text);
    box-shadow: var(--sfx-shadow-soft);
    font-weight: 600;
}

.shop-category-chip.is-active {
    background: var(--sfx-accent);
    color: #ffffff;
    border-color: transparent;
}

.header-account.is-wishlist {
    position: relative;
}

.sfx-account-dashboard,
.sfx-account-hero,
.sfx-account-card,
.sfx-account-note,
.sfx-account-nav,
.sfx-account-support {
    background: #ffffff;
}

.sfx-account-dashboard {
    display: grid;
    gap: 18px;
}

.sfx-account-hero {
    border: 1px solid var(--sfx-border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--sfx-shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sfx-account-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef8f2;
    color: var(--sfx-accent);
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.sfx-account-hero h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.sfx-account-hero p,
.sfx-account-note {
    color: var(--sfx-muted);
}

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

.sfx-account-card {
    border: 1px solid var(--sfx-border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--sfx-shadow-soft);
    display: grid;
    gap: 6px;
}

.sfx-account-card span {
    color: var(--sfx-muted);
    font-size: .92rem;
}

.sfx-account-note {
    border: 1px solid var(--sfx-border);
    border-radius: 18px;
    padding: 16px 18px;
}

.sfx-account-nav {
    border: 1px solid var(--sfx-border) !important;
    border-radius: 24px !important;
    padding: 18px !important;
    box-shadow: var(--sfx-shadow-soft);
}

.sfx-account-nav__head {
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
}

.sfx-account-nav__head span {
    color: var(--sfx-muted);
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sfx-account-nav ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sfx-account-nav ul li a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    background: #f8fbfa;
}

.sfx-account-nav ul li.is-active a {
    background: #eef8f2;
    color: var(--sfx-accent);
    font-weight: 700;
}

.sfx-account-support {
    margin-top: 16px;
    border-top: 1px solid var(--sfx-border);
    padding-top: 16px;
}

@media (max-width: 1100px) {
    .shop-topbar__head,
    .shop-filter-bar,
    .sfx-account-hero {
        grid-template-columns: 1fr;
    }

    .shop-filter-actions,
    .sfx-account-hero {
        justify-content: flex-start;
    }

    .sfx-account-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .shop-filter-grid {
        grid-template-columns: 1fr;
    }

    .shop-filter-actions {
        align-items: stretch;
    }

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


.trust-strip-section {
    padding: 0 0 18px;
}

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

.trust-strip-card {
    padding: 18px;
}

.trust-strip-card strong,
.category-card span {
    display: block;
    font-size: 1rem;
}

.trust-strip-card span,
.category-card small,
.category-card em,
.footer-trust-row span {
    color: var(--sfx-muted);
}

.category-grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
    min-height: 190px;
}

.category-card em {
    display: inline-block;
    margin-top: auto;
    font-style: normal;
    font-size: 0.88rem;
    font-weight: 700;
}

.merchant-actions {
    margin-bottom: 0;
}

.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.88rem;
}

.footer-trust-row span {
    padding: 8px 12px;
    border: 1px solid var(--sfx-border);
    border-radius: 999px;
    background: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .trust-strip-grid,
    .category-grid--wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .trust-strip-grid,
    .category-grid--wide {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 150px;
    }
}

.header-trustline {
    border-top: 1px solid var(--sfx-border);
    border-bottom: 1px solid var(--sfx-border);
    background: #ffffff;
}

.header-trustline .container {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-trustline p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--sfx-text);
    text-align: center;
}




/* ==============================
   End Loadshedding theme updates
   ============================== */
.announcement-bar {
    background: #123a2e;
    border-bottom: 0;
}
.announcement-inner p,
.announcement-inner a { color: #ffffff; }
.announcement-inner strong { font-weight: 800; }
.site-header { background: rgba(255,255,255,.94); backdrop-filter: blur(10px); }
.header-trustline { background: #f3f8f4; border-top: 1px solid var(--sfx-border); }
.header-trustline p { margin: 0; min-height: 44px; display:flex; align-items:center; justify-content:center; font-weight: 800; color: #0f8f4f; }
.brand-fallback-logo, .footer-logo { max-height: 64px; }
.hero-copy h1 { max-width: 12ch; }
.front-page-main .featured-section .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.front-page-main .featured-section .woocommerce ul.products li.product,
.front-page-main .featured-section .woocommerce ul.products li.els-product-card {
    min-height: 100%;
    border-radius: 22px;
    box-shadow: var(--sfx-shadow-soft);
}
.front-page-main .featured-section .els-wishlist-wrap,
.front-page-main .featured-section .added_to_cart { display: none !important; }
.front-page-main .featured-section .els-product-shell {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.front-page-main .featured-section .els-product-media {
    height: 230px;
    border-bottom: none;
}
.front-page-main .featured-section .woocommerce ul.products li.product a img,
.front-page-main .featured-section .woocommerce ul.products li.els-product-card a img {
    width: 76%;
    height: 76%;
}
.front-page-main .featured-section .els-product-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 14px 8px;
    flex: 1 1 auto;
}
.front-page-main .featured-section .els-product-brand {
    min-height: auto;
    padding: 0;
    background: transparent;
    color: #7a90a0;
    font-size: .85rem;
}
.front-page-main .featured-section .woocommerce ul.products li.product .woocommerce-loop-product__title,
.front-page-main .featured-section .woocommerce ul.products li.els-product-card .woocommerce-loop-product__title {
    font-size: 1rem;
    line-height: 1.45;
    min-height: 2.9em;
    -webkit-line-clamp: 2;
}
.front-page-main .featured-section .els-price-row {
    display: block;
}
.front-page-main .featured-section .els-price-wrap .price,
.front-page-main .featured-section .woocommerce ul.products li.product .price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    font-size: 1rem;
    line-height: 1.25;
}
.front-page-main .featured-section .price del { font-size: .88rem; opacity: .7; }
.front-page-main .featured-section .price ins { text-decoration: none; }
.front-page-main .featured-section .els-product-actions {
    padding: 0 14px 14px;
    margin-top: auto;
}
.front-page-main .featured-section .woocommerce ul.products li.product .button,
.front-page-main .featured-section .woocommerce ul.products li.els-product-card .button {
    min-height: 44px;
    border-radius: 14px;
    font-size: .95rem;
}
.brand-marquee,
.reviews-marquee { overflow: hidden; padding: 14px; }
.brand-marquee-track,
.reviews-track {
    display: flex;
    gap: 16px;
    width: max-content;
    min-width: max-content;
    animation: sfx-marquee 28s linear infinite;
}
.brand-chip,
.review-card {
    display: grid;
    gap: 6px;
    min-width: 260px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--sfx-border);
    box-shadow: var(--sfx-shadow-soft);
}
.brand-chip strong,
.review-card strong { color: var(--sfx-text); }
.brand-chip span,
.review-card small { color: var(--sfx-muted); }
.review-stars { color: #f0b31a; letter-spacing: 2px; font-size: .95rem; }
.reviews-head { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; }
.reviews-link { font-weight: 800; color: #0f8f4f; }
@keyframes sfx-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 1024px) {
    .front-page-main .featured-section .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .header-main-row { grid-template-columns: 1fr; }
    .header-actions { justify-content: space-between; }
    .announcement-inner { flex-direction: column; padding: 10px 0; }
    .front-page-main .featured-section .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .front-page-main .featured-section .els-product-media { height: 170px; }
    .reviews-head { display:block; }
    .brand-chip, .review-card { min-width: 220px; }
}


/* v20 emergency homepage recovery */
.front-page-main .featured-section {
    padding: 26px 0 34px;
}
.front-page-main .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0 !important;
    padding: 0 !important;
}
.front-page-main .woocommerce ul.products::before,
.front-page-main .woocommerce ul.products::after { display:none !important; }
.front-page-main .woocommerce ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    list-style: none;
}
.front-page-main .woocommerce ul.products li.product .button,
.front-page-main .woocommerce ul.products li.product .added_to_cart {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.front-page-main .woocommerce ul.products li.product .price {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
}
.front-page-main .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist,
.front-page-main .woocommerce ul.products li.product .tinv-wraper,
.front-page-main .woocommerce ul.products li.product .yith-wcwl-wishlistaddedbrowse,
.front-page-main .woocommerce ul.products li.product .yith-wcwl-wishlistexistsbrowse,
.front-page-main .woocommerce ul.products li.product .add-to-cart-wrap .button::before,
.front-page-main .woocommerce ul.products li.product .added_to_cart::before {
    display: none !important;
}
@media (max-width: 1024px) {
    .front-page-main .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .front-page-main .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}


/* v23 homepage recovery + wishlist cleanup */
.els-wishlist-wrap,
.sfx-wishlist-btn,
.yith-wcwl-add-to-wishlist,
.tinv-wraper,
.yith-wcwl-wishlistaddedbrowse,
.yith-wcwl-wishlistexistsbrowse {
    display: none !important;
}

.front-page-safe .hero-section--safe {
    padding-top: 48px;
}

.front-page-safe .hero-grid {
    align-items: stretch;
}

.front-page-safe .hero-visual .hero-slider,
.front-page-safe .hero-stat,
.front-page-safe .category-card,
.front-page-safe .review-card {
    box-shadow: var(--sfx-shadow-soft);
}

.front-page-safe .review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.front-page-safe .featured-section .woocommerce ul.products li.product,
.front-page-safe .featured-section .woocommerce ul.products li.els-product-card,
.front-page-safe .alt-surface .woocommerce ul.products li.product,
.front-page-safe .alt-surface .woocommerce ul.products li.els-product-card {
    min-height: 100%;
}

.front-page-safe .woocommerce ul.products li.product .els-product-shell,
.front-page-safe .woocommerce ul.products li.els-product-card .els-product-shell {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.front-page-safe .woocommerce ul.products li.product .els-product-content,
.front-page-safe .woocommerce ul.products li.els-product-card .els-product-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
}

.front-page-safe .woocommerce ul.products li.product .els-price-row,
.front-page-safe .woocommerce ul.products li.els-product-card .els-price-row {
    margin-top: auto;
}

.front-page-safe .woocommerce ul.products li.product .els-product-actions,
.front-page-safe .woocommerce ul.products li.els-product-card .els-product-actions {
    margin-top: 8px;
}

.front-page-safe .woocommerce ul.products li.product .button,
.front-page-safe .woocommerce ul.products li.product .added_to_cart,
.front-page-safe .woocommerce ul.products li.els-product-card .button,
.front-page-safe .woocommerce ul.products li.els-product-card .added_to_cart {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding: 0 16px;
}

.front-page-safe .woocommerce ul.products li.product .price,
.front-page-safe .woocommerce ul.products li.els-product-card .price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    line-height: 1.2;
}

.front-page-safe .woocommerce ul.products li.product .price del,
.front-page-safe .woocommerce ul.products li.els-product-card .price del {
    font-size: .88rem;
    opacity: .7;
}

.front-page-safe .woocommerce ul.products li.product .price ins,
.front-page-safe .woocommerce ul.products li.els-product-card .price ins {
    text-decoration: none;
}

@media (max-width: 1024px) {
    .front-page-safe .review-grid {
        grid-template-columns: 1fr;
    }
}


/* v24 policy and footer refresh */
.page-card .entry-title {
    color: var(--sfx-text);
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.page-card .entry-content {
    color: var(--sfx-text-soft, #5f7268);
    font-size: 1rem;
    line-height: 1.75;
}

.page-card .entry-content .policy-document {
    display: grid;
    gap: 18px;
}

.page-card .entry-content h2,
.page-card .entry-content h3 {
    color: var(--sfx-text);
    margin: 10px 0 0;
    letter-spacing: -0.02em;
}

.page-card .entry-content h2 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.page-card .entry-content h3 {
    font-size: 1.05rem;
}

.page-card .entry-content p {
    margin: 0;
}

.page-card .entry-content ul,
.page-card .entry-content ol {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 10px;
}

.page-card .entry-content li {
    padding-left: 2px;
}

.footer-trust-row {
    flex-wrap: wrap;
    gap: 10px;
}

.footer-trust-row span {
    background: #f1f7f3;
    border: 1px solid var(--sfx-border);
    color: var(--sfx-text);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-promise {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(31,182,106,.10), rgba(31,182,106,.18));
    border: 1px solid rgba(31,182,106,.22);
    color: var(--sfx-text);
    display: grid;
    gap: 4px;
}

.footer-promise strong {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-promise span {
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 767px) {
    .footer-promise {
        padding: 12px 14px;
    }
}


/* v26 homepage safe rebuild + wishlist cleanup */
.els-wishlist-wrap,
.sfx-love-icon,
.sfx-wishlist-btn,
.yith-wcwl-add-to-wishlist,
.tinv-wraper.tinv-wishlist,
.yith-wcwl-wishlistaddedbrowse,
.yith-wcwl-wishlistexistsbrowse {
    display: none !important;
}

.front-page-safe-v26 .hero-section--v26 {
    padding: 56px 0 28px;
    background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.front-page-safe-v26 .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

.front-page-safe-v26 .hero-card-safe {
    background: #ffffff;
    border: 1px solid #dfe9e2;
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(18,39,30,.06);
    padding: 28px;
}

.front-page-safe-v26 .hero-card-safe h3 {
    margin: 0 0 10px;
    color: #173c2f;
    font-size: 1.4rem;
}

.front-page-safe-v26 .hero-card-safe p {
    margin: 0 0 14px;
    color: #587063;
}

.front-page-safe-v26 .hero-card-safe ul {
    margin: 0;
    padding-left: 18px;
    color: #173c2f;
}

.front-page-safe-v26 .category-section--v26,
.front-page-safe-v26 .featured-section,
.front-page-safe-v26 .reviews-section--v26 {
    padding: 26px 0 18px;
}

.front-page-safe-v26 .featured-section.alt-surface {
    background: #f7faf8;
    border-top: 1px solid #edf4ee;
    border-bottom: 1px solid #edf4ee;
}

.front-page-safe-v26 .section-head {
    margin-bottom: 18px;
}

.front-page-safe-v26 .section-kicker {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf8f1;
    color: #169457;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.front-page-safe-v26 .category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}

.front-page-safe-v26 .category-card {
    background: #ffffff;
    border: 1px solid #dfe9e2;
    border-radius: 18px;
    padding: 18px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 28px rgba(18,39,30,.05);
}

.front-page-safe-v26 .category-card span {
    font-weight: 700;
    color: #173c2f;
    font-size: 1rem;
}

.front-page-safe-v26 .category-card small {
    color: #6d7f77;
}

.front-page-safe-v26 .review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.front-page-safe-v26 .review-card {
    background: #ffffff;
    border: 1px solid #dfe9e2;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(18,39,30,.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.front-page-safe-v26 .review-stars {
    color: #f5a623;
    letter-spacing: 2px;
}

.front-page-safe-v26 .reviews-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: #173c2f;
    color: #fff;
    font-weight: 700;
}

/* Home product card alignment */
.front-page-safe-v26 .woocommerce ul.products,
.front-page-safe-v26 ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}

.front-page-safe-v26 .woocommerce ul.products li.product,
.front-page-safe-v26 ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    list-style: none;
    background: #ffffff;
    border: 1px solid #dfe9e2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(18,39,30,.05);
}

.front-page-safe-v26 .woocommerce ul.products li.product .product-inner,
.front-page-safe-v26 ul.products li.product .product-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.front-page-safe-v26 .woocommerce ul.products li.product .mf-product-thumbnail,
.front-page-safe-v26 .woocommerce ul.products li.product .product-loop-image,
.front-page-safe-v26 .woocommerce ul.products li.product .product-thumbnail,
.front-page-safe-v26 ul.products li.product .mf-product-thumbnail,
.front-page-safe-v26 ul.products li.product .product-loop-image,
.front-page-safe-v26 ul.products li.product .product-thumbnail {
    background: #f7faf8;
    border: 1px solid #edf4ee;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 14px;
}

.front-page-safe-v26 .woocommerce ul.products li.product img,
.front-page-safe-v26 ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: transparent;
    margin: 0 !important;
}

.front-page-safe-v26 .woocommerce ul.products li.product .woocommerce-loop-category__title,
.front-page-safe-v26 .woocommerce ul.products li.product .woocommerce-loop-product__title,
.front-page-safe-v26 ul.products li.product .woocommerce-loop-category__title,
.front-page-safe-v26 ul.products li.product .woocommerce-loop-product__title {
    min-height: 3.3em;
    margin: 0 0 10px !important;
    color: #173c2f !important;
    font-size: 1rem !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
}

.front-page-safe-v26 .woocommerce ul.products li.product .price,
.front-page-safe-v26 ul.products li.product .price {
    margin-top: auto !important;
    margin-bottom: 12px !important;
    display: block !important;
    color: #173c2f !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

.front-page-safe-v26 .woocommerce ul.products li.product .price del,
.front-page-safe-v26 ul.products li.product .price del {
    display: block !important;
    color: #92a196 !important;
    font-size: .85rem !important;
    margin-bottom: 4px;
}

.front-page-safe-v26 .woocommerce ul.products li.product .button,
.front-page-safe-v26 .woocommerce ul.products li.product .added_to_cart,
.front-page-safe-v26 ul.products li.product .button,
.front-page-safe-v26 ul.products li.product .added_to_cart {
    width: 100% !important;
    min-height: 48px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    border-radius: 14px !important;
    background: #20b56b !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 0 16px !important;
    text-indent: 0 !important;
    float: none !important;
    margin: 0 !important;
}

.front-page-safe-v26 .woocommerce ul.products li.product .button::before,
.front-page-safe-v26 .woocommerce ul.products li.product .added_to_cart::before,
.front-page-safe-v26 ul.products li.product .button::before,
.front-page-safe-v26 ul.products li.product .added_to_cart::before {
    display: none !important;
}

@media (max-width: 1024px) {
    .front-page-safe-v26 .hero-grid,
    .front-page-safe-v26 .category-grid,
    .front-page-safe-v26 .review-grid,
    .front-page-safe-v26 .woocommerce ul.products,
    .front-page-safe-v26 ul.products {
        grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    }
}

@media (max-width: 767px) {
    .front-page-safe-v26 .hero-grid,
    .front-page-safe-v26 .review-grid,
    .front-page-safe-v26 .category-grid,
    .front-page-safe-v26 .woocommerce ul.products,
    .front-page-safe-v26 ul.products {
        grid-template-columns: 1fr !important;
    }
}


/* v28 force End Loadshedding branding */
.site-branding .custom-logo-link, .site-branding .custom-logo {display:none !important;}
.site-branding .brand-fallback-logo{display:block !important;max-width:340px;height:auto;}


/* v29 forced homepage */
.front-page-force-v29 .hero-section--v29 { padding: 56px 0 28px; background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%); }
.front-page-force-v29 .hero-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:28px; align-items:center; }
.front-page-force-v29 .eyebrow { display:inline-block; padding:8px 12px; border-radius:999px; background:#edf8f1; color:#169457; font-size:.92rem; font-weight:700; margin-bottom:16px; }
.front-page-force-v29 .hero-copy h1 { font-size:clamp(2.2rem,4vw,4.6rem); line-height:1.04; margin:0 0 16px; color:#173c2f; }
.front-page-force-v29 .hero-copy p { font-size:1.18rem; line-height:1.6; color:#587063; max-width:780px; margin:0 0 22px; }
.front-page-force-v29 .hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:8px; }
.front-page-force-v29 .hero-card-safe { background:#fff; border:1px solid #dfe9e2; border-radius:24px; box-shadow:0 16px 38px rgba(18,39,30,.06); padding:28px; }
.front-page-force-v29 .hero-card-safe h3 { margin:0 0 10px; color:#173c2f; }
.front-page-force-v29 .hero-card-safe p { margin:0 0 14px; color:#587063; }
.front-page-force-v29 .hero-card-safe ul { margin:0; padding-left:18px; color:#173c2f; }
.front-page-force-v29 .category-section--v29,.front-page-force-v29 .featured-section,.front-page-force-v29 .reviews-section--v29 { padding:26px 0 18px; }
.front-page-force-v29 .section-head { margin-bottom:18px; }
.front-page-force-v29 .section-kicker { display:inline-block; padding:6px 10px; border-radius:999px; background:#edf8f1; color:#169457; font-size:12px; font-weight:700; letter-spacing:.03em; text-transform:uppercase; margin-bottom:10px; }
.front-page-force-v29 .category-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.front-page-force-v29 .category-card { background:#fff; border:1px solid #dfe9e2; border-radius:18px; padding:18px; min-height:110px; display:flex; flex-direction:column; justify-content:space-between; box-shadow:0 10px 28px rgba(18,39,30,.05); }
.front-page-force-v29 .category-card span { font-weight:700; color:#173c2f; font-size:1rem; }
.front-page-force-v29 .category-card small { color:#6d7f77; }
.front-page-force-v29 .review-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.front-page-force-v29 .review-card { background:#fff; border:1px solid #dfe9e2; border-radius:18px; box-shadow:0 10px 28px rgba(18,39,30,.05); padding:20px; display:flex; flex-direction:column; gap:10px; }
.front-page-force-v29 .review-stars { color:#f5a623; letter-spacing:2px; }
.front-page-force-v29 .reviews-link { display:inline-flex; align-items:center; justify-content:center; min-height:46px; padding:0 18px; border-radius:14px; background:#173c2f; color:#fff; font-weight:700; }

@media (max-width:1024px){
  .front-page-force-v29 .hero-grid, .front-page-force-v29 .category-grid, .front-page-force-v29 .review-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:767px){
  .front-page-force-v29 .hero-grid, .front-page-force-v29 .category-grid, .front-page-force-v29 .review-grid { grid-template-columns:1fr; }
  .front-page-force-v29 .hero-copy h1 { font-size:2.2rem; }
  .front-page-force-v29 .hero-copy p { font-size:1rem; }
}

/* v30 forced rebuilt homepage */
.els-home-forced-v30{background:#f7faf8;}
.els-home-forced-v30 .els-home-hero{padding:56px 0 28px;background:linear-gradient(180deg,#f7faf8 0%,#ffffff 100%);}
.els-home-forced-v30 .els-home-hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:28px;align-items:center;}
.els-home-forced-v30 .els-pill,.els-home-forced-v30 .els-kicker{display:inline-block;padding:7px 11px;border-radius:999px;background:#edf8f1;color:#169457;font-size:12px;font-weight:800;letter-spacing:.03em;text-transform:uppercase;margin-bottom:12px;}
.els-home-forced-v30 h1{font-size:clamp(2.2rem,4vw,4.6rem);line-height:1.04;margin:0 0 16px;color:#173c2f;}
.els-home-forced-v30 .els-home-hero-copy p{font-size:1.15rem;line-height:1.65;color:#587063;max-width:760px;margin:0 0 22px;}
.els-home-forced-v30 .els-home-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:22px;}
.els-home-forced-v30 .els-home-mini-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.els-home-forced-v30 .els-info-card,.els-home-forced-v30 .els-panel-card,.els-home-forced-v30 .els-category-card,.els-home-forced-v30 .els-trust-card{background:#fff;border:1px solid #dfe9e2;border-radius:20px;box-shadow:0 10px 28px rgba(18,39,30,.05);}
.els-home-forced-v30 .els-info-card{padding:20px;display:flex;flex-direction:column;gap:8px;}
.els-home-forced-v30 .els-info-card strong{color:#173c2f;font-size:1.1rem;}
.els-home-forced-v30 .els-info-card span{color:#6d7f77;}
.els-home-forced-v30 .els-panel-card{padding:28px;}
.els-home-forced-v30 .els-panel-tag{display:inline-block;padding:8px 12px;border-radius:999px;background:#edf8f1;color:#169457;font-weight:700;margin-bottom:14px;}
.els-home-forced-v30 .els-panel-card h2{font-size:2rem;line-height:1.15;margin:0 0 14px;color:#173c2f;}
.els-home-forced-v30 .els-panel-card p{margin:0 0 14px;color:#587063;}
.els-home-forced-v30 .els-panel-card ul{margin:0;padding-left:18px;color:#173c2f;}
.els-home-forced-v30 .els-home-categories,.els-home-forced-v30 .els-home-products,.els-home-forced-v30 .els-home-trust{padding:26px 0 20px;}
.els-home-forced-v30 .els-section-head{margin-bottom:18px;}
.els-home-forced-v30 .els-section-head-row{display:flex;align-items:end;justify-content:space-between;gap:18px;}
.els-home-forced-v30 .els-category-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;}
.els-home-forced-v30 .els-category-card{padding:18px;min-height:110px;display:flex;flex-direction:column;justify-content:space-between;}
.els-home-forced-v30 .els-category-card span{font-weight:700;color:#173c2f;}
.els-home-forced-v30 .els-category-card small{color:#6d7f77;}
.els-home-forced-v30 .els-trust-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
.els-home-forced-v30 .els-trust-card{padding:20px;display:flex;flex-direction:column;gap:10px;}
.els-home-forced-v30 .els-stars{color:#f5a623;letter-spacing:2px;}
.els-home-forced-v30 .els-trust-link{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:14px;background:#173c2f;color:#fff;font-weight:700;}
.els-home-forced-v30 .els-trust-card strong,.els-home-forced-v30 h2{color:#173c2f;}
.els-home-forced-v30 .els-trust-card small{color:#6d7f77;}
.els-home-forced-v30 ul.products{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.els-home-forced-v30 ul.products li.product{width:100%!important;margin:0!important;float:none!important;list-style:none;background:#fff;border:1px solid #dfe9e2;border-radius:20px;overflow:hidden;box-shadow:0 10px 28px rgba(18,39,30,.05);}
.els-home-forced-v30 ul.products li.product .product-inner{display:flex;flex-direction:column;min-height:100%;padding:16px;}
.els-home-forced-v30 ul.products li.product .mf-product-thumbnail,
.els-home-forced-v30 ul.products li.product .product-loop-image,
.els-home-forced-v30 ul.products li.product .product-thumbnail{background:#f7faf8;border:1px solid #edf4ee;border-radius:16px;padding:12px;margin-bottom:14px;}
.els-home-forced-v30 ul.products li.product img{width:100%;aspect-ratio:1/1;object-fit:contain;background:transparent;margin:0!important;}
.els-home-forced-v30 ul.products li.product .woocommerce-loop-product__title{min-height:3.3em;margin:0 0 10px!important;color:#173c2f!important;font-size:1rem!important;line-height:1.35!important;font-weight:700!important;}
.els-home-forced-v30 ul.products li.product .price{margin-top:auto!important;margin-bottom:12px!important;display:block!important;color:#173c2f!important;font-size:1.05rem!important;font-weight:800!important;line-height:1.25!important;}
.els-home-forced-v30 ul.products li.product .price del{display:block!important;color:#92a196!important;font-size:.85rem!important;margin-bottom:4px;}
.els-home-forced-v30 ul.products li.product .button,
.els-home-forced-v30 ul.products li.product .added_to_cart{width:100%!important;min-height:48px;display:inline-flex!important;align-items:center;justify-content:center;border:none!important;border-radius:14px!important;background:#20b56b!important;color:#fff!important;font-size:15px!important;font-weight:700!important;padding:0 16px!important;text-indent:0!important;float:none!important;margin:0!important;}
.els-home-forced-v30 ul.products li.product .button::before,
.els-home-forced-v30 ul.products li.product .added_to_cart::before{display:none!important;}
.els-wishlist-wrap,.sfx-love-icon,.sfx-wishlist-btn,.yith-wcwl-add-to-wishlist,.tinv-wraper.tinv-wishlist,.yith-wcwl-wishlistaddedbrowse,.yith-wcwl-wishlistexistsbrowse{display:none!important;}
@media(max-width:1024px){.els-home-forced-v30 .els-home-hero-grid,.els-home-forced-v30 .els-category-grid,.els-home-forced-v30 .els-trust-grid,.els-home-forced-v30 .els-home-mini-grid,.els-home-forced-v30 ul.products{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:767px){.els-home-forced-v30 .els-home-hero-grid,.els-home-forced-v30 .els-category-grid,.els-home-forced-v30 .els-trust-grid,.els-home-forced-v30 .els-home-mini-grid,.els-home-forced-v30 ul.products{grid-template-columns:1fr!important;}.els-home-forced-v30 .els-section-head-row{align-items:start;flex-direction:column;}.els-home-forced-v30 h1{font-size:2.2rem;}.els-home-forced-v30 .els-home-hero-copy p{font-size:1rem;}}


/* v32 logo + phone update */
.brand-fallback-logo {
    max-height: 78px;
}
.footer-logo {
    max-height: 84px;
}
@media (max-width: 680px) {
    .brand-fallback-logo {
        max-height: 62px;
    }
    .footer-logo {
        max-height: 72px;
    }
}


/* v33 announcement bar simplification */
.announcement-inner--single {
    justify-content: center;
    text-align: center;
}
.announcement-inner--single p {
    color: #ffffff;
    font-weight: 700;
}


/* v34 mobile menu and hero cleanup */
@media (min-width: 861px) {
    .site-nav {
        display: flex;
    }
}

@media (max-width: 860px) {
    .header-nav-row {
        padding: 10px 0 14px;
    }
    .header-nav-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }
    .menu-toggle {
        display: inline-flex;
        align-self: flex-start;
    }
    .site-nav {
        display: none;
    }
    .site-nav.is-open {
        display: block;
    }
    .primary-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .primary-menu a {
        display: block;
        padding: 14px 16px;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid var(--sfx-border);
        box-shadow: var(--sfx-shadow-soft);
        font-weight: 700;
    }
    .hero-section--v29 {
        display: none;
    }
}


/* v37 hard-remove secondary hero button */
.front-page-main .hero-actions .btn-secondary,
.front-page-main .els-home-actions .btn-secondary,
.front-page-force-v29 .hero-actions .btn-secondary,
.els-home-forced-v30 .els-home-actions .btn-secondary {
    display: none !important;
}


/* v44 single-source home + brand strip */
.els-home-actions .btn-secondary { display:none !important; }
.els-home-brands { padding: 18px 0 10px; }
.els-home-brands .brand-marquee { overflow:hidden; padding:12px 0; }
.els-home-brands .brand-marquee-track { display:flex; gap:16px; width:max-content; min-width:max-content; animation:sfx-marquee 34s linear infinite; }
.els-home-brands .brand-chip { min-width: 220px; }
.els-home-brands .brand-chip strong { font-size: 1rem; }
.els-home-brands .brand-chip span { font-size: .86rem; }
.els-home-brands .brand-marquee:hover .brand-marquee-track,
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }


/* v45 brand marquee + real review marquee */
.els-home-brands { padding: 18px 0 14px; }
.els-home-brands .brand-marquee,
.els-home-trust .reviews-marquee {
    overflow: hidden;
    padding: 12px 0;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.els-home-brands .brand-marquee-track,
.els-home-trust .reviews-track {
    display: flex;
    gap: 18px;
    width: max-content;
    min-width: max-content;
    flex-wrap: nowrap;
    will-change: transform;
}
.els-home-brands .brand-marquee-track {
    animation: sfx-brand-marquee 26s linear infinite;
}
.els-home-trust .reviews-track {
    animation: sfx-review-marquee 54s linear infinite;
}
.els-home-brands .brand-marquee:hover .brand-marquee-track,
.els-home-trust .reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}
.els-home-brands .brand-chip {
    flex: 0 0 auto;
    min-width: 180px;
    padding: 18px 24px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dfe9e2;
    box-shadow: 0 10px 24px rgba(18,39,30,.05);
    text-align: center;
}
.els-home-brands .brand-chip strong {
    display: block;
    font-size: 1.08rem;
    color: #173c2f;
}
.els-home-brands .brand-chip span { display: none !important; }
.els-home-trust .review-card {
    flex: 0 0 auto;
    width: 360px;
    min-height: 220px;
    padding: 22px 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #dfe9e2;
    box-shadow: 0 12px 30px rgba(18,39,30,.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.els-home-trust .review-card strong {
    font-size: 1.08rem;
    color: #173c2f;
}
.els-home-trust .review-card p {
    margin: 0;
    color: #50685d;
    line-height: 1.6;
    font-size: 1rem;
}
.els-home-trust .review-card small {
    color: #7a8f86;
    margin-top: auto;
}
.els-home-trust .review-read-more {
    color: #119457;
    font-weight: 800;
    font-size: .95rem;
}
.els-home-trust .els-trust-grid,
.els-home-trust .els-trust-card,
.els-home-trust .els-stars {
    display: none !important;
}
@keyframes sfx-brand-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes sfx-review-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 9px)); }
}
@media (max-width: 767px) {
    .els-home-brands .brand-chip { min-width: 150px; }
    .els-home-trust .review-card { width: 300px; min-height: 240px; }
}




/* v48 marquee brands and reviews */
.brand-marquee-section,
.reviews-marquee-section {
    padding: 24px 0 18px;
}
.brand-marquee,
.reviews-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.brand-marquee__track,
.reviews-marquee__track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}
.brand-marquee__track {
    animation: elsBrandScroll 38s linear infinite;
}
.reviews-marquee__track {
    animation: elsReviewScroll 55s linear infinite;
}
.brand-marquee:hover .brand-marquee__track,
.reviews-marquee:hover .reviews-marquee__track {
    animation-play-state: paused;
}
.brand-marquee__track span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 74px;
    padding: 0 22px;
    background: #ffffff;
    border: 1px solid #dfe9e2;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(18,39,30,.05);
    color: #173c2f;
    font-weight: 800;
    font-size: 1.08rem;
    white-space: nowrap;
}
.review-card--marquee {
    width: 380px;
    min-width: 380px;
    max-width: 380px;
}
.review-card--marquee h3 {
    margin: 10px 0 8px;
}
.review-card--marquee p {
    margin: 0 0 10px;
}
.review-card--marquee small {
    display: block;
    margin-bottom: 10px;
    color: #7b8b84;
    font-weight: 600;
}
@keyframes elsBrandScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
}
@keyframes elsReviewScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
}
@media (max-width: 1024px) {
    .review-card--marquee {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
    }
    .brand-marquee__track span {
        min-width: 180px;
    }
}
@media (max-width: 640px) {
    .review-card--marquee {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    }
    .brand-marquee__track span {
        min-width: 150px;
        min-height: 62px;
        font-size: .98rem;
    }
}


/* v49 remove duplicate trust block and force marquee motion */
.els-home-brands .brand-marquee { overflow: hidden; }
.els-home-brands .brand-marquee-track {
    display: flex;
    width: max-content;
    animation: sfx-brand-marquee 24s linear infinite !important;
    will-change: transform;
}
.els-home-trust .reviews-marquee { overflow: hidden; }
.els-home-trust .reviews-track {
    display: flex;
    width: max-content;
    animation: sfx-review-marquee 48s linear infinite !important;
    will-change: transform;
}
.els-home-brands:hover .brand-marquee-track,
.els-home-trust:hover .reviews-track {
    animation-play-state: paused;
}


/* v50 homepage stabilization */
.front-page-safe, .front-page-safe-v26, .front-page-force-v29, .brand-strip-safe, .reviews-section--safe, .brand-marquee-section, .reviews-marquee-section { display:none !important; }
.home .els-home-brands, .home .els-home-trust { display:block !important; }
.home .els-home-brands .brand-marquee { overflow:hidden !important; }
.home .els-home-brands .brand-marquee-track { display:flex !important; gap:16px !important; width:max-content !important; min-width:max-content !important; animation:sfx-brand-marquee 24s linear infinite !important; }
.home .els-home-trust .reviews-marquee { overflow:hidden !important; }
.home .els-home-trust .reviews-track { display:flex !important; gap:18px !important; width:max-content !important; min-width:max-content !important; animation:sfx-review-marquee 48s linear infinite !important; }
.home .els-home-brands:hover .brand-marquee-track, .home .els-home-trust:hover .reviews-track { animation-play-state: paused !important; }
.home .els-home-trust .review-card strong { display:block !important; color:#173c2f !important; font-size:1.12rem !important; margin:8px 0 !important; }
.home .els-home-trust .review-card small { display:block !important; color:#7b8b84 !important; margin:10px 0 12px !important; }


/* v51 brands moved above products */
.els-home-brands--top {
    padding: 26px 0 20px;
}
.els-home-brands--top + .els-home-products {
    padding-top: 4px;
}




/* v53 review marquee alignment fix */
.home .els-home-trust .reviews-marquee {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    padding: 12px 0 !important;
}

.home .els-home-trust .reviews-track {
    display: flex !important;
    align-items: stretch !important;
    gap: 20px !important;
    width: max-content !important;
    min-width: max-content !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    transform: translateX(0) !important;
    animation: sfx-review-marquee-fixed 70s linear infinite !important;
    will-change: transform !important;
}

.home .els-home-trust .reviews-marquee:hover .reviews-track {
    animation-play-state: paused !important;
}

.home .els-home-trust .review-card {
    width: 370px !important;
    min-width: 370px !important;
    max-width: 370px !important;
    min-height: 255px !important;
    margin: 0 !important;
    padding: 22px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    background: #ffffff !important;
    border: 1px solid #dfe9e2 !important;
    border-radius: 22px !important;
    box-shadow: 0 10px 28px rgba(18,39,30,.05) !important;
}

.home .els-home-trust .review-card strong {
    display: block !important;
    color: #173c2f !important;
    font-size: 1.16rem !important;
    font-weight: 800 !important;
    margin: 10px 0 10px !important;
    line-height: 1.2 !important;
}

.home .els-home-trust .review-card p {
    display: block !important;
    color: #50685d !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    margin: 0 0 14px !important;
}

.home .els-home-trust .review-card small {
    display: block !important;
    color: #7b8b84 !important;
    font-size: .92rem !important;
    margin: auto 0 12px !important;
}

.home .els-home-trust .review-read-more {
    display: inline-block !important;
    color: #119457 !important;
    font-weight: 800 !important;
    font-size: .98rem !important;
}

@keyframes sfx-review-marquee-fixed {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-390px * 3)); }
}

@media (max-width: 900px) {
    .home .els-home-trust .review-card {
        width: 320px !important;
        min-width: 320px !important;
        max-width: 320px !important;
    }
    @keyframes sfx-review-marquee-fixed {
        from { transform: translateX(0); }
        to { transform: translateX(calc(-340px * 3)); }
    }
}


/* v54 footer payment + partner cleanup */
.footer-payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.payment-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #eff6f1;
    border: 1px solid #d8e5dd;
    color: #173c2f;
    font-weight: 800;
    font-size: .95rem;
    line-height: 1;
}
.payment-chip--visa {
    letter-spacing: .08em;
    color: #1a3fa6;
    background: #ffffff;
}
.site-footer .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
@media (max-width: 860px) {
    .site-footer .footer-columns {
        grid-template-columns: 1fr !important;
    }
}


/* v58 safe collections removal */
input[type="file"] {
    display: none !important;
}


/* v62 widescreen responsiveness */
:root {
    --sfx-container-max: min(1720px, calc(100vw - 48px));
}

.container,
.shop-shell,
.site-main .container,
.site-content .container,
.sfx-shop-layout,
.els-home-shell,
.els-home-section .container {
    max-width: var(--sfx-container-max) !important;
    width: 100% !important;
}

.shop-shell,
.sfx-shop-layout--featured {
    gap: 28px !important;
}

.sfx-shop-layout--featured {
    grid-template-columns: 320px minmax(0, 1fr) !important;
    align-items: start !important;
}

.sfx-shop-main,
.sfx-shop-layout--featured .sfx-shop-main {
    min-width: 0 !important;
    width: 100% !important;
}

.sfx-shop-toolbar,
.woocommerce-ordering,
.woocommerce-result-count {
    flex-wrap: wrap !important;
}

ul.products,
.woocommerce ul.products,
.site-main ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
    margin: 0 !important;
}

ul.products li.product,
.woocommerce ul.products li.product,
.site-main ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
}

@media (min-width: 1500px) {
    :root {
        --sfx-container-max: min(1860px, calc(100vw - 56px));
    }
    .sfx-shop-layout--featured {
        grid-template-columns: 340px minmax(0, 1fr) !important;
        gap: 32px !important;
    }
    ul.products,
    .woocommerce ul.products,
    .site-main ul.products {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
        gap: 20px !important;
    }
}

@media (min-width: 1800px) {
    :root {
        --sfx-container-max: min(2100px, calc(100vw - 72px));
    }
    .sfx-shop-layout--featured {
        grid-template-columns: 360px minmax(0, 1fr) !important;
    }
    ul.products,
    .woocommerce ul.products,
    .site-main ul.products {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
        gap: 22px !important;
    }
}

@media (max-width: 1199px) {
    :root {
        --sfx-container-max: min(100vw - 32px, 1440px);
    }
    .sfx-shop-layout--featured {
        grid-template-columns: 280px minmax(0, 1fr) !important;
        gap: 22px !important;
    }
}

@media (max-width: 991px) {
    :root {
        --sfx-container-max: calc(100vw - 24px);
    }
    .sfx-shop-layout--featured {
        grid-template-columns: 1fr !important;
    }
    .sfx-shop-sidebar--featured {
        width: 100% !important;
        max-width: none !important;
    }
    ul.products,
    .woocommerce ul.products,
    .site-main ul.products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    :root {
        --sfx-container-max: calc(100vw - 18px);
    }
    ul.products,
    .woocommerce ul.products,
    .site-main ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }
}


/* v63 real wide shop fix */
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag,
body.tax-product_brand {
    --sfx-shop-wide: min(1880px, calc(100vw - 34px));
}

body.post-type-archive-product .container,
body.tax-product_cat .container,
body.tax-product_tag .container,
body.tax-product_brand .container,
body.post-type-archive-product .shop-shell,
body.tax-product_cat .shop-shell,
body.tax-product_tag .shop-shell,
body.tax-product_brand .shop-shell,
body.post-type-archive-product .site-main .container,
body.tax-product_cat .site-main .container,
body.tax-product_tag .site-main .container,
body.tax-product_brand .site-main .container {
    width: var(--sfx-shop-wide) !important;
    max-width: var(--sfx-shop-wide) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.post-type-archive-product .sfx-shop-layout--featured,
body.tax-product_cat .sfx-shop-layout--featured,
body.tax-product_tag .sfx-shop-layout--featured,
body.tax-product_brand .sfx-shop-layout--featured {
    display: grid !important;
    grid-template-columns: 320px minmax(0, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
    align-items: start !important;
}

body.post-type-archive-product .sfx-shop-sidebar--featured,
body.tax-product_cat .sfx-shop-sidebar--featured,
body.tax-product_tag .sfx-shop-sidebar--featured,
body.tax-product_brand .sfx-shop-sidebar--featured {
    width: 320px !important;
    max-width: 320px !important;
}

body.post-type-archive-product .sfx-shop-main--featured,
body.tax-product_cat .sfx-shop-main--featured,
body.tax-product_tag .sfx-shop-main--featured,
body.tax-product_brand .sfx-shop-main--featured {
    width: 100% !important;
    min-width: 0 !important;
}

body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products,
body.tax-product_brand ul.products,
body.post-type-archive-product .woocommerce ul.products,
body.tax-product_cat .woocommerce ul.products,
body.tax-product_tag .woocommerce ul.products,
body.tax-product_brand .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 !important;
}

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

body.post-type-archive-product .shop-compact-head,
body.tax-product_cat .shop-compact-head,
body.tax-product_tag .shop-compact-head,
body.tax-product_brand .shop-compact-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 18px !important;
    align-items: end !important;
}

@media (min-width: 1680px) {
    body.post-type-archive-product,
    body.tax-product_cat,
    body.tax-product_tag,
    body.tax-product_brand {
        --sfx-shop-wide: min(2050px, calc(100vw - 44px));
    }

    body.post-type-archive-product .sfx-shop-layout--featured,
    body.tax-product_cat .sfx-shop-layout--featured,
    body.tax-product_tag .sfx-shop-layout--featured,
    body.tax-product_brand .sfx-shop-layout--featured {
        grid-template-columns: 340px minmax(0, 1fr) !important;
        gap: 34px !important;
    }

    body.post-type-archive-product .sfx-shop-sidebar--featured,
    body.tax-product_cat .sfx-shop-sidebar--featured,
    body.tax-product_tag .sfx-shop-sidebar--featured,
    body.tax-product_brand .sfx-shop-sidebar--featured {
        width: 340px !important;
        max-width: 340px !important;
    }

    body.post-type-archive-product ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products,
    body.tax-product_brand ul.products,
    body.post-type-archive-product .woocommerce ul.products,
    body.tax-product_cat .woocommerce ul.products,
    body.tax-product_tag .woocommerce ul.products,
    body.tax-product_brand .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)) !important;
        gap: 22px !important;
    }
}

@media (max-width: 1199px) {
    body.post-type-archive-product,
    body.tax-product_cat,
    body.tax-product_tag,
    body.tax-product_brand {
        --sfx-shop-wide: calc(100vw - 28px);
    }

    body.post-type-archive-product .sfx-shop-layout--featured,
    body.tax-product_cat .sfx-shop-layout--featured,
    body.tax-product_tag .sfx-shop-layout--featured,
    body.tax-product_brand .sfx-shop-layout--featured {
        grid-template-columns: 280px minmax(0, 1fr) !important;
        gap: 22px !important;
    }

    body.post-type-archive-product .sfx-shop-sidebar--featured,
    body.tax-product_cat .sfx-shop-sidebar--featured,
    body.tax-product_tag .sfx-shop-sidebar--featured,
    body.tax-product_brand .sfx-shop-sidebar--featured {
        width: 280px !important;
        max-width: 280px !important;
    }

    body.post-type-archive-product ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products,
    body.tax-product_brand ul.products,
    body.post-type-archive-product .woocommerce ul.products,
    body.tax-product_cat .woocommerce ul.products,
    body.tax-product_tag .woocommerce ul.products,
    body.tax-product_brand .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    }
}

@media (max-width: 991px) {
    body.post-type-archive-product,
    body.tax-product_cat,
    body.tax-product_tag,
    body.tax-product_brand {
        --sfx-shop-wide: calc(100vw - 22px);
    }

    body.post-type-archive-product .sfx-shop-layout--featured,
    body.tax-product_cat .sfx-shop-layout--featured,
    body.tax-product_tag .sfx-shop-layout--featured,
    body.tax-product_brand .sfx-shop-layout--featured {
        grid-template-columns: 1fr !important;
    }

    body.post-type-archive-product .sfx-shop-sidebar--featured,
    body.tax-product_cat .sfx-shop-sidebar--featured,
    body.tax-product_tag .sfx-shop-sidebar--featured,
    body.tax-product_brand .sfx-shop-sidebar--featured {
        width: 100% !important;
        max-width: none !important;
    }

    body.post-type-archive-product .shop-compact-head,
    body.tax-product_cat .shop-compact-head,
    body.tax-product_tag .shop-compact-head,
    body.tax-product_brand .shop-compact-head {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    body.post-type-archive-product,
    body.tax-product_cat,
    body.tax-product_tag,
    body.tax-product_brand {
        --sfx-shop-wide: calc(100vw - 16px);
    }

    body.post-type-archive-product ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products,
    body.tax-product_brand ul.products,
    body.post-type-archive-product .woocommerce ul.products,
    body.tax-product_cat .woocommerce ul.products,
    body.tax-product_tag .woocommerce ul.products,
    body.tax-product_brand .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }
}


/* v64 broaden shop widescreen selectors to actual WooCommerce shop body classes */
body.woocommerce-shop,
body.woocommerce-page.post-type-archive-product,
body.woocommerce-page.tax-product_cat,
body.woocommerce-page.tax-product_tag,
body.woocommerce-page.tax-product_brand,
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag,
body.tax-product_brand {
    --sfx-shop-wide: min(1880px, calc(100vw - 34px));
}

body.woocommerce-shop .container,
body.woocommerce-page.post-type-archive-product .container,
body.woocommerce-page.tax-product_cat .container,
body.woocommerce-page.tax-product_tag .container,
body.woocommerce-page.tax-product_brand .container,
body.post-type-archive-product .container,
body.tax-product_cat .container,
body.tax-product_tag .container,
body.tax-product_brand .container,
body.woocommerce-shop .shop-shell,
body.woocommerce-page.post-type-archive-product .shop-shell,
body.woocommerce-page.tax-product_cat .shop-shell,
body.woocommerce-page.tax-product_tag .shop-shell,
body.woocommerce-page.tax-product_brand .shop-shell,
body.post-type-archive-product .shop-shell,
body.tax-product_cat .shop-shell,
body.tax-product_tag .shop-shell,
body.tax-product_brand .shop-shell,
body.woocommerce-shop .site-main .container,
body.woocommerce-page.post-type-archive-product .site-main .container,
body.woocommerce-page.tax-product_cat .site-main .container,
body.woocommerce-page.tax-product_tag .site-main .container,
body.woocommerce-page.tax-product_brand .site-main .container,
body.post-type-archive-product .site-main .container,
body.tax-product_cat .site-main .container,
body.tax-product_tag .site-main .container,
body.tax-product_brand .site-main .container {
    width: var(--sfx-shop-wide) !important;
    max-width: var(--sfx-shop-wide) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.woocommerce-shop .sfx-shop-layout--featured,
body.woocommerce-page.post-type-archive-product .sfx-shop-layout--featured,
body.woocommerce-page.tax-product_cat .sfx-shop-layout--featured,
body.woocommerce-page.tax-product_tag .sfx-shop-layout--featured,
body.woocommerce-page.tax-product_brand .sfx-shop-layout--featured,
body.post-type-archive-product .sfx-shop-layout--featured,
body.tax-product_cat .sfx-shop-layout--featured,
body.tax-product_tag .sfx-shop-layout--featured,
body.tax-product_brand .sfx-shop-layout--featured {
    display: grid !important;
    grid-template-columns: 320px minmax(0, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
    align-items: start !important;
}

body.woocommerce-shop .sfx-shop-sidebar--featured,
body.woocommerce-page.post-type-archive-product .sfx-shop-sidebar--featured,
body.woocommerce-page.tax-product_cat .sfx-shop-sidebar--featured,
body.woocommerce-page.tax-product_tag .sfx-shop-sidebar--featured,
body.woocommerce-page.tax-product_brand .sfx-shop-sidebar--featured,
body.post-type-archive-product .sfx-shop-sidebar--featured,
body.tax-product_cat .sfx-shop-sidebar--featured,
body.tax-product_tag .sfx-shop-sidebar--featured,
body.tax-product_brand .sfx-shop-sidebar--featured {
    width: 320px !important;
    max-width: 320px !important;
}

body.woocommerce-shop .sfx-shop-main--featured,
body.woocommerce-page.post-type-archive-product .sfx-shop-main--featured,
body.woocommerce-page.tax-product_cat .sfx-shop-main--featured,
body.woocommerce-page.tax-product_tag .sfx-shop-main--featured,
body.woocommerce-page.tax-product_brand .sfx-shop-main--featured,
body.post-type-archive-product .sfx-shop-main--featured,
body.tax-product_cat .sfx-shop-main--featured,
body.tax-product_tag .sfx-shop-main--featured,
body.tax-product_brand .sfx-shop-main--featured {
    width: 100% !important;
    min-width: 0 !important;
}

body.woocommerce-shop ul.products,
body.woocommerce-shop .woocommerce ul.products,
body.woocommerce-page.post-type-archive-product ul.products,
body.woocommerce-page.tax-product_cat ul.products,
body.woocommerce-page.tax-product_tag ul.products,
body.woocommerce-page.tax-product_brand ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products,
body.tax-product_brand ul.products,
body.post-type-archive-product .woocommerce ul.products,
body.tax-product_cat .woocommerce ul.products,
body.tax-product_tag .woocommerce ul.products,
body.tax-product_brand .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 !important;
}

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

@media (min-width: 1680px) {
    body.woocommerce-shop,
    body.woocommerce-page.post-type-archive-product,
    body.woocommerce-page.tax-product_cat,
    body.woocommerce-page.tax-product_tag,
    body.woocommerce-page.tax-product_brand,
    body.post-type-archive-product,
    body.tax-product_cat,
    body.tax-product_tag,
    body.tax-product_brand {
        --sfx-shop-wide: min(2050px, calc(100vw - 44px));
    }

    body.woocommerce-shop .sfx-shop-layout--featured,
    body.woocommerce-page.post-type-archive-product .sfx-shop-layout--featured,
    body.woocommerce-page.tax-product_cat .sfx-shop-layout--featured,
    body.woocommerce-page.tax-product_tag .sfx-shop-layout--featured,
    body.woocommerce-page.tax-product_brand .sfx-shop-layout--featured,
    body.post-type-archive-product .sfx-shop-layout--featured,
    body.tax-product_cat .sfx-shop-layout--featured,
    body.tax-product_tag .sfx-shop-layout--featured,
    body.tax-product_brand .sfx-shop-layout--featured {
        grid-template-columns: 340px minmax(0, 1fr) !important;
        gap: 34px !important;
    }

    body.woocommerce-shop .sfx-shop-sidebar--featured,
    body.woocommerce-page.post-type-archive-product .sfx-shop-sidebar--featured,
    body.woocommerce-page.tax-product_cat .sfx-shop-sidebar--featured,
    body.woocommerce-page.tax-product_tag .sfx-shop-sidebar--featured,
    body.woocommerce-page.tax-product_brand .sfx-shop-sidebar--featured,
    body.post-type-archive-product .sfx-shop-sidebar--featured,
    body.tax-product_cat .sfx-shop-sidebar--featured,
    body.tax-product_tag .sfx-shop-sidebar--featured,
    body.tax-product_brand .sfx-shop-sidebar--featured {
        width: 340px !important;
        max-width: 340px !important;
    }

    body.woocommerce-shop ul.products,
    body.woocommerce-shop .woocommerce ul.products,
    body.woocommerce-page.post-type-archive-product ul.products,
    body.woocommerce-page.tax-product_cat ul.products,
    body.woocommerce-page.tax-product_tag ul.products,
    body.woocommerce-page.tax-product_brand ul.products,
    body.post-type-archive-product ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products,
    body.tax-product_brand ul.products,
    body.post-type-archive-product .woocommerce ul.products,
    body.tax-product_cat .woocommerce ul.products,
    body.tax-product_tag .woocommerce ul.products,
    body.tax-product_brand .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)) !important;
        gap: 22px !important;
    }
}

@media (max-width: 1199px) {
    body.woocommerce-shop,
    body.woocommerce-page.post-type-archive-product,
    body.woocommerce-page.tax-product_cat,
    body.woocommerce-page.tax-product_tag,
    body.woocommerce-page.tax-product_brand,
    body.post-type-archive-product,
    body.tax-product_cat,
    body.tax-product_tag,
    body.tax-product_brand {
        --sfx-shop-wide: calc(100vw - 28px);
    }

    body.woocommerce-shop .sfx-shop-layout--featured,
    body.woocommerce-page.post-type-archive-product .sfx-shop-layout--featured,
    body.woocommerce-page.tax-product_cat .sfx-shop-layout--featured,
    body.woocommerce-page.tax-product_tag .sfx-shop-layout--featured,
    body.woocommerce-page.tax-product_brand .sfx-shop-layout--featured,
    body.post-type-archive-product .sfx-shop-layout--featured,
    body.tax-product_cat .sfx-shop-layout--featured,
    body.tax-product_tag .sfx-shop-layout--featured,
    body.tax-product_brand .sfx-shop-layout--featured {
        grid-template-columns: 280px minmax(0, 1fr) !important;
        gap: 22px !important;
    }

    body.woocommerce-shop .sfx-shop-sidebar--featured,
    body.woocommerce-page.post-type-archive-product .sfx-shop-sidebar--featured,
    body.woocommerce-page.tax-product_cat .sfx-shop-sidebar--featured,
    body.woocommerce-page.tax-product_tag .sfx-shop-sidebar--featured,
    body.woocommerce-page.tax-product_brand .sfx-shop-sidebar--featured,
    body.post-type-archive-product .sfx-shop-sidebar--featured,
    body.tax-product_cat .sfx-shop-sidebar--featured,
    body.tax-product_tag .sfx-shop-sidebar--featured,
    body.tax-product_brand .sfx-shop-sidebar--featured {
        width: 280px !important;
        max-width: 280px !important;
    }

    body.woocommerce-shop ul.products,
    body.woocommerce-shop .woocommerce ul.products,
    body.woocommerce-page.post-type-archive-product ul.products,
    body.woocommerce-page.tax-product_cat ul.products,
    body.woocommerce-page.tax-product_tag ul.products,
    body.woocommerce-page.tax-product_brand ul.products,
    body.post-type-archive-product ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products,
    body.tax-product_brand ul.products,
    body.post-type-archive-product .woocommerce ul.products,
    body.tax-product_cat .woocommerce ul.products,
    body.tax-product_tag .woocommerce ul.products,
    body.tax-product_brand .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    }
}

@media (max-width: 991px) {
    body.woocommerce-shop,
    body.woocommerce-page.post-type-archive-product,
    body.woocommerce-page.tax-product_cat,
    body.woocommerce-page.tax-product_tag,
    body.woocommerce-page.tax-product_brand,
    body.post-type-archive-product,
    body.tax-product_cat,
    body.tax-product_tag,
    body.tax-product_brand {
        --sfx-shop-wide: calc(100vw - 22px);
    }

    body.woocommerce-shop .sfx-shop-layout--featured,
    body.woocommerce-page.post-type-archive-product .sfx-shop-layout--featured,
    body.woocommerce-page.tax-product_cat .sfx-shop-layout--featured,
    body.woocommerce-page.tax-product_tag .sfx-shop-layout--featured,
    body.woocommerce-page.tax-product_brand .sfx-shop-layout--featured,
    body.post-type-archive-product .sfx-shop-layout--featured,
    body.tax-product_cat .sfx-shop-layout--featured,
    body.tax-product_tag .sfx-shop-layout--featured,
    body.tax-product_brand .sfx-shop-layout--featured {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-shop .sfx-shop-sidebar--featured,
    body.woocommerce-page.post-type-archive-product .sfx-shop-sidebar--featured,
    body.woocommerce-page.tax-product_cat .sfx-shop-sidebar--featured,
    body.woocommerce-page.tax-product_tag .sfx-shop-sidebar--featured,
    body.woocommerce-page.tax-product_brand .sfx-shop-sidebar--featured,
    body.post-type-archive-product .sfx-shop-sidebar--featured,
    body.tax-product_cat .sfx-shop-sidebar--featured,
    body.tax-product_tag .sfx-shop-sidebar--featured,
    body.tax-product_brand .sfx-shop-sidebar--featured {
        width: 100% !important;
        max-width: none !important;
    }
}


/* v65 account page real layout fix */
body.woocommerce-account .shop-shell,
body.woocommerce-account .site-main .container,
body.woocommerce-account .container {
    max-width: min(1440px, calc(100vw - 36px)) !important;
    width: min(1440px, calc(100vw - 36px)) !important;
}

body.woocommerce-account .woocommerce {
    display: grid !important;
    grid-template-columns: 290px minmax(0, 1fr) !important;
    gap: 28px !important;
    align-items: start !important;
}

body.woocommerce-account .woocommerce::before,
body.woocommerce-account .woocommerce::after {
    display: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
    position: sticky;
    top: 120px;
}

body.woocommerce-account .sfx-account-nav {
    width: 100% !important;
    padding: 22px !important;
    border-radius: 24px !important;
}

body.woocommerce-account .sfx-account-nav__head strong {
    display: block !important;
    font-size: 1.02rem !important;
    line-height: 1.5 !important;
    color: #173229 !important;
}

body.woocommerce-account .sfx-account-nav ul {
    display: grid !important;
    gap: 10px !important;
}

body.woocommerce-account .sfx-account-nav ul li a {
    min-height: 48px !important;
    padding: 0 15px !important;
    font-size: .98rem !important;
    white-space: normal !important;
}

body.woocommerce-account .woocommerce-MyAccount-content {
    background: #ffffff;
    border: 1px solid rgba(22,37,31,.08);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(40,72,55,.06);
    padding: 26px;
    overflow: hidden;
}

body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3,
body.woocommerce-account .woocommerce-MyAccount-content h4 {
    margin-top: 0;
    color: #173229;
}

body.woocommerce-account .sfx-account-dashboard {
    width: 100% !important;
}

body.woocommerce-account .sfx-account-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 20px !important;
}

body.woocommerce-account .sfx-account-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

body.woocommerce-account .sfx-account-card {
    min-height: 120px;
}

body.woocommerce-account .woocommerce-form-login,
body.woocommerce-account .woocommerce-form-register,
body.woocommerce-account form {
    max-width: 100% !important;
}

body.woocommerce-account .woocommerce-Addresses {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

body.woocommerce-account table.shop_table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    overflow: hidden;
}

body.woocommerce-account .woocommerce-pagination,
body.woocommerce-account .woocommerce-Button,
body.woocommerce-account button,
body.woocommerce-account input[type="submit"] {
    max-width: 100%;
}

@media (max-width: 1180px) {
    body.woocommerce-account .woocommerce {
        grid-template-columns: 260px minmax(0, 1fr) !important;
        gap: 22px !important;
    }
    body.woocommerce-account .sfx-account-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    body.woocommerce-account .shop-shell,
    body.woocommerce-account .site-main .container,
    body.woocommerce-account .container {
        max-width: calc(100vw - 22px) !important;
        width: calc(100vw - 22px) !important;
    }

    body.woocommerce-account .woocommerce {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation {
        position: static !important;
    }

    body.woocommerce-account .sfx-account-hero {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .sfx-account-grid,
    body.woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-account .woocommerce-MyAccount-content {
        padding: 20px !important;
    }
}


/* v66 show register form on My Account page */
body.woocommerce-account .woocommerce-account-shell .u-columns,
body.woocommerce-account .woocommerce-account-shell .u-columns.woocommerce-Addresses {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: start !important;
    width: 100% !important;
}

body.woocommerce-account .woocommerce-form-login,
body.woocommerce-account .woocommerce-form-register {
    width: 100% !important;
    max-width: none !important;
    background: #ffffff !important;
    border: 1px solid rgba(22,37,31,.08) !important;
    border-radius: 22px !important;
    box-shadow: 0 12px 28px rgba(40,72,55,.05) !important;
    padding: 22px !important;
}

body.woocommerce-account .u-column1,
body.woocommerce-account .u-column2,
body.woocommerce-account .col-1,
body.woocommerce-account .col-2 {
    width: auto !important;
    max-width: none !important;
    float: none !important;
    margin: 0 !important;
}

body.woocommerce-account .woocommerce-form-login h2,
body.woocommerce-account .woocommerce-form-register h2 {
    margin-top: 0 !important;
}

body.woocommerce-account .woocommerce-form-login .button,
body.woocommerce-account .woocommerce-form-register .button {
    min-width: 140px !important;
}

@media (max-width: 900px) {
    body.woocommerce-account .woocommerce-account-shell .u-columns,
    body.woocommerce-account .woocommerce-account-shell .u-columns.woocommerce-Addresses {
        grid-template-columns: 1fr !important;
    }
}
