/**
 * FluentCart Styles
 * 
 * @package Marketers Delight
 * @since 1.0.0
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --fct-text: #0a0a0a;
    --fct-text-muted: #525252;
    --fct-text-light: #737373;
    --fct-bg: #fff;
    --fct-bg-muted: #fafafa;
    --fct-bg-hover: #f5f5f5;
    --fct-border: #e5e5e5;
    --fct-border-hover: #a3a3a3;
    --fct-radius: 0.375rem;
    --fct-radius-lg: 0.5rem;
    --fct-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --fct-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --fct-ring: 0 0 0 2px #fff, 0 0 0 4px #0a0a0a;
    --fct-transition: 150ms ease;
}

/* ==========================================================================
   View Switcher
   ========================================================================== */

.fct-shop-view-switcher {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.fct-shop-view-switcher button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--fct-border);
    border-radius: var(--fct-radius);
    background-color: var(--fct-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--fct-transition);
    color: var(--fct-text-light);
    padding: 0;
}

.fct-shop-view-switcher button:hover {
    background-color: var(--fct-bg-hover);
    border-color: var(--fct-border-hover);
    color: var(--fct-text);
}

.fct-shop-view-switcher button.active {
    background-color: var(--fct-text);
    border-color: var(--fct-text);
    color: var(--fct-bg);
}

/* ==========================================================================
   Filter Toggle Button (Mobile)
   ========================================================================== */

.fct-shop-filter-toggle-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--fct-bg);
    border: 1px solid var(--fct-border);
    border-radius: var(--fct-radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fct-text);
    cursor: pointer;
    margin-bottom: 1rem;
}

.fct-shop-filter-toggle-button:hover {
    background-color: var(--fct-bg-hover);
    border-color: var(--fct-border-hover);
}

/* ==========================================================================
   Filter Wrapper
   ========================================================================== */

.fct-shop-filter-wrapper {
    background-color: var(--fct-bg);
    border: 1px solid var(--fct-border);
    border-radius: var(--fct-radius-lg);
    padding: 1.25rem;
}

.fct-shop-filter-wrapper-inner {
    display: flex;
    flex-direction: column;
}

.fct-shop-filter-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ==========================================================================
   Search Input
   ========================================================================== */

.fct-shop-product-search {
    position: relative;
    margin-bottom: 1.25rem;
}

.fct-shop-product-search .fct-search-icon {
    position: absolute;
    left: 0.875rem;
    top: 35%;
    transform: translateY(-50%);
    color: var(--fct-text-light);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.fct-shop-product-search .fct-search-icon svg {
    width: 16px;
    height: 16px;
}

.fct-shop-product-search .fct-shop-input {
    width: 100%;
    padding: 0.625rem 2.5rem 0.625rem 2.5rem;
    border: 1px solid var(--fct-border);
    border-radius: var(--fct-radius);
    font-size: 0.875rem;
    font-family: inherit;
    background-color: var(--fct-bg);
    color: var(--fct-text);
    text-align: left;
    height: auto;
    line-height: 1.5;
    box-sizing: border-box;
    transition: all var(--fct-transition);
    -webkit-appearance: none;
    appearance: none;
}

.fct-shop-product-search .fct-shop-input:focus {
    border-color: var(--fct-text);
    outline: none;
    box-shadow: var(--fct-ring);
}

.fct-shop-product-search .fct-shop-input::placeholder {
    color: var(--fct-text-light);
    text-align: left;
}

.fct-shop-product-search .fct-search-clear {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fct-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all var(--fct-transition);
}

.fct-shop-product-search .fct-search-clear:hover {
    color: var(--fct-text);
    background-color: var(--fct-bg-hover);
}

.fct-shop-product-search .fct-search-clear svg {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   Filter Items
   ========================================================================== */

.fct-shop-filter-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--fct-border);
}

.fct-shop-filter-item:first-of-type {
    padding-top: 0;
}

.fct-shop-filter-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

/* Collapse Header */
.fct-shop-item-collapse-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 0.875rem;
}

.fct-shop-item-collapse-wrap .item-heading {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--fct-text);
    text-transform: uppercase;
    letter-spacing: 0.075em;
    margin: 0;
}

.fct-shop-item-collapse-wrap .toggle-icon {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--fct-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--fct-transition);
}

.fct-shop-item-collapse-wrap .toggle-icon svg {
    width: 12px;
    height: 12px;
}

.fct-shop-item-collapse-wrap[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* ==========================================================================
   Checkboxes
   ========================================================================== */

.fct-shop-checkbox-group {
    display: block;
}

.fct-shop-checkbox-group-inner {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.fct-shop-checkbox {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--fct-text-muted);
    transition: color var(--fct-transition);
    position: relative;
    padding: 0;
    margin: 0;
}

.fct-shop-checkbox:hover {
    color: var(--fct-text);
}

/* Hide default checkbox */
.fct-shop-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom checkbox */
.fct-shop-checkbox .checkmark {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid var(--fct-border);
    border-radius: 3px;
    background-color: var(--fct-bg);
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all var(--fct-transition);
}

/* Remove any weird left border on checkmark */
.fct-shop-checkbox .checkmark::before {
    display: none;
}

.fct-shop-checkbox:hover .checkmark {
    border-color: var(--fct-border-hover);
}

.fct-shop-checkbox input[type="checkbox"]:checked+.checkmark {
    background-color: var(--fct-text);
    border-color: var(--fct-text);
}

.fct-shop-checkbox input[type="checkbox"]:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid var(--fct-bg);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.fct-shop-checkbox input[type="checkbox"]:focus+.checkmark {
    outline: none;
    box-shadow: none;
    border-color: var(--fct-text);
}

/* Label text */
.fct-shop-checkbox span:last-child {
    line-height: 1.4;
}

/* ==========================================================================
   Price Range Filter
   ========================================================================== */

.fct-shop-price-range-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fct-shop-price-range-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.fct-shop-price-range {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex: 1;
}

.fct-shop-currency-sign {
    font-size: 0.875rem;
    color: var(--fct-text-muted);
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

.fc_price_range_input {
    width: 100%;
    max-width: 80px;
    padding: 0.5rem 0.5rem;
    border: 1px solid var(--fct-border);
    border-radius: var(--fct-radius);
    font-size: 0.875rem;
    font-family: inherit;
    font-weight: 500;
    background-color: var(--fct-bg);
    color: var(--fct-text);
    text-align: left;
    line-height: 1.2;
    transition: all var(--fct-transition);
    -moz-appearance: textfield;
}

/* Remove any superscript-like styling on inputs */
.fct-shop-price-range-container input {
    vertical-align: baseline;
    font-size: 0.875rem;
}

.fc_price_range_input:focus {
    border-color: var(--fct-text);
    outline: none;
    box-shadow: var(--fct-ring);
}

/* noUiSlider Overrides */
.fct-shop-range-slider.noUi-target {
    background: var(--fct-border);
    border: none;
    box-shadow: none;
    height: 4px;
    border-radius: 2px;
}

.fct-shop-range-slider .noUi-connect {
    background: var(--fct-text);
}

.fct-shop-range-slider .noUi-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--fct-bg);
    border: 2px solid var(--fct-text);
    box-shadow: var(--fct-shadow);
    cursor: pointer;
    top: -7px;
    right: -9px;
}

.fct-shop-range-slider .noUi-handle::before,
.fct-shop-range-slider .noUi-handle::after {
    display: none;
}

.fct-shop-range-slider .noUi-handle:focus {
    outline: none;
    box-shadow: var(--fct-ring);
}

/* ==========================================================================
   Products Grid Layout
   ========================================================================== */

.fct-products-wrapper-inner {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .fct-products-wrapper-inner {
        grid-template-columns: 280px 1fr;
    }
}

@media (min-width: 1024px) {
    .fct-products-wrapper-inner {
        grid-template-columns: 300px 1fr;
    }
}

/* ==========================================================================
   Products Container
   ========================================================================== */

.fct-products-container {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.fct-products-container.grid-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.fct-products-container.grid-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.fct-products-container.grid-columns-4 {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

@media (max-width: 640px) {

    .fct-products-container,
    .fct-products-container.grid-columns-2,
    .fct-products-container.grid-columns-3,
    .fct-products-container.grid-columns-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* List View */
.fct-products-wrapper-inner.mode-list .fct-products-container {
    grid-template-columns: 1fr;
}

.fct-products-wrapper-inner.mode-list .fct-product-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 640px) {
    .fct-products-wrapper-inner.mode-list .fct-product-card {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Product Cards
   ========================================================================== */

.fct-product-card {
    background-color: var(--fct-bg);
    border: 1px solid var(--fct-border);
    border-radius: var(--fct-radius-lg);
    padding: 1rem;
    transition: all var(--fct-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.fct-product-card:hover {
    box-shadow: var(--fct-shadow-md);
    border-color: #d4d4d4;
}

/* Product Image */
.fct-product-card-image-wrap {
    display: block;
    margin-bottom: 0.875rem;
    border-radius: var(--fct-radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: var(--fct-bg-muted);
}

.fct-product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fct-transition);
}

.fct-product-card:hover .fct-product-card-image {
    transform: scale(1.02);
}

/* Product Title */
h3.fct-product-card-title {
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0 0 0.375rem 0;
    line-height: 1.4;
}

a.fct-product-card-title {
    color: var(--fct-text);
    text-decoration: none;
    transition: color var(--fct-transition);
}

a.fct-product-card-title:hover {
    color: var(--fct-text-muted);
}

/* Product Prices */
.fct-product-card-prices {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    margin-bottom: 0.875rem;
    flex: 1;
}

.fct-item-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fct-text);
}

.fct-compare-price {
    font-size: 0.875rem;
    color: var(--fct-text-light);
}

.fct-compare-price del {
    text-decoration: line-through;
}

/* Add to Cart Button */
.fluent-cart-add-to-cart-button {
    min-width: 140px;
    background-color: var(--fct-text);
    border: 1px solid var(--fct-text);
    border-radius: var(--fct-radius);
    color: var(--fct-bg);
    cursor: pointer;
    font-size: 0.875rem;
    font-family: inherit;
    font-weight: 500;
    padding: 0.625rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: all var(--fct-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.25;
    margin-top: auto;
}

.fluent-cart-add-to-cart-button:hover {
    background-color: #262626;
    border-color: #262626;
}

.fluent-cart-add-to-cart-button:focus-visible {
    outline: none;
    box-shadow: var(--fct-ring);
}

.fluent-cart-add-to-cart-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Button Text */
.fluent-cart-add-to-cart-button .fct-button-text {
    display: inline;
}

/* Loading Spinner */
.fluent-cart-add-to-cart-button .fluent-cart-loader {
    display: none;
    width: 16px;
    height: 16px;
}

.fluent-cart-add-to-cart-button.loading .fct-button-text {
    display: none;
}

.fluent-cart-add-to-cart-button.loading .fluent-cart-loader {
    display: inline-block;
    animation: fct-spin 0.6s linear infinite;
}

.fluent-cart-add-to-cart-button .fluent-cart-loader svg {
    width: 16px;
    height: 16px;
}

@keyframes fct-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   No Results
   ========================================================================== */

.fluent-cart-shop-no-result-found {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--fct-text-light);
    background-color: var(--fct-bg-muted);
    border-radius: var(--fct-radius-lg);
    border: 1px dashed var(--fct-border);
    grid-column: 1 / -1;
}

.fluent-cart-shop-no-result-found p {
    margin: 0 0 0.5rem 0;
}

.fluent-cart-shop-no-result-found p:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fct-text);
}

.fluent-cart-shop-no-result-found p:last-child {
    font-size: 0.875rem;
}

.fluent-cart-shop-no-result-found a {
    color: var(--fct-text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fluent-cart-shop-no-result-found a:hover {
    text-decoration: none;
}

/* ==========================================================================
   Single Product Page
   ========================================================================== */

.fct-product-gallery-wrapper {
    position: relative;
}

.fct-product-gallery-thumb {
    border-radius: var(--fct-radius-lg);
    border: 1px solid var(--fct-border);
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: var(--fct-bg-muted);
}

.fct-product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fct-gallery-thumb-controls {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.fct-gallery-thumb-control-button {
    width: 64px;
    height: 64px;
    border: 1px solid var(--fct-border);
    border-radius: var(--fct-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--fct-transition);
    background: var(--fct-bg);
    padding: 0;
}

.fct-gallery-thumb-control-button:hover {
    border-color: var(--fct-border-hover);
}

.fct-gallery-thumb-control-button.active {
    border-color: var(--fct-text);
    border-width: 2px;
}

.fct-gallery-thumb-control-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Summary */
.fct-product-summary {
    position: relative;
}

.fct-product-title h1,
.fct-product-title h2,
.fct-product-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--fct-text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {

    .fct-product-title h1,
    .fct-product-title h2,
    .fct-product-title h3 {
        font-size: 2.5rem;
    }
}

.fct-product-excerpt,
.fct-product-description {
    color: var(--fct-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.fct-product-prices {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--fct-text);
}

.fct-product-prices .fct-product-compare-price {
    text-decoration: line-through;
    color: var(--fct-text-light);
    font-size: 1rem;
    font-weight: 400;
}

/* Product Buttons Wrap */
.fct-product-buttons-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 480px) {
    .fct-product-buttons-wrap {
        flex-direction: row;
    }
}

.fct-product-buttons-wrap button,
.fct-product-buttons-wrap .button {
    background-color: var(--fct-text);
    border: 1px solid var(--fct-text);
    border-radius: var(--fct-radius);
    color: var(--fct-bg);
    cursor: pointer;
    font-size: 0.875rem;
    font-family: inherit;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    text-align: center;
    text-decoration: none;
    transition: all var(--fct-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.25;
}

.fct-product-buttons-wrap button:hover,
.fct-product-buttons-wrap .button:hover {
    background-color: #262626;
    border-color: #262626;
}

/* Secondary/Outline Button */
.fluent-cart-direct-checkout-button {
    background-color: var(--fct-bg) !important;
    border: 1px solid var(--fct-border) !important;
    color: var(--fct-text) !important;
}

.fluent-cart-direct-checkout-button:hover {
    background-color: var(--fct-bg-hover) !important;
    border-color: var(--fct-border-hover) !important;
}

/* ==========================================================================
   Quantity Selector
   ========================================================================== */

.fct-product-quantity-container {
    margin-bottom: 1.5rem;
}

.fct-product-quantity-container .quantity-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--fct-text);
    display: block;
}

.fct-product-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--fct-border);
    border-radius: var(--fct-radius);
    overflow: hidden;
    background-color: var(--fct-bg);
}

.fct-quantity-decrease-button,
.fct-quantity-increase-button {
    width: 36px;
    height: 36px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fct-text-muted);
    transition: all var(--fct-transition);
    font-size: 1rem;
}

.fct-quantity-decrease-button:hover,
.fct-quantity-increase-button:hover {
    background-color: var(--fct-bg-hover);
    color: var(--fct-text);
}

.fct-quantity-decrease-button:disabled,
.fct-quantity-increase-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fct-quantity-input {
    width: 48px;
    height: 36px;
    border: none;
    border-left: 1px solid var(--fct-border);
    border-right: 1px solid var(--fct-border);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fct-text);
    background-color: transparent;
    -moz-appearance: textfield;
}

.fct-quantity-input::-webkit-outer-spin-button,
.fct-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.fct-quantity-input:focus {
    outline: none;
}

/* ==========================================================================
   Product Variants
   ========================================================================== */

.fct-product-variants {
    margin-bottom: 1.5rem;
    display: grid;
    gap: 0.5rem;
}

.fct-product-variant-item {
    border: 1px solid var(--fct-border);
    border-radius: var(--fct-radius);
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: all var(--fct-transition);
    background-color: var(--fct-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fct-product-variant-item:hover {
    border-color: var(--fct-border-hover);
    background-color: var(--fct-bg-muted);
}

.fct-product-variant-item.selected {
    border-color: var(--fct-text);
    border-width: 2px;
    background-color: var(--fct-bg-muted);
}

.fct-product-variant-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fct-text);
}

.fct-product-variant-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fct-text);
}

/* ==========================================================================
   Stock Status
   ========================================================================== */

.fct-product-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
}

.fct-product-stock.in-stock,
.fct-product-stock .in-stock {
    background-color: #f0fdf4;
    color: #15803d;
}

.fct-product-stock.out-of-stock,
.fct-product-stock .out-of-stock {
    background-color: #fef2f2;
    color: #b91c1c;
}

/* ==========================================================================
   Related Products
   ========================================================================== */

.fct-related-products {
    border-top: 1px solid var(--fct-border);
    padding-top: 2rem;
    margin-top: 3rem;
}

.fct-related-products h2,
.fct-related-products h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--fct-text);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.hide {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==========================================================================
   Theme Context Overrides
   ========================================================================== */

.format .fct-product-card button,
.format .fct-product-buttons-wrap button,
.single .fct-product-card button,
.single .fct-product-buttons-wrap button,
.single .fluent-cart-add-to-cart-button {
    background-color: var(--fct-text);
    border-color: var(--fct-text);
    color: var(--fct-bg);
    font-weight: 500;
    padding: 0.625rem 1.25rem;
}

.format .fct-product-card button:hover,
.format .fct-product-buttons-wrap button:hover,
.single .fct-product-card button:hover,
.single .fct-product-buttons-wrap button:hover,
.single .fluent-cart-add-to-cart-button:hover {
    background-color: #262626;
    border-color: #262626;
}

.format .fluent-cart-direct-checkout-button,
.single .fluent-cart-direct-checkout-button {
    background-color: var(--fct-bg) !important;
    color: var(--fct-text) !important;
    border: 1px solid var(--fct-border) !important;
	min-width: 140px;
}

.format .fluent-cart-direct-checkout-button:hover,
.single .fluent-cart-direct-checkout-button:hover {
    background-color: var(--fct-bg-hover) !important;
    border-color: var(--fct-border-hover) !important;
}
.single-fluent-products .fct-product-description .content-text :not(div, figure, .alignwide, section, .alignfull, .alignwide) {
    max-width:78ch;
	margin-inline:auto
}
