/* =========================================================
   Modern Woo Single Product — Two-Section Layout
   Top: 2-col (gallery | vendor/title/price/add-to-cart)
   Bottom: full-width accordions (description/specs/shipping/reviews)
   Safe defaults; no global "unbox" hacks.
   ---------------------------------------------------------
   This CSS is conditionally enqueued ONLY when your product
   checkbox is ON (per functions.php).
========================================================= */

/* Root container from template */
.cs-product {
    width: 100%;
}

/* ===================== TOP: 2-COLUMN ===================== */
.cs-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 48px);
    align-items: start;

    /* Center within your site's content width */
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(12px, 2vw, 24px);
}

@media (max-width: 960px) {
    .cs-top {
        grid-template-columns: 1fr;
    }
}

/* Gallery shell (keeps Woo zoom/lightbox if enabled) */
.cs-top__left .woocommerce-product-gallery {
    border-radius: 12px;
    overflow: hidden;
    background: var(--e-global-color-background, #fff);
    border: 1px solid rgba(0, 0, 0, .06);
    width: 100% !important;
}

/* Right column (no sticky, no boxed card) */
.cs-top__right {
    display: grid;
    gap: 10px;
    max-width: 500px;
}

/* Vendor (uses product categories by default) */
.cs-vendor {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #6b7280;
}

/* Title scale */
.cs-title {
    margin: 0;
    line-height: 1.15;
    font-weight: var(--e-global-typography-primary-font-weight, 700);
    color: #6b7280 !important;
    font-size: clamp(22px, 3vw, 28px) !important;
}

/* Rating + review count */
.cs-meta-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cs-meta-row .star-rating {
    transform: translateY(1px);
}

.cs-review-count {
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
}

/* Price row (with optional compare-at) */
.cs-price-row {
    display: block;
}

.cs-compare-at {
    text-decoration: line-through;
    color: #9ca3af;
}

.cs-two .price {
    font-size: clamp(26px, 4vw, 32px) !important;
    line-height: var(--e-global-typography-secondary-line-height, 1.3);
    font-weight: var(--e-global-typography-secondary-font-weight, 700);
    color: #269A4D !important;
    display: inline-block;
}

.cs-compare-at {
    display: inline-block;
    margin-left: 8px;
}

/* "Starting at" label for variable products on single product page */
.cs-two .cs-starting-at {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* "Selected Price" label when variation is chosen */
.cs-two .cs-selected-price {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* Variation price container styling */
.cs-two .woocommerce-variation-price {
    margin-top: 12px;
}

.cs-two .woocommerce-variation-price .price {
    font-size: clamp(26px, 4vw, 32px) !important;
    line-height: var(--e-global-typography-secondary-line-height, 1.3);
    font-weight: var(--e-global-typography-secondary-font-weight, 700);
    color: #269A4D !important;
    display: inline-block;
}

/* Grey out the original price when variation is selected */
.cs-two .cs-price-row.cs-inactive-price {
    opacity: 0.5;
}

.cs-two .cs-price-row.cs-inactive-price .price {
    color: #6b7280 !important;
}

/* Shipping note disclaimer */
.cs-shipping-note {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

/* Stock + SKU line */
.cs-stock-sku {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: #374151;
}

.cs-stock-sku .stock.in-stock {
    color: #065f46;
}

.cs-stock-sku .stock.out-of-stock {
    color: #b91c1c;
}

.cs-sku {
    color: #6b7280;
}

/* Short description */
.cs-highlights {
    color: var(--e-global-color-text, #374151);
}

.cs-highlights p {
    margin: 0 0 10px;
}

.cs-highlights a {
    color: #142F66;
    text-decoration: underline;
}

.cs-highlights a::after {
    content: " ›";
}

.cs-highlights a:hover {
    color: #269A4D;
}

/* Add-to-cart row - variations on top, qty+button below */
.cs-two form.cart {
    display: block;
}

/* Wrapper for quantity + button to be on same line */
.cs-two .cs-qty-cart-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-wrap: nowrap;
    margin-top: 16px;
}

/* Quantity selector container */
.cs-two .quantity {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #6b7280;
    border-radius: 8px;
    overflow: hidden;
    height: 52px;
    min-width: 140px;
}

/* Quantity input as text field (number-only validation via JS) */
.cs-two .quantity .qty {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 60px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 22px !important;
    font-weight: 600;
    color: #374151;
    padding: 0;
    background: transparent;
}

/* Remove any number spinners that might appear */
.cs-two .quantity .qty::-webkit-inner-spin-button,
.cs-two .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    display: none;
}

.cs-two .quantity .qty[type="text"] {
    -moz-appearance: textfield;
}

.cs-two .quantity .qty:focus {
    outline: none;
}

/* +/- buttons for quantity selector */
.cs-two .qty-btn {
    width: 40px;
    height: 100%;
    border: none !important;
    background: #fff !important;
    background-color: #fff !important;
    color: #6b7280 !important;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.cs-two .qty-btn:hover {
    background-color: #f9fafb !important;
    color: #374151 !important;
}

.cs-two .qty-btn:active {
    background-color: #e5e7eb !important;
}

.cs-two .qty-btn:focus {
    outline: 2px solid #6b7280;
    outline-offset: -2px;
}

.cs-two .qty-minus {
    border-right: 1px solid #e5e7eb !important;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.cs-two .qty-plus {
    border-left: 1px solid #e5e7eb !important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Add to cart button - Target style */
.cs-two .single_add_to_cart_button {
    flex: 3;
    min-width: 250px;
    border-radius: 50px;
    padding: 16px 48px;
    font-weight: 400;
    font-size: 16px;
    min-height: 52px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    background-color: rgb(53, 117, 211) !important;
    color: #fff !important;
}

.cs-two .single_add_to_cart_button:hover:not(:disabled) {
    background-color: #269A4D !important;
}

.cs-two .single_add_to_cart_button:disabled,
.cs-two .single_add_to_cart_button.disabled {
    background-color: #9ca3af !important;
    color: #fff !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Optional: vertical thumbnail rail (works with Flexslider thumbs) */
.cs-top__left .flex-control-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs-top__left .flex-control-thumbs li {
    width: 70px !important;
}

/* ===================== BOTTOM: DETAILS ===================== */
/* Full-width block with accordions (centered to same width as top) */
.cs-details {
    margin-top: clamp(24px, 4vw, 48px);
    max-width: 1200px; /* match .cs-top for visual alignment */
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(12px, 2vw, 24px);
}

.cs-accordions {
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.cs-accordion + .cs-accordion {
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.cs-accordion__summary {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-weight: 600;
    font-size: 24px !important;
    line-height: var(--e-global-typography-text-line-height, 1.6);
    color: rgb(20, 47, 102) !important;
}

.cs-accordion__panel {
    padding: 0 0 clamp(10px, 1.6vw, 16px);
    color: var(--e-global-color-text, #1f2937);
    font-size: var(--e-global-typography-text-font-size, 16px);
    line-height: var(--e-global-typography-text-line-height, 1.7);
}

/* 1) Remove the native disclosure marker */
.cs-accordion__summary {
    list-style: none;              /* Firefox */
    position: relative;
    padding-right: 28px;           /* space for arrow */
    cursor: pointer;
}
.cs-accordion__summary::-webkit-details-marker { display: none; }  /* Chrome/Safari */

/* 2) Add a plus/minus icon */
.cs-accordion__summary::after {
    content: "+";
    position: absolute;
    right: 0;                      /* put it on the far right */
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;             /* center vertically */
    font-size: 28px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    transition: transform 0.2s ease;
    opacity: 0.9;
}

/* 3) Change to minus when open */
details[open] .cs-accordion__summary::after {
    content: "−";                  /* minus sign when open */
}

/* ===================== PRODUCT SPECS TABLE ===================== */
.product-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table th {
    text-align: right;
    white-space: nowrap;
    padding: 8px 16px;
    vertical-align: top;
    font-weight: 600;
    color: #142F66;
}

.product-specs-table td {
    width: 100%;
    padding: 8px 16px;
    vertical-align: top;
}

/* ===================== RELATED / UPSELLS ===================== */
.cs-related {
    margin: clamp(28px, 4vw, 56px) auto 0;
    max-width: 1200px;
    padding: 0 clamp(12px, 2vw, 24px);
}

.cs-related h2 {
    margin: 0;
    line-height: 1.15;
    font-weight: var(--e-global-typography-primary-font-weight, 700);
    color: rgb(53, 117, 211) !important;
    font-size: clamp(28px, 32px, 32px) !important;
}

.cs-related ul.products h2 {
    cursor: pointer;
    font-weight: 600;
    font-size: 18px !important;
    line-height: var(--e-global-typography-text-line-height, 1.6);
    color: rgb(20, 47, 102) !important;
}

.cs-related ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 10px;
}

/* Override grid columns based on actual product count */
.cs-related ul.products.columns-1 {
    grid-template-columns: 1fr !important;
}

.cs-related ul.products.columns-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.cs-related ul.products.columns-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.cs-related ul.products::before {
    display: none !important;
}

.cs-related ul.products li.product {
    margin: 0px;
    width: 100%;
    padding: 1.5em 2em 2em 2em;
    box-shadow: .2em .2em .9em -0.25rem #bebebe;
    border-radius: 1rem;

        display: flex;
        flex-direction: column;   /* stack content vertically */
        justify-content: space-between; /* push top content up, button down */
        padding: 1rem;

}

.cs-related ul.products li.product .button {
    align-self: flex-start; /* optional: keep button aligned left (default) */
    width: 100%;
    text-align: center;
}

/* Single related product - horizontal card on desktop */
@media (min-width: 769px) {
    .cs-related ul.products.columns-1 li.product {
        display: grid !important;
        grid-template-columns: 300px 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 16px 24px !important;
        padding: 1.5em 2em !important;
        align-items: start !important;
    }

    /* Hide the wrapper link that causes stacking */
    .cs-related ul.products.columns-1 li.product > a.woocommerce-loop-product__link {
        display: none !important;
    }

    /* Image - left side, spans all rows */
    .cs-related ul.products.columns-1 li.product > a:first-of-type {
        grid-column: 1 !important;
        grid-row: 1 / 4 !important;
        max-width: 300px !important;
    }

    .cs-related ul.products.columns-1 li.product img {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
    }

    /* Title - top right */
    .cs-related ul.products.columns-1 li.product h2,
    .cs-related ul.products.columns-1 li.product .woocommerce-loop-product__title {
        grid-column: 2 !important;
        grid-row: 1 !important;
        margin: 0 !important;
    }

    /* Price - middle right */
    .cs-related ul.products.columns-1 li.product .price {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    /* Button - bottom right */
    .cs-related ul.products.columns-1 li.product .button {
        grid-column: 2 !important;
        grid-row: 3 !important;
        width: auto !important;
        min-width: 250px !important;
        justify-self: start !important;
    }
}

.cs-form .stock.out-of-stock {
    display: block;
    color: #FFF !important;
    background-color: rgb(170, 0, 0);
    text-align: center;
    width: 100%;
    padding: 10px;
    font-size: 16px !important;
    text-transform: uppercase;
}




/* ===================== SWATCH (OPTIONAL) ===================== */
/* If you use the small JS enhancer to render "pill" options */
/* Remove table display and make variations display as normal form elements */
.cs-form .variations {
    display: block;
    margin: 6px 0 8px;
    width: 100%;
}

.cs-form .variations tbody {
    display: block;
}

.cs-form .variations tr {
    display: block;
    margin-bottom: 16px;
}

.cs-form .variations th.label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
}

.cs-form .variations th.label label {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-form .variations td.value {
    display: block;
    padding: 0;
}

.cs-form .variations select {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid #6b7280;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fff;
    color: #374151;
}

/* JS will render pills */
.cs-swatch-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cs-swatch {
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    background: #fff;
}

.cs-swatch[aria-checked="true"] {
    border-color: #111;
    background: #111;
    color: #fff;
}

.cs-swatch[aria-disabled="true"] {
    opacity: .45;
    cursor: not-allowed;
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 768px) {
    /* Stack quantity and add to cart on mobile */
    .cs-two .cs-qty-cart-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .cs-two .quantity {
        width: 100%;
        min-width: 140px;
    }

    /* Expand qty buttons to fill space on mobile */
    .cs-two .quantity .qty-btn {
        flex: 1;
    }

    .cs-two .quantity .qty {
        flex: 2;
    }

    .cs-two .single_add_to_cart_button {
        width: 100%;
    }

    /* Related products full width on mobile */
    .cs-related ul.products {
        grid-template-columns: 1fr;
    }
}

/* ===================== MOBILE STICKY CART (pairs with product.js) ===================== */
@media (max-width: 768px) {
    .cs-sticky-cart {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(180%) blur(6px);
        border-top: 2px solid #d1d5db;
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 10px;
        align-items: center;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, .12);
        max-width: 100%;
        box-sizing: border-box;
    }

    .cs-sticky-cart__title {
        font-size: 13px;
        line-height: 1.2;
        grid-column: 1 / -1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: var(--e-global-color-text, #111);
        margin-bottom: 5px;
    }

    .cs-sticky-cart .quantity {
        grid-column: 1;
        margin: 0;
        height: 44px;
        width: auto;
        display: flex;
        align-items: center;
        border: 2px solid #6b7280;
        border-radius: 8px;
        overflow: hidden;
    }

    .cs-sticky-cart .quantity .qty {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 40px;
        height: 100%;
        border: none;
        text-align: center;
        font-size: 18px !important;
        font-weight: 600;
        color: #374151;
        padding: 0;
        background: transparent;
    }

    .cs-sticky-cart .quantity .qty::-webkit-inner-spin-button,
    .cs-sticky-cart .quantity .qty::-webkit-outer-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin: 0;
        display: none;
    }

    .cs-sticky-cart .quantity .qty[type="text"] {
        -moz-appearance: textfield;
    }

    .cs-sticky-cart .quantity .qty:focus {
        outline: none;
    }

    .cs-sticky-cart .quantity .qty-btn {
        width: 36px;
        height: 100%;
        border: none !important;
        background: #fff !important;
        background-color: #fff !important;
        color: #6b7280 !important;
        font-size: 20px;
        font-weight: 400;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .cs-sticky-cart .quantity .qty-minus {
        border-right: 1px solid #e5e7eb !important;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    .cs-sticky-cart .quantity .qty-plus {
        border-left: 1px solid #e5e7eb !important;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .cs-sticky-cart .single_add_to_cart_button {
        grid-column: 2;
        margin: 0;
        border-radius: 4px;
        padding: 10px 16px;
        font-weight: 400 !important;
        font-size: 14px !important;
        background-color: rgb(53, 117, 211) !important;
        color: #fff !important;
        border: none;
        transition: background-color 0.3s ease;
        white-space: nowrap;
        height: 44px;
        width: 100%;
    }

    .cs-sticky-cart .single_add_to_cart_button:hover:not(:disabled) {
        background-color: #269A4D !important;
    }

    body.has-sticky-cart {
        padding-bottom: 80px;
    }
}


/* ===================== UTILITIES ===================== */
.cs-product .product_title:empty,
.cs-product .price:empty {
    display: none;
}


.cs-product .elementor-element.elementor-element-b33e474 {
    --display: flex;
}

.elementor-widget-alert .elementor-alert-title {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
}

.elementor-widget-alert .elementor-alert-description {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    letter-spacing: var(--e-global-typography-text-letter-spacing);
}

.cs-product .elementor-element.elementor-element-41a2c7c .elementor-alert-title {
    font-family: "Montserrat", Sans-serif;
    font-size: 22rem;
    font-weight: 600;
    line-height: 1.4em;
}

.cs-product .elementor-element.elementor-element-41a2c7c .elementor-alert-description {
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7em;
    letter-spacing: 1px;
}

.cs-product .elementor-element.elementor-element-338b557 > .elementor-container {
    max-width: 1200px;
}

.cs-product .elementor-element.elementor-element-ca4c332 > .elementor-container > .elementor-column > .elementor-widget-wrap {
    align-content: center;
    align-items: center;
}

.elementor-widget-image .widget-image-caption {
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    letter-spacing: var(--e-global-typography-text-letter-spacing);
}

.elementor-widget-woocommerce-product-title .elementor-heading-title {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
    color: var(--e-global-color-primary);
}

.cs-product .elementor-element.elementor-element-0898cb9 .elementor-heading-title {
    font-family: var(--e-global-typography-a195a46-font-family), Sans-serif;
    font-size: var(--e-global-typography-a195a46-font-size);
    font-weight: var(--e-global-typography-a195a46-font-weight);
    line-height: var(--e-global-typography-a195a46-line-height);
    color: var(--e-global-color-text);
}

.elementor-widget-text-editor {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    letter-spacing: var(--e-global-typography-text-letter-spacing);
    color: var(--e-global-color-text);
}

.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap {
    background-color: var(--e-global-color-primary);
}

.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap {
    color: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
}

.cs-product .elementor-element.elementor-element-c70ee82 > .elementor-widget-container {
    margin: 30px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.cs-product .elementor-element.elementor-element-c70ee82 {
    text-align: left;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    letter-spacing: var(--e-global-typography-text-letter-spacing);
    color: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-element-7d3950a > .elementor-widget-container {
    margin: 30px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.cs-product .elementor-element.elementor-element-7d3950a {
    text-align: left;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    letter-spacing: var(--e-global-typography-text-letter-spacing);
    color: var(--e-global-color-text);
}

.woocommerce .elementor-widget-woocommerce-product-price .price {
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
}

.cs-product .elementor-element.elementor-element-c703300 > .elementor-widget-container {
    margin: 20px 0px 0px 0px;
}

.woocommerce .cs-product .elementor-element.elementor-element-c703300 .price {
    color: var(--e-global-color-secondary);
    font-family: var(--e-global-typography-e4c6db4-font-family), Sans-serif;
    font-size: var(--e-global-typography-e4c6db4-font-size);
    font-weight: var(--e-global-typography-e4c6db4-font-weight);
    line-height: var(--e-global-typography-e4c6db4-line-height);
}

.elementor-widget-divider {
    --divider-color: var(--e-global-color-secondary);
}

.elementor-widget-divider .elementor-divider__text {
    color: var(--e-global-color-secondary);
    font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: var(--e-global-typography-secondary-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    line-height: var(--e-global-typography-secondary-line-height);
}

.elementor-widget-divider.elementor-view-stacked .elementor-icon {
    background-color: var(--e-global-color-secondary);
}

.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon {
    color: var(--e-global-color-secondary);
    border-color: var(--e-global-color-secondary);
}

.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg {
    fill: var(--e-global-color-secondary);
}

.cs-product .elementor-element.elementor-element-5ccbb6a {
    --divider-border-style: solid;
    --divider-color: #00000066;
    --divider-border-width: 1px;
}

.cs-product .elementor-element.elementor-element-5ccbb6a .elementor-divider-separator {
    width: 100%;
}

.cs-product .elementor-element.elementor-element-5ccbb6a .elementor-divider {
    padding-block-start: 30px;
    padding-block-end: 30px;
}

.woocommerce .cs-product .elementor-element.elementor-element-492cc36 .woocommerce-product-details__short-description {
    color: var(--e-global-color-text);
    font-family: "Montserrat", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 1px;
}

.elementor-widget-woocommerce-product-add-to-cart .added_to_cart {
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: var(--e-global-typography-accent-text-transform);
    line-height: var(--e-global-typography-accent-line-height);
    letter-spacing: var(--e-global-typography-accent-letter-spacing);
}

.cs-product .elementor-element.elementor-element-0932498 .cart button, .cs-product .elementor-element.elementor-element-0932498 .cart .button {
    font-family: var(--e-global-typography-0ab8596-font-family), Sans-serif;
    font-size: var(--e-global-typography-0ab8596-font-size);
    font-weight: var(--e-global-typography-0ab8596-font-weight);
    text-transform: var(--e-global-typography-0ab8596-text-transform);
    line-height: var(--e-global-typography-0ab8596-line-height);
    letter-spacing: var(--e-global-typography-0ab8596-letter-spacing);
    color: var(--e-global-color-1040594);
    background-color: var(--e-global-color-primary);
    transition: all 0.2s;
}

.cs-product .elementor-element.elementor-element-0932498 .cart button:hover, .cs-product .elementor-element.elementor-element-0932498 .cart .button:hover {
    color: var(--e-global-color-9174e49);
    background-color: var(--e-global-color-secondary);
}

.cs-product .elementor-element.elementor-element-0932498 .quantity .qty {
    transition: all 0.2s;
}

.cs-product .elementor-element.elementor-element-3ede55b > .elementor-container {
    max-width: 1200px;
}

.cs-product .elementor-element.elementor-element-3ede55b {
    margin-top: 0px;
    margin-bottom: 40px;
}

.cs-product .elementor-element.elementor-element-4d5e833 {
    --divider-border-style: solid;
    --divider-color: #00000066;
    --divider-border-width: 1px;
}

.cs-product .elementor-element.elementor-element-4d5e833 .elementor-divider-separator {
    width: 100%;
}

.cs-product .elementor-element.elementor-element-4d5e833 .elementor-divider {
    padding-block-start: 30px;
    padding-block-end: 30px;
}

.elementor-widget-heading .elementor-heading-title {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
    color: var(--e-global-color-primary);
}

.cs-product .elementor-element.elementor-element-34bec92 .elementor-heading-title {
    font-family: var(--e-global-typography-80031e8-font-family), Sans-serif;
    font-size: var(--e-global-typography-80031e8-font-size);
    font-weight: var(--e-global-typography-80031e8-font-weight);
    line-height: var(--e-global-typography-80031e8-line-height);
    color: var(--e-global-color-secondary);
}

.woocommerce .cs-product .elementor-element.elementor-element-4a1405e .woocommerce-product-details__short-description {
    color: var(--e-global-color-text);
    font-family: "Montserrat", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 1px;
}

.cs-product .elementor-element.elementor-element-84abe97 > .elementor-widget-container {
    margin: 0px 0px 10px 0px;
}

.cs-product .elementor-element.elementor-element-84abe97 .elementor-heading-title {
    font-family: var(--e-global-typography-80031e8-font-family), Sans-serif;
    font-size: var(--e-global-typography-80031e8-font-size);
    font-weight: var(--e-global-typography-80031e8-font-weight);
    line-height: var(--e-global-typography-80031e8-line-height);
    color: var(--e-global-color-secondary);
}

.cs-product .elementor-element.elementor-element-b7093b7 {
    font-family: "Montserrat", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 1px;
}

.elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-next {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
}

.elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-prev {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
}

.elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-active-slide {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
}

.elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-total-slide {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
}

.cs-product .elementor-element.elementor-element-2dbf399 .elementor-accordion .elementor-accordion-icon.elementor-accordion-icon-left {
    margin-right: 0px;
}

.cs-product .elementor-element.elementor-element-2dbf399 .elementor-accordion .elementor-accordion-icon.elementor-accordion-icon-right {
    margin-left: 0px;
}

.cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .plus-accordion-header .accordion-icon-prefix {
    font-size: 15px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
}

.cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .plus-accordion-header .accordion-icon-prefix svg {
    width: 15px;
    height: 15px;
}

.cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .plus-accordion-header .accordion-icon-prefix, .cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .plus-accordion-header .accordion-icon-prefix svg {
    margin-right: 8px;
}

.cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .theplus-accordion-item .plus-accordion-header {
    font-family: var(--e-global-typography-80031e8-font-family), Sans-serif;
    font-size: var(--e-global-typography-80031e8-font-size);
    font-weight: var(--e-global-typography-80031e8-font-weight);
    line-height: var(--e-global-typography-80031e8-line-height);
    color: var(--e-global-color-secondary);
    padding: 20px 0px 0px 0px;
}

.cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .theplus-accordion-item .plus-accordion-header.active {
    color: var(--e-global-color-secondary);
}

.cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right {
    right: 0px;
}

.cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .theplus-accordion-item {
    margin-bottom: 15px;
}

.cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .theplus-accordion-item .plus-accordion-content .plus-content-editor {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    letter-spacing: var(--e-global-typography-text-letter-spacing);
}

.cs-product .elementor-element.elementor-element-3698ed33:not(.elementor-motion-effects-element-type-background), .cs-product .elementor-element.elementor-element-3698ed33 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: var(--e-global-color-a8e8e92);
}

.cs-product .elementor-element.elementor-element-3698ed33 > .elementor-container {
    max-width: 1200px;
}

.cs-product .elementor-element.elementor-element-3698ed33 {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 40px;
    margin-bottom: 0px;
    padding: 40px 0px 40px 0px;
}

.cs-product .elementor-element.elementor-element-3698ed33 > .elementor-background-overlay {
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.cs-product .elementor-element.elementor-element-678814a > .elementor-widget-container {
    padding: 0px 0px 0px 00px;
}

.cs-product .elementor-element.elementor-element-678814a {
    text-align: center;
}

.cs-product .elementor-element.elementor-element-678814a .elementor-heading-title {
    font-family: var(--e-global-typography-e4c6db4-font-family), Sans-serif;
    font-size: var(--e-global-typography-e4c6db4-font-size);
    font-weight: var(--e-global-typography-e4c6db4-font-weight);
    line-height: var(--e-global-typography-e4c6db4-line-height);
    color: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-element-54474665 > .elementor-widget-container {
    margin: 05px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.cs-product .elementor-element.elementor-element-54474665 {
    text-align: center;
    font-family: "Fira Sans", Sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5em;
    color: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-element-2ab3dfe5 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.cs-product .elementor-element.elementor-element-4ccfbf2e:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .cs-product .elementor-element.elementor-element-4ccfbf2e > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: var(--e-global-color-primary);
}

.cs-product .elementor-element.elementor-element-4ccfbf2e > .elementor-element-populated {
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var(--e-global-color-primary);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 10px 0px 0px;
    --e-column-margin-right: 10px;
    --e-column-margin-left: 0px;
    padding: 80px 80px 80px 80px;
}

.cs-product .elementor-element.elementor-element-4ccfbf2e > .elementor-element-populated, .cs-product .elementor-element.elementor-element-4ccfbf2e > .elementor-element-populated > .elementor-background-overlay, .cs-product .elementor-element.elementor-element-4ccfbf2e > .elementor-background-slideshow {
    border-radius: 5px 5px 5px 5px;
}

.cs-product .elementor-element.elementor-element-4ccfbf2e > .elementor-element-populated > .elementor-background-overlay {
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.cs-product .elementor-element.elementor-element-a2187aa {
    text-align: center;
}

.cs-product .elementor-element.elementor-element-a2187aa .elementor-heading-title {
    font-family: var(--e-global-typography-bfc99c9-font-family), Sans-serif;
    font-size: var(--e-global-typography-bfc99c9-font-size);
    font-weight: var(--e-global-typography-bfc99c9-font-weight);
    text-transform: var(--e-global-typography-bfc99c9-text-transform);
    line-height: var(--e-global-typography-bfc99c9-line-height);
    letter-spacing: var(--e-global-typography-bfc99c9-letter-spacing);
    color: var(--e-global-color-1040594);
}

.cs-product .elementor-element.elementor-element-22106db1 > .elementor-widget-container {
    padding: 0px 0px 0px 00px;
}

.cs-product .elementor-element.elementor-element-22106db1 {
    text-align: center;
}

.cs-product .elementor-element.elementor-element-22106db1 .elementor-heading-title {
    font-family: var(--e-global-typography-e4c6db4-font-family), Sans-serif;
    font-size: var(--e-global-typography-e4c6db4-font-size);
    font-weight: var(--e-global-typography-e4c6db4-font-weight);
    line-height: var(--e-global-typography-e4c6db4-line-height);
    color: var(--e-global-color-1040594);
}

.cs-product .elementor-element.elementor-element-4f13c432 > .elementor-widget-container {
    margin: 20px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.cs-product .elementor-element.elementor-element-4f13c432 {
    text-align: center;
    font-family: "Fira Sans", Sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.3em;
    color: var(--e-global-color-1040594);
}

.elementor-widget-global .elementor-button {
    background-color: var(--e-global-color-accent);
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: var(--e-global-typography-accent-text-transform);
    line-height: var(--e-global-typography-accent-line-height);
    letter-spacing: var(--e-global-typography-accent-letter-spacing);
}

.cs-product .elementor-element.elementor-global-1643 .elementor-button {
    background-color: var(--e-global-color-1040594);
    fill: var(--e-global-color-text);
    color: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-global-1643 .elementor-button:hover, .cs-product .elementor-element.elementor-global-1643 .elementor-button:focus {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-global-1643 > .elementor-widget-container {
    margin: 20px 0px 0px 0px;
}

.cs-product .elementor-element.elementor-global-1643 .elementor-button:hover svg, .cs-product .elementor-element.elementor-global-1643 .elementor-button:focus svg {
    fill: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-element-5672f80:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .cs-product .elementor-element.elementor-element-5672f80 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: var(--e-global-color-1040594);
}

.cs-product .elementor-element.elementor-element-5672f80 > .elementor-element-populated {
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var(--e-global-color-1040594);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 10px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 10px;
    padding: 80px 80px 80px 80px;
}

.cs-product .elementor-element.elementor-element-5672f80 > .elementor-element-populated, .cs-product .elementor-element.elementor-element-5672f80 > .elementor-element-populated > .elementor-background-overlay, .cs-product .elementor-element.elementor-element-5672f80 > .elementor-background-slideshow {
    border-radius: 5px 5px 5px 5px;
}

.cs-product .elementor-element.elementor-element-5672f80 > .elementor-element-populated > .elementor-background-overlay {
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.cs-product .elementor-element.elementor-element-26234c31 {
    text-align: center;
}

.cs-product .elementor-element.elementor-element-26234c31 .elementor-heading-title {
    font-family: var(--e-global-typography-bfc99c9-font-family), Sans-serif;
    font-size: var(--e-global-typography-bfc99c9-font-size);
    font-weight: var(--e-global-typography-bfc99c9-font-weight);
    text-transform: var(--e-global-typography-bfc99c9-text-transform);
    line-height: var(--e-global-typography-bfc99c9-line-height);
    letter-spacing: var(--e-global-typography-bfc99c9-letter-spacing);
    color: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-element-44bc22d4 > .elementor-widget-container {
    padding: 0px 0px 0px 00px;
}

.cs-product .elementor-element.elementor-element-44bc22d4 {
    text-align: center;
}

.cs-product .elementor-element.elementor-element-44bc22d4 .elementor-heading-title {
    font-family: var(--e-global-typography-e4c6db4-font-family), Sans-serif;
    font-size: var(--e-global-typography-e4c6db4-font-size);
    font-weight: var(--e-global-typography-e4c6db4-font-weight);
    line-height: var(--e-global-typography-e4c6db4-line-height);
    color: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-element-79f0935 > .elementor-widget-container {
    margin: 20px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.cs-product .elementor-element.elementor-element-79f0935 {
    text-align: center;
    font-family: "Fira Sans", Sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.3em;
    color: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-global-1644 .elementor-button {
    background-color: var(--e-global-color-primary);
    fill: var(--e-global-color-1040594);
    color: var(--e-global-color-1040594);
}

.cs-product .elementor-element.elementor-global-1644 .elementor-button:hover, .cs-product .elementor-element.elementor-global-1644 .elementor-button:focus {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-global-1644 > .elementor-widget-container {
    margin: 20px 0px 0px 0px;
}

.cs-product .elementor-element.elementor-global-1644 .elementor-button:hover svg, .cs-product .elementor-element.elementor-global-1644 .elementor-button:focus svg {
    fill: var(--e-global-color-text);
}

.cs-product .elementor-element.elementor-element-692aa0f1 > .elementor-widget-container {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.cs-product .elementor-element.elementor-element-692aa0f1 {
    text-align: center;
    font-family: "Fira Sans", Sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.3em;
    color: var(--e-global-color-text);
}

@media (min-width: 768px) {
    .cs-product .elementor-element.elementor-element-b33e474 {
        --content-width: 1400px;
    }
}

@media (max-width: 1024px) {
    .elementor-widget-alert .elementor-alert-title {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .elementor-widget-alert .elementor-alert-description {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .elementor-widget-image .widget-image-caption {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .elementor-widget-woocommerce-product-title .elementor-heading-title {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .cs-product .elementor-element.elementor-element-0898cb9 .elementor-heading-title {
        font-size: var(--e-global-typography-a195a46-font-size);
        line-height: var(--e-global-typography-a195a46-line-height);
    }

    .elementor-widget-text-editor {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-c70ee82 {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-7d3950a {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .woocommerce .elementor-widget-woocommerce-product-price .price {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .woocommerce .cs-product .elementor-element.elementor-element-c703300 .price {
        font-size: var(--e-global-typography-e4c6db4-font-size);
        line-height: var(--e-global-typography-e4c6db4-line-height);
    }

    .elementor-widget-divider .elementor-divider__text {
        font-size: var(--e-global-typography-secondary-font-size);
        line-height: var(--e-global-typography-secondary-line-height);
    }

    .elementor-widget-woocommerce-product-add-to-cart .added_to_cart {
        font-size: var(--e-global-typography-accent-font-size);
        line-height: var(--e-global-typography-accent-line-height);
        letter-spacing: var(--e-global-typography-accent-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-0932498 .cart button, .cs-product .elementor-element.elementor-element-0932498 .cart .button {
        font-size: var(--e-global-typography-0ab8596-font-size);
        line-height: var(--e-global-typography-0ab8596-line-height);
        letter-spacing: var(--e-global-typography-0ab8596-letter-spacing);
    }

    .elementor-widget-heading .elementor-heading-title {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .cs-product .elementor-element.elementor-element-34bec92 .elementor-heading-title {
        font-size: var(--e-global-typography-80031e8-font-size);
        line-height: var(--e-global-typography-80031e8-line-height);
    }

    .cs-product .elementor-element.elementor-element-84abe97 .elementor-heading-title {
        font-size: var(--e-global-typography-80031e8-font-size);
        line-height: var(--e-global-typography-80031e8-line-height);
    }

    .elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-next {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-prev {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-active-slide {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-total-slide {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .theplus-accordion-item .plus-accordion-header {
        font-size: var(--e-global-typography-80031e8-font-size);
        line-height: var(--e-global-typography-80031e8-line-height);
    }

    .cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .theplus-accordion-item .plus-accordion-content .plus-content-editor {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-678814a .elementor-heading-title {
        font-size: var(--e-global-typography-e4c6db4-font-size);
        line-height: var(--e-global-typography-e4c6db4-line-height);
    }

    .cs-product .elementor-element.elementor-element-a2187aa .elementor-heading-title {
        font-size: var(--e-global-typography-bfc99c9-font-size);
        line-height: var(--e-global-typography-bfc99c9-line-height);
        letter-spacing: var(--e-global-typography-bfc99c9-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-22106db1 .elementor-heading-title {
        font-size: var(--e-global-typography-e4c6db4-font-size);
        line-height: var(--e-global-typography-e4c6db4-line-height);
    }

    .elementor-widget-global .elementor-button {
        font-size: var(--e-global-typography-accent-font-size);
        line-height: var(--e-global-typography-accent-line-height);
        letter-spacing: var(--e-global-typography-accent-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-26234c31 .elementor-heading-title {
        font-size: var(--e-global-typography-bfc99c9-font-size);
        line-height: var(--e-global-typography-bfc99c9-line-height);
        letter-spacing: var(--e-global-typography-bfc99c9-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-44bc22d4 .elementor-heading-title {
        font-size: var(--e-global-typography-e4c6db4-font-size);
        line-height: var(--e-global-typography-e4c6db4-line-height);
    }
}

@media (max-width: 767px) {
    .elementor-widget-alert .elementor-alert-title {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .elementor-widget-alert .elementor-alert-description {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .elementor-widget-image .widget-image-caption {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .elementor-widget-woocommerce-product-title .elementor-heading-title {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .cs-product .elementor-element.elementor-element-0898cb9 .elementor-heading-title {
        font-size: var(--e-global-typography-a195a46-font-size);
        line-height: var(--e-global-typography-a195a46-line-height);
    }

    .elementor-widget-text-editor {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-c70ee82 {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-7d3950a {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .woocommerce .elementor-widget-woocommerce-product-price .price {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .woocommerce .cs-product .elementor-element.elementor-element-c703300 .price {
        font-size: var(--e-global-typography-e4c6db4-font-size);
        line-height: var(--e-global-typography-e4c6db4-line-height);
    }

    .elementor-widget-divider .elementor-divider__text {
        font-size: var(--e-global-typography-secondary-font-size);
        line-height: var(--e-global-typography-secondary-line-height);
    }

    .woocommerce .cs-product .elementor-element.elementor-element-492cc36 .woocommerce-product-details__short-description {
        font-size: 0.8rem;
    }

    .elementor-widget-woocommerce-product-add-to-cart .added_to_cart {
        font-size: var(--e-global-typography-accent-font-size);
        line-height: var(--e-global-typography-accent-line-height);
        letter-spacing: var(--e-global-typography-accent-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-0932498 .cart button, .cs-product .elementor-element.elementor-element-0932498 .cart .button {
        font-size: var(--e-global-typography-0ab8596-font-size);
        line-height: var(--e-global-typography-0ab8596-line-height);
        letter-spacing: var(--e-global-typography-0ab8596-letter-spacing);
    }

    .elementor-widget-heading .elementor-heading-title {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .cs-product .elementor-element.elementor-element-34bec92 .elementor-heading-title {
        font-size: var(--e-global-typography-80031e8-font-size);
        line-height: var(--e-global-typography-80031e8-line-height);
    }

    .woocommerce .cs-product .elementor-element.elementor-element-4a1405e .woocommerce-product-details__short-description {
        font-size: 0.8rem;
    }

    .cs-product .elementor-element.elementor-element-84abe97 .elementor-heading-title {
        font-size: var(--e-global-typography-80031e8-font-size);
        line-height: var(--e-global-typography-80031e8-line-height);
    }

    .cs-product .elementor-element.elementor-element-b7093b7 {
        font-size: 0.8rem;
    }

    .elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-next {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-prev {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-active-slide {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .elementor-widget-tp-accordion .theplus-accordion-wrapper.tp-accr-slider .tp-aec-slide-page .tpasp-total-slide {
        font-size: var(--e-global-typography-primary-font-size);
        line-height: var(--e-global-typography-primary-line-height);
    }

    .cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .theplus-accordion-item .plus-accordion-header {
        font-size: var(--e-global-typography-80031e8-font-size);
        line-height: var(--e-global-typography-80031e8-line-height);
    }

    .cs-product .elementor-element.elementor-element-2dbf399 .theplus-accordion-wrapper .theplus-accordion-item .plus-accordion-content .plus-content-editor {
        font-size: var(--e-global-typography-text-font-size);
        line-height: var(--e-global-typography-text-line-height);
        letter-spacing: var(--e-global-typography-text-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-3698ed33 {
        margin-top: 20px;
        margin-bottom: 0px;
        padding: 0px 10px 0px 10px;
    }

    .cs-product .elementor-element.elementor-element-76cd0ecf > .elementor-element-populated {
        margin: 0px 0px 0px 0px;
        --e-column-margin-right: 0px;
        --e-column-margin-left: 0px;
        padding: 50px 0px 50px 0px;
    }

    .cs-product .elementor-element.elementor-element-678814a .elementor-heading-title {
        font-size: var(--e-global-typography-e4c6db4-font-size);
        line-height: var(--e-global-typography-e4c6db4-line-height);
    }

    .cs-product .elementor-element.elementor-element-2ab3dfe5 {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0px 0px 0px 0px;
    }

    .cs-product .elementor-element.elementor-element-4ccfbf2e > .elementor-element-populated {
        margin: 0px 0px 0px 0px;
        --e-column-margin-right: 0px;
        --e-column-margin-left: 0px;
        padding: 30px 0px 30px 0px;
    }

    .cs-product .elementor-element.elementor-element-a2187aa .elementor-heading-title {
        font-size: var(--e-global-typography-bfc99c9-font-size);
        line-height: var(--e-global-typography-bfc99c9-line-height);
        letter-spacing: var(--e-global-typography-bfc99c9-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-22106db1 .elementor-heading-title {
        font-size: var(--e-global-typography-e4c6db4-font-size);
        line-height: var(--e-global-typography-e4c6db4-line-height);
    }

    .elementor-widget-global .elementor-button {
        font-size: var(--e-global-typography-accent-font-size);
        line-height: var(--e-global-typography-accent-line-height);
        letter-spacing: var(--e-global-typography-accent-letter-spacing);
    }

    .cs-product .elementor-element.elementor-global-1643 > .elementor-widget-container {
        margin: 0px 10px 0px 10px;
        padding: 0px 0px 0px 0px;
    }

    .cs-product .elementor-element.elementor-element-5672f80 > .elementor-element-populated {
        margin: 20px 0px 0px 0px;
        --e-column-margin-right: 0px;
        --e-column-margin-left: 0px;
        padding: 30px 10px 30px 10px;
    }

    .cs-product .elementor-element.elementor-element-26234c31 .elementor-heading-title {
        font-size: var(--e-global-typography-bfc99c9-font-size);
        line-height: var(--e-global-typography-bfc99c9-line-height);
        letter-spacing: var(--e-global-typography-bfc99c9-letter-spacing);
    }

    .cs-product .elementor-element.elementor-element-44bc22d4 .elementor-heading-title {
        font-size: var(--e-global-typography-e4c6db4-font-size);
        line-height: var(--e-global-typography-e4c6db4-line-height);
    }
}

/* Start custom CSS for text-editor, class: .elementor-element-7d3950a */
body.postid-356 #looking-for {
    display: none;
}

.cs-top__left .flex-control-nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
}

.cs-top__left .flex-control-nav.flex-control-thumbs li {
    width: 100% !important;
}

.cs-form button {
    background-color: rgb(53, 117, 211) !important;
}

/* End custom CSS */