/* General Woo Product Buy Box */
.spbb-buybox,
.spbb-buybox *,
.gwpbb-product-display,
.gwpbb-product-display *,
.gwpbb-lightbox,
.gwpbb-lightbox * {
    box-sizing: border-box;
}

.spbb-buybox {
    --spbb-primary: #111111;
    --spbb-primary-dark: #050505;
    --spbb-primary-rgb: 17, 17, 17;
    --spbb-secondary: #2a2a2a;
    --spbb-secondary-dark: #171717;
    --spbb-secondary-rgb: 42, 42, 42;
    --spbb-text: #171717;
    --spbb-muted: #737373;
    --spbb-line: #e6e6e6;
    --spbb-soft: #f7f7f7;
    --spbb-surface: #ffffff;
    --spbb-discount-bg: #e11d2e;
    --spbb-discount-text: #ffffff;
    --spbb-stock: #17803d;
    --spbb-out-stock: #c20f1a;
    --gwpbb-gallery-button-bg: #111111;
    --gwpbb-gallery-button-text: #ffffff;
    --gwpbb-thumb-active: #111111;
    --gwpbb-atc-overlay: rgba(0, 0, 0, .48);
    --gwpbb-atc-box: #ffffff;
    --gwpbb-atc-title: #111111;
    --gwpbb-atc-text: #666666;
    --gwpbb-atc-success-bg: #16a34a;
    --gwpbb-atc-success-color: #ffffff;
    --gwpbb-atc-close-bg: #f1f1f1;
    --gwpbb-atc-close-color: #111111;
    --gwpbb-atc-continue-bg: #f1f1f1;
    --gwpbb-atc-continue-color: #111111;
    --gwpbb-atc-cart-bg: #111111;
    --gwpbb-atc-cart-color: #ffffff;
    direction: rtl;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--spbb-line);
    border-radius: 20px;
    background: var(--spbb-surface);
    color: var(--spbb-text);
    box-shadow: 0 14px 40px rgba(17, 17, 17, .045);
}

.spbb-buybox__intro {
    margin: 0 0 18px;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--spbb-line);
}

.spbb-buybox__title {
    margin: 0;
    color: #111;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.75;
    text-align: right;
}

.spbb-buybox__short-description {
    margin-top: 10px;
    color: #555;
    font-size: 13px;
    line-height: 1.9;
}

.spbb-buybox__short-description > :first-child { margin-top: 0; }
.spbb-buybox__short-description > :last-child { margin-bottom: 0; }

.spbb-buybox__base-price { display: none !important; }

/* Product meta */
.spbb-buybox__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0 0;
}

.spbb-buybox__meta-item {
    display: flex;
    min-width: 0;
    min-height: 40px;
    margin: 0;
    padding: 8px 11px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid var(--spbb-line);
    border-radius: 10px;
    background: #fff;
}

.spbb-buybox__meta-item dt {
    margin: 0;
    color: var(--spbb-muted);
    font-size: 10px;
    font-weight: 650;
    white-space: nowrap;
}

.spbb-buybox__meta-item dd {
    min-width: 0;
    margin: 0;
    color: #111;
    font-size: 11px;
    font-weight: 800;
    text-align: left;
    overflow-wrap: anywhere;
}

.spbb-buybox__meta-item dd a {
    color: #111;
    text-decoration: none;
}

.spbb-buybox__meta-item dd a:hover { text-decoration: underline; text-underline-offset: 3px; }
.spbb-buybox__meta-item--stock dd { color: var(--spbb-stock); }
.spbb-buybox__meta-item--stock.is-out-of-stock dd { color: var(--spbb-out-stock); }
.spbb-buybox__meta-item--stock.is-backorder dd { color: #9a6700; }

/* Ordered product specification table */
.spbb-buybox__specifications {
    margin-top: 14px;
}

.spbb-buybox__specifications-title {
    margin-bottom: 7px;
    color: #111;
    font-size: 12px;
    font-weight: 850;
}

.spbb-buybox__specifications-scroll {
    overflow: hidden;
    border: 1px solid var(--spbb-line);
    border-radius: 12px;
    background: #fff;
}

.spbb-buybox__specifications-table {
    width: 100%;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    table-layout: fixed;
    background: #fff !important;
}

.spbb-buybox__specifications-table tr,
.spbb-buybox__specifications-table th,
.spbb-buybox__specifications-table td {
    border: 0 !important;
}

.spbb-buybox__specifications-table tr + tr {
    border-top: 1px solid #ededed !important;
}

.spbb-buybox__specifications-table tr:nth-child(odd),
.spbb-buybox__specifications-table tr:nth-child(odd) th,
.spbb-buybox__specifications-table tr:nth-child(odd) td {
    background: #ffffff !important;
}

.spbb-buybox__specifications-table tr:nth-child(even),
.spbb-buybox__specifications-table tr:nth-child(even) th,
.spbb-buybox__specifications-table tr:nth-child(even) td {
    background: #f3f4f6 !important;
}

.spbb-buybox__specifications-table th,
.spbb-buybox__specifications-table td {
    padding: 9px 11px !important;
    vertical-align: middle !important;
    line-height: 1.65 !important;
}

.spbb-buybox__specifications-table th {
    width: 36%;
    background: transparent !important;
    color: #777 !important;
    font-size: 10px !important;
    font-weight: 650 !important;
    text-align: right !important;
}

.spbb-buybox__specifications-table td {
    color: #111 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-align: right !important;
    overflow-wrap: anywhere;
}

/* Variation selectors */
.spbb-buybox .variations_form,
.spbb-buybox form.cart { margin: 0 !important; }

.spbb-buybox table.variations,
.spbb-buybox table.variations tbody,
.spbb-buybox table.variations tr,
.spbb-buybox table.variations th,
.spbb-buybox table.variations td {
    display: block;
    width: 100%;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.spbb-buybox table.variations tr + tr { margin-top: 18px; }
.spbb-buybox table.variations th.label { margin-bottom: 9px; }

.spbb-buybox table.variations th.label label {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
}

.spbb-buybox .spbb-selection-status {
    display: inline-flex;
    min-height: 25px;
    padding: 3px 7px;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    color: #8a8a8a;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.spbb-buybox .spbb-selection-status.has-selection {
    background: #f1f1f1;
    color: #111;
}

.spbb-buybox .spbb-selection-status__label { font-size: 9px; font-weight: 650; }
.spbb-buybox .spbb-selection-status__value { color: #111; font-size: 11px; font-weight: 850; }

.spbb-buybox select.spbb-native-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.spbb-buybox .spbb-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(66px, 1fr));
    gap: 9px;
}

.spbb-buybox .spbb-option {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    min-height: 44px;
    margin: 0 !important;
    padding: 8px 11px !important;
    border: 1px solid #dedede !important;
    border-radius: 10px !important;
    outline: 0 !important;
    background: #fff !important;
    color: #111 !important;
    font: inherit !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    line-height: 1.25 !important;
    text-align: center;
    box-shadow: none !important;
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease, color .16s ease, transform .16s ease;
}

.spbb-buybox .spbb-option:hover:not(:disabled) {
    border-color: #111 !important;
    transform: translateY(-1px);
}

.spbb-buybox .spbb-option.is-selected {
    border-color: var(--spbb-primary) !important;
    background: var(--spbb-primary) !important;
    color: #fff !important;
}

.spbb-buybox .spbb-option:disabled,
.spbb-buybox .spbb-option.is-disabled {
    border-color: #ececec !important;
    background: #f6f6f6 !important;
    color: #b8b8b8 !important;
    text-decoration: line-through;
    cursor: not-allowed;
    transform: none;
}

.spbb-buybox .reset_variations {
    display: inline-flex !important;
    width: auto !important;
    min-height: 28px;
    margin-top: 9px !important;
    padding: 4px 8px !important;
    align-items: center;
    border: 1px solid #e8e8e8 !important;
    border-radius: 8px !important;
    background: #fafafa !important;
    color: #777 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.spbb-buybox .variations_form.gwpbb-single-locked-choice .reset_variations { display: none !important; }

.spbb-buybox .single_variation_wrap { margin-top: 14px; }
.spbb-buybox .woocommerce-variation { margin: 0; padding: 0; background: transparent; }
.spbb-buybox .woocommerce-variation-description,
.spbb-buybox .woocommerce-variation-price { display: none !important; }
.spbb-buybox .woocommerce-variation-availability { margin: 0 0 8px; }
.spbb-buybox .stock { margin: 0 !important; color: var(--spbb-stock) !important; font-size: 12px !important; font-weight: 750; }
.spbb-buybox .stock.out-of-stock,
.spbb-buybox .woocommerce-variation-availability .out-of-stock { color: var(--spbb-out-stock) !important; }

/* Price + quantity + add to cart */
.spbb-buybox .spbb-purchase-row {
    direction: ltr;
    display: grid !important;
    grid-template-columns: minmax(135px, 170px) 112px minmax(130px, 1fr);
    grid-template-areas: 'button qty price';
    gap: 10px;
    width: 100%;
    margin-top: 14px !important;
    align-items: stretch;
}

.spbb-buybox .spbb-selected-price {
    grid-area: price;
    direction: rtl;
    display: flex;
    min-width: 0;
    min-height: 48px;
    padding: 7px 12px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--spbb-line);
    border-radius: 11px;
    background: var(--spbb-soft);
    text-align: right;
}

.spbb-buybox .spbb-selected-price__label {
    margin-bottom: 2px;
    color: #858585;
    font-size: 9px;
    font-weight: 650;
}

.spbb-buybox .spbb-selected-price__value {
    color: var(--spbb-primary);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.spbb-buybox .spbb-selected-price__value .price,
.spbb-buybox .spbb-selected-price__value .woocommerce-Price-amount,
.spbb-buybox .spbb-selected-price__value .woocommerce-Price-currencySymbol,
.spbb-buybox .spbb-selected-price__value bdi {
    color: inherit !important;
    font: inherit !important;
}

.spbb-buybox .spbb-selected-price__value del { margin-left: 6px; color: #9b9b9b; font-size: 11px; font-weight: 500; }
.spbb-buybox .spbb-selected-price__value ins { color: inherit; text-decoration: none; }
.spbb-buybox .spbb-selected-price__discount {
    display: inline-flex;
    width: max-content;
    margin-top: 4px;
    padding: 2px 7px;
    border-radius: 999px;
    background: var(--spbb-discount-bg);
    color: var(--spbb-discount-text);
    font-size: 9px;
    font-weight: 850;
    line-height: 1.5;
}
.spbb-buybox .spbb-selected-price__availability { margin-top: 4px; color: var(--spbb-out-stock); font-size: 10px; font-weight: 850; }
.spbb-buybox .spbb-selected-price.is-unavailable.has-price .spbb-selected-price__value { color: #111; }
.spbb-buybox .spbb-selected-price.is-unavailable:not(.has-price) .spbb-selected-price__value { color: #c20f1a; font-size: 12px; font-weight: 800; }

.spbb-buybox .spbb-qty {
    grid-area: qty;
    direction: rtl;
    display: grid !important;
    grid-template-columns: 34px 44px 34px !important;
    grid-template-rows: 48px !important;
    grid-template-areas: 'plus value minus';
    width: 112px !important;
    min-width: 112px !important;
    height: 48px !important;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 11px;
    background: #fff;
}

.spbb-buybox .gwpbb-spbb-qty__plus { grid-area: plus; }
.spbb-buybox .gwpbb-spbb-qty__minus { grid-area: minus; }

.spbb-buybox .gwpbb-spbb-qty__button {
    appearance: none;
    -webkit-appearance: none;
    display: grid !important;
    place-items: center;
    width: 34px !important;
    min-width: 34px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font: inherit !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    cursor: pointer;
}

.spbb-buybox .gwpbb-spbb-qty__button:hover:not(:disabled) { background: #f5f5f5 !important; }
.spbb-buybox .gwpbb-spbb-qty__button:disabled { color: #c5c5c5 !important; cursor: not-allowed; }

.spbb-buybox .spbb-qty .quantity {
    grid-area: value;
    display: block !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    background: #fff !important;
}

.spbb-buybox .spbb-qty .quantity > .plus,
.spbb-buybox .spbb-qty .quantity > .minus,
.spbb-buybox .spbb-qty .quantity > .qty-plus,
.spbb-buybox .spbb-qty .quantity > .qty-minus,
.spbb-buybox .spbb-qty .quantity > button,
.spbb-buybox .spbb-qty .quantity > input[type='button'] { display: none !important; }

.spbb-buybox .spbb-qty input.qty {
    display: block !important;
    position: static !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 2px !important;
    border: 0 !important;
    border-right: 1px solid #eee !important;
    border-left: 1px solid #eee !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #111 !important;
    -webkit-text-fill-color: #111 !important;
    direction: ltr !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-align: center !important;
    box-shadow: none !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

.spbb-buybox .spbb-qty input.qty::-webkit-outer-spin-button,
.spbb-buybox .spbb-qty input.qty::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }

.spbb-buybox .spbb-purchase-row .single_add_to_cart_button.button {
    grid-area: button;
    direction: rtl;
    display: inline-flex !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 170px !important;
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 9px 14px !important;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    border-radius: 11px !important;
    background: var(--spbb-primary) !important;
    color: #fff !important;
    font: inherit !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
    white-space: nowrap;
    float: none !important;
    box-shadow: none !important;
    transition: background-color .16s ease, transform .16s ease;
}

.spbb-buybox .spbb-purchase-row .single_add_to_cart_button.button:hover:not(:disabled) {
    background: var(--spbb-secondary) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.spbb-buybox .spbb-purchase-row .single_add_to_cart_button.button.disabled,
.spbb-buybox .spbb-purchase-row .single_add_to_cart_button.button:disabled {
    background: #c9c9c9 !important;
    color: #fff !important;
    opacity: 1 !important;
    cursor: not-allowed;
}

.spbb-buybox .spbb-purchase-row > input[type='hidden'] { display: none !important; }
.spbb-buybox .added_to_cart { grid-column: 1 / -1; direction: rtl; margin-top: 2px; color: #111; font-size: 12px; font-weight: 800; text-align: center; }

/* Product display */
.gwpbb-product-display {
    direction: ltr;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    grid-template-areas: 'buybox gallery';
    gap: clamp(22px, 2.5vw, 40px);
    width: 100%;
    max-width: 1320px;
    min-width: 0;
    margin: 0 auto;
    align-items: start;
    overflow-x: clip;
}

.gwpbb-product-display__buybox { grid-area: buybox; direction: rtl; width: 100%; max-width: 100%; min-width: 0; overflow-x: clip; }
.gwpbb-product-display__gallery { grid-area: gallery; direction: rtl; width: 100%; max-width: 100%; min-width: 0; overflow-x: clip; }
.gwpbb-product-display__buybox > .spbb-buybox { width: 100%; margin: 0; }
.gwpbb-product-display--no-gallery { grid-template-columns: minmax(0, 880px); grid-template-areas: 'buybox'; justify-content: center; }

/* Gallery */
.gwpbb-product-gallery {
    direction: ltr;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    grid-template-areas: 'main thumbs';
    gap: 12px;
    width: 100%;
    min-width: 0;
    align-items: stretch;
}

.gwpbb-product-gallery--single { grid-template-columns: minmax(0, 1fr); grid-template-areas: 'main'; }
.gwpbb-product-gallery__main { grid-area: main; min-width: 0; }

.gwpbb-product-gallery__stage {
    position: relative;
    display: flex;
    width: 100%;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 20px;
    background: #fafafa;
    box-shadow: 0 14px 42px rgba(17, 17, 17, .035);
}

.gwpbb-product-gallery__main-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    padding: 14px !important;
    object-fit: contain !important;
    object-position: center !important;
    opacity: 1;
    transition: opacity .14s ease, transform .18s ease;
}

.gwpbb-product-gallery.is-changing .gwpbb-product-gallery__main-image { opacity: .45; transform: scale(.994); }

.gwpbb-product-gallery__open {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 4;
    display: inline-flex !important;
    min-height: 38px;
    margin: 0 !important;
    padding: 8px 12px !important;
    align-items: center;
    gap: 7px;
    border: 0 !important;
    border-radius: 999px !important;
    outline: 0;
    background: var(--gwpbb-gallery-button-bg) !important;
    color: var(--gwpbb-gallery-button-text) !important;
    font: inherit !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.16) !important;
    cursor: pointer;
}

.gwpbb-product-gallery__open:hover { background: #000 !important; }
.gwpbb-product-gallery__open svg { width: 17px; height: 17px; fill: currentColor; flex: 0 0 auto; }

.gwpbb-product-gallery__thumbs {
    grid-area: thumbs;
    direction: rtl;
    display: flex;
    min-width: 0;
    height: 100%;
    max-height: 100%;
    padding: 0 2px 0 0;
    flex-direction: column;
    gap: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cfcfcf transparent;
}

.gwpbb-product-gallery__thumbs::-webkit-scrollbar { width: 4px; }
.gwpbb-product-gallery__thumbs::-webkit-scrollbar-track { background: transparent; }
.gwpbb-product-gallery__thumbs::-webkit-scrollbar-thumb { border-radius: 999px; background: #cfcfcf; }

/* Strong reset prevents Elementor/theme blue/red button borders. */
.gwpbb-product-gallery__thumb,
.gwpbb-product-gallery__thumb:hover,
.gwpbb-product-gallery__thumb:focus,
.gwpbb-product-gallery__thumb:active {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: flex !important;
    flex: 0 0 auto !important;
    width: 100px !important;
    height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e2e2e2 !important;
    border-radius: 12px !important;
    outline: 0 !important;
    background: #fff !important;
    color: inherit !important;
    box-shadow: none !important;
    transform: none !important;
    cursor: pointer;
}

.gwpbb-product-gallery__thumb:hover { border-color: #b9b9b9 !important; }
.gwpbb-product-gallery__thumb.is-active { border: 2px solid var(--gwpbb-thumb-active) !important; box-shadow: none !important; }
.gwpbb-product-gallery__thumb:focus-visible { outline: 2px solid var(--gwpbb-thumb-active) !important; outline-offset: 2px !important; }

.gwpbb-product-gallery__thumb img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #fff;
    pointer-events: none;
}

/* Gallery lightbox */
html.gwpbb-lightbox-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
    height: 100% !important;
}

body.gwpbb-lightbox-open {
    position: fixed !important;
    top: var(--gwpbb-scroll-lock-top, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    overscroll-behavior: none !important;
}

.gwpbb-lightbox {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000 !important;
    display: none;
    width: auto !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100vh !important;
    max-height: 100dvh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    direction: ltr;
    background: rgba(0, 0, 0, .94);
    color: #fff;
    box-sizing: border-box !important;
    overscroll-behavior: contain;
}

.gwpbb-lightbox.is-open { display: flex !important; }

.gwpbb-lightbox__dialog {
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 62px 72px 22px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.gwpbb-lightbox__stage {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 0;
    overflow: hidden !important;
    align-items: center;
    justify-content: center;
    touch-action: pan-x;
}

.gwpbb-lightbox__image {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.gwpbb-lightbox__close,
.gwpbb-lightbox__prev,
.gwpbb-lightbox__next {
    -webkit-appearance: none !important;
    appearance: none !important;
    position: absolute !important;
    z-index: 20 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    border-radius: 999px !important;
    outline: 0 !important;
    background: rgba(20,20,20,.72) !important;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(0,0,0,.22) !important;
    line-height: 0 !important;
    text-indent: 0 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    transform-origin: center center !important;
}

.gwpbb-lightbox__close svg,
.gwpbb-lightbox__prev svg,
.gwpbb-lightbox__next svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    pointer-events: none !important;
}

.gwpbb-lightbox__close:hover,
.gwpbb-lightbox__prev:hover,
.gwpbb-lightbox__next:hover {
    background: rgba(255,255,255,.18) !important;
    border-color: rgba(255,255,255,.5) !important;
}

.gwpbb-lightbox__close:focus-visible,
.gwpbb-lightbox__prev:focus-visible,
.gwpbb-lightbox__next:focus-visible {
    outline: 2px solid #fff !important;
    outline-offset: 3px !important;
}

.gwpbb-lightbox__close {
    top: 16px !important;
    right: 18px !important;
    transform: none !important;
}

.gwpbb-lightbox__prev,
.gwpbb-lightbox__next {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.gwpbb-lightbox__prev { left: 16px !important; right: auto !important; }
.gwpbb-lightbox__next { right: 16px !important; left: auto !important; }

.gwpbb-lightbox__counter {
    position: absolute;
    top: 21px;
    left: 20px;
    z-index: 5;
    color: rgba(255,255,255,.85);
    font-size: 12px;
    font-weight: 700;
}

.gwpbb-lightbox__thumbs {
    direction: ltr;
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    max-height: 68px;
    margin: 14px auto 0;
    padding: 2px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}
.gwpbb-lightbox__thumbs::-webkit-scrollbar { display: none; }

.gwpbb-lightbox__thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    flex: 0 0 64px !important;
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,.25) !important;
    border-radius: 9px !important;
    background: #111 !important;
    box-shadow: none !important;
    cursor: pointer;
    box-sizing: border-box !important;
}
.gwpbb-lightbox__thumb.is-active { border: 2px solid #fff !important; }
.gwpbb-lightbox__thumb img { width: 100% !important; height: 100% !important; margin: 0 !important; padding: 0 !important; object-fit: contain !important; background: #fff; }




/* Elementor layout guard: the widget must size only to its real content. */
.elementor-widget-general_woo_product_buy_box,
.elementor-widget-general_woo_product_buy_box > .elementor-widget-container,
.elementor-widget-general_woo_product_buy_box .gwpbb-product-display,
.elementor-widget-general_woo_product_buy_box .gwpbb-product-display__buybox,
.elementor-widget-general_woo_product_buy_box .gwpbb-product-display__gallery,
.elementor-widget-general_woo_product_buy_box .spbb-buybox {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}

.elementor-widget-general_woo_product_buy_box,
.elementor-widget-general_woo_product_buy_box > .elementor-widget-container,
.elementor-widget-general_woo_product_buy_box .gwpbb-product-display {
    overflow-x: clip !important;
}

@supports not (overflow: clip) {
    .elementor-widget-general_woo_product_buy_box,
    .elementor-widget-general_woo_product_buy_box > .elementor-widget-container,
    .elementor-widget-general_woo_product_buy_box .gwpbb-product-display {
        overflow-x: hidden !important;
    }
}

@media (max-width: 1024px) {
    .gwpbb-product-display { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 18px; }
    .gwpbb-product-gallery { grid-template-columns: minmax(0, 1fr) 84px; gap: 9px; }
    .gwpbb-product-gallery__thumb,
    .gwpbb-product-gallery__thumb:hover,
    .gwpbb-product-gallery__thumb:focus,
    .gwpbb-product-gallery__thumb:active { width: 80px !important; min-width: 80px !important; height: 80px !important; min-height: 80px !important; border-radius: 10px !important; }
}


@media (max-width: 900px) {
    .gwpbb-product-display {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: 'gallery' 'buybox';
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .elementor-widget-general_woo_product_buy_box,
    .elementor-widget-general_woo_product_buy_box > .elementor-widget-container,
    .elementor-widget-general_woo_product_buy_box .gwpbb-product-display,
    .elementor-widget-general_woo_product_buy_box .gwpbb-product-display__buybox,
    .elementor-widget-general_woo_product_buy_box .gwpbb-product-display__gallery {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .spbb-buybox { padding: 17px; border-radius: 16px; }
    .spbb-buybox__title { font-size: 16px; }
    .spbb-buybox__meta { grid-template-columns: 1fr; }
    .spbb-buybox__specifications-table th { width: 40%; }
    .spbb-buybox .spbb-option-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }

    .spbb-buybox .spbb-purchase-row {
        grid-template-columns: minmax(0, 1fr) 108px;
        grid-template-areas:
            'price price'
            'button qty';
    }

    .spbb-buybox .spbb-qty { width: 108px !important; min-width: 108px !important; grid-template-columns: 32px 44px 32px !important; }
    .spbb-buybox .gwpbb-spbb-qty__button { width: 32px !important; min-width: 32px !important; }
    .spbb-buybox .spbb-purchase-row .single_add_to_cart_button.button { width: 100% !important; min-width: 0 !important; max-width: none !important; }

    .gwpbb-product-display {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: 'gallery' 'buybox';
        gap: 18px;
    }

    .gwpbb-product-gallery {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: 'main' 'thumbs';
        gap: 9px;
    }

    .gwpbb-product-gallery__stage { border-radius: 15px; }
    .gwpbb-product-gallery__main-image { padding: 8px !important; }
    .gwpbb-product-gallery__open { left: 10px; bottom: 10px; min-height: 34px; padding: 7px 10px !important; }

    .gwpbb-product-gallery__thumbs {
        direction: rtl;
        flex-direction: row;
        width: 100%;
        height: auto;
        max-height: none;
        padding: 1px 0 3px;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .gwpbb-product-gallery__thumbs::-webkit-scrollbar { display: none; }

    .gwpbb-product-gallery__thumb,
    .gwpbb-product-gallery__thumb:hover,
    .gwpbb-product-gallery__thumb:focus,
    .gwpbb-product-gallery__thumb:active {
        flex: 0 0 72px !important;
        width: 72px !important;
        min-width: 72px !important;
        height: 72px !important;
        min-height: 72px !important;
        border-radius: 9px !important;
        scroll-snap-align: start;
    }

    .gwpbb-lightbox__dialog { padding: 58px 10px 12px !important; }
    .gwpbb-lightbox__close,
    .gwpbb-lightbox__prev,
    .gwpbb-lightbox__next {
        flex-basis: 40px !important;
        width: 40px !important; min-width: 40px !important; max-width: 40px !important;
        height: 40px !important; min-height: 40px !important; max-height: 40px !important;
        border-radius: 999px !important;
    }
    .gwpbb-lightbox__close { top: 10px !important; right: 10px !important; }
    .gwpbb-lightbox__counter { top: 16px; left: 12px; }
    .gwpbb-lightbox__prev,
    .gwpbb-lightbox__next { background: rgba(0,0,0,.48) !important; }
    .gwpbb-lightbox__prev { left: 6px !important; }
    .gwpbb-lightbox__next { right: 6px !important; }
    .gwpbb-lightbox__thumb { flex-basis: 56px !important; width: 56px !important; min-width: 56px !important; max-width: 56px !important; height: 56px !important; min-height: 56px !important; max-height: 56px !important; }
}

@media (max-width: 480px) {
    .spbb-buybox .spbb-option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .spbb-buybox__specifications-table th,
    .spbb-buybox__specifications-table td { padding: 8px 9px !important; }
}


.gwpbb-atc-inline-error {
    width: 100%;
    margin: 0 0 12px;
    padding: 10px 12px;
    border: 1px solid #fecaca;
    border-radius: 10px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.8;
    text-align: right;
    box-sizing: border-box;
}

/* Ajax add-to-cart success popup */
.gwpbb-atc-popup,
.gwpbb-atc-popup * {
    box-sizing: border-box;
}

.gwpbb-atc-popup {
    --gwpbb-atc-overlay: rgba(0, 0, 0, .48);
    --gwpbb-atc-box: #ffffff;
    --gwpbb-atc-title: #111111;
    --gwpbb-atc-text: #666666;
    --gwpbb-atc-success-bg: #16a34a;
    --gwpbb-atc-success-color: #ffffff;
    --gwpbb-atc-close-bg: #f1f1f1;
    --gwpbb-atc-close-color: #111111;
    --gwpbb-atc-continue-bg: #f1f1f1;
    --gwpbb-atc-continue-color: #111111;
    --gwpbb-atc-cart-bg: #111111;
    --gwpbb-atc-cart-color: #ffffff;
    direction: rtl;
    position: fixed;
    inset: 0;
    z-index: 1000001;
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gwpbb-atc-popup.is-open { display: flex; }

.gwpbb-atc-popup__overlay {
    position: absolute;
    inset: 0;
    background: var(--gwpbb-atc-overlay);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.gwpbb-atc-popup__box {
    position: relative;
    z-index: 2;
    width: min(420px, 100%);
    margin: 0;
    padding: 34px 24px 24px;
    border: 0;
    border-radius: 22px;
    background: var(--gwpbb-atc-box);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    animation: gwpbbAtcIn .22s ease both;
}

@keyframes gwpbbAtcIn {
    from { opacity: 0; transform: translateY(14px) scale(.97); }
    to { opacity: 1; transform: none; }
}

.gwpbb-atc-popup__close,
.gwpbb-atc-popup__close:hover,
.gwpbb-atc-popup__close:focus,
.gwpbb-atc-popup__close:active {
    -webkit-appearance: none !important;
    appearance: none !important;
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    right: auto !important;
    display: inline-flex !important;
    flex: 0 0 38px !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 50% !important;
    outline: 0 !important;
    background: var(--gwpbb-atc-close-bg) !important;
    color: var(--gwpbb-atc-close-color) !important;
    box-shadow: none !important;
    line-height: 0 !important;
    cursor: pointer !important;
}

.gwpbb-atc-popup__close:hover { transform: scale(1.04); }
.gwpbb-atc-popup__close:focus-visible { outline: 2px solid currentColor !important; outline-offset: 3px !important; }
.gwpbb-atc-popup__close svg { width: 18px !important; height: 18px !important; display: block !important; fill: none !important; stroke: currentColor !important; stroke-width: 2.2 !important; stroke-linecap: round !important; pointer-events: none !important; }

.gwpbb-atc-popup__icon {
    display: flex;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gwpbb-atc-success-bg);
    color: var(--gwpbb-atc-success-color);
}

.gwpbb-atc-popup__icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }

.gwpbb-atc-popup__title {
    margin: 0 0 9px !important;
    color: var(--gwpbb-atc-title) !important;
    font-size: 20px !important;
    font-weight: 850 !important;
    line-height: 1.65 !important;
}

.gwpbb-atc-popup__text {
    margin: 0 0 20px !important;
    color: var(--gwpbb-atc-text) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.9 !important;
}

.gwpbb-atc-popup__buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.gwpbb-atc-popup__continue,
.gwpbb-atc-popup__cart,
.gwpbb-atc-popup__continue:hover,
.gwpbb-atc-popup__cart:hover,
.gwpbb-atc-popup__continue:focus,
.gwpbb-atc-popup__cart:focus {
    -webkit-appearance: none !important;
    appearance: none !important;
    display: inline-flex !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 12px !important;
    outline: 0 !important;
    box-shadow: none !important;
    font: inherit !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.gwpbb-atc-popup__continue { background: var(--gwpbb-atc-continue-bg) !important; color: var(--gwpbb-atc-continue-color) !important; }
.gwpbb-atc-popup__cart { background: var(--gwpbb-atc-cart-bg) !important; color: var(--gwpbb-atc-cart-color) !important; }
.gwpbb-atc-popup__continue:hover,
.gwpbb-atc-popup__cart:hover { filter: brightness(.96); transform: translateY(-1px); }
.gwpbb-atc-popup__continue:focus-visible,
.gwpbb-atc-popup__cart:focus-visible { outline: 2px solid currentColor !important; outline-offset: 2px !important; }

html.gwpbb-atc-popup-open,
body.gwpbb-atc-popup-open {
    overflow: hidden !important;
    overscroll-behavior: none;
}

@media (max-width: 480px) {
    .gwpbb-atc-popup { padding: 14px; }
    .gwpbb-atc-popup__box { width: 100%; padding: 32px 18px 18px; border-radius: 18px; }
    .gwpbb-atc-popup__buttons { flex-direction: column; }
    .gwpbb-atc-popup__continue,
    .gwpbb-atc-popup__cart { width: 100% !important; flex-basis: auto !important; }
}

/* 2.0.7 duplicate-variation guard: only one visual option grid per attribute row. */
.spbb-buybox table.variations td.value > .spbb-option-grid ~ .spbb-option-grid {
    display: none !important;
}
