/* ==========================================================================
   Shop Page — simiansab-theme
   Loaded only on page-shop.php via conditional enqueue.
   ========================================================================== */

/* ── Sale Banner (site-wide, in header.php) ────────────────────────────── */
.site-sale-banner {
    position: sticky;
    top: 0;
    z-index: 1001;
    background-color: #0a0a0a;
    text-align: center;
    padding: 8px 16px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-sale-banner__text {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f0f0f0;
    margin: 0;
}

.site-sale-banner__text strong {
    font-weight: 700;
    color: #f0f0f0;
}

/* ── Site Header (in header.php) ──────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 35px;
    z-index: 1000;
    background-color: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 70px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.site-header__logo-link {
    display: block;
    flex-shrink: 0;
}

.site-header__logo-img {
    display: block;
    width: 120px;
    height: auto;
}

.site-header__nav-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-header__cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f0f0f0;
    text-decoration: none;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.site-header__cart:hover {
    color: #f0f0f0;
}

.site-header__cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #f0f0f0;
}

.site-header__cart-icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.site-header__cart-count {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #b20d0d;
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}

.site-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.site-nav__list a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
    color: #b20d0d;
}

.site-header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #f0f0f0;
}

.site-header__burger svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Mobile nav dropdown */
.site-nav-mobile {
    display: none;
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav-mobile.is-open {
    display: block;
}

.site-nav-mobile__list {
    list-style: none;
    margin: 0;
    padding: 12px 40px;
}

.site-nav-mobile__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav-mobile__list a {
    display: block;
    padding: 12px 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f0f0f0;
    text-decoration: none;
}

/* Cart overlay retained from the example shop build */
#shop-woo-cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.62);
}

#shop-woo-cart-side {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: min(420px, 92vw);
    height: 100vh;
    padding: 24px;
    background: #fff;
    color: #111;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.25s ease;
}

#shop-woo-cart-side.is-open {
    transform: translateX(0);
}

#shop-woo-cart-overlay.is-open {
    display: block;
}

#shop-woo-cart-side .cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e4ea;
    padding-bottom: 14px;
}

#shop-woo-cart-side .cart-header h3 {
    margin: 0;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}

#shop-woo-close-cart {
    color: #111;
    font-size: 26px;
    line-height: 1;
    text-decoration: none;
}

#shop-woo-cart-toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 990;
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

#shop-woo-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #b20d0d;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
}

/* ── Video Hero ─────────────────────────────────────────────────────────── */
.shop-video-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #0a0a0a;
}

.shop-video-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.shop-video-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.shop-video-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-video-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
    padding: 40px 40px 30px;
    margin: 0 auto;
    text-align: left;
}

.shop-video-hero__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #f0f0f0;
    margin: 0 0 -6px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    line-height: 1;
}

.shop-video-hero__splash {
    display: block;
    max-width: 420px;
    width: 100%;
    height: auto;
    margin: 0;
    opacity: 0;
    animation: splashFadeIn 0.8s ease 0.4s forwards;
}

@keyframes splashFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Elementor visibility helpers */
.elementor-hidden-mobile    { display: flex; }
.elementor-hidden-desktop   { display: none; }
.elementor-hidden-tablet    { display: none; }

/* ── Products Section ───────────────────────────────────────────────────── */
.shop-section {
    background-color: #f0f0f0;
    padding: 5% 8% 4%;
}

/* eszlwcf-section wraps modal + filter-open btn + eszlwcf-wrapper */
.eszlwcf-section {
    position: relative;
}

/* ── Filter + Grid Layout ───────────────────────────────────────────────── */
.eszlwcf-wrapper {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.eszlwcf-filter-frame {
    width: 20%;
    flex-shrink: 0;
    padding-right: 20px;
}

.eszlwcf-products-frame {
    width: 80%;
}

/* ── Filter Sidebar ─────────────────────────────────────────────────────── */
.eszlwcf-filter-block {
    margin: 0 0 30px;
}

.eszlwcf-filter-heading-box {
    padding: 0 0 10px;
    border-bottom: 1px solid #e2e4ea;
    margin-bottom: 12px;
}

.eszlwcf-filter-block-heading {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #111;
    margin: 0;
    letter-spacing: 0.06em;
}

.eszlwcf-filter-form input[type="search"] {
    width: 100%;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #e2e4ea;
    background-color: #f7f8f9;
    color: #111;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    outline: none;
}

.eszlwcf-filter-form input[type="search"]:focus {
    border-color: #b20d0d;
}

.eszlwcf-filter-form select {
    width: 100%;
    padding: 8px 28px 8px 12px;
    border-radius: 4px;
    border: 1px solid #e2e4ea;
    background-color: #f7f8f9;
    color: #111;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23111' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

/* Custom Checkboxes */
.eszlwcf-field-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    font-family: 'Inter', system-ui, sans-serif;
}

.eszlwcf-field-box:last-child {
    margin-bottom: 0;
}

.eszlwcf-field-box input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    min-width: 14px;
    border: 2px solid #e2e4ea;
    border-radius: 4px;
    background-color: #f7f8f9;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.eszlwcf-field-box input[type="checkbox"]:checked {
    border-color: #b20d0d;
    background-color: #b20d0d;
}

.eszlwcf-field-box input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    left: 3px;
    top: 1px;
}

.filter-count {
    color: #999;
    font-size: 11px;
}

/* Price Range */
.eszlwcf-price-range {
    margin-bottom: 10px;
}

.eszlwcf-range-value-display {
    font-size: 13px;
    color: #111;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

/* jQuery UI slider override */
.ui-slider {
    background: #e2e4ea;
    border: none;
    border-radius: 5px;
    height: 6px;
}

.ui-slider .ui-slider-range {
    background: #b20d0d;
    border-radius: 5px;
}

.ui-slider .ui-slider-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #b20d0d;
    border: none;
    top: -6px;
    cursor: pointer;
    outline: none;
}

/* Active filter tags */
.eszlwcf-filter-clear-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.eszlwcf-clear-single {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #111;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.eszlwcf-clear-single:hover {
    background-color: #b20d0d;
}

.eszlwcf-clear.eszlwcf-clear-editor {
    display: none;
    font-size: 12px;
    color: #b20d0d;
    cursor: pointer;
    text-decoration: underline;
    margin-bottom: 8px;
}

/* ── Sort Bar ───────────────────────────────────────────────────────────── */
.eszlwcf-sort-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.eszlwcf-sort-bar label {
    font-size: 13px;
    color: #666;
    font-family: 'Inter', system-ui, sans-serif;
}

.eszlwcf-sorting-select {
    width: auto;
    padding: 8px 28px 8px 12px;
    border-radius: 4px;
    border: 1px solid #e2e4ea;
    background-color: #f7f8f9;
    color: #111;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23111' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

/* ── Product Grid ───────────────────────────────────────────────────────── */
#shopify-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

/* ── Product Card ───────────────────────────────────────────────────────── */
.eszlwcf-product {
    position: relative;
    background: #fff;
}

.eszlwcf-product-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 83%;
    overflow: hidden;
    margin-bottom: 10px;
}

.eszlwcf-product-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

.eszlwcf-product-thumbnail-back {
    opacity: 0;
}

.eszlwcf-product:hover .eszlwcf-product-thumbnail-front {
    opacity: 0;
}

.eszlwcf-product:hover .eszlwcf-product-thumbnail-back {
    opacity: 1;
}

.eszlwcf-product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.eszlwcf-product-badge-sale {
    color: rgba(102, 102, 102, 0);
    background-color: rgba(255, 255, 255, 0);
    font-size: 12px;
    pointer-events: none;
}

.eszwcf-quick-view {
    display: none;
}

.eszlwcf-product-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #111;
    min-height: 48px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.eszlwcf-product-title a {
    color: #111;
    text-decoration: none;
}

.eszlwcf-product-title a:hover {
    color: #b20d0d;
}

.eszlwcf-product-price {
    font-size: 16px;
    margin-bottom: 6px;
    color: #111;
}

.eszlwcf-product-price-regular del .woocommerce-Price-amount {
    color: #7e7e7e;
    margin-right: 4px;
}

.eszlwcf-product-price-regular ins {
    text-decoration: none;
    color: #b20d0d;
    font-weight: 600;
}

.eszlwcf-product-button {
    margin-top: 4px;
}

.eszlwcf-product-button .button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #b20d0d;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 24px 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    line-height: 1.4;
}

.eszlwcf-product-button .button:hover {
    opacity: 0.88;
    color: #fff;
}

.eszlwcf-product-button .button svg {
    fill: #fff;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Loader ─────────────────────────────────────────────────────────────── */
.eszlwcf-loader {
    display: none;
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
    font-family: 'Inter', system-ui, sans-serif;
    grid-column: 1 / -1;
}

.eszlwcf-no-products {
    grid-column: 1 / -1;
    color: #666;
    font-size: 14px;
    font-family: 'Inter', system-ui, sans-serif;
    padding: 20px 0;
}

/* ── Load More ──────────────────────────────────────────────────────────── */
#shopify-load-more {
    display: none;
    text-align: center;
    margin-top: 30px;
}

.eszlwcf-load-more-btn {
    display: inline-block;
    background-color: #111;
    color: #fff;
    border-radius: 5px;
    padding: 6px 24px 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
}

.eszlwcf-load-more-btn:hover {
    opacity: 0.85;
    color: #fff;
}

/* ── Quick-View Modal ───────────────────────────────────────────────────── */
.esz-product-modal {
    display: none;
}

.esz-product-modal-frame {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.esz-product-modal-frame.active {
    display: flex;
}

.esz-product-modal-container {
    background: #fff;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 3px;
}

.esz-product-modal-inner-wrapper {
    display: flex;
}

.esz-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #111;
    background: none;
    border: none;
    z-index: 10;
}

.esz-modal-close:hover {
    color: #b20d0d;
}

.esz-product-modal-column {
    padding: 24px;
    flex: 1;
}

.esz-product-modal-left {
    flex: 0 0 45%;
    border-right: 1px solid #eee;
}

.esz-product-modal-thumb-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.esz-modal-product-title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 12px;
}

.esz-modal-product-price {
    font-size: 16px;
    color: #111;
    margin-bottom: 16px;
}

.esz-modal-product-cart-button .button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #b20d0d;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 28px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-top: 12px;
}

.esz-modal-product-cart-button .button:hover {
    opacity: 0.88;
    color: #fff;
}

.esz-modal-product-cart-button .button svg {
    fill: #fff;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.esz-product-category {
    font-size: 13px;
    color: #777;
    margin-top: 12px;
}

.esz-product-modal-thumb-slider {
    margin-top: 10px;
}

.esz-thumb-slide img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    opacity: 0.6;
    cursor: pointer;
    padding: 2px;
    border: 2px solid transparent;
}

.slick-current .esz-thumb-slide img {
    opacity: 1;
    border-color: #b20d0d;
}

/* ── Mobile Filter Open Button ──────────────────────────────────────────── */
.eszlwcf-filters-open-button-container {
    display: none;
    margin-bottom: 16px;
}

.eszlwcf-filters-open-widget {
    display: inline-flex;
    align-items: center;
    background-color: #111;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-family: 'Inter', system-ui, sans-serif;
    cursor: pointer;
    text-decoration: none;
    gap: 8px;
}

.eszlwcf-button-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eszlwcf-icon-html-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 16px;
}

.eszlwcf-icon-line-1,
.eszlwcf-icon-line-2,
.eszlwcf-icon-line-3 {
    display: block;
    height: 2px;
    background-color: #fff;
    width: 100%;
}

.eszlwcf-filters-button-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.eszlwcf-widget-close-container {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e2e4ea;
}

.eszlwcf-widget-close-icon {
    cursor: pointer;
    font-size: 20px;
    color: #111;
    text-decoration: none;
}

.wpc-widget-popup-title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Instagram Section ───────────────────────────────────────────────────── */
.shop-instagram {
    background-color: #111111;
    padding: 60px 40px;
}

.shop-instagram__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.shop-instagram__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 120px;
}

.shop-instagram__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.shop-instagram__handle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #f0f0f0;
    margin: 0;
    text-align: center;
}

.shop-instagram__dot {
    color: #888;
    font-size: 12px;
    margin: 0;
    line-height: 1;
}

.shop-instagram__follow-btn {
    display: inline-block;
    background-color: #b20d0d;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.shop-instagram__follow-btn:hover {
    opacity: 0.85;
    color: #fff;
}

.shop-instagram__follow-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #1a1a1a;
    padding: 24px 20px;
    min-width: 120px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.shop-instagram__follow-cta:hover {
    background-color: #222;
}

.shop-instagram__follow-text {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f0f0f0;
}

.shop-instagram__icon {
    width: 28px;
    height: 28px;
    fill: #f0f0f0;
}

.shop-instagram__feed {
    flex: 1;
    min-width: 0;
}

/* ── Site Footer ──────────────────────────────────────────────────────────── */
.site-footer {
    background-color: #0a0a0a;
    color: #f0f0f0;
}

.site-footer__newsletter {
    background-color: #111111;
    padding: 60px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.site-footer__newsletter-logo {
    flex-shrink: 0;
}

.site-footer__newsletter-logo img {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
}

.site-footer__newsletter-content {
    flex: 1;
    min-width: 240px;
}

.site-footer__newsletter-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    margin: 0 0 8px;
}

.site-footer__newsletter-heading {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #f0f0f0;
    margin: 0 0 20px;
    line-height: 1.2;
}

.site-footer__newsletter-fields {
    display: flex;
    gap: 0;
    max-width: 500px;
}

.site-footer__email-input {
    flex: 1;
    padding: 12px 16px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: #1a1a1a;
    color: #f0f0f0;
    outline: none;
}

.site-footer__email-input::placeholder {
    color: #888;
}

.site-footer__email-input:focus {
    border-color: #b20d0d;
}

.site-footer__newsletter-btn {
    padding: 12px 24px;
    background-color: #b20d0d;
    color: #fff;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.site-footer__newsletter-btn:hover {
    opacity: 0.88;
}

.site-footer__bar {
    padding: 28px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer__bar-logo img {
    display: block;
    width: 100px;
    height: auto;
}

.site-footer__nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.site-footer__nav-list a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: #888;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.site-footer__nav-list a:hover {
    color: #f0f0f0;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1a1a1a;
    transition: background-color 0.2s ease;
}

.site-footer__social-icon:hover {
    background-color: #b20d0d;
}

.site-footer__social-icon svg {
    width: 16px;
    height: 16px;
    fill: #f0f0f0;
}

.site-footer__copy-bar {
    padding: 16px 40px;
    text-align: center;
}

.site-footer__copy {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: #555;
    margin: 0;
}

.site-footer__copy a {
    color: #888;
    text-decoration: none;
}

.site-footer__copy a:hover {
    color: #f0f0f0;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .shop-section {
        padding: 5% 5%;
    }

    .eszlwcf-filter-frame {
        width: 100%;
        padding-right: 0;
    }

    .eszlwcf-products-frame {
        width: 100%;
    }

    .eszlwcf-wrapper {
        flex-direction: column;
    }

    .eszlwcf-filters-open-button-container {
        display: block;
    }

    .eszlwcf-filter-frame {
        display: none;
    }

    .eszlwcf-filter-frame.filter-open {
        display: block;
    }

    .eszlwcf-widget-close-container {
        display: flex;
    }

    #shopify-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-header__burger {
        display: block;
    }

    .site-nav {
        display: none;
    }

    .elementor-hidden-mobile {
        display: none;
    }

    .elementor-hidden-desktop {
        display: flex;
    }

    .elementor-hidden-tablet {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header__inner {
        padding: 0 20px;
    }

    .site-footer__newsletter {
        padding: 40px 20px;
    }

    .site-footer__newsletter-inner {
        flex-direction: column;
        gap: 30px;
    }

    .site-footer__bar {
        padding: 24px 20px;
    }

    .site-footer__bar-inner {
        flex-direction: column;
        text-align: center;
    }

    .site-footer__nav-list {
        justify-content: center;
    }

    .site-footer__copy-bar {
        padding: 16px 20px;
    }

    .shop-instagram {
        padding: 40px 20px;
    }

    .shop-instagram__inner {
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .shop-section {
        padding: 6% 4%;
    }

    #shopify-products-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 12px;
        row-gap: 16px;
    }

    .eszlwcf-product-button .button {
        font-size: 13px;
        padding: 8px 12px;
    }

    .esz-product-modal-inner-wrapper {
        flex-direction: column;
    }

    .esz-product-modal-left {
        flex: unset;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .site-footer__newsletter-fields {
        flex-direction: column;
    }

    .site-footer__newsletter-btn {
        width: 100%;
        text-align: center;
    }

    .shop-instagram__follow-cta {
        display: none;
    }
}

.shop-hero {
    position: relative;
    aspect-ratio: 16 / 5;
    background-image: url('../images/shop-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 45px;
    box-shadow: 0 7px 20px -3px rgba(0, 0, 0, 0.5);
    min-height: 180px;
}

.shop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, #000000 8%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.9;
}

.shop-hero__content {
    position: relative;
    z-index: 1;
}

.shop-hero__title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.shop-hero__product-img {
    position: absolute;
    right: 6%;
    bottom: 0;
    height: 115%;
    opacity: 0.55;
    object-fit: contain;
    pointer-events: none;
}

/* ── Products Section ───────────────────────────────────────────────────── */
.shop-section {
    background-color: #f0f0f0;
    padding: 5% 8% 4%;
}

/* ── Filter + Grid Layout ───────────────────────────────────────────────── */
.eszlwcf-wrapper {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.eszlwcf-filter-frame {
    width: 20%;
    flex-shrink: 0;
    padding-right: 20px;
}

.eszlwcf-products-frame {
    width: 80%;
}

/* ── Filter Sidebar ─────────────────────────────────────────────────────── */
.eszlwcf-filter-block {
    margin: 0 0 30px;
}

.eszlwcf-filter-block-heading-wrapper {
    padding: 0 0 10px;
    border-bottom: 1px solid #e2e4ea;
    margin-bottom: 12px;
}

.eszlwcf-filter-block-heading {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #111;
    margin: 0;
    letter-spacing: 0.06em;
}

.eszlwcf-search-input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #e2e4ea;
    background-color: #f7f8f9;
    color: #111;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    outline: none;
}

.eszlwcf-search-input:focus {
    border-color: #C1272D;
}

.eszlwcf-stock-select,
.eszlwcf-sorting-select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #e2e4ea;
    background-color: #f7f8f9;
    color: #111;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23111' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
    cursor: pointer;
}

/* Custom Checkboxes */
.eszlwcf-field-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    font-family: 'Inter', system-ui, sans-serif;
}

.eszlwcf-field-box:last-child {
    margin-bottom: 0;
}

.eszlwcf-field-box input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    min-width: 14px;
    border: 2px solid #e2e4ea;
    border-radius: 4px;
    background-color: #f7f8f9;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.eszlwcf-field-box input[type="checkbox"]:checked {
    border-color: #C1272D;
    background-color: #C1272D;
}

.eszlwcf-field-box input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    left: 3px;
    top: 1px;
}

.filter-count {
    color: #999;
    font-size: 11px;
}

/* Price Range */
.eszlwcf-price-range {
    margin-bottom: 10px;
}

.eszlwcf-range-value-display {
    font-size: 13px;
    color: #111;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
}

/* jQuery UI slider override */
.ui-slider {
    background: #e2e4ea;
    border: none;
    border-radius: 5px;
    height: 6px;
}

.ui-slider .ui-slider-range {
    background: #C1272D;
    border-radius: 5px;
}

.ui-slider .ui-slider-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #C1272D;
    border: none;
    top: -6px;
    cursor: pointer;
    outline: none;
}

/* Active filter tags */
.eszlwcf-filter-clear-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.eszlwcf-clear-single {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #111;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.eszlwcf-clear-single:hover {
    background-color: #C1272D;
}

.eszlwcf-clear.eszlwcf-clear-editor {
    display: none;
    font-size: 12px;
    color: #C1272D;
    cursor: pointer;
    text-decoration: underline;
    margin-bottom: 8px;
}

/* ── Sort Bar ───────────────────────────────────────────────────────────── */
.eszlwcf-sort-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.eszlwcf-sort-bar label {
    font-size: 13px;
    color: #666;
    font-family: 'Inter', system-ui, sans-serif;
}

.eszlwcf-sort-bar .eszlwcf-sorting-select {
    width: auto;
}

/* ── Product Grid ───────────────────────────────────────────────────────── */
#shopify-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

/* ── Product Card ───────────────────────────────────────────────────────── */
.eszlwcf-product {
    position: relative;
    background: #fff;
}

.eszlwcf-product-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 83%;
    overflow: hidden;
    margin-bottom: 10px;
}

.eszlwcf-product-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

.eszlwcf-product-thumbnail-back {
    opacity: 0;
}

.eszlwcf-product:hover .eszlwcf-product-thumbnail-front {
    opacity: 0;
}

.eszlwcf-product:hover .eszlwcf-product-thumbnail-back {
    opacity: 1;
}

/* Sale badge — invisible by default (matches example behaviour) */
.eszlwcf-product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.eszlwcf-product-badge-sale {
    color: rgba(102, 102, 102, 0);
    background-color: rgba(255, 255, 255, 0);
    font-size: 12px;
    pointer-events: none;
}

/* Quick-view trigger — hidden */
.eszwcf-quick-view {
    display: none;
}

/* Card meta */
.eszlwcf-product-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #111;
    min-height: 48px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.eszlwcf-product-title a {
    color: #111;
    text-decoration: none;
}

.eszlwcf-product-title a:hover {
    color: #C1272D;
}

.eszlwcf-product-price {
    font-size: 16px;
    margin-bottom: 6px;
    color: #111;
}

.eszlwcf-product-price-regular del .woocommerce-Price-amount {
    color: #7e7e7e;
    margin-right: 4px;
}

.eszlwcf-product-price-regular ins {
    text-decoration: none;
    color: #C1272D;
    font-weight: 600;
}

.eszlwcf-product-button {
    margin-top: 4px;
}

.eszlwcf-product-button .button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #C1272D;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 24px 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    line-height: 1.4;
}

.eszlwcf-product-button .button:hover {
    opacity: 0.88;
    color: #fff;
}

.eszlwcf-product-button .button svg {
    fill: #fff;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Loader ─────────────────────────────────────────────────────────────── */
.eszlwcf-loader {
    display: none;
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
    font-family: 'Inter', system-ui, sans-serif;
    grid-column: 1 / -1;
}

.eszlwcf-no-products {
    grid-column: 1 / -1;
    color: #666;
    font-size: 14px;
    font-family: 'Inter', system-ui, sans-serif;
    padding: 20px 0;
}

/* ── Load More ──────────────────────────────────────────────────────────── */
#shopify-load-more {
    display: none;
    text-align: center;
    margin-top: 30px;
}

.eszlwcf-load-more-btn {
    display: inline-block;
    background-color: #111;
    color: #fff;
    border-radius: 5px;
    padding: 6px 24px 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
}

.eszlwcf-load-more-btn:hover {
    opacity: 0.85;
    color: #fff;
}

/* ── Quick-View Modal ───────────────────────────────────────────────────── */
.esz-product-modal {
    display: none; /* hidden in DOM — JS copies content into frame */
}

.esz-product-modal-frame {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.esz-product-modal-frame.active {
    display: flex;
}

.esz-product-modal-inner-wrapper {
    background: #fff;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    border-radius: 3px;
}

.esz-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #111;
    background: none;
    border: none;
    z-index: 10;
}

.esz-modal-close:hover {
    color: #C1272D;
}

.esz-product-modal-column {
    padding: 24px;
    flex: 1;
}

.esz-product-modal-left {
    flex: 0 0 45%;
    border-right: 1px solid #eee;
}

.esz-product-modal-thumb-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.esz-modal-product-title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 12px;
}

.esz-modal-product-price {
    font-size: 16px;
    color: #111;
    margin-bottom: 16px;
}

.esz-modal-product-cart-button .button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #C1272D;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 28px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-top: 12px;
}

.esz-modal-product-cart-button .button:hover {
    opacity: 0.88;
    color: #fff;
}

.esz-modal-product-cart-button .button svg {
    fill: #fff;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.esz-product-category {
    font-size: 13px;
    color: #777;
    margin-top: 12px;
}

/* Slick slider thumbnails in modal */
.esz-product-modal-thumb-slider {
    margin-top: 10px;
}

.esz-thumb-slide img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    opacity: 0.6;
    cursor: pointer;
    padding: 2px;
    border: 2px solid transparent;
}

.slick-current .esz-thumb-slide img {
    opacity: 1;
    border-color: #C1272D;
}

/* ── Mobile Filter Toggle ───────────────────────────────────────────────── */
.eszlwcf-filters-open-widget {
    display: none;
    background-color: #111;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-family: 'Inter', system-ui, sans-serif;
    cursor: pointer;
    margin-bottom: 16px;
}

.eszlwcf-widget-close-icon {
    display: none;
    cursor: pointer;
    font-size: 20px;
    text-align: right;
    padding: 4px 0 12px;
    color: #111;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .shop-section {
        padding: 5% 5%;
    }

    .eszlwcf-filter-frame {
        width: 100%;
        padding-right: 0;
    }

    .eszlwcf-products-frame {
        width: 100%;
    }

    .eszlwcf-wrapper {
        flex-direction: column;
    }

    .eszlwcf-filters-open-widget {
        display: block;
    }

    .eszlwcf-filter-frame {
        display: none;
    }

    .eszlwcf-filter-frame.filter-open {
        display: block;
    }

    .eszlwcf-widget-close-icon {
        display: block;
    }

    #shopify-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .shop-section {
        padding: 6% 4%;
    }

    #shopify-products-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 12px;
        row-gap: 16px;
    }

    .shop-hero__product-img {
        display: none;
    }

    .eszlwcf-product-button .button {
        font-size: 13px;
        padding: 8px 12px;
    }

    .esz-product-modal-inner-wrapper {
        flex-direction: column;
    }

    .esz-product-modal-left {
        flex: unset;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

/* ==========================================================================
   Reference screenshot corrections
   ========================================================================== */
body.page-template-page-shop,
body.page-template-page-shop-php,
.page-template-page-shop,
.page-template-page-shop-php {
    background: #fff;
    color: #111;
    font-family: Raleway, Inter, system-ui, sans-serif;
}

.page-template-page-shop a {
    text-decoration: none;
}

.site-sale-banner {
    height: 24px;
    padding: 0 16px;
    background: #c8202f;
    z-index: 1002;
}

.site-sale-banner__text {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.site-sale-banner__text strong {
    color: #fff;
}

.site-header {
    top: 24px;
    background: #ffd600;
    border: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.site-header__inner {
    max-width: 1080px;
    height: 64px;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.28);
}

.site-header__logo-img {
    width: 104px;
}

.site-header__nav-wrap {
    gap: 24px;
}

.site-nav__list {
    gap: 34px;
}

.site-nav__list a {
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
    color: #050505;
}

.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 23px;
    border-radius: 999px;
    background: #cf2635;
    color: #fff;
}

.site-header__cart {
    color: #050505;
    gap: 4px;
    font-size: 13px;
    font-weight: 900;
}

.site-header__cart:hover,
.site-header__cart-icon {
    color: #050505;
}

.site-header__cart-icon {
    width: 22px;
    height: 22px;
}

.site-header__cart-icon svg {
    width: 18px;
    height: 18px;
}

.site-header__cart-count {
    top: -7px;
    right: -7px;
    min-width: 14px;
    height: 14px;
    padding: 0 4px;
    background: #cf2635;
    font-size: 9px;
    line-height: 14px;
}

.site-nav-mobile {
    background: #ffd600;
    border-top-color: rgba(0, 0, 0, 0.25);
}

.site-nav-mobile__list a,
.site-header__burger {
    color: #050505;
}

.shop-video-hero {
    min-height: 430px;
    background: linear-gradient(90deg, #656565 0%, #a7a7a7 52%, #f4f4f4 100%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
}

.shop-video-hero__video {
    opacity: 1;
}

.shop-video-hero__content {
    max-width: 1080px;
    padding: 0;
}

.shop-video-hero__title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: Raleway, Inter, system-ui, sans-serif;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.38);
}

.shop-video-hero__splash {
    position: absolute;
    z-index: 1;
    left: -20px;
    top: 28px;
    max-width: 255px;
    opacity: 1;
    animation: none;
}

.shop-section {
    background: #fff;
    padding: 125px 24px 130px;
}

.eszlwcf-section {
    max-width: 1080px;
    margin: 0 auto;
}

.eszlwcf-wrapper {
    gap: 20px;
}

.eszlwcf-filter-frame {
    width: 210px;
    padding-right: 0;
}

.eszlwcf-products-frame {
    width: calc(100% - 230px);
}

.eszlwcf-filter-block {
    margin-bottom: 18px;
}

.eszlwcf-filter-heading-box {
    border-bottom: 0;
    margin-bottom: 6px;
    padding-bottom: 0;
}

.eszlwcf-filter-block-heading {
    color: #333;
    font-family: Raleway, Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.eszlwcf-filter-form input[type="search"],
.eszlwcf-filter-form select,
.eszlwcf-sorting-select {
    height: 30px;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    background-color: #fff;
    color: #777;
    font-size: 12px;
}

.eszlwcf-range-value-display,
.eszlwcf-field-box {
    color: #555;
    font-size: 12px;
}

.ui-slider .ui-slider-range,
.ui-slider .ui-slider-handle,
.eszlwcf-field-box input[type="checkbox"]:checked {
    background: #cf2635;
    border-color: #cf2635;
}

.eszlwcf-sort-bar {
    margin-bottom: 20px;
}

.eszlwcf-sort-bar label {
    display: none;
}

#shopify-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 40px;
}

.eszlwcf-product {
    background: transparent;
}

.eszlwcf-product-thumb {
    padding-bottom: 83%;
    margin-bottom: 8px;
    background: #f3f3f3;
}

.eszlwcf-product-title {
    min-height: 40px;
    margin-bottom: 4px;
    color: #111;
    font-family: Raleway, Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.12;
}

.eszlwcf-product-title a {
    color: #111;
}

.eszlwcf-product-title a:hover {
    color: #cf2635;
}

.eszlwcf-product-price {
    margin-bottom: 5px;
    font-size: 16px;
}

.eszlwcf-product-price-regular ins,
.eszlwcf-product-price ins,
.eszlwcf-product-price .woocommerce-Price-amount {
    color: #cf2635;
}

.eszlwcf-product-button .button {
    min-height: 24px;
    padding: 5px 18px;
    background: #cf2635;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 800;
}

.eszlwcf-load-more-btn,
#shopify-load-more a {
    background: #111;
    border-radius: 3px;
    padding: 9px 30px;
    color: #fff;
    font-size: 13px;
}

.shop-instagram {
    background: #fff;
    padding: 0 0 36px;
    color: #111;
}

.shop-instagram__inner {
    max-width: none;
    display: block;
}

.shop-instagram__profile {
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    margin-bottom: 52px;
}

.shop-instagram__avatar {
    width: 32px;
    height: 32px;
    margin: 0 auto;
    border: 3px solid #ffd600;
}

.shop-instagram__handle {
    color: #111;
    font-size: 13px;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
}

.shop-instagram__follow-btn {
    background: #ffd600;
    color: #fff;
    border-radius: 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.shop-instagram__follow-cta {
    display: none;
}

.shop-instagram__dot {
    display: none;
}

.site-footer {
    background: #050505;
}

.site-footer__newsletter {
    background: #ffd600;
    padding: 30px 24px 34px;
    border-bottom: 0;
}

.site-footer__newsletter-inner {
    max-width: 1080px;
    display: block;
}

.site-footer__newsletter-logo {
    display: none;
}

.site-footer__newsletter-content {
    max-width: 650px;
}

.site-footer__newsletter-label {
    color: #111;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 6px;
}

.site-footer__newsletter-heading {
    color: #fff;
    font-family: Raleway, Inter, system-ui, sans-serif;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.site-footer__newsletter-fields {
    max-width: 420px;
    gap: 8px;
}

.site-footer__email-input {
    height: 33px;
    padding: 0 18px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 999px;
    background: transparent;
    color: #111;
    font-size: 12px;
}

.site-footer__email-input::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

.site-footer__newsletter-btn {
    height: 33px;
    padding: 0 28px;
    border-radius: 999px;
    background: #cf2635;
    color: #fff;
    font-size: 12px;
}

.site-footer__bar {
    padding: 28px 24px 14px;
    border-bottom: 0;
}

.site-footer__bar-inner {
    max-width: 1080px;
}

.site-footer__nav-list a {
    color: #d8d8d8;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.site-footer__nav-list .current-menu-item > a,
.site-footer__nav-list .current_page_item > a {
    color: #fff;
    border-bottom: 2px solid #ffd600;
    padding-bottom: 5px;
}

.site-footer__social-icon {
    width: 22px;
    height: 22px;
    background: transparent;
}

.site-footer__social-icon svg {
    fill: #fff;
}

@media (max-width: 1024px) {
    .site-header__inner {
        padding: 0 20px;
    }

    .site-nav__list {
        gap: 22px;
    }

    .shop-video-hero__content,
    .eszlwcf-section,
    .site-footer__newsletter-inner,
    .site-footer__bar-inner {
        max-width: calc(100vw - 40px);
    }

    .eszlwcf-wrapper {
        flex-direction: column;
    }

    .eszlwcf-filter-frame,
    .eszlwcf-products-frame {
        width: 100%;
    }

    .eszlwcf-filter-frame {
        display: none;
    }

    .eszlwcf-filter-frame.filter-open {
        display: block;
    }

    .eszlwcf-filters-open-button-container {
        display: block;
    }

    #shopify-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-sale-banner {
        height: 24px;
    }

    .site-header {
        top: 24px;
    }

    .site-header__inner {
        height: 56px;
    }

    .site-header__cart-total {
        display: none;
    }

    .shop-video-hero {
        min-height: 300px;
    }

    .shop-video-hero__title {
        font-size: 30px;
    }

    .shop-video-hero__splash {
        left: -14px;
        top: 22px;
        max-width: 170px;
    }

    .shop-section {
        padding: 64px 18px 80px;
    }

    #shopify-products-grid {
        gap: 22px 14px;
    }

    .site-footer__newsletter-fields {
        flex-direction: column;
        max-width: 100%;
    }

    .site-footer__newsletter-btn {
        width: 100%;
    }

    .shopify-pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .shopify-pagination__control {
        min-width: 92px;
    }
}

/* ==========================================================================
   Sleek shop polish
   ========================================================================== */
:root {
    --ss-yellow: #ffd600;
    --ss-red: #cf2635;
    --ss-ink: #101827;
    --ss-muted: #8c94a3;
    --ss-soft: #f6f7f9;
    --ss-line: #e8ebf0;
    --ss-shadow: 0 22px 55px rgba(16, 24, 39, 0.12);
    --ss-shadow-soft: 0 12px 28px rgba(16, 24, 39, 0.08);
}

body.page-template-page-shop,
body.page-template-page-shop-php {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 214, 0, 0.1), transparent 28%),
        linear-gradient(180deg, #fafbfc 0%, #fff 42%, #f7f8fa 100%);
    color: var(--ss-ink);
}

.site-sale-banner {
    background: linear-gradient(90deg, #b91524 0%, var(--ss-red) 50%, #b91524 100%);
}

.site-header {
    background: rgba(255, 214, 0, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 35px rgba(16, 24, 39, 0.16);
}

.site-header__inner {
    border-bottom: 0;
}

.site-nav__list a {
    position: relative;
    color: var(--ss-ink);
}

.site-nav__list a::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: var(--ss-red);
    transition: left 0.2s ease, right 0.2s ease;
}

.site-nav__list a:hover::after {
    left: 0;
    right: 0;
}

.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
    box-shadow: 0 10px 24px rgba(207, 38, 53, 0.22);
}

.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after {
    display: none;
}

.shop-video-hero {
    min-height: 455px;
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 46%, rgba(255, 214, 0, 0.2), transparent 18%),
        linear-gradient(110deg, #52565d 0%, #868a91 44%, #f4f5f7 100%);
    box-shadow: 0 24px 50px rgba(16, 24, 39, 0.18);
}

.shop-video-hero::after {
    content: '';
    position: absolute;
    inset: 24px;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    pointer-events: none;
}

.shop-video-hero__content {
    position: relative;
    z-index: 1;
}

.shop-video-hero__title {
    max-width: 540px;
    color: #fff;
    font-size: 54px;
    font-weight: 950;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.shop-video-hero__title::before {
    display: none;
}

.shop-video-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin: 0 0 28px;
    padding: 10px 22px;
    border-radius: 0;
    background: #ffd600;
    color: #101827;
    box-shadow: 10px 10px 0 rgba(207, 38, 53, 0.9);
    font-family: Raleway, Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    transform: skew(-8deg);
}

.shop-video-hero__splash {
    filter: drop-shadow(0 12px 18px rgba(16, 24, 39, 0.25));
}

.shop-section {
    background: transparent;
    padding-top: 112px;
}

.eszlwcf-section {
    position: relative;
    padding: 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--ss-shadow);
    backdrop-filter: blur(14px);
}

.eszlwcf-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: inherit;
    pointer-events: none;
}

.eszlwcf-wrapper {
    position: relative;
    z-index: 1;
    gap: 28px;
}

.eszlwcf-filter-frame {
    width: 230px;
    padding: 22px;
    border: 1px solid var(--ss-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--ss-shadow-soft);
}

.eszlwcf-products-frame {
    width: calc(100% - 258px);
}

.eszlwcf-filter-block-heading {
    color: var(--ss-ink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.eszlwcf-filter-form input[type="search"],
.eszlwcf-filter-form select,
.eszlwcf-sorting-select {
    height: 38px;
    border: 1px solid var(--ss-line);
    border-radius: 13px;
    background-color: var(--ss-soft);
    color: var(--ss-ink);
    font-weight: 700;
}

.eszlwcf-filter-form input[type="search"]:focus,
.eszlwcf-filter-form select:focus,
.eszlwcf-sorting-select:focus {
    border-color: var(--ss-yellow);
    box-shadow: 0 0 0 4px rgba(255, 214, 0, 0.22);
}

.eszlwcf-field-box input[type="checkbox"] {
    border-radius: 5px;
}

.ui-slider {
    height: 8px;
    background: #eef0f4;
}

.ui-slider .ui-slider-range {
    background: linear-gradient(90deg, var(--ss-yellow), var(--ss-red));
}

.ui-slider .ui-slider-handle {
    width: 22px;
    height: 22px;
    top: -7px;
    background: #fff;
    border: 5px solid var(--ss-red);
    box-shadow: 0 8px 18px rgba(207, 38, 53, 0.24);
}

.eszlwcf-sort-bar {
    margin-top: 0;
    margin-bottom: 24px;
}

.eszlwcf-sorting-select {
    min-width: 180px;
    background-color: #fff;
    box-shadow: var(--ss-shadow-soft);
}

#shopify-products-grid {
    column-gap: 24px;
    row-gap: 30px;
}

.eszlwcf-product {
    overflow: hidden;
    padding: 10px 10px 14px;
    border: 1px solid var(--ss-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(16, 24, 39, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.eszlwcf-product:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 214, 0, 0.85);
    box-shadow: 0 24px 55px rgba(16, 24, 39, 0.15);
}

.eszlwcf-product-thumb {
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 214, 0, 0.12), transparent 38%),
        #f2f3f5;
}

.eszlwcf-product-thumb img {
    transform: scale(1.01);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.eszlwcf-product:hover .eszlwcf-product-thumb img {
    transform: scale(1.06);
}

.eszlwcf-product-title {
    padding: 0 3px;
    color: var(--ss-ink);
    font-size: 15px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.eszlwcf-product-price {
    padding: 0 3px;
    color: var(--ss-muted);
    font-weight: 800;
}

.eszlwcf-product-price-regular ins,
.eszlwcf-product-price ins,
.eszlwcf-product-price .woocommerce-Price-amount {
    color: var(--ss-red);
    font-weight: 950;
}

.eszlwcf-product-button {
    padding: 0 3px;
}

.eszlwcf-product-button .button {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    border-radius: 13px;
    background: var(--ss-red);
    box-shadow: 0 12px 22px rgba(207, 38, 53, 0.2);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.01em;
}

.eszlwcf-product-button .button:hover {
    transform: translateY(-1px);
    opacity: 1;
    background: #b91524;
}

.eszwcf-quick-view {
    right: 18px;
    bottom: 18px;
    border-radius: 12px;
    background: var(--ss-ink);
    box-shadow: 0 12px 22px rgba(16, 24, 39, 0.22);
}

#shopify-load-more {
    margin-top: 42px;
}

.eszlwcf-load-more-btn,
#shopify-load-more a {
    border-radius: 999px;
    background: var(--ss-ink);
    box-shadow: 0 16px 30px rgba(16, 24, 39, 0.16);
    font-weight: 900;
}

.shopify-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 48px;
}

.shopify-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    background: #fff;
    color: #101827;
    box-shadow: inset 0 0 0 1px #e6e8ec, 0 10px 22px rgba(16, 24, 39, 0.07);
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.shopify-pagination a:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px rgba(255, 214, 0, 0.8), 0 16px 28px rgba(16, 24, 39, 0.12);
}

.shopify-pagination__page.is-active {
    background: #ffd600;
    box-shadow: 0 14px 24px rgba(255, 214, 0, 0.28);
}

.shopify-pagination__control {
    min-width: 104px;
}

.shopify-pagination a.is-disabled {
    pointer-events: none;
    opacity: 0.38;
    transform: none;
}

.shop-instagram {
    background:
        linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.site-footer__newsletter {
    background:
        radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.28), transparent 20%),
        linear-gradient(135deg, var(--ss-yellow), #ffdf33);
}

.site-footer__newsletter-heading {
    color: #fff;
    letter-spacing: -0.01em;
    text-shadow: 0 3px 0 rgba(16, 24, 39, 0.08);
}

.site-footer__email-input {
    height: 40px;
    background: rgba(255, 255, 255, 0.45);
}

.site-footer__newsletter-btn {
    height: 40px;
    box-shadow: 0 12px 24px rgba(207, 38, 53, 0.22);
}

.site-footer__bar {
    background: #050608;
}

.site-footer__bar-inner {
    align-items: flex-start;
}

.site-footer__bar-logo img {
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

@media (max-width: 1024px) {
    .eszlwcf-section {
        padding: 20px;
        border-radius: 24px;
    }

    .eszlwcf-filter-frame,
    .eszlwcf-products-frame {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .shop-video-hero::after {
        inset: 14px;
        border-radius: 20px;
    }

    .shop-video-hero__title {
        font-size: 34px;
    }

    .shop-video-hero__title::before {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .eszlwcf-section {
        padding: 14px;
        border-radius: 20px;
    }

    .eszlwcf-product {
        padding: 8px 8px 12px;
        border-radius: 18px;
    }

    .eszlwcf-product-thumb {
        border-radius: 14px;
    }

    .eszlwcf-product-title {
        font-size: 13px;
    }
}

/* ==========================================================================
   Full page redesign: open, larger shop layout
   ========================================================================== */
body.page-template-page-shop,
body.page-template-page-shop-php {
    background: #fbfbf8;
    color: #101827;
}

.site-sale-banner {
    height: 28px;
    background: #cf2635;
}

.site-sale-banner__text {
    font-size: 12px;
    font-weight: 950;
}

.site-header {
    top: 28px;
    background: #ffd600;
    box-shadow: 0 8px 0 rgba(16, 24, 39, 0.08), 0 18px 38px rgba(16, 24, 39, 0.14);
}

.site-header__inner {
    max-width: 1320px;
    height: 78px;
    padding: 0 32px;
}

.site-header__logo-img {
    width: 132px;
}

.site-nav__list {
    gap: 44px;
}

.site-nav__list a {
    color: #101827;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.01em;
}

.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
    min-height: 34px;
    padding: 0 28px;
    border-radius: 999px;
    background: #cf2635;
    color: #fff;
    box-shadow: 0 12px 22px rgba(207, 38, 53, 0.24);
}

.site-header__cart {
    color: #101827;
    font-size: 14px;
    font-weight: 950;
}

.site-header__cart-icon {
    width: 34px;
    height: 34px;
    color: #101827;
}

.site-header__cart-icon svg {
    width: 25px;
    height: 25px;
}

.site-header__cart-count {
    background: #cf2635;
}

.shop-video-hero {
    min-height: 560px;
    background:
        linear-gradient(105deg, rgba(16, 24, 39, 0.82) 0%, rgba(16, 24, 39, 0.5) 36%, rgba(255, 255, 255, 0.1) 100%),
        radial-gradient(circle at 68% 40%, rgba(255, 214, 0, 0.45), transparent 19%),
        linear-gradient(110deg, #4a4d52 0%, #868b92 48%, #f5f5f2 100%);
    box-shadow: none;
}

.shop-video-hero::after {
    inset: 34px;
    border-radius: 0;
    border-color: rgba(255, 255, 255, 0.28);
}

.shop-video-hero__content {
    max-width: 1320px;
    padding: 0 32px;
}

.shop-video-hero__title {
    max-width: 680px;
    font-size: clamp(58px, 6vw, 92px);
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-shadow: 0 12px 28px rgba(16, 24, 39, 0.3);
}

.shop-video-hero__title::before {
    display: none;
}

.shop-video-hero__splash {
    left: 4px;
    top: 116px;
    max-width: 360px;
}

.shop-section {
    padding: 88px 32px 120px;
    background:
        linear-gradient(180deg, #fff 0%, #fbfbf8 100%);
}

.eszlwcf-section {
    max-width: 1320px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.eszlwcf-section::before {
    display: none;
}

.eszlwcf-wrapper {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.eszlwcf-filter-frame {
    position: sticky;
    top: 130px;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.eszlwcf-filter-frame::before {
    content: 'Refine';
    display: block;
    margin-bottom: 26px;
    color: #101827;
    font-family: Raleway, Inter, system-ui, sans-serif;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -0.05em;
    line-height: 1;
}

.eszlwcf-filter-block {
    padding: 22px 0;
    margin: 0;
    border-top: 1px solid #e6e8ec;
}

.eszlwcf-filter-block:last-child {
    border-bottom: 1px solid #e6e8ec;
}

.eszlwcf-filter-block-heading {
    margin-bottom: 10px;
    font-size: 14px;
}

.eszlwcf-filter-form input[type="search"],
.eszlwcf-filter-form select,
.eszlwcf-sorting-select {
    height: 46px;
    border: 2px solid #e7e9ee;
    border-radius: 999px;
    background: #fff;
    color: #101827;
    font-size: 13px;
}

.eszlwcf-range-value-display,
.eszlwcf-field-box {
    font-size: 13px;
}

.eszlwcf-products-frame {
    width: auto;
    min-width: 0;
}

.eszlwcf-products-frame::before {
    content: 'Shop the collection';
    display: block;
    margin: 0 0 6px;
    color: #101827;
    font-family: Raleway, Inter, system-ui, sans-serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.eszlwcf-products-frame::after {
    display: none;
    content: none;
}

.eszlwcf-sort-bar {
    justify-content: flex-end;
    margin: -74px 0 42px;
}

.eszlwcf-sorting-select {
    min-width: 230px;
    box-shadow: 0 14px 30px rgba(16, 24, 39, 0.08);
}

#shopify-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px 32px;
}

.eszlwcf-product {
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.eszlwcf-product:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.eszlwcf-product-thumb {
    padding-bottom: 110%;
    margin-bottom: 18px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 22% 16%, rgba(255, 214, 0, 0.18), transparent 20%),
        #f1f2f4;
    box-shadow: 0 20px 46px rgba(16, 24, 39, 0.11);
}

.eszlwcf-product:hover .eszlwcf-product-thumb {
    box-shadow: 0 30px 62px rgba(16, 24, 39, 0.18);
}

.eszlwcf-product-title {
    min-height: auto;
    padding: 0;
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.08;
}

.eszlwcf-product-price {
    padding: 0;
    margin-bottom: 14px;
    font-size: 16px;
}

.eszlwcf-product-button {
    padding: 0;
}

.eszlwcf-product-button .button {
    width: auto;
    min-height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 13px;
}

.eszwcf-quick-view {
    right: 18px;
    bottom: 18px;
    opacity: 1;
    transform: translateY(6px);
}

.eszlwcf-product:hover .eszwcf-quick-view {
    transform: translateY(0);
}

.shop-instagram {
    padding: 46px 32px 76px;
    background: #fbfbf8;
}

.shop-instagram__inner {
    max-width: 1320px;
    margin: 0 auto;
}

.shop-instagram__profile {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
}

.shop-instagram__avatar {
    margin: 0;
}

.shop-instagram__handle {
    font-size: 15px;
}

.shop-instagram__follow-btn {
    border-radius: 999px;
    padding: 8px 18px;
    color: #101827;
    font-weight: 900;
}

.site-footer {
    background: #06070a;
    color: #fff;
    padding: 0;
}

.site-footer__newsletter {
    position: relative;
    overflow: hidden;
    padding: 28px 32px;
    background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.36), transparent 22%),
        radial-gradient(circle at 8% 86%, rgba(207, 38, 53, 0.13), transparent 24%),
        linear-gradient(100deg, #ffd600 0%, #ffdf3d 52%, #ffe86a 100%);
}

.site-footer__newsletter-inner {
    max-width: 1320px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(420px, 0.9fr);
    align-items: center;
    gap: 36px;
}

.site-footer__newsletter-content {
    display: contents;
    max-width: none;
}

.site-footer__newsletter-label {
    display: none;
}

.site-footer__newsletter-heading {
    grid-column: 1;
    grid-row: 1;
    max-width: 900px;
    color: #fff;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0;
    text-shadow: 0 4px 0 rgba(16, 24, 39, 0.08);
}

.site-footer__newsletter-fields {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 100%;
    max-width: none;
    align-items: center;
    gap: 12px;
    padding: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 12px 28px rgba(16, 24, 39, 0.08);
    backdrop-filter: blur(12px);
}

.site-footer__email-input,
.site-footer__newsletter-btn {
    height: 38px;
    font-size: 13px;
}

.site-footer__email-input {
    border: 0;
    background: transparent;
}

.site-footer__email-input:focus {
    border: 0;
    box-shadow: none;
}

.site-footer__newsletter-btn {
    min-width: 150px;
}

.site-footer__bar {
    padding: 54px 32px 34px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 214, 0, 0.08), transparent 20%),
        radial-gradient(circle at 84% 70%, rgba(207, 38, 53, 0.1), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
        #050608;
    background-size: auto, auto, 18px 18px, auto;
}

.site-footer__bar-inner {
    max-width: 1320px;
    align-items: center;
}

.site-footer__bar-logo img {
    width: 130px;
}

.site-footer__nav-list {
    gap: 12px 30px;
}

.site-footer__nav-list a {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.site-footer__social-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.site-footer__copy-bar {
    padding: 20px 32px 28px;
}

.site-footer__copy {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .eszlwcf-wrapper {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 30px;
    }

    #shopify-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        padding: 0 20px;
    }

    .eszlwcf-wrapper {
        display: block;
    }

    .eszlwcf-filter-frame {
        position: static;
        display: none;
        margin-bottom: 32px;
    }

    .eszlwcf-filter-frame.filter-open {
        display: block;
    }

    .eszlwcf-sort-bar {
        justify-content: flex-start;
        margin: 0 0 28px;
    }
}

@media (max-width: 640px) {
    .site-header__inner {
        height: 64px;
    }

    .shop-video-hero {
        min-height: 390px;
    }

    .shop-video-hero__title {
        font-size: 44px;
    }

    .shop-video-hero__eyebrow {
        margin-bottom: 18px;
        padding: 8px 16px;
        font-size: 11px;
        box-shadow: 7px 7px 0 rgba(207, 38, 53, 0.9);
    }

    .shop-section {
        padding: 58px 18px 86px;
    }

    #shopify-products-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .eszlwcf-product-title {
        font-size: 19px;
    }
}

/* ==========================================================================
   Filter redesign: top control deck
   ========================================================================== */
.eszlwcf-wrapper {
    display: block;
}

.eszlwcf-filter-frame {
    position: relative;
    top: auto;
    width: 100%;
    margin-bottom: 54px;
    padding: 28px;
    border: 0;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 214, 0, 0.16), rgba(255, 255, 255, 0) 36%),
        #fff;
    box-shadow: 0 22px 48px rgba(16, 24, 39, 0.1);
}

.eszlwcf-filter-frame::before {
    content: 'Find your fit';
    margin: 0 0 6px;
    color: #101827;
    font-size: clamp(26px, 3vw, 42px);
    letter-spacing: -0.055em;
}

.eszlwcf-filter-frame::after {
    content: 'Search, filter and sort the latest Simian Saboteur pieces.';
    display: block;
    margin-bottom: 24px;
    color: #7d8593;
    font-size: 14px;
    font-weight: 800;
}

.eszlwcf-filter-form {
    display: grid;
    grid-template-columns: minmax(220px, 1.25fr) minmax(240px, 1fr) minmax(170px, 0.8fr) minmax(220px, 1fr);
    gap: 18px;
    align-items: start;
}

.eszlwcf-filter-block {
    min-height: 100%;
    padding: 18px;
    border: 1px solid #edf0f4;
    border-radius: 22px;
    background: rgba(246, 247, 249, 0.78);
}

.eszlwcf-filter-block:last-child {
    border-bottom: 1px solid #edf0f4;
}

.eszlwcf-filter-heading-box {
    margin-bottom: 12px;
}

.eszlwcf-filter-block-heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.07em;
}

.eszlwcf-filter-block-heading::before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #ffd600;
    box-shadow: 0 0 0 4px rgba(255, 214, 0, 0.22);
}

.esz-product-search-filter-box {
    grid-column: span 1;
}

._price-filter-box {
    grid-column: span 1;
}

._stock_status-filter-box {
    grid-column: span 1;
}

.product_cat-filter-box,
.eszlwcf-filter-block:has(#shopify-filter-categories) {
    grid-column: span 1;
}

#shopify-filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#shopify-filter-categories .eszlwcf-field-box {
    margin: 0;
    padding: 8px 10px;
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 0 0 1px #e8ebf0;
}

.eszlwcf-field-box {
    font-weight: 800;
}

.eszlwcf-filter-form input[type="search"],
.eszlwcf-filter-form select {
    box-shadow: inset 0 0 0 1px rgba(16, 24, 39, 0.02);
}

.eszlwcf-products-frame {
    width: 100%;
}

.eszlwcf-products-frame::before,
.eszlwcf-products-frame::after {
    max-width: 720px;
}

.eszlwcf-sort-bar {
    justify-content: flex-end;
    margin: -52px 0 44px;
}

.eszlwcf-filters-open-button-container {
    display: none;
}

@media (max-width: 1180px) {
    .eszlwcf-filter-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eszlwcf-sort-bar {
        margin-top: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .eszlwcf-filter-frame {
        padding: 20px;
        border-radius: 22px;
    }

    .eszlwcf-filter-form {
        grid-template-columns: 1fr;
    }

    .eszlwcf-filter-block,
    .product_cat-filter-box,
    .eszlwcf-filter-block:has(#shopify-filter-categories) {
        grid-column: auto;
    }
}

/* Slim filter bar + four-column products */
.eszlwcf-filter-frame {
    margin-bottom: 38px;
    padding: 16px 18px;
    border-radius: 18px;
}

.eszlwcf-filter-frame::before {
    font-size: clamp(20px, 2vw, 28px);
    margin-bottom: 10px;
}

.eszlwcf-filter-frame::after {
    margin-bottom: 24px;
    font-size: 12px;
}

.eszlwcf-filter-form {
    grid-template-columns: minmax(220px, 0.9fr) minmax(340px, 1.35fr) minmax(260px, 1fr);
    gap: 18px;
}

.eszlwcf-filter-block {
    padding: 12px 14px;
    border-radius: 14px;
}

.eszlwcf-filter-heading-box {
    margin-bottom: 14px;
}

._stock_status-filter-box {
    display: none !important;
}

._price-filter-box .eszlwcf-filter-filed-wrapper,
._price-filter-box .eszlwcf-field-box {
    display: block;
    width: 100%;
}

._price-filter-box .eszlwcf-price-range {
    width: 100%;
    margin-top: 12px;
}

.eszlwcf-range-value-display {
    display: block;
    width: 100%;
    margin-bottom: 8px;
}

#shopify-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px 24px;
}

.eszlwcf-product-title {
    font-size: 16px;
}

.eszlwcf-product-price {
    font-size: 16px;
}

@media (max-width: 1180px) {
    #shopify-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .eszlwcf-filter-form {
        grid-template-columns: 1fr;
    }

    #shopify-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    #shopify-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .site-footer__newsletter-inner {
        display: block;
    }

    .site-footer__newsletter-content {
        display: block;
    }

    .site-footer__newsletter-heading {
        margin-bottom: 24px;
    }

    .site-footer__newsletter-fields {
        display: flex;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .site-footer__newsletter {
        padding: 28px 20px;
    }

    .site-footer__newsletter-fields {
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
        padding: 10px;
    }

    .site-footer__newsletter-btn {
        width: 100%;
    }
}

/* ==========================================================================
   Product details page
   ========================================================================== */
.sp-page {
    background: #fbfbf8;
    color: #101827;
}

.sp-page .shop-video-hero {
    min-height: 460px;
}

.sp-page .shop-video-hero__title {
    max-width: 880px;
    font-size: clamp(46px, 5.6vw, 82px);
}

.sp-page .shop-video-hero__splash {
    top: 105px;
}

.sp-product-section {
    padding: 160px 32px 92px;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 214, 0, 0.09), transparent 22%),
        linear-gradient(180deg, #fff 0%, #fbfbf8 100%);
}

.sp-loader,
.sp-error {
    max-width: 1320px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(16, 24, 39, 0.08);
    color: #101827;
    font-weight: 900;
    text-align: center;
}

.sp-product-wrapper,
.sp-product-shell {
    max-width: 1320px;
    margin: 0 auto;
}

.sp-product-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 58px;
    align-items: start;
}

.sp-gallery-col {
    position: sticky;
    top: 132px;
}

.sp-main-image {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1.06;
    border-radius: 34px;
    background:
        radial-gradient(circle at 20% 14%, rgba(255, 214, 0, 0.18), transparent 20%),
        #f1f2f4;
    box-shadow: 0 26px 62px rgba(16, 24, 39, 0.13);
}

.sp-main-image::before {
    content: 'Simian Saboteur';
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 1;
    padding: 9px 15px;
    border-radius: 999px;
    background: #ffd600;
    color: #101827;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sp-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sp-main-image__empty {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f6f8, #e9ebef);
}

.sp-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.sp-thumb {
    overflow: hidden;
    aspect-ratio: 1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(16, 24, 39, 0.08);
    cursor: pointer;
}

.sp-thumb.is-active {
    border-color: #ffd600;
    box-shadow: 0 16px 30px rgba(255, 214, 0, 0.22);
}

.sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-summary-col {
    padding: 10px 0 0;
}

.sp-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #7d8593;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sp-breadcrumb a {
    color: #101827;
}

.sp-summary-eyebrow,
.sp-section-kicker {
    display: inline-flex;
    width: max-content;
    margin: 0 0 16px;
    padding: 8px 14px;
    background: #ffd600;
    color: #101827;
    box-shadow: 7px 7px 0 rgba(207, 38, 53, 0.9);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transform: skew(-8deg);
}

.sp-title {
    margin: 0 0 18px;
    color: #101827;
    font-family: Raleway, Inter, system-ui, sans-serif;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 0.93;
    text-transform: uppercase;
}

.sp-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 34px;
    font-weight: 950;
}

.sp-price__compare {
    color: #a8afba;
    font-size: 20px;
}

/* ── Size Guide Table ────────────────────────────────────────────────────── */
.sp-accordion-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e7e9ee;
}

/* First tbody row acts as the header (SIZES / M / L / XL …) */
.sp-accordion-content table tbody tr:first-child td {
    background-color: #101827;
    color: #ffffff;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 10px;
    border: none;
}

/* First cell of the header row — left-aligned label column */
.sp-accordion-content table tbody tr:first-child td:first-child {
    text-align: left;
    padding-left: 16px;
    background-color: #0a0a0a;
}

/* Data rows */
.sp-accordion-content table tbody tr:not(:first-child) td {
    padding: 11px 10px;
    text-align: center;
    color: #4b5563;
    font-weight: 600;
    border-bottom: 1px solid #e7e9ee;
    border-right: 1px solid #e7e9ee;
}

/* Measurement name — first column of data rows */
.sp-accordion-content table tbody tr:not(:first-child) td:first-child {
    text-align: left;
    padding-left: 16px;
    color: #101827;
    font-weight: 700;
    background-color: #f8f9fb;
    border-right: 1px solid #e7e9ee;
}

/* Zebra striping on data rows */
.sp-accordion-content table tbody tr:not(:first-child):nth-child(even) td {
    background-color: #f8f9fb;
}

.sp-accordion-content table tbody tr:not(:first-child):nth-child(even) td:first-child {
    background-color: #f0f1f4;
}

/* Remove border from last row */
.sp-accordion-content table tbody tr:last-child td {
    border-bottom: none;
}

.sp-price__current {
    color: #cf2635;
}

.sp-sale-label,
.sp-availability {
    width: max-content;
    margin: 0 0 22px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 214, 0, 0.2);
    color: #101827;
    font-size: 12px;
    font-weight: 900;
}

.sp-availability.is-in-stock {
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
}

.sp-availability.is-out-of-stock {
    background: rgba(207, 38, 53, 0.12);
    color: #991b1b;
}

.sp-options {
    display: grid;
    gap: 20px;
    margin: 30px 0 26px;
}

.sp-option-label {
    display: block;
    margin-bottom: 10px;
    color: #7d8593;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sp-option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sp-option-btn {
    min-width: 54px;
    height: 44px;
    padding: 0 18px;
    border: 2px solid #e7e9ee;
    border-radius: 14px;
    background: #fff;
    color: #101827;
    box-shadow: 0 10px 22px rgba(16, 24, 39, 0.06);
    font-weight: 950;
    cursor: pointer;
}

.sp-option-btn.is-selected {
    border-color: #ffd600;
    background: #ffd600;
    box-shadow: 0 14px 26px rgba(255, 214, 0, 0.28);
}

.sp-atc-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px;
    margin: 24px 0 28px;
}

.sp-quantity {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    height: 52px;
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 0 0 2px #e7e9ee;
}

.sp-qty-btn,
#sp-qty {
    border: 0;
    background: transparent;
    color: #101827;
    font-weight: 950;
    text-align: center;
}

.sp-qty-btn {
    cursor: pointer;
    font-size: 18px;
}

#sp-qty {
    width: 100%;
    appearance: textfield;
}

#sp-qty::-webkit-outer-spin-button,
#sp-qty::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.sp-cart-btn {
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: #cf2635;
    color: #fff;
    box-shadow: 0 16px 30px rgba(207, 38, 53, 0.22);
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
}

.sp-cart-btn:hover {
    background: #b91524;
}

.sp-cart-btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sp-summary-text {
    padding: 22px;
    border-left: 4px solid #ffd600;
    border-radius: 0 18px 18px 0;
    background: rgba(255, 214, 0, 0.08);
    color: #4b5563;
    font-weight: 700;
    line-height: 1.65;
}

.sp-summary-text p {
    margin: 0;
}

.sp-details-section,
.sp-related-section {
    padding: 92px 32px;
    background: #fbfbf8;
}

.sp-details-inner,
.sp-related-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.sp-details-inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
    gap: 64px;
    align-items: start;
}

.sp-section-title {
    margin: 0;
    color: #101827;
    font-family: Raleway, Inter, system-ui, sans-serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-transform: uppercase;
}

.sp-details-grid {
    display: grid;
    gap: 14px;
}

.sp-accordion-item {
    overflow: hidden;
    border: 1px solid #e7e9ee;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 24, 39, 0.06);
}

.sp-accordion-summary {
    padding: 20px 24px;
    color: #101827;
    font-weight: 950;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sp-accordion-content {
    padding: 0 24px 22px;
    color: #4b5563;
    font-weight: 700;
    line-height: 1.7;
}

.sp-accordion-content p {
    margin: 0 0 12px;
}

.sp-accordion-content p:last-child {
    margin-bottom: 0;
}

.sp-related-header {
    margin-bottom: 34px;
}

.sp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 24px;
}

.sp-related-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.sp-related-thumb {
    overflow: hidden;
    aspect-ratio: 1 / 1.1;
    margin-bottom: 16px;
    border-radius: 26px;
    background: #f1f2f4;
    box-shadow: 0 18px 42px rgba(16, 24, 39, 0.1);
}

.sp-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sp-related-card:hover .sp-related-thumb img {
    transform: scale(1.06);
}

.sp-related-type {
    margin: 0 0 6px;
    color: #7d8593;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sp-related-title {
    margin: 0 0 8px;
    color: #101827;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.1;
}

.sp-related-price {
    display: flex;
    gap: 8px;
    color: #cf2635;
    font-size: 13px;
    font-weight: 950;
}

.sp-related-price del {
    color: #a8afba;
}

.sp-cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(16, 24, 39, 0.48);
    backdrop-filter: blur(5px);
}

.sp-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    width: min(440px, 94vw);
    height: 100vh;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 214, 0, 0.14), transparent 22%),
        #fff;
    color: #101827;
    box-shadow: -28px 0 70px rgba(16, 24, 39, 0.24);
    transform: translateX(105%);
    transition: transform 0.28s ease;
}

.sp-cart-drawer.is-open {
    transform: translateX(0);
}

.sp-cart-open {
    overflow: hidden;
}

.sp-cart-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    border-bottom: 1px solid #e7e9ee;
}

.sp-cart-drawer__eyebrow {
    width: max-content;
    margin: 0 0 8px;
    padding: 7px 12px;
    background: #ffd600;
    color: #101827;
    box-shadow: 5px 5px 0 rgba(207, 38, 53, 0.9);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: skew(-8deg);
}

.sp-cart-drawer__header h2 {
    margin: 0;
    color: #101827;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 1;
    text-transform: uppercase;
}

.sp-cart-drawer__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #101827;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.sp-cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 22px 28px;
}

.sp-cart-drawer__empty {
    margin: 0;
    padding: 26px;
    border-radius: 18px;
    background: #f6f7f9;
    color: #7d8593;
    font-weight: 800;
    text-align: center;
}

.sp-cart-line {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #edf0f4;
}

.sp-cart-line__image {
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 16px;
    background: #f1f2f4;
}

.sp-cart-line__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-cart-line__body h3 {
    margin: 0 0 6px;
    color: #101827;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.12;
}

.sp-cart-line__variant,
.sp-cart-line__meta {
    margin: 0;
    color: #7d8593;
    font-size: 12px;
    font-weight: 800;
}

.sp-cart-line__meta {
    margin-top: 8px;
    color: #cf2635;
}

.sp-cart-line__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.sp-cart-line__qty {
    display: inline-grid;
    grid-template-columns: 30px 32px 30px;
    align-items: center;
    height: 32px;
    border-radius: 999px;
    background: #f6f7f9;
    box-shadow: inset 0 0 0 1px #e7e9ee;
}

.sp-cart-line__qty-btn {
    width: 30px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #101827;
    font-size: 16px;
    font-weight: 950;
    cursor: pointer;
}

.sp-cart-line__qty span {
    color: #101827;
    font-size: 12px;
    font-weight: 950;
    text-align: center;
}

.sp-cart-line__remove {
    border: 0;
    background: transparent;
    color: #cf2635;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
}

.sp-cart-line__qty-btn:disabled,
.sp-cart-line__remove:disabled {
    cursor: wait;
    opacity: 0.5;
}

.sp-cart-drawer__footer {
    padding: 24px 28px 28px;
    border-top: 1px solid #e7e9ee;
    background: rgba(246, 247, 249, 0.72);
}

.sp-cart-drawer__subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #101827;
    font-weight: 950;
}

.sp-cart-drawer__checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 999px;
    background: #cf2635;
    color: #fff;
    box-shadow: 0 16px 28px rgba(207, 38, 53, 0.22);
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
}

.sp-cart-drawer__checkout:hover {
    background: #b91524;
    color: #fff;
}

.sp-cart-drawer__checkout.is-disabled {
    pointer-events: none;
    opacity: 0.45;
}

.sp-cart-drawer__note {
    margin: 12px 0 0;
    color: #7d8593;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 1100px) {
    .sp-product-shell {
        grid-template-columns: 1fr;
    }

    .sp-gallery-col {
        position: static;
    }

    .sp-details-inner {
        grid-template-columns: 1fr;
    }

    .sp-details-mark {
        justify-content: flex-start;
    }

    .sp-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sp-page .shop-video-hero__title {
        font-size: 40px;
    }

    .sp-product-section {
        padding: 130px 18px 56px;
    }

    .sp-details-section,
    .sp-related-section {
        padding: 56px 18px;
    }

    .sp-main-image {
        border-radius: 22px;
    }

    .sp-thumbnails {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sp-title {
        font-size: 38px;
    }

    .sp-atc-row {
        grid-template-columns: 1fr;
    }

    .sp-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   SABOTEUR MOBILE FILTERS POP-UP DRAWER OVERRIDES
═════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    /* Backdrop positioning and style */
    .eszlwcf-filter-backdrop {
        display: none;
        position: fixed !important;
        inset: 0 !important;
        z-index: 999998 !important;
        background: rgba(16, 24, 39, 0.58) !important;
        backdrop-filter: blur(5px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease !important;
    }

    .eszlwcf-filter-backdrop.active {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    body.filter-open-active {
        overflow: hidden !important;
    }

    /* Clear and bold filter popout drawer style */
    .eszlwcf-filter-frame {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: min(350px, 86vw) !important;
        height: 100vh !important;
        background-color: #fbfbf8 !important; /* Creamy color base */
        z-index: 999999 !important;
        box-shadow: 10px 0 35px rgba(16, 24, 39, 0.28) !important;
        padding: 30px 24px !important;
        box-sizing: border-box !important;
        overflow-y: auto !important;
        display: block !important;
        transform: translateX(-105%) !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        border-right: 4px solid #101827 !important;
    }

    .eszlwcf-filter-frame.filter-open {
        display: block !important;
        transform: translateX(0) !important;
    }

    /* Container holding popup close options */
    .eszlwcf-widget-close-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-bottom: 16px !important;
        margin-bottom: 24px !important;
        border-bottom: 3px solid #101827 !important;
    }

    .eszlwcf-widget-close-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 32px !important;
        height: 32px !important;
        cursor: pointer !important;
        font-size: 32px !important;
        color: #cf2635 !important;
        text-decoration: none !important;
        font-weight: 900 !important;
        line-height: 1 !important;
    }

    .wpc-widget-popup-title {
        font-family: 'Space Grotesk', system-ui, sans-serif !important;
        font-weight: 900 !important;
        font-size: 18px !important;
        color: #101827 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
    }

    /* Clean mobile filter toggle button styling */
    .eszlwcf-filters-open-button-container {
        display: block !important;
        text-align: center !important;
        margin: 54px 0 32px !important;
    }

    .eszlwcf-filters-open-widget {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #ffd600 !important; /* Yellow theme */
        color: #101827 !important;
        border: 3px solid #101827 !important;
        padding: 12px 28px !important;
        font-weight: 900 !important;
        font-family: 'Space Grotesk', system-ui, sans-serif !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        box-shadow: 6px 6px 0px #cf2635 !important; /* Crimson retro flat offset shadow */
        transition: all 0.15s ease !important;
        text-decoration: none !important;
    }

    .eszlwcf-filters-open-widget:hover,
    .eszlwcf-filters-open-widget:focus {
        transform: translate(2px, 2px) !important;
        box-shadow: 4px 4px 0px #cf2635 !important;
        background-color: #ffd600 !important;
        color: #101827 !important;
    }

    /* Fix stacking context on mobile to prevent navbar from covering the backdrop and filter drawer */
    body.filter-open-active #site-header {
        z-index: 10 !important;
    }

    body.filter-open-active #content,
    body.filter-open-active #primary,
    body.filter-open-active #main,
    body.filter-open-active .shop-section,
    body.filter-open-active .eszlwcf-section {
        position: relative !important;
        z-index: 99999 !important;
    }

    /* Prevent wrapper from forming a stacking context on mobile so the filter drawer stays above the backdrop */
    body.filter-open-active .eszlwcf-wrapper {
        position: static !important;
        transform: none !important;
        will-change: auto !important;
        filter: none !important;
        perspective: none !important;
    }
}
