/* -----------------------------------------------------------------------------------

	WOOCOMMERCE SPECIFIC STYLES

-------------------------------------------------------------------------------------- */
:root {
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-50: #eff6ff;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --red-500: #ef4444;
        margin: 0;
  --yellow-500: #f59e0b;
  --text-color: var(--gray-800);
  --bg-color: #fff;
  --primary: var(--blue-500);
  --border-radius: 6px;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --woo-button-bg: #ffffff;
    --woo-button-border: #d1d5db;
    --woo-button-text: #1f2937;
    --woo-button-hover-bg: #f3f4f6;
    --woo-button-hover-border: #9ca3af;
    --woo-button-primary-bg: #1f2937;
    --woo-button-primary-hover: #111827;
    --woo-badge-radius: 999px;
    --woo-badge-sale-bg: linear-gradient( 135deg, #fb7185, #e11d48 );
    --woo-badge-sale-shadow: 0 10px 24px rgba( 225, 29, 72, 0.22 );
    --woo-badge-backorder-bg: linear-gradient( 135deg, #fbbf24, #ea580c );
    --woo-badge-backorder-shadow: 0 10px 24px rgba( 234, 88, 12, 0.2 );
}

/* Button Styles */
.button, button, input[type="submit"], input[type="button"] {
        display: block;
        font-size: 28px;
        margin-bottom: 24px;
  border: none;
  border-radius: var(--border-radius);
  color: #fff;
        display: table-header-group;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 21px;
  box-shadow: var(--shadow);
  transition: opacity .15s linear;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page #respond input#submit {
    background: var(--woo-button-bg);
    border: 1px solid var(--woo-button-border);
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    color: var(--woo-button-text);
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce-page #respond input#submit:hover {
    background: var(--woo-button-hover-bg);
    border-color: var(--woo-button-hover-border);
    color: var(--woo-button-text);
    opacity: 1;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce-page a.button.alt,
.woocommerce-page button.button.alt,
.woocommerce-page input.button.alt,
.woocommerce-page #respond input#submit.alt {
    background: var(--woo-button-primary-bg);
    border-color: var(--woo-button-primary-bg);
    color: #fff;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce-page a.button.alt:hover,
.woocommerce-page button.button.alt:hover,
.woocommerce-page input.button.alt:hover,
.woocommerce-page #respond input#submit.alt:hover {
    background: var(--woo-button-primary-hover);
    border-color: var(--woo-button-primary-hover);
    color: #fff;
}

.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  opacity: 0.75;
  text-decoration: none;
}

.button:disabled, button:disabled, input[type="submit"]:disabled, input[type="button"]:disabled {
  background: var(--gray-400);
  cursor: default !important;
}

.button:disabled:hover, button:disabled:hover, input[type="submit"]:disabled:hover, input[type="button"]:disabled:hover {
  opacity: 1;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link),
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) .wc-block-components-button__text {
        text-decoration: none;
}

.wc-block-cart__submit-container .wc-block-components-button,
.wc-block-cart__submit-container .wc-block-components-button:not(.is-link) {
    background: var(--woo-button-bg);
    border: 1px solid var(--woo-button-border);
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    color: var(--woo-button-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    min-height: 0;
    padding: 14px 21px;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.wc-block-cart__submit-container .wc-block-components-button:hover,
.wc-block-cart__submit-container .wc-block-components-button:not(.is-link):hover {
    background: var(--woo-button-hover-bg);
    border-color: var(--woo-button-hover-border);
    color: var(--woo-button-text);
    opacity: 1;
}

.wc-block-cart__submit-container .wc-block-components-button__text {
    color: inherit;
}

/* -------------------------------------------------------------------------------- */
/*	X. Fonts
/* -------------------------------------------------------------------------------- */


@font-face {
	font-family: 'WooCommerce';
	src: url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot');
	src: url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot?#iefix') format('embedded-opentype'),
		url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.woff') format('woff'),
		url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.ttf') format('truetype'),
		url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.svg#WooCommerce') format('svg');
	font-weight: normal;
	font-style: normal;
}


/* -------------------------------------------------------------------------------- */
/*	X. Shared Styles
/* -------------------------------------------------------------------------------- */


/* Fancy Quantity Inputs ----------------------------- */

.woocommerce .password-input,
.woocommerce-page .password-input {
    display: block;
    position: relative;
    width: 100%;
}

.woocommerce .password-input input,
.woocommerce-page .password-input input {
    margin-bottom: 0;
    padding-right: 44px;
}

.woocommerce .password-input .show-password-input,
.woocommerce-page .password-input .show-password-input {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    box-shadow: none;
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    height: 100%;
    justify-content: center;
    margin: 0;
    min-width: 0;
    opacity: 1;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
}

.woocommerce .password-input .show-password-input:hover,
.woocommerce-page .password-input .show-password-input:hover {
    background: transparent;
    color: var(--gray-700);
    opacity: 1;
}

.woocommerce .password-input .show-password-input:focus,
.woocommerce-page .password-input .show-password-input:focus {
    outline: none;
}

.woocommerce .password-input .show-password-input::before,
.woocommerce-page .password-input .show-password-input::before {
    color: currentColor;
    content: '\e010';
    font-family: 'WooCommerce';
    font-size: 16px;
    line-height: 1;
}

.woocommerce .password-input .show-password-input.display-password::before,
.woocommerce-page .password-input .show-password-input.display-password::before {
    content: '\e011';
}


.quantity {
    position: relative;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity input[type=number] {
    -moz-appearance: textfield;
    padding-right: 50px;
    text-align: center;
}

.quantity input:focus {
    outline: 0;
}

.quantity-nav {
    border-left: 1px solid #e1e1e5;
    position: absolute;
        bottom: 0;
        right: 0;
        top: 0;
    width: 35px;
}

.quantity-button {
    background: no-repeat center;
    background-size: auto 8px;
    cursor: pointer;
    height: 50%;
    position: absolute;
        left: 0;
        right: 1px;
    transition: background-color .1s linear, opacity .1s linear;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
    user-select: none;
}

.quantity-button:active {
    background-color: var(--gray-50);
}

.quantity-button.disabled {
    cursor: default;
    opacity: .25;
}

.quantity-button.quantity-up {
    background-image: url( ../svg/chevron-up-black.svg );
    background-position: center 45%;
    top: 1px;
}

.quantity-button.quantity-down {
    background-image: url( ../svg/chevron-down-black.svg );
    background-position: center 55%;
    bottom: 1px;
}


/* Star Rating ----------------------------- */


.star-rating {
    font-family: 'WooCommerce' !important;
    font-size: 14px;
    height: 1.5em;
    letter-spacing: 0.1em;
    line-height: 1.5;
    overflow: hidden;
    position: relative;
    width: 5.6em;
}

.star-rating:before {
    color: var(--gray-300);
    content: '\e020\e020\e020\e020\e020';
    float: left;
    letter-spacing: inherit;
    position: absolute;
        left: 0;
        top: 0;
}

.star-rating span {
    float: left;
    overflow: hidden;
    padding-top: 1.5em;
    position: absolute;
        left: 0;
        top: 0;
}

.star-rating span::before {
    color: var(--gray-900);
    content: '\e020\e020\e020\e020\e020';
    letter-spacing: inherit;
    position: absolute;
        left: 0;
        top: 0;
}


/* Stars ----------------------------- */


p.stars {
    display: inline-block;
    margin-bottom: 12px;
}

p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
}

p.stars a::before {
    color: var(--gray-300);
    content: '\e020';
    display: block;
    font-family: 'WooCommerce';
    height: 1em;
    line-height: 1;
    position: absolute;
        left: 0;
        top: 0;
    text-indent: 0;
    width: 1em;
}

p.stars a:hover ~ a::before,
p.stars.selected a.active ~ a:before {
    color: var(--gray-500);
}

p.stars:hover a::before,
p.stars.selected a.active:before,
p.stars.selected a:not(.active):before {
    color: var(--gray-900);
}


/* Breadcrumbs ----------------------------- */


.breadcrumbs,
.rank-math-breadcrumb {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-math-breadcrumb {
    display: block;
}

.rank-math-breadcrumb p {
    margin: 0;
    padding-bottom: 2px;
}

.rank-math-breadcrumb .label {
    color: var(--gray-600);
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumbs .seperator {
    background: url( ../svg/chevron-right-black.svg ) no-repeat center;
    background-size: auto 8px;
    display: inline-block;
    height: 8px;
    margin: 0 12px;
    opacity: 0.4;
    width: 5px;
}

.rank-math-breadcrumb .separator {
    display: inline-block;
    font-size: 0;
    margin: 0 12px;
    opacity: 0.4;
    vertical-align: middle;
}

.rank-math-breadcrumb .separator:before {
    background: url( ../svg/chevron-right-black.svg ) no-repeat center;
    background-size: auto 8px;
    content: "";
    display: block;
    height: 8px;
    width: 5px;
}

.breadcrumbs a,
.rank-math-breadcrumb a {
    color: inherit;
    display: inline-block;
}

.rank-math-breadcrumb .last {
    color: var(--gray-800);
}


/* WC Tabs ----------------------------- */


.woocommerce-tabs {
    display: flex;
}

.woocommerce-tabs .panel {
    width: 100%;
}

.woocommerce-tabs .panel h2,
.woocommerce-tabs #review_form .comment-reply-title {
    display: block;
    font-family: Newsreader, Georgia, serif;
    font-size: 28px;
    margin: 0 0 20px;
}

/* TABS NAVIGATION */

.wc-tabs {
    flex-shrink: 0;
    margin-right: 50px;
    width: 220px;
}

.wc-tabs li {
    border-top: 1px solid #e1e1e5;
}

.wc-tabs li:last-child {
    border-bottom: 1px solid #e1e1e5;
}

.wc-tabs a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 10px;
    position: relative;
    width: 100%;
}

.wc-tabs a:after {
    background: url( ../svg/chevron-right-black.svg ) no-repeat center;
    content: "";
    display: block;
    height: 20px;
    position: absolute;
        top: calc( 50% - 10px );
        right: 10px;
    transition: all .15s linear;
    width: 20px;
}

.wc-tabs .active a,
.wc-tabs a:hover {
    opacity: .5;
    text-decoration: none;
}


/* Widget Cart ------------------------------- */

.woocommerce-mini-cart-item {
    font-size: 14px;
    min-height: 50px;
    padding: 6px 0 6px 62px;
    position: relative;
}

.woocommerce-mini-cart-item + .woocommerce-mini-cart-item {
    margin-top: 12px;
}

.woocommerce-mini-cart-item a:not(.remove) {
    font-weight: 500;
}

.woocommerce-mini-cart-item img {
    border-radius: 2px;
    position: absolute;
        left: 0;
        top: 0;
    width: 50px;
}

.woocommerce-mini-cart-item .quantity {
    color: var(--gray-500);
    display: block;
    margin: 6px 0 0;
}

.woocommerce-mini-cart-item .remove {
    font-size: 24px;
    position: absolute;
        right: 0;
        top: 50%;
    transform: translateY( -50% );
}

.woocommerce-mini-cart-item .remove:hover {
    text-decoration: none;
    transform: translateY( -50% ) scale( 1.25 );
}

.widget_shopping_cart_content .total {
    border-top: 1px solid #e1e1e5;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px 0 0 62px;
}

.widget_shopping_cart_content .total strong {
    font-weight: 500;
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    display: flex;
    margin-top: 20px;
}

.header-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    background: var(--gray-50);
    margin: 20px -16px -16px;
    padding: 15px 16px;
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons a {
    padding: 13px 15px;
    width: 100%;
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons a + a {
    margin-left: 10px;
}


/* WooCommerce Validated Password ----------------------------- */


.woocommerce-password-strength {
    font-size: 16px;
    font-weight: 500;
    margin-top: 12px;
    padding-left: 18px;
    position: relative;
}

.woocommerce-password-strength:before {
    border-radius: 50%;
    content: "";
    display: block;
    height: 12px;
    position: absolute;
        left: 0;
        top: calc( 50% - 6px );
    width: 12px;
}

.woocommerce-password-strength.short,
.woocommerce-password-strength.bad { color: var(--red-500); }
.woocommerce-password-strength.short:before,
.woocommerce-password-strength.bad:before { background: var(--red-500); }

.woocommerce-password-strength.good { color: var(--blue-500); }
.woocommerce-password-strength.good:before { background: var(--blue-500); }

.woocommerce-password-strength.strong { color: var(--green-500); }
.woocommerce-password-strength.strong:before { background: var(--green-500); }

.woocommerce-password-hint {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 8px;
}


/* Forms Helper Classes ----------------------------- */


.form-row,
.form-row + fieldset {
    margin-top: 24px;
}

.form-row:first-child,
legend + .form-row {
    margin-top: 0;
}

.form-row textarea, 
.form-row input[type="email"], 
.form-row input[type="password"], 
.form-row input[type="search"], 
.form-row input[type="tel"], 
.form-row input[type="number"], 
.form-row input[type="text"], 
.form-row input[type="url"],
.form-row .select2-container,
.form-row:last-child {
    margin-bottom: 0;
}

.form-row label { display: block; }
.form-row label.inline { display: inline; }


/* -------------------------------------------------------------------------------- */
/*	X. Notifications
/* -------------------------------------------------------------------------------- */


.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    background: #7C4CFF;
    border-left: 6px solid rgba( 0, 0, 0, 0.2 );
    border-radius: 2px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 40px;
    padding: 21px 25px;
    position: relative;
}

.woocommerce-message,
.woocommerce-info {
    padding-right: 180px;
}

.woocommerce-message + .woocommerce-message,
.woocommerce-message + .woocommerce-error,
.woocommerce-message + .woocommerce-info,
.woocommerce-error + .woocommerce-error,
.woocommerce-error + .woocommerce-message,
.woocommerce-error + .woocommerce-info,
.woocommerce-info + .woocommerce-info,
.woocommerce-info + .woocommerce-error,
.woocommerce-info + .woocommerce-message {
    margin-top: -20px;
}

.woocommerce-error {
    background: #E84747;
}

.woocommerce-message li + li,
.woocommerce-error li + li,
.woocommerce-info li + li {
    margin-top: 10px;
}

.woocommerce-message strong,
.woocommerce-error strong, 
.woocommerce-info strong {
    font-weight: 500;
}

.woocommerce-message a,
.woocommerce-error a, 
.woocommerce-info a {
    text-decoration: underline;
}

.woocommerce-message a:hover,
.woocommerce-error a:hover, 
.woocommerce-info a:hover {
    opacity: 0.5;
}

.woocommerce-message .button,
.woocommerce-error .button, 
.woocommerce-info .button {
    background: none;
    border: 2px solid rgba( 255, 255, 255, .2 );
    margin: 0;
    min-width: 0;
    max-width: 140px;
    padding: 11px 20px;
    position: absolute;
        right: 11px;
        top: 50%;
    text-decoration: none;
    transform: translateY( -50% );
    transition: all .15s linear;
}

.woocommerce-message .button:hover,
.woocommerce-error .button:hover, 
.woocommerce-info .button:hover {
    background: rgba( 255, 255, 255, .2 );
    border-color: transparent;
    opacity: 1;
}

/* ERROR SPECIFIC */

.entry-content .woocommerce-error {
    list-style: none;
    margin-left: 0;
}

.entry-content .woocommerce-error li {
    margin: 0;
}

.entry-content .woocommerce-error li + li {
    margin-top: 10px;
}


/* -------------------------------------------------------------------------------- */
/*	X. Product Archive
/* -------------------------------------------------------------------------------- */


/* Products Header ----------------------------- */

.woocommerce-products-header {
    margin: 0 auto 60px auto;
    text-align: center;
}

.shop-start .woocommerce-products-header {
    display: none;
}

.archive-header-tools {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.archive-header-tools .woocommerce-result-count {
    margin: 0;
}

.shop-archive-layout {
    align-items: start;
    display: grid;
    gap: 40px;
    grid-template-columns: 280px minmax( 0, 1fr );
}

.shop-archive-filter-column {
    min-width: 0;
}

.shop-archive-products {
    min-width: 0;
}

.shop-archive-products ul.item-grid {
    display: grid;
    gap: 32px 24px;
    grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-archive-products ul.item-grid li.product,
.shop-archive-products ul.item-grid > li {
    margin: 0;
    width: 100%;
}

.shop-archive-products ul.products {
    display: grid;
    gap: 32px 24px;
    grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-archive-products ul.products li.product {
    margin: 0;
    width: 100%;
}

.woocommerce.archive ul.products,
.woocommerce-page.archive ul.products,
.post-type-archive-product ul.products,
.tax-product_cat ul.products,
.tax-product_tag ul.products {
    display: grid;
    gap: 32px 24px;
    grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce.archive ul.products li.product,
.woocommerce-page.archive ul.products li.product,
.post-type-archive-product ul.products li.product,
.tax-product_cat ul.products li.product,
.tax-product_tag ul.products li.product {
    float: none;
    margin: 0;
    width: 100%;
}

.woocommerce.archive ul.item-grid,
.woocommerce-page.archive ul.item-grid,
.post-type-archive-product ul.item-grid,
.tax-product_cat ul.item-grid,
.tax-product_tag ul.item-grid {
    display: grid;
    gap: 32px 24px;
    grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce.archive ul.item-grid li.product,
.woocommerce-page.archive ul.item-grid li.product,
.post-type-archive-product ul.item-grid li.product,
.tax-product_cat ul.item-grid li.product,
.tax-product_tag ul.item-grid li.product,
.woocommerce.archive ul.item-grid > li,
.woocommerce-page.archive ul.item-grid > li,
.post-type-archive-product ul.item-grid > li,
.tax-product_cat ul.item-grid > li,
.tax-product_tag ul.item-grid > li {
    float: none;
    margin: 0;
    width: 100%;
}

.shop-archive-sidebar {
    position: sticky;
        top: 24px;
}

.shop-archive-filter-toggle {
    display: none;
}

.shop-archive-sidebar .widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: none;
    margin-top: 16px;
    padding: 16px;
}

.shop-archive-sidebar .widget:first-child {
    margin-top: 0;
}

.shop-archive-sidebar .widget-title {
    color: #4b5563;
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.shop-archive-sidebar ul {
    margin-left: 0;
}

.shop-archive-sidebar li {
    list-style: none;
    margin: 0 0 6px;
}

.shop-archive-sidebar a {
    text-decoration: none;
}

.shop-archive-sidebar .price_slider_wrapper {
    margin-top: 12px;
}

.woocommerce-result-count {
    font-size: 14px;
    font-weight: 500;
}

.shop-archive-products .woocommerce-ordering,
.woocommerce.archive .woocommerce-ordering,
.woocommerce-page.archive .woocommerce-ordering,
.post-type-archive-product .woocommerce-ordering,
.tax-product_cat .woocommerce-ordering,
.tax-product_tag .woocommerce-ordering {
    margin: 0;
    width: auto;
}

.shop-archive-products .woocommerce-ordering select,
.woocommerce.archive .woocommerce-ordering select,
.woocommerce-page.archive .woocommerce-ordering select,
.post-type-archive-product .woocommerce-ordering select,
.tax-product_cat .woocommerce-ordering select,
.tax-product_tag .woocommerce-ordering select {
    min-width: 220px;
    width: auto;
    max-width: 100%;
}

.shop-archive-products nav.woocommerce-pagination,
.woocommerce.archive nav.woocommerce-pagination,
.woocommerce-page.archive nav.woocommerce-pagination,
.post-type-archive-product nav.woocommerce-pagination,
.tax-product_cat nav.woocommerce-pagination,
.tax-product_tag nav.woocommerce-pagination {
    border-top: 1px solid #e5e7eb;
    margin-top: 64px;
    padding-top: 28px;
    position: relative;
}

.shop-archive-products nav.woocommerce-pagination:before,
.woocommerce.archive nav.woocommerce-pagination:before,
.woocommerce-page.archive nav.woocommerce-pagination:before,
.post-type-archive-product nav.woocommerce-pagination:before,
.tax-product_cat nav.woocommerce-pagination:before,
.tax-product_tag nav.woocommerce-pagination:before {
    color: #6b7280;
    content: "More products";
    display: block;
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
}

.shop-archive-products nav.woocommerce-pagination ul.page-numbers,
.woocommerce.archive nav.woocommerce-pagination ul.page-numbers,
.woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers,
.post-type-archive-product nav.woocommerce-pagination ul.page-numbers,
.tax-product_cat nav.woocommerce-pagination ul.page-numbers,
.tax-product_tag nav.woocommerce-pagination ul.page-numbers {
    align-items: center;
    border-top: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0;
    padding-top: 0;
}

.shop-archive-products nav.woocommerce-pagination ul.page-numbers li,
.woocommerce.archive nav.woocommerce-pagination ul.page-numbers li,
.woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers li,
.post-type-archive-product nav.woocommerce-pagination ul.page-numbers li,
.tax-product_cat nav.woocommerce-pagination ul.page-numbers li,
.tax-product_tag nav.woocommerce-pagination ul.page-numbers li {
    list-style: none;
    margin: 0;
}

.shop-archive-products nav.woocommerce-pagination ul.page-numbers a,
.shop-archive-products nav.woocommerce-pagination ul.page-numbers span,
.woocommerce.archive nav.woocommerce-pagination ul.page-numbers a,
.woocommerce.archive nav.woocommerce-pagination ul.page-numbers span,
.woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers a,
.woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers span,
.post-type-archive-product nav.woocommerce-pagination ul.page-numbers a,
.post-type-archive-product nav.woocommerce-pagination ul.page-numbers span,
.tax-product_cat nav.woocommerce-pagination ul.page-numbers a,
.tax-product_cat nav.woocommerce-pagination ul.page-numbers span,
.tax-product_tag nav.woocommerce-pagination ul.page-numbers a,
.tax-product_tag nav.woocommerce-pagination ul.page-numbers span {
    align-items: center;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba( 15, 23, 42, 0.06 );
    color: #374151;
    display: inline-flex;
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    justify-content: center;
    min-width: 44px;
    padding: 0 16px;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease, transform .15s ease;
}

.shop-archive-products nav.woocommerce-pagination ul.page-numbers a:hover,
.woocommerce.archive nav.woocommerce-pagination ul.page-numbers a:hover,
.woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers a:hover,
.post-type-archive-product nav.woocommerce-pagination ul.page-numbers a:hover,
.tax-product_cat nav.woocommerce-pagination ul.page-numbers a:hover,
.tax-product_tag nav.woocommerce-pagination ul.page-numbers a:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 6px 18px rgba( 15, 23, 42, 0.08 );
    color: #111827;
    transform: translateY( -1px );
}

.shop-archive-products nav.woocommerce-pagination ul.page-numbers .current,
.woocommerce.archive nav.woocommerce-pagination ul.page-numbers .current,
.woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers .current,
.post-type-archive-product nav.woocommerce-pagination ul.page-numbers .current,
.tax-product_cat nav.woocommerce-pagination ul.page-numbers .current,
.tax-product_tag nav.woocommerce-pagination ul.page-numbers .current {
    background: #111827;
    border-color: #111827;
    box-shadow: 0 10px 22px rgba( 17, 24, 39, 0.18 );
    color: #fff;
}

.shop-archive-products nav.woocommerce-pagination ul.page-numbers .prev,
.shop-archive-products nav.woocommerce-pagination ul.page-numbers .next,
.woocommerce.archive nav.woocommerce-pagination ul.page-numbers .prev,
.woocommerce.archive nav.woocommerce-pagination ul.page-numbers .next,
.woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers .prev,
.woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers .next,
.post-type-archive-product nav.woocommerce-pagination ul.page-numbers .prev,
.post-type-archive-product nav.woocommerce-pagination ul.page-numbers .next,
.tax-product_cat nav.woocommerce-pagination ul.page-numbers .prev,
.tax-product_cat nav.woocommerce-pagination ul.page-numbers .next,
.tax-product_tag nav.woocommerce-pagination ul.page-numbers .prev,
.tax-product_tag nav.woocommerce-pagination ul.page-numbers .next {
    min-width: 110px;
    padding: 0 18px;
    position: static;
}

.shop-archive-products nav.woocommerce-pagination ul.page-numbers .dots,
.woocommerce.archive nav.woocommerce-pagination ul.page-numbers .dots,
.woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers .dots,
.post-type-archive-product nav.woocommerce-pagination ul.page-numbers .dots,
.tax-product_cat nav.woocommerce-pagination ul.page-numbers .dots,
.tax-product_tag nav.woocommerce-pagination ul.page-numbers .dots {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #9ca3af;
    min-width: 24px;
    padding: 0 2px;
}


/* Product Term Archive ----------------------------- */

.woocommerce-page .page-hero {
    margin-bottom: 0;
}

.term-description p {
    font-size: 22px;
    line-height: 1.5;
}

.term-has-image .woocommerce-products-header {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.term-has-image .woocommerce-products-header h1,
.term-has-image .woocommerce-products-header .term-description {
    width: calc( 50% - 20px );
}

.term-missing-image .woocommerce-products-header {
    max-width: 100%;
    width: 600px;
}

.term-missing-image .breadcrumbs,
.term-missing-image .rank-math-breadcrumb {
    text-align: center;
}

.woocommerce-products-header h1,
.woocommerce-products-header p {
    text-align: inherit;
}


/* Product Preview ----------------------------- */

li.product a {
    display: block;
}

li.product a:hover {
    text-decoration: none;
}

li.product .onsale {
    align-items: center;
    background: var(--woo-badge-sale-bg);
    border: 1px solid rgba( 255, 255, 255, 0.28 );
    border-radius: var(--woo-badge-radius);
    box-shadow: var(--woo-badge-sale-shadow);
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    gap: 6px;
    height: 28px;
    justify-content: center;
    line-height: 1;
    position: absolute;
        right: 10px;
        top: 10px;
    padding: 0 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 10;
}

li.product .sullivan-loop-backorder-badge {
    align-items: center;
    background: var(--woo-badge-backorder-bg);
    border: 1px solid rgba( 255, 255, 255, 0.28 );
    border-radius: var(--woo-badge-radius);
    box-shadow: var(--woo-badge-backorder-shadow);
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    gap: 6px;
    height: 28px;
    justify-content: center;
    left: 10px;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 0 11px;
    position: absolute;
    text-transform: uppercase;
    top: 10px;
    z-index: 10;
}

li.product .onsale,
li.product .sullivan-loop-backorder-badge,
.single-product .product-upper-wrapper > .onsale,
.single-product div.product .woocommerce-product-gallery .onsale,
.single-product div.product > .onsale,
.single-product .summary .onsale,
.single-product .product-stock-status--backorder,
.single-product .summary .price .sullivan-backorder-price .sullivan-backorder-discount {
    isolation: isolate;
    overflow: hidden;
    transform-origin: center;
    animation: sullivan-badge-float 3.2s ease-in-out infinite;
}

.single-product .product-upper-wrapper > .onsale,
.single-product div.product .woocommerce-product-gallery .onsale,
.single-product div.product > .onsale,
.single-product .summary .onsale,
.single-product .product-stock-status--backorder,
.single-product .summary .price .sullivan-backorder-price .sullivan-backorder-discount {
    position: relative;
}

li.product .onsale:after,
li.product .sullivan-loop-backorder-badge:after,
.single-product .product-upper-wrapper > .onsale:after,
.single-product div.product .woocommerce-product-gallery .onsale:after,
.single-product div.product > .onsale:after,
.single-product .summary .onsale:after,
.single-product .product-stock-status--backorder:after,
.single-product .summary .price .sullivan-backorder-price .sullivan-backorder-discount:after {
    background: linear-gradient( 115deg, transparent 18%, rgba( 255, 255, 255, 0.18 ) 34%, rgba( 255, 255, 255, 0.78 ) 50%, rgba( 255, 255, 255, 0.18 ) 66%, transparent 82% );
    content: "";
    inset: -1px;
    pointer-events: none;
    position: absolute;
    transform: translateX( -145% ) skewX( -18deg );
    z-index: 0;
    animation: sullivan-badge-shine 3.2s ease-in-out infinite;
}

.header-cart .onsale,
.sullivan-mini-cart .onsale,
.widget_shopping_cart_content .onsale,
.woocommerce-mini-cart-item .onsale {
	display: none;
}

li.product img {
    display: block;
    margin-bottom: 18px;
    border-radius: 12px;
    border: 1px solid #E1E1E5;
}

.woocommerce-loop-product__title {
    font-size: 22px;
    letter-spacing: -0.018em;
    margin: 0;
    color: var(--text-color);
}

li.product a:hover .woocommerce-loop-product__title {
    text-decoration: underline;
}

li.product .price {
    display: block;
    margin-top: 8px;
    color: var(--text-color);
}

li.product .price .sullivan-backorder-price {
    align-items: center;
    column-gap: 6px;
    display: inline-flex;
    flex-wrap: wrap;
    row-gap: 4px;
}

li.product .price .sullivan-backorder-price del {
    color: var(--gray-500);
    font-size: 0.92em;
    opacity: 1;
    text-decoration-thickness: 2px;
}

li.product .price .sullivan-backorder-price ins {
    color: var(--text-color);
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
}

li.product .price .sullivan-backorder-price .sullivan-backorder-discount {
    background: var(--woo-badge-sale-bg);
    border: 1px solid rgba( 255, 255, 255, 0.28 );
    border-radius: var(--woo-badge-radius);
    box-shadow: var(--woo-badge-sale-shadow);
    color: #fff;
    display: inline-flex;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 5px 7px;
    text-transform: uppercase;
}

li.product .button,
li.product .product-inquiry-link,
li.product .added_to_cart {
    align-items: center;
    background: var(--woo-button-bg);
    border: 1px solid var(--woo-button-border);
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    color: var(--woo-button-text);
    display: inline-flex;
    font-size: 14px;
    gap: 8px;
    justify-content: center;
    line-height: 1;
    margin-top: 16px;
    min-width: 110px;
    padding: 12px 18px;
    text-align: center;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
    vertical-align: top;
}

li.product .button:hover,
li.product .product-inquiry-link:hover,
li.product .added_to_cart {
    background: var(--woo-button-bg);
    color: var(--woo-button-text);
}

li.product .button:hover,
li.product .product-inquiry-link:hover,
li.product .added_to_cart:hover {
    background: var(--woo-button-hover-bg);
    border-color: var(--woo-button-hover-border);
    color: var(--woo-button-text);
    opacity: 1;
}

li.product .button + .added_to_cart,
li.product .product-inquiry-link + .added_to_cart,
li.product .added_to_cart + .button,
li.product .added_to_cart + .product-inquiry-link {
    margin-left: 10px;
}

.front-products__grid li.product .button,
.front-products__grid li.product .product-inquiry-link,
.front-products__grid li.product .added_to_cart {
    box-sizing: border-box;
    min-height: 46px;
}

.front-products__grid li.product .button + .added_to_cart,
.front-products__grid li.product .product-inquiry-link + .added_to_cart,
.front-products__grid li.product .added_to_cart + .button,
.front-products__grid li.product .added_to_cart + .product-inquiry-link {
    width: calc( 50% - 5px );
}

li.product .button.loading {
    opacity: 1;
}

li.product .button.loading::after {
    top: auto;
}

del {
    color: var(--gray-500);
}

ins {
    text-decoration: none;
}

del + ins {
    margin-left: 4px;
}


/* -------------------------------------------------------------------------------- */
/*	X. Single Product
/* -------------------------------------------------------------------------------- */


/* Single Product Structure ----------------------------- */


.single-product #site-content {
    background: #F7F7F9;
    padding: 0;
}

.single-product .breadcrumbs,
.single-product .rank-math-breadcrumb {
    margin: 0;
    padding: 30px 0;
}

.product-upper-wrapper {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
    position: relative;
}

.single-product .product-upper-wrapper > .onsale,
.single-product div.product .woocommerce-product-gallery .onsale,
.single-product div.product > .onsale,
.single-product .summary .onsale {
    align-items: center;
    background: var(--woo-badge-sale-bg);
    border: 1px solid rgba( 255, 255, 255, 0.28 );
    border-radius: var(--woo-badge-radius);
    box-shadow: var(--woo-badge-sale-shadow);
    color: #fff;
    display: inline-flex !important;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
    height: 30px;
    justify-content: center;
    line-height: 1;
    min-width: 0;
    margin: 0 0 18px;
    opacity: 1 !important;
    padding: 0 12px;
    text-align: center;
    text-transform: uppercase;
    visibility: visible !important;
    white-space: nowrap;
    letter-spacing: 0.08em;
}

.single-product .product-upper-wrapper > .onsale,
.single-product div.product .woocommerce-product-gallery .onsale,
.single-product div.product > .onsale {
    left: 16px;
    margin: 0;
    position: absolute !important;
    top: 16px;
    z-index: 9;
}

.product-lower-wrapper {
    background: #fff;
    padding: 80px 0;
    position: relative;
        left: calc( 50% - 50vw );
    width: 100vw;
}

.product-lower-wrapper .section-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-lower-wrapper.no-sidebar .section-inner {
    display: block;
}


/* Product Gallery ----------------------------- */


.woocommerce-product-gallery {
    position: relative;
    width: 44%;
}

.woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #E1E1E5;
}

.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image a {
    display: block;
    width: 100%;
}

.woocommerce-product-gallery .flex-control-nav {
    position: static;
    margin: 0 -5px;
}

.woocommerce-product-gallery .flex-control-nav li {
    padding: 10px 5px 0;
    width: 100px;
}

.woocommerce-product-gallery .flex-control-nav li:hover img {
    cursor: pointer;
}


/* Product Summary ----------------------------- */


.single-product .summary {
    margin: 0 auto 0 80px;
    width: 520px;
}

.single-product .summary h1 {
    font-size: 40px;
    margin: 0;
}

.single-product .product-price-rating {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin: 20px 0 25px 0;
}

.single-product .product-upper-wrapper .price {
    font-size: 24px;
    font-weight: 500;
}

.single-product .woocommerce-product-rating {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
}

.single-product .woocommerce-product-rating:before {
    background: #e1e1e5;
    content: "";
    display: block;
    height: 32px;
    position: absolute;
        left: 0;
        top: calc( 50% - 16px );
    width: 1px;
}

.woocommerce-review-link {
    color: var(--gray-500);
    font-size: 12px;
    margin-left: 6px;
    position: relative;
        top: 0;
}

.single-product .product-stock-status {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    margin-right: 2px;
    padding: 7px 10px;
    text-transform: uppercase;
}

.single-product .product-stock-status--in-stock {
    background: #ecfdf3;
    color: #15803d;
}

.single-product .product-stock-status--backorder {
    background: var(--woo-badge-backorder-bg);
    border: 1px solid rgba( 255, 255, 255, 0.28 );
    box-shadow: var(--woo-badge-backorder-shadow);
    color: #fff;
    letter-spacing: 0.08em;
}

.single-product .product-stock-status--out-of-stock {
    background: #f3f4f6;
    color: #6b7280;
}

.single-product .woocommerce-product-details__short-description {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    margin-top: 30px;
}

.single-product .woocommerce-product-details__short-description p {
    line-height: inherit;
}

.single-product .woocommerce-product-details__short-description > ol,
.single-product .woocommerce-product-details__short-description > ul {
    margin-bottom: 30px;
}

.single-product .woocommerce-product-details__short-description ol,
.single-product .woocommerce-product-details__short-description ul {
    margin-left: 40px;
}

.single-product .woocommerce-product-details__short-description ul { list-style: disc; }
.single-product .woocommerce-product-details__short-description ul ul { list-style: circle; }
.single-product .woocommerce-product-details__short-description ul ul ul { list-style: square; }

.single-product .woocommerce-product-details__short-description ol { list-style: decimal; }
.single-product .woocommerce-product-details__short-description ol ol { list-style: lower-alpha; }
.single-product .woocommerce-product-details__short-description ol ol ol { list-style: lower-roman; }

.single-product .woocommerce-product-details__short-description li {
    line-height: 1.5;
}

.single-product .woocommerce-Tabs-panel .single-product-meta {
    align-items: flex-start;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 28px 0 0;
    padding-top: 16px;
}

.single-product .woocommerce-Tabs-panel .single-product-meta > span {
    align-items: center;
    color: #475569;
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 8px;
    line-height: 1.5;
    margin: 0;
}

.single-product .woocommerce-Tabs-panel .single-product-meta .sku_wrapper .sku,
.single-product .woocommerce-Tabs-panel .single-product-meta .tagged_as a {
    background: #f8fafc;
    border: 1px solid #dbe4ef;
    border-radius: 999px;
    color: #0f172a;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    padding: 7px 12px;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.single-product .woocommerce-Tabs-panel .single-product-meta .tagged_as a:hover {
    background: #eff6ff;
    border-color: #93c5fd;
    box-shadow: 0 6px 16px rgba( 59, 130, 246, 0.12 );
    color: #1d4ed8;
}

.single-product .woocommerce-Tabs-panel .single-product-meta .tagged_as a + a {
    margin-left: 6px;
}


.single-product .summary .product-inquiry-box {
    margin-bottom: 18px;
}

.product-inquiry-box h3,
.product-inquiry-box p:first-of-type {
    max-width: 620px;
}

.product-backorder-offer {
    background: #ffffff;
    border: 1px solid #f1d5d5;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba( 17, 24, 39, 0.035 );
    margin: 14px 0 18px;
    padding: 14px;
    position: relative;
}

.product-backorder-offer:before {
    align-items: center;
    background: var(--woo-badge-backorder-bg);
    border: 1px solid rgba( 255, 255, 255, 0.28 );
    border-radius: var(--woo-badge-radius);
    box-shadow: var(--woo-badge-backorder-shadow);
    color: #ffffff;
    content: "Backorder";
    display: inline-flex;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 7px 10px;
    position: absolute;
    right: 14px;
    text-transform: uppercase;
    top: -11px;
    animation: sullivan-badge-float 3.2s ease-in-out infinite;
}

.product-backorder-offer__eyebrow {
    display: none;
}

.product-backorder-offer__title {
    color: #111827;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 4px;
}

.product-backorder-offer__lead {
    color: #374151;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.single-product .summary .price .sullivan-backorder-price {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.single-product .summary .price .sullivan-backorder-price del {
    color: #6b7280;
    font-size: 22px;
    opacity: 1;
    text-decoration-thickness: 2px;
}

.single-product .summary .price .sullivan-backorder-price ins {
    color: #111827;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
}

.single-product .summary .price .sullivan-backorder-price .sullivan-backorder-discount {
    background: var(--woo-badge-sale-bg);
    border: 1px solid rgba( 255, 255, 255, 0.28 );
    border-radius: var(--woo-badge-radius);
    box-shadow: var(--woo-badge-sale-shadow);
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    padding: 7px 10px;
    text-transform: uppercase;
}

@keyframes sullivan-badge-float {
    0%,
    100% {
        transform: translateY( 0 ) scale( 1 );
        box-shadow: inherit;
    }
    50% {
        transform: translateY( -2px ) scale( 1.03 );
    }
}

@keyframes sullivan-badge-shine {
    0%,
    18% {
        transform: translateX( -145% ) skewX( -18deg );
        opacity: 0;
    }
    24% {
        opacity: 1;
    }
    46% {
        transform: translateX( 145% ) skewX( -18deg );
        opacity: 0.95;
    }
    100% {
        transform: translateX( 145% ) skewX( -18deg );
        opacity: 0;
    }
}

@media ( prefers-reduced-motion: reduce ) {
    li.product .onsale,
    li.product .sullivan-loop-backorder-badge,
    .single-product .product-upper-wrapper > .onsale,
    .single-product div.product .woocommerce-product-gallery .onsale,
    .single-product div.product > .onsale,
    .single-product .summary .onsale,
    .single-product .product-stock-status--backorder,
    .single-product .summary .price .sullivan-backorder-price .sullivan-backorder-discount,
    .product-backorder-offer:before {
        animation: none;
    }

    li.product .onsale:after,
    li.product .sullivan-loop-backorder-badge:after,
    .single-product .product-upper-wrapper > .onsale:after,
    .single-product div.product .woocommerce-product-gallery .onsale:after,
    .single-product div.product > .onsale:after,
    .single-product .summary .onsale:after,
    .single-product .product-stock-status--backorder:after,
    .single-product .summary .price .sullivan-backorder-price .sullivan-backorder-discount:after {
        animation: none;
        display: none;
    }
}

.product-backorder-offer__metrics {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat( auto-fit, minmax( 140px, 1fr ) );
    margin-top: 12px;
}

.product-backorder-offer__metric {
    align-items: center;
    background: #fcfcfd;
    border: 1px solid #f1d5d5;
    border-radius: 10px;
    box-shadow: 0 1px 0 rgba( 17, 24, 39, 0.02 );
    display: flex;
    gap: 8px;
    justify-content: space-between;
    min-height: 0;
    padding: 9px 10px;
}

.product-backorder-offer__metric span {
    color: #6b7280;
    font-size: 10px;
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.product-backorder-offer__metric strong {
    color: #111827;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.1;
    margin-top: 0;
    text-align: right;
    white-space: nowrap;
}

.product-backorder-offer__metric--deposit {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.product-backorder-offer__metric--deposit span {
    color: #1e40af;
    font-weight: 600;
}

.product-backorder-offer__metric--deposit strong {
    color: #1d4ed8;
    font-size: 18px;
}

.product-backorder-offer__metric--eta {
    background: #fff7ed;
    border-color: #fed7aa;
}

.product-backorder-offer__metric--eta span {
    color: #9a3412;
    font-weight: 600;
}

.product-backorder-offer__metric--eta strong {
    color: #c2410c;
    font-size: 18px;
}

@media ( max-width: 860px ) {
    .product-backorder-offer__metrics {
        grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
    }
}

@media ( max-width: 640px ) {
    .product-backorder-offer__metrics {
        grid-template-columns: 1fr;
    }
}

.product-backorder-offer__note {
    color: #4b5563;
    font-size: 12px;
    margin: 8px 0 0;
}

.sullivan-cart-backorder-summary {
    background: #fff7f7;
    border: 1px solid #f4d7d7;
    border-radius: 10px;
    margin: 18px 0 10px;
    padding: 14px;
}

.sullivan-cart-backorder-summary h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.sullivan-cart-backorder-summary__grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat( auto-fit, minmax( 170px, 1fr ) );
}

.sullivan-cart-backorder-summary__item {
    background: #fff;
    border: 1px solid #f1d5d5;
    border-radius: 8px;
    padding: 9px 10px;
}

.sullivan-cart-backorder-summary__item span {
    color: #6b7280;
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.sullivan-cart-backorder-summary__item strong {
    color: #111827;
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.sullivan-cart-backorder-summary__item--eta {
    background: #fff7ed;
    border-color: #fed7aa;
}

.sullivan-cart-backorder-summary__item--eta strong {
    color: #c2410c;
}

@media ( max-width: 640px ) {
    .sullivan-cart-backorder-summary {
        padding: 12px;
    }

    .sullivan-cart-backorder-summary h3 {
        font-size: 18px;
    }

    .sullivan-cart-backorder-summary__grid {
        grid-template-columns: 1fr;
    }

    .sullivan-cart-backorder-summary__item strong {
        font-size: 18px;
    }
}

.product-inquiry-box h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.product-inquiry-box p {
    line-height: 1.6;
}

.product-inquiry-box .wpcf7 {
    margin-top: 12px;
}

.product-inquiry-box .wpcf7-form {
    display: grid;
    gap: 10px;
}

.product-inquiry-box .wpcf7-form p {
    margin: 0;
}

.product-inquiry-box .wpcf7-response-output {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 4px;
    margin-left: 0px !important;
    border: 1px solid #46b450 !important;
}

.product-inquiry-box .wpcf7-form-control-wrap {
    display: block;
}

.product-inquiry-box input,
.product-inquiry-box textarea {
    width: 100%;
}

@media ( min-width: 782px ) {
    .product-inquiry-box .wpcf7-form {
        column-gap: 16px;
        grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
        row-gap: 5px;
    }

    .product-inquiry-box .wpcf7-form p {
        grid-column: 1 / -1;
    }

    .product-inquiry-box .wpcf7-form p:has(input[name*="name"]),
    .product-inquiry-box .wpcf7-form p:has(input[autocomplete="name"]) {
        grid-column: 1;
        grid-row: 1;
    }

    .product-inquiry-box .wpcf7-form p:has(input[type="email"]),
    .product-inquiry-box .wpcf7-form p:has(input[autocomplete="email"]) {
        grid-column: 2;
        grid-row: 1;
    }
}

.in-stock {
    color: #22c55e;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    padding-left: 40px;
    position: relative;
}

.in-stock:before {
    background: #22c55e;
    border-radius: 50%;
    color: #fff;
    content: "\2714";
    display: grid;
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
    font-size: 11px;
    font-weight: 700;
    height: 18px;
    place-items: center;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
}

.out-of-stock {
    color: #E84747;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    padding-left: 40px;
    position: relative;
}

.out-of-stock:before {
    background: #E84747;
    border-radius: 50%;
    color: #fff;
    content: "\2715";
    display: grid;
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
    font-size: 11px;
    font-weight: 700;
    height: 18px;
    place-items: center;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
}

.single-product .summary .cart:not(.variations_form),
.woocommerce-variation-add-to-cart {
    align-items: stretch;
    display: flex;
    margin-bottom: 14px;
}

.single-product .summary .cart .quantity,
.woocommerce-variation-add-to-cart .quantity {
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.05 );
    overflow: hidden;
    position: relative;
    height: 44px;
    width: 94px;
}

.single-product .summary .cart input[type="number"] {
    background: transparent;
    box-sizing: border-box;
    border: 0;
    font-size: 15px;
    font-weight: 500;
    height: 44px;
    line-height: 44px;
    margin: 0;
    padding: 0 34px 0 12px;
    text-align: center;
    width: 100%;
}

.single-product .summary .cart input[type="number"]:focus {
    box-shadow: none;
    outline: none;
}

.single-product .summary .cart .quantity-nav,
.woocommerce-variation-add-to-cart .quantity-nav {
    border-left: 1px solid var(--gray-200);
    width: 28px;
}

.single-product .summary .cart .quantity-button,
.woocommerce-variation-add-to-cart .quantity-button {
    background-color: transparent;
    background-size: auto 8px;
    right: 0;
    transition: background-color .15s ease, opacity .15s ease;
}

.single-product .summary .cart .quantity-button:hover,
.woocommerce-variation-add-to-cart .quantity-button:hover {
    background-color: var(--gray-100);
}

.single-product .summary .cart .quantity-button.quantity-up,
.woocommerce-variation-add-to-cart .quantity-button.quantity-up {
    background-position: center 44%;
}

.single-product .summary .cart .quantity-button.quantity-down,
.woocommerce-variation-add-to-cart .quantity-button.quantity-down {
    background-position: center 56%;
}

.single-product .summary .cart .button {
    align-items: center;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
	min-width: 180px;
    height: 44px;
    line-height: 1;
    padding-bottom: 0;
    padding-top: 0;
}

.single-product .summary .cart .quantity + .button {
    margin: 0 0 0 12px;
}

/* Grouped Product Form */

.single-product .summary .cart.grouped_form {
	display: block;
}

.grouped_form .group_table {
	margin-bottom: 20px;
}

.grouped_form td {
	padding-left: 0;
	padding-right: 0;
}

.woocommerce-grouped-product-list-item__quantity {
	width: 107px;
}

.grouped_form .woocommerce-grouped-product-list-item__label {
	padding-left: 15px;
}

.grouped_form .woocommerce-grouped-product-list-item__price .sullivan-backorder-price {
    align-items: center;
    column-gap: 6px;
    display: inline-flex;
    flex-wrap: wrap;
    row-gap: 4px;
}

.grouped_form .woocommerce-grouped-product-list-item__price .sullivan-backorder-price del {
    color: var(--gray-500);
    font-size: 0.9em;
    opacity: 1;
    text-decoration-thickness: 2px;
}

.grouped_form .woocommerce-grouped-product-list-item__price .sullivan-backorder-price ins {
    color: var(--gray-900);
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
}

.grouped_form .woocommerce-grouped-product-list-item__price .sullivan-backorder-discount {
    align-items: center;
    background: var(--woo-badge-sale-bg);
    border: 1px solid rgba( 255, 255, 255, 0.28 );
    border-radius: var(--woo-badge-radius);
    box-shadow: var(--woo-badge-sale-shadow);
    color: #fff;
    display: inline-flex;
    font-size: 9px;
    font-weight: 700;
    isolation: isolate;
    letter-spacing: 0.08em;
    line-height: 1;
    overflow: hidden;
    padding: 5px 7px;
    position: relative;
    text-transform: uppercase;
}

.grouped_form .woocommerce-grouped-product-list-item__price .sullivan-backorder-discount:after {
    background: linear-gradient( 115deg, transparent 18%, rgba( 255, 255, 255, 0.18 ) 34%, rgba( 255, 255, 255, 0.78 ) 50%, rgba( 255, 255, 255, 0.18 ) 66%, transparent 82% );
    content: "";
    inset: -1px;
    pointer-events: none;
    position: absolute;
    transform: translateX( -145% ) skewX( -18deg );
    z-index: 0;
    animation: sullivan-badge-shine 3.2s ease-in-out infinite;
}

.grouped_form .in-stock {
	margin-bottom: 0;
}

/* Variations Form */

.product-upper-wrapper table.variations {
    overflow: visible;
}

.product-upper-wrapper table.variations tr {
    border-bottom: 1px solid #e1e1e5;
    border-top: 1px solid #e1e1e5;
    margin-bottom: 20px;
}

.product-upper-wrapper table.variations td {
    padding: 15px 0;
    position: relative;
    width: 50%;
}

.product-upper-wrapper table.variations td label {
    font-weight: 500;
}

.product-upper-wrapper table.variations .reset_variations {
    display: none !important;
}

.product-upper-wrapper table.variations tr + tr {
    border-top: none;
}

.variations_form .woocommerce-variation {
    margin-bottom: 30px;
}


/* Product Tabs ----------------------------- */

.single-product .woocommerce-tabs {
    max-width: calc( 75% - 40px );
    width: 870px;
}

.product-lower-wrapper.no-sidebar .woocommerce-tabs {
    max-width: 100%;
    width: 100%;
}

.single-product .wc-tabs a:hover:after {
    transform: translateX(3px);
}

.single-product .wc-tabs .active a:after {
    opacity: 0;
}


/* Product Content ----------------------------- */

.product_meta {
    color: #66666E;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
}

.product_meta span + span {
    margin-left: 18px;
}

.product_meta a {
    text-decoration: underline;
}

.product_meta a:hover {
    color: #111;
}


/* Product Attributes ----------------------------- */

.shop_attributes {
    border: 1px solid var(--gray-200);
    border-collapse: separate;
    border-radius: 6px;
    border-spacing: 0;
    font-size: 15px;
    overflow: hidden;
    width: 100%;
}

.shop_attributes tr {
    border-bottom: 1px solid var(--gray-200);
}

.shop_attributes tr:last-child {
    border-bottom: none;
}

.shop_attributes th,
.shop_attributes td {
    line-height: 1.5;
    padding: 12px 16px;
    vertical-align: top;
}

.shop_attributes .woocommerce-product-attributes-item__label,
.shop_attributes th {
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: 32%;
}

.shop_attributes .woocommerce-product-attributes-item__value,
.shop_attributes td {
    color: var(--gray-800);
    font-size: 15px;
    font-weight: 500;
}

.shop_attributes .woocommerce-product-attributes-item__value p,
.shop_attributes td p {
    margin: 0;
}

.shop_attributes .woocommerce-product-attributes-item__value a,
.shop_attributes td a {
    color: inherit;
    text-decoration: none;
}

.shop_attributes .woocommerce-product-attributes-item__value a:hover,
.shop_attributes td a:hover {
    text-decoration: underline;
}


/* Product Reviews ----------------------------- */

#reviews ol {
    list-style: none;
    margin: 0;
}

#reviews li {
    background: #F9F9FA;
    border-radius: 3px;
    margin: 0;
    padding: 30px;
}

#reviews li + li {
    margin-top: 20px;
}

#reviews .comment_container {
    align-items: flex-start;
    display: flex;
}

#reviews .comment_container .avatar {
    border-radius: 2px;
    margin-right: 25px;
    width: 60px;
}

#reviews .comment-text .meta {
    margin-bottom: 10px;
}

#reviews .comment-text {
    padding-bottom: 35px;
    position: relative;
}

#reviews .woocommerce-review__author {
    font-family: Newsreader, Georgia, serif;
    font-size: 20px;
    font-weight: 400;
}

#reviews .woocommerce-review__dash {
    display: none;
}

#reviews time {
    color: #767676;
    font-size: 14px;
    margin-left: 5px;
}

#reviews .comment-text .description {
    font-size: 16px;
}

#reviews .comment-text .description p {
    margin-bottom: 10px;
}

#reviews .comment-text .description p:last-child {
    margin-bottom: 0;
}

#reviews .comment-text .star-rating {
    position: absolute;
        bottom: 0;
        left: 0;
}

#review_form .comment-respond {
    border-top: none;
    margin-top: 50px;
    padding-top: 0;
}

#review_form .comment-respond:before {
    content: none;
}

#review_form .comment-notes {
    margin: -5px 0 25px;
}

#review_form .form-submit {
    margin-bottom: 0;
}


/* Product Sidebar ----------------------------- */

.product-lower-wrapper .sidebar {
    max-width: 25%;
    width: 290px;
}

.product-lower-wrapper .sidebar .widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: none;
    margin-top: 16px;
    padding: 16px;
}

.product-lower-wrapper .sidebar .widget:first-child {
    margin-top: 0;
}

.product-lower-wrapper .sidebar .widget-title {
    color: #4b5563;
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-align: center;
}

.product-lower-wrapper .sidebar .widget p {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

.product-lower-wrapper .sidebar .widget ul {
    margin-left: 0;
}

.product-lower-wrapper .sidebar .widget li {
    list-style: none;
    margin: 0 0 4px;
}

.product-lower-wrapper .sidebar .widget ul ul {
    margin: 8px 0 0 12px;
}

.product-lower-wrapper .sidebar .widget_archive li a,
.product-lower-wrapper .sidebar .widget_categories li a,
.product-lower-wrapper .sidebar .widget_meta li a,
.product-lower-wrapper .sidebar .widget_nav_menu li a,
.product-lower-wrapper .sidebar .widget_pages li a,
.product-lower-wrapper .sidebar .widget_product_categories li a,
.product-lower-wrapper .sidebar .widget_recent_entries a,
.product-lower-wrapper .sidebar .widget_recent_comments a,
.product-lower-wrapper .sidebar .widget_rss li a {
    border-radius: 10px;
    display: block;
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    padding: 9px 10px;
    text-decoration: none;
}

.product-lower-wrapper .sidebar .widget_archive li a:hover,
.product-lower-wrapper .sidebar .widget_categories li a:hover,
.product-lower-wrapper .sidebar .widget_meta li a:hover,
.product-lower-wrapper .sidebar .widget_nav_menu li a:hover,
.product-lower-wrapper .sidebar .widget_pages li a:hover,
.product-lower-wrapper .sidebar .widget_product_categories li a:hover,
.product-lower-wrapper .sidebar .widget_recent_entries a:hover,
.product-lower-wrapper .sidebar .widget_recent_comments a:hover,
.product-lower-wrapper .sidebar .widget_rss li a:hover {
    background: #f9fafb;
    color: #111827;
    text-decoration: none;
}

.product-lower-wrapper .sidebar .widget_archive li,
.product-lower-wrapper .sidebar .widget_categories li,
.product-lower-wrapper .sidebar .widget_meta li,
.product-lower-wrapper .sidebar .widget_nav_menu li,
.product-lower-wrapper .sidebar .widget_pages,
.product-lower-wrapper .sidebar .widget_product_categories li {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}

.product-lower-wrapper .sidebar .widget_text {
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
}

.product-lower-wrapper .sidebar .widget_text .textwidget {
    font-size: 14px;
}

.product-lower-wrapper .sidebar #wp-calendar thead,
.product-lower-wrapper .sidebar #wp-calendar th:first-child,
.product-lower-wrapper .sidebar #wp-calendar tbody td:first-child,
.product-lower-wrapper .sidebar #wp-calendar th,
.product-lower-wrapper .sidebar #wp-calendar td {
    border-color: #e5e7eb;
}

.product-lower-wrapper .sidebar .widget_tag_cloud a {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    color: #374151;
    margin: 4px 4px 0 0;
    padding: 5px 9px;
    text-decoration: none;
}

.product-lower-wrapper .sidebar .widget_tag_cloud a:hover {
    background: #f9fafb;
    text-decoration: none;
}


/* Related Products ----------------------------- */

.products.related,
.products.up-sells,
.cross-sells {
    margin-bottom: 80px;
    margin-top: 80px;
    width: 100%;
}

.products.related > h2,
.products.up-sells > h2,
.cross-sells > h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-weight: 500;
    margin: 0 0 20px 0;
}


/* -------------------------------------------------------------------------------- */
/*	X. Base Page Style
/* -------------------------------------------------------------------------------- */


.woocommerce-page .page-header {
    text-align: left;
}

.woocommerce-page .page-header + .section-inner {
    margin-top: 40px;
}


/* -------------------------------------------------------------------------------- */
/*	X. Cart
/* -------------------------------------------------------------------------------- */


/* Shop Table ----------------------------- */


.shop_table.cart {
    margin-bottom: 40px;
}

.shop_table.cart tr {
    position: relative;
}

.shop_table.cart tbody tr:first-child {
    border-top: 1px solid #e1e1e5;
}

.shop_table.cart th {
    font-size: 16px;
    padding: 0 10px 12px;
}

.shop_table.cart td {
    padding: 15px 10px;
}

.shop_table.cart .product-remove {
    width: 102px;
}

.shop_table.cart .product-remove .remove {
    display: block;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
}

.shop_table.cart .product-thumbnail,
.shop_table.cart img {
    padding-left: 0;
    width: 80px;
}

.shop_table.cart td.product-name {
    font-family: Newsreader, Georgia, serif;
    font-size: 20px;
}

.shop_table.cart .product-quantity .quantity {
    width: 82px;
}

.woocommerce-cart .shop_table.cart td.product-quantity,
.woocommerce-cart .shop_table.cart .cart_item .product-quantity {
    min-width: 220px;
    overflow: visible !important;
    vertical-align: top;
}

.woocommerce-cart .shop_table.cart .cart_item .product-quantity > .quantity {
    display: inline-flex;
    vertical-align: top;
}

.woocommerce-cart .shop_table.cart .cart_item .product-quantity > .sullivan-backorder-plan-under-qty {
    clear: both;
    display: block !important;
    margin-top: 12px;
    min-width: 220px;
    opacity: 1 !important;
    overflow: visible !important;
    visibility: visible !important;
    width: 100%;
}

.shop_table.cart .product-quantity input {
    margin-bottom: 0;
    padding: 10px 39px 10px 10px;
}

.shop_table.cart .product-quantity .quantity-nav {
    width: 29px;
}

.shop_table.cart td.actions {
    padding: 15px 0 0;
    position: relative;
}

.shop_table.cart .coupon {
    display: flex;
    width: 300px;
}

.shop_table.cart .coupon input[type="text"] {
    border-right: none;
    border-radius: 2px 0 0 2px;
    margin: 0 0 0 0;
    padding: 12px 15px;
}

.shop_table.cart .coupon .button {
    border-radius: 0 2px 2px 0;
    flex-shrink: 0;
}

.shop_table.cart .coupon label {
    position: absolute;
        left: -99999px;
}

.shop_table.cart td.actions > .button {
	display: block;
	margin-left: auto;
}

.shop_table.cart td.actions > .coupon ~ .button {
    position: absolute;
        right: 0;
        top: 15px;
}


/* Woo Gray Box ----------------------------- */


.woo-gray-box {
    background: #F5F5F7;
}

.woo-gray-box h2 {
    font-size: 28px;
}

.woo-gray-box table {
    margin-bottom: 15px;
}

.woo-gray-box th,
.woo-gray-box td {
    line-height: 1.625;
    padding: 20px 0;
    vertical-align: top;
    width: 50%;
}

.woo-gray-box th {
    padding-right: 40px;
}

.woo-gray-box .button.alt {
    font-size: 16px;
    padding: 22px 30px 24px;
    width: 100%;
}

.woocommerce-cart .woo-gray-box .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .woo-gray-box .wc-proceed-to-checkout .checkout-button.alt {
    background: var(--woo-button-bg) !important;
    border: 1px solid var(--woo-button-border) !important;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    color: var(--woo-button-text) !important;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 22px 30px 24px;
    text-align: center;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
    width: 100%;
}

.woocommerce-cart .woo-gray-box .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .woo-gray-box .wc-proceed-to-checkout .checkout-button.alt:hover {
    background: var(--woo-button-hover-bg) !important;
    border-color: var(--woo-button-hover-border) !important;
    color: var(--woo-button-text) !important;
    opacity: 1;
}


/* Cart Totals ----------------------------- */

.cart_totals {
    margin-left: auto;
    width: calc( 50% - 40px );
}

.woocommerce-cart .wc-block-grid__product-description,
.woocommerce-cart .wc-block-product-template .wp-block-post-excerpt,
.woocommerce-cart .wc-block-product-template .wp-block-post-excerpt__excerpt,
.woocommerce-cart .wc-block-product-template .wc-block-components-product-details__description,
.woocommerce-cart .cross-sells .woocommerce-product-details__short-description,
.woocommerce-cart .wc-block-components-product-metadata .wc-block-components-product-metadata__description > p {
    display: none;
}

.woocommerce-cart .wc-block-components-sale-badge,
.woocommerce-cart .wc-block-components-product-badge {
    display: none;
}

.shipping-calculator-button {
    color: #767676;
    display: block;
    margin-top: 3px;
    text-decoration: underline;
}

.shipping-calculator-form {
    margin-top: 20px;
}

.shipping-calculator-form .form-row + .form-row,
.shipping-calculator-form p:last-of-type {
    margin-top: 15px;
}

.order-total strong {
    font-weight: 500;
}

.woocommerce-remove-coupon {
    color: #767676;
    font-size: 13px;
    font-weight: 500;
    margin-left: 3px;
}

.woocommerce-cart .shop_table.cart .product-name .wc-item-meta,
.woocommerce-cart .shop_table.cart .product-name dl.variation {
    margin-top: 10px;
}

.woocommerce-cart .shop_table.cart .product-name .wc-item-meta dt,
.woocommerce-cart .shop_table.cart .product-name dl.variation dt {
    color: #6b7280;
    display: block;
    float: none;
    font-family: Archivo, sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.woocommerce-cart .shop_table.cart .product-name .wc-item-meta dd,
.woocommerce-cart .shop_table.cart .product-name dl.variation dd {
    margin: 0;
}

.woocommerce-cart .shop_table.cart .product-name .wc-item-meta dd p,
.woocommerce-cart .shop_table.cart .product-name dl.variation dd p {
    margin: 0;
}

.woocommerce-cart .shop_table.cart .sullivan-backorder-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.woocommerce-cart .shop_table.cart .wc-item-meta .sullivan-backorder-meta,
.woocommerce-cart .shop_table.cart dl.variation .sullivan-backorder-meta,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-meta {
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
}

.woocommerce-cart .shop_table.cart .sullivan-backorder-meta__chip {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    display: inline-flex;
    gap: 5px;
    line-height: 1.2;
    padding: 5px 7px;
}

.woocommerce-cart .shop_table.cart .wc-item-meta .sullivan-backorder-meta__chip,
.woocommerce-cart .shop_table.cart dl.variation .sullivan-backorder-meta__chip,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-meta__chip {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 7px;
    display: inline-flex !important;
    gap: 5px;
    line-height: 1.2;
    padding: 5px 7px;
}

.woocommerce-cart .shop_table.cart .sullivan-backorder-meta__chip .sullivan-backorder-meta__label {
    color: #6b7280;
    font-family: Archivo, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
}

.woocommerce-cart .shop_table.cart .sullivan-backorder-meta__chip strong {
    color: #111827;
    font-family: Archivo, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.woocommerce-cart .shop_table.cart .wc-item-meta .sullivan-backorder-meta__chip .sullivan-backorder-meta__label,
.woocommerce-cart .shop_table.cart dl.variation .sullivan-backorder-meta__chip .sullivan-backorder-meta__label,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-meta__chip .sullivan-backorder-meta__label {
    color: #6b7280 !important;
    font-family: Archivo, sans-serif !important;
    font-size: 11px !important;
    text-transform: uppercase;
}

.woocommerce-cart .shop_table.cart .wc-item-meta .sullivan-backorder-meta__chip strong,
.woocommerce-cart .shop_table.cart dl.variation .sullivan-backorder-meta__chip strong,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-meta__chip strong {
    color: #111827 !important;
    font-family: Archivo, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.woocommerce-cart .shop_table.cart .sullivan-backorder-meta__chip.is-deposit {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.woocommerce-cart .shop_table.cart .sullivan-backorder-meta__chip.is-deposit .sullivan-backorder-meta__label,
.woocommerce-cart .shop_table.cart .sullivan-backorder-meta__chip.is-deposit strong {
    color: #1d4ed8;
}

.woocommerce-cart .shop_table.cart .sullivan-backorder-meta__chip.is-eta {
    background: #fff7ed;
    border-color: #fed7aa;
}

.woocommerce-cart .shop_table.cart .sullivan-backorder-meta__chip.is-eta .sullivan-backorder-meta__label,
.woocommerce-cart .shop_table.cart .sullivan-backorder-meta__chip.is-eta strong {
    color: #c2410c;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty {
    margin-top: 12px;
    max-width: 360px;
    width: 100%;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__title,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__title {
    color: #475569;
    display: inline-flex;
    font-family: Archivo, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    padding: 0;
    text-transform: uppercase;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__qty,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__qty {
    color: #64748b;
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 11px;
    margin: 0 0 7px;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__card,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #94a3b8;
    border-radius: 8px;
    display: grid;
    gap: 4px;
    padding: 9px 10px;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__headline,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__headline {
    color: #0f172a;
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__details,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__details {
    display: grid;
    gap: 4px;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__detail,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__detail {
    align-items: baseline;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__detail-label,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__detail-label {
    color: #64748b;
    font-family: Archivo, sans-serif;
    font-size: 11px;
    line-height: 1.4;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__detail-value,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__detail-value {
    color: #0f172a;
    font-family: Archivo, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-align: right;
    white-space: nowrap;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__summary,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__summary {
    color: #64748b;
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    max-width: none;
}

.woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__eta,
.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__eta {
    align-items: center;
    background: transparent;
    border-radius: 0;
    color: #92400e;
    display: inline-flex;
    font-family: Archivo, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
    padding: 0;
    text-transform: uppercase;
}

.woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty--meta {
    max-width: 100%;
}

.woocommerce-cart .wc-block-components-product-metadata .wc-block-components-product-details__backorder,
.woocommerce-cart .wc-block-components-product-metadata dd {
    overflow: visible;
}


/* Empty Cart ----------------------------- */

.viewing-empty-cart .breadcrumbs,
.viewing-empty-cart .page-header,
.viewing-empty-cart .woocommerce p {
    text-align: center;
}

.viewing-empty-cart .woocommerce .woocommerce-message {
    display: none;
}

.viewing-empty-cart .woocommerce .cart-empty {
    font-size: 1.1em;
}

.viewing-empty-cart .woocommerce .return-to-shop {
    margin-top: 50px;
}


/* -------------------------------------------------------------------------------- */
/*	X. Checkout
/* -------------------------------------------------------------------------------- */


form.woocommerce-checkout {
    display: block;
    margin: 0 auto;
    max-width: 860px;
}

form.woocommerce-checkout > #order_review_heading {
    display: none !important;
}

form.woocommerce-checkout > .woocommerce-NoticeGroup {
    width: 100%;
}

form.woocommerce-checkout #customer_details,
form.woocommerce-checkout #order_review {
    background: linear-gradient( 180deg, #ffffff 0%, #fcfcfd 100% );
    border: 1px solid #e6e9ef;
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba( 15, 23, 42, 0.06 );
    padding: 28px;
    width: 100%;
}

form.woocommerce-checkout #order_review {
    margin-top: 20px;
    position: static;
}

form.woocommerce-checkout #customer_details .col-1,
form.woocommerce-checkout #customer_details .col-2 {
    float: none;
    margin: 0;
    width: 100%;
}

form.woocommerce-checkout #customer_details .col-2 {
    margin-top: 32px;
}

form.woocommerce-checkout .woocommerce-billing-fields h3,
#order_review_heading {
    font-size: 28px;
    margin-bottom: 22px;
}

form.woocommerce-checkout .woocommerce-billing-fields h3,
form.woocommerce-checkout .woocommerce-shipping-fields h3,
form.woocommerce-checkout .woocommerce-additional-fields h3,
#order_review .shop_table thead,
#order_review .shop_table tfoot th,
#payment .payment_methods > li > label {
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
}


/* Checkout Coupon ----------------------------- */


.checkout_coupon {
    display: flex;
    margin-bottom: 40px;
}

.checkout_coupon .form-row {
    display: inherit;
}

.checkout_coupon p + p {
    margin: 0 0 0 10px;
}

.checkout_coupon input[type="text"] {
    margin: 0;
}


/* Checkout Login ----------------------------- */

.woocommerce-checkout .woocommerce-form-login {
    margin: 40px auto;
}

.woocommerce-checkout .woocommerce-form-login > p:first-child {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}


/* Checkout Form ----------------------------- */

.woocommerce-shipping-fields {
    margin-bottom: 24px;
}

.woocommerce-shipping-fields #ship-to-different-address {
    font-family: inherit;
    font-size: 1em;
    margin: 0;
}

.woocommerce-shipping-fields .shipping_address {
    margin-top: 24px;
}

.wc-block-checkout .wc-block-components-address-form .wc-block-components-text-input,
.wc-block-checkout .wc-block-components-address-form .wc-blocks-components-select {
    margin-bottom: 24px;
}

.wc-block-checkout .wc-block-components-address-form .wc-block-components-text-input label,
.wc-block-checkout .wc-block-components-address-form .wc-blocks-components-select label {
    display: block;
    margin-bottom: 8px;
}

.wc-block-checkout .wc-block-components-address-card {
    align-items: flex-start;
    background: #F5F5F7;
    border-radius: 10px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 18px 20px;
}

.wc-block-checkout .wc-block-components-address-card address {
    background: transparent;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    padding: 0;
}

.wc-block-checkout .wc-block-components-address-card__edit {
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    color: var(--gray-800);
    display: inline-flex;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 500;
    gap: 8px;
    line-height: 1;
    min-height: 36px;
    padding: 0 14px;
    text-decoration: none;
}

.wc-block-checkout .wc-block-components-address-card__edit:before {
    background: url( ../svg/location-black.svg ) no-repeat center;
    background-size: 14px auto;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}

.wc-block-checkout .wc-block-components-address-card__edit:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    opacity: 1;
    text-decoration: none;
}

form.woocommerce-checkout #customer_details .woocommerce-additional-fields {
    margin-top: 28px;
}

form.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

form.woocommerce-checkout .woocommerce-input-wrapper input,
form.woocommerce-checkout .woocommerce-input-wrapper textarea,
form.woocommerce-checkout .woocommerce-input-wrapper select,
form.woocommerce-checkout input.input-text,
form.woocommerce-checkout textarea,
form.woocommerce-checkout select {
    border-radius: 12px;
    min-height: 52px;
}

form.woocommerce-checkout textarea {
    min-height: 120px;
}

form.woocommerce-checkout label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.place-order .woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 15px;
}

.place-order .woocommerce-terms-and-conditions-wrapper p {
	font-size: 0.8em;
	line-height: 1.25;
}

.place-order .woocommerce-terms-and-conditions-wrapper a {
	text-decoration: underline;
}

.sullivan-account-shortcut {
    margin: 0 0 20px;
}

.sullivan-account-shortcut__link {
    align-items: center;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.08 );
    color: var(--gray-800);
    display: inline-flex;
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    gap: 10px;
    line-height: 1;
    padding: 12px 18px;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.sullivan-account-shortcut__link:before {
    background: url( ../svg/account-black.svg ) no-repeat center;
    background-size: auto 18px;
    content: "";
    display: block;
    height: 18px;
    width: 18px;
}

.sullivan-account-shortcut__link:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    box-shadow: 0 2px 6px rgba( 0, 0, 0, 0.08 );
    color: var(--gray-800);
    opacity: 1;
    text-decoration: none;
}


/* Order Review ----------------------------- */

form.woocommerce-checkout .order-review-wrapper.woo-gray-box {
    background: transparent;
}

#order_review thead {
    display: none;
}

#order_review .shop_table.woocommerce-checkout-review-order-table {
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
    width: 100%;
}

#order_review ul,
#order_review ol,
#payment ul,
#payment ol,
.wc_payment_methods,
.wc_payment_methods li,
#shipping_method,
#shipping_method li {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

#order_review .shop_table tbody td,
#order_review .shop_table tbody th,
#order_review .shop_table tfoot td,
#order_review .shop_table tfoot th {
    color: var(--gray-800);
    font-size: 14px;
    line-height: 1.55;
}

#order_review .shop_table td,
#order_review .shop_table th {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 16px;
    vertical-align: top;
}

#order_review tbody tr:last-child {
    border-bottom-width: 1px;
}

#order_review tbody tr:first-child td {
    padding-top: 0;
}

#order_review .shop_table tbody tr:last-child td {
    padding-bottom: 20px;
}

#order_review tfoot th {
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: right;
    text-transform: uppercase;
}

.product-name .product-quantity {
    font-weight: 400;
}

#order_review .product-name {
    align-items: flex-start;
    display: block;
}

#order_review .product-name,
#order_review .cart_item .product-name,
#order_review .cart-subtotal th,
#order_review .shipping th,
#order_review .fee th,
#order_review .tax-total th,
#order_review .tax-rate th,
#order_review .coupon th,
#order_review .order-total th {
    padding-right: 18px;
}

#order_review .cart_item .product-name {
    font-family: Newsreader, Georgia, serif;
    font-size: 16px;
    letter-spacing: -0.015em;
    line-height: 1.2;
    width: 80%;
}

#order_review .cart_item .product-total {
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
    width: 20%;
}

#order_review .product-name .sullivan-checkout-product-name__line {
    align-items: flex-start;
    display: flex;
    gap: 8px;
}

#order_review .product-name .sullivan-checkout-product-name__title {
    flex: 1 1 auto;
    min-width: 0;
}

#order_review .product-name .sullivan-checkout-product-name__title,
#order_review .product-name .sullivan-checkout-product-name__title a {
    overflow-wrap: break-word;
    word-break: normal;
}

#order_review .product-name .sullivan-checkout-product-name__qty {
    align-items: center;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    color: var(--gray-600);
    display: inline-flex;
    flex: 0 0 auto;
    font-family: Newsreader, Georgia'Helvetica Neue', Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    padding: 7px 10px;
    text-align: right;
    white-space: nowrap;
}

#order_review .product-name .sullivan-checkout-backorder {
    margin-top: 10px;
    width: 100%;
}

#order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__card {
    max-width: 100%;
}

#order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__details {
    display: grid;
    gap: 4px;
}

#order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__detail {
    align-items: baseline;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

#order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__detail-label {
    color: #64748b;
    font-family: Archivo, sans-serif;
    font-size: 11px;
    line-height: 1.4;
}

#order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__detail-value {
    color: #0f172a;
    font-family: Archivo, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-align: right;
    white-space: nowrap;
}

#order_review .woocommerce-checkout-review-order-table .variation,
#order_review .woocommerce-checkout-review-order-table dl.variation {
    color: var(--gray-600);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 10px;
}

#order_review .woocommerce-checkout-review-order-table .variation dt,
#order_review .woocommerce-checkout-review-order-table .variation dd,
#order_review .woocommerce-checkout-review-order-table dl.variation dt,
#order_review .woocommerce-checkout-review-order-table dl.variation dd {
    display: inline;
}

#order_review .woocommerce-checkout-review-order-table .variation dd,
#order_review .woocommerce-checkout-review-order-table dl.variation dd {
    margin-left: 4px;
}

#order_review .woocommerce-checkout-review-order-table .variation .sullivan-backorder-plan-under-qty,
#order_review .woocommerce-checkout-review-order-table dl.variation .sullivan-backorder-plan-under-qty {
    display: block;
    margin-top: 10px;
    max-width: 100%;
}

#order_review .woocommerce-checkout-review-order-table .variation .sullivan-backorder-plan-under-qty__title,
#order_review .woocommerce-checkout-review-order-table dl.variation .sullivan-backorder-plan-under-qty__title {
    color: #475569;
    display: inline-flex;
    font-family: Archivo, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    padding: 0;
    text-transform: uppercase;
}

#order_review .woocommerce-checkout-review-order-table .variation .sullivan-backorder-plan-under-qty__qty,
#order_review .woocommerce-checkout-review-order-table dl.variation .sullivan-backorder-plan-under-qty__qty {
    color: #64748b;
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 11px;
    margin: 0 0 7px;
}

#order_review .woocommerce-checkout-review-order-table .variation .sullivan-backorder-plan-under-qty__card,
#order_review .woocommerce-checkout-review-order-table dl.variation .sullivan-backorder-plan-under-qty__card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #94a3b8;
    border-radius: 8px;
    display: grid;
    gap: 4px;
    margin-top: 0;
    padding: 9px 10px;
}

#order_review .woocommerce-checkout-review-order-table .variation .sullivan-backorder-plan-under-qty__headline,
#order_review .woocommerce-checkout-review-order-table dl.variation .sullivan-backorder-plan-under-qty__headline {
    color: #0f172a;
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

#order_review .woocommerce-checkout-review-order-table .variation .sullivan-backorder-plan-under-qty__summary,
#order_review .woocommerce-checkout-review-order-table dl.variation .sullivan-backorder-plan-under-qty__summary {
    color: #64748b;
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 11px;
    line-height: 1.4;
}

#order_review .woocommerce-checkout-review-order-table .variation .sullivan-backorder-plan-under-qty__eta,
#order_review .woocommerce-checkout-review-order-table dl.variation .sullivan-backorder-plan-under-qty__eta {
    align-items: center;
    background: transparent;
    border-radius: 0;
    color: #92400e;
    display: inline-flex;
    font-family: Archivo, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    text-transform: uppercase;
}

#order_review .woocommerce-checkout-review-order-table tfoot tr:first-child th,
#order_review .woocommerce-checkout-review-order-table tfoot tr:first-child td {
    border-top: 1px solid #d1d5db;
    padding-top: 20px;
}

#order_review .woocommerce-checkout-review-order-table tfoot td {
    font-size: 15px;
    font-weight: 600;
    text-align: right;
}

#order_review .woocommerce-checkout-review-order-table .shipping td,
#order_review .woocommerce-checkout-review-order-table .shipping th {
    padding-bottom: 18px;
}

#order_review .woocommerce-checkout-review-order-table .shipping ul,
#order_review .woocommerce-checkout-review-order-table .shipping #shipping_method {
    display: grid;
    gap: 8px;
    justify-items: end;
}

#order_review .woocommerce-checkout-review-order-table .shipping_method {
    color: var(--gray-700);
    font-weight: 500;
}

#order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-totals th,
#order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-totals td {
    border-bottom: 0;
    padding-bottom: 8px;
    padding-top: 8px;
}

#order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-totals th {
    color: var(--gray-700);
    font-size: 11px;
    letter-spacing: 0.08em;
}

#order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-totals td {
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 700;
}

#order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-totals--deposit th,
#order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-totals--deposit td {
    color: #0f172a;
}

#order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-note th {
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 18px;
    padding-right: 0;
    padding-top: 14px;
}

#order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-note__eyebrow {
    color: #92400e;
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

#order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-note__text {
    color: var(--gray-700);
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.5;
    text-transform: none;
}

#order_review .woocommerce-checkout-review-order-table .order-total th,
#order_review .woocommerce-checkout-review-order-table .order-total td {
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 22px;
}

#order_review .woocommerce-checkout-review-order-table .order-total th {
    color: var(--gray-900);
}

#order_review .woocommerce-checkout-review-order-table .order-total td {
    color: var(--gray-900);
    font-family: Newsreader, Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

#order_review .woocommerce-checkout-review-order-table .amount {
    white-space: nowrap;
}

@media ( min-width: 901px ) {
    #order_review .cart_item .product-name {
        width: 84%;
    }

    #order_review .cart_item .product-total {
        width: 16%;
    }
}

@media ( max-width: 680px ) {
    #order_review .cart_item .product-name {
        font-size: 18px;
        padding-right: 12px;
        width: auto;
    }

    #order_review .cart_item .product-total {
        font-size: 14px;
        text-align: right;
        white-space: nowrap;
        width: 1%;
    }

    #order_review .product-name .sullivan-checkout-product-name__line {
        align-items: flex-start;
        gap: 6px;
    }

    #order_review .product-name .sullivan-checkout-product-name__title {
        flex: 1 1 auto;
    }

    #order_review .product-name .sullivan-checkout-product-name__qty {
        font-size: 11px;
        padding: 6px 9px;
    }

    #order_review .product-name .sullivan-checkout-backorder {
        margin-top: 8px;
    }

    #order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__card {
        gap: 6px;
    }

    #order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__headline {
        font-size: 13px;
    }

    #order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__detail {
        align-items: flex-start;
        gap: 2px;
        flex-direction: column;
    }

    #order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__detail-label,
    #order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__detail-value {
        font-size: 10px;
        line-height: 1.35;
    }

    #order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__detail-value {
        text-align: left;
        white-space: normal;
    }

    #order_review .product-name .sullivan-checkout-backorder .sullivan-backorder-plan-under-qty__eta {
        font-size: 9px;
        line-height: 1.3;
        white-space: normal;
    }

    #order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-totals th {
        font-size: 10px;
    }

    #order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-totals td {
        font-size: 14px;
    }

    #order_review .woocommerce-checkout-review-order-table .sullivan-checkout-backorder-note__text {
        font-size: 11px;
        line-height: 1.45;
    }

    #order_review .woocommerce-checkout-review-order-table .order-total td {
        font-size: 24px;
    }
}

/* PAYMENT METHODS */

.wc_payment_methods {
    border-top: 1px solid #e5e7eb;
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 24px;
}

#payment .place-order {
    border-top: 1px solid #e5e7eb;
    margin-top: 20px;
    padding-top: 20px;
}

@media ( max-width: 900px ) {
	form.woocommerce-checkout {
		display: block;
		max-width: 100%;
	}

	form.woocommerce-checkout #customer_details,
	form.woocommerce-checkout #order_review {
		width: 100%;
	}

	form.woocommerce-checkout #order_review {
		margin-top: 18px;
		position: static;
	}
}

@media ( max-width: 680px ) {
    form.woocommerce-checkout {
        display: block;
        max-width: 100%;
    }

    form.woocommerce-checkout #customer_details,
    form.woocommerce-checkout #order_review {
        border-radius: 16px;
        padding: 22px 16px;
        width: 100%;
    }

    form.woocommerce-checkout #order_review {
        margin-top: 18px;
        position: static;
    }

    form.woocommerce-checkout #customer_details .col-2 {
        margin-top: 24px;
    }
}

.wc_payment_methods li {
    padding-left: 30px;
    position: relative;
}

.wc_payment_methods li + li {
    border-top: 1px solid #e1e1e5;
    margin-top: 20px;
    padding-top: 20px;
}

.wc_payment_methods label {
    cursor: pointer;
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
    position: relative;
}

.wc_payment_methods > li > label:before,
.wc_payment_methods > li > label:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 16px;
    position: absolute;
        left: -30px;
        top: -1px;
    width: 16px;
}

.wc_payment_methods > li > input {
    position: absolute;
        left: -9999px;
}

.wc_payment_methods > li > label:before {
    border: 2px solid #111;
    cursor: pointer;
}

.wc_payment_methods > li > label:after {
    background: #111;
    height: 10px;
    left: -25px;
    top: 4px;
    transform: scale( 0 );
    transition: transform .15s ease-out;
    width: 10px;
}

.wc_payment_methods > li > input:checked + label:after {
    transform: scale( 1 );
}

.wc_payment_methods p {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 8px;
}

/* PayPal Specific */

.payment_method_paypal img,
.payment_method_ppec_paypal img {
    position: absolute;
        right: 0;
        top: 50%;
    transform: translateY( -50% );
    width: 35px;
}

.payment_method_paypal .about_paypal {
    color: #66666E;
    font-size: 12px;
    padding: 5px 45px 5px 0;
    position: absolute;
        right: 0;
        top: 50%;
    transform: translateY( -50% );
}

.payment_method_paypal .about_paypal:hover {
    color: #111;
    text-decoration: none;
}


/* -------------------------------------------------------------------------------- */
/*	X. Order Received
/* -------------------------------------------------------------------------------- */


.woocommerce-order {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.woocommerce-order .woocommerce-order-overview,
.woocommerce-order .woocommerce-order-details {
    background: #F5F5F7;
    flex: 1 1 0;
    margin: 0;
    min-width: 0;
    padding: 10px;
    position: relative;
    width: auto;
}

.woocommerce-order .woocommerce-order-downloads {
    background: #F5F5F7;
    flex: 1 1 100%;
    margin: 0;
    padding: 40px;
    position: relative;
    width: 100%;
}

.woocommerce-order .woocommerce-order-overview:before,
.woocommerce-order .woocommerce-order-downloads:before,
.woocommerce-order .woocommerce-order-details:before,
.woocommerce-order .woocommerce-order-overview:after,
.woocommerce-order .woocommerce-order-downloads:after,
.woocommerce-order .woocommerce-order-details:after {
    background: repeat-x center;
    content: "";
    display: block;
    height: 16px;
    position: absolute;
        left: 0;
        right: 0;
}

.woocommerce-order .woocommerce-order-overview:before,
.woocommerce-order .woocommerce-order-downloads:before,
.woocommerce-order .woocommerce-order-details:before {
    top: -15px;
    background-image: url( ../svg/jagged-border-top.svg );
}

.woocommerce-order .woocommerce-order-overview:after,
.woocommerce-order .woocommerce-order-downloads:after,
.woocommerce-order .woocommerce-order-details:after {
    bottom: -15px;
    background-image: url( ../svg/jagged-border-bottom.svg );
}

.woocommerce-order .woocommerce-customer-details,
.woocommerce-order .woocommerce-notice {
    width: 100%;
}

.woocommerce-order .woocommerce-notice {
    margin-bottom: 0;
}

.woocommerce-order .woocommerce-thankyou-order-received {
    background: #EFF7F0;
    border: 1px solid #CFE4D2;
    border-radius: 10px;
    color: #214D2D;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    padding: 22px 28px;
}

.woocommerce-order .woocommerce-thankyou-payment-method {
    background: #F8F4EC;
    border: 1px solid #E6DDCD;
    border-radius: 10px;
    color: var(--gray-800);
    margin-top: -18px;
    padding: 18px 28px;
    width: 100%;
}

.woocommerce-thankyou-payment-method__label {
    color: var(--gray-700);
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.woocommerce-thankyou-payment-method__value {
    display: block;
    font-family: Newsreader, Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
}

.woocommerce-order .sullivan-order-backorder-summary,
.woocommerce-order-details .sullivan-order-backorder-summary {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-top: 24px;
    padding: 20px 22px;
}

.woocommerce-order .sullivan-order-backorder-summary__header,
.woocommerce-order-details .sullivan-order-backorder-summary__header {
    margin-bottom: 16px;
}

.woocommerce-order .sullivan-order-backorder-summary__eyebrow,
.woocommerce-order-details .sullivan-order-backorder-summary__eyebrow {
    color: #92400e;
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.woocommerce-order .sullivan-order-backorder-summary__note,
.woocommerce-order-details .sullivan-order-backorder-summary__note {
    color: var(--gray-700);
    font-family: Archivo, sans-serif;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.woocommerce-order .sullivan-order-backorder-summary__grid,
.woocommerce-order-details .sullivan-order-backorder-summary__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat( auto-fit, minmax( 180px, 1fr ) );
}

.woocommerce-order .sullivan-order-backorder-summary__item,
.woocommerce-order-details .sullivan-order-backorder-summary__item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: grid;
    gap: 6px;
    padding: 14px 16px;
}

.woocommerce-order .sullivan-order-backorder-summary__item span,
.woocommerce-order-details .sullivan-order-backorder-summary__item span {
    color: var(--gray-600);
    font-family: Archivo, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.4;
    overflow-wrap: normal;
    text-transform: uppercase;
    word-break: normal;
}

.woocommerce-order .sullivan-order-backorder-summary__item strong,
.woocommerce-order-details .sullivan-order-backorder-summary__item strong {
    color: var(--gray-900);
    display: block;
    font-family: Newsreader, Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.15;
    white-space: nowrap;
}

.woocommerce-order .sullivan-order-backorder-summary__item--deposit,
.woocommerce-order-details .sullivan-order-backorder-summary__item--deposit {
    border-color: #d6c4a1;
    box-shadow: inset 0 0 0 1px rgba( 146, 64, 14, 0.05 );
}

.woocommerce-order .sullivan-order-backorder-summary__item--eta,
.woocommerce-order-details .sullivan-order-backorder-summary__item--eta {
    grid-column: 1 / -1;
}

.woocommerce-order-details .sullivan-order-backorder-summary {
    margin-bottom: 28px;
}


/* Order Overview ----------------------------- */

.woocommerce-order-overview {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-order-overview li + li {
    border-top: 1px solid #E1E1E5;
    margin-top: 18px;
    padding-top: 18px;
}

.woocommerce-order-overview li {
    background: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 20px;
    justify-content: space-between;
    list-style: none;
    min-height: 0;
    padding: 0;
}

.woocommerce-order-overview strong {
    display: block;
    font-family: Newsreader, Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.35;
    margin-left: auto;
    margin-top: 0;
    text-align: right;
}


/* Order Downloads ----------------------------- */


.woocommerce-order-downloads + .woocommerce-order-details {
	margin-top: 60px;
}

.woocommerce-order-downloads__title {
	font-size: 24px;
	margin-bottom: 25px;
}

.woocommerce-order-downloads table {
	margin-bottom: 0;
}

.woocommerce-order-downloads .woocommerce-table--order-downloads tbody tr:nth-child(odd) {
	background: rgba( 0, 0, 0, 0.025 );
}


/* Order Details ----------------------------- */

.woocommerce-order-details table {
    margin-bottom: 0;
    table-layout: fixed;
    width: 100%;
}

.woocommerce-order-details__title {
    display: block;
    font-size: 28px;
    margin-bottom: 24px;
}

.woocommerce-order-details thead {
    display: table-header-group;
}

.woocommerce-order-details thead th {
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0 0 16px;
    text-transform: uppercase;
}

.woocommerce-order-details tbody td a {
    color: inherit;
    text-decoration: none;
}

.woocommerce-order-details tbody tr:last-child {
    border-bottom-width: 1px;
}

.woocommerce-order-details tbody tr:first-child td {
    padding-top: 0;
}

.woocommerce-order-details tfoot tr:last-child th,
.woocommerce-order-details tfoot tr:last-child td {
    padding-bottom: 0;
}

.woocommerce-order-details td,
.woocommerce-order-details th {
    padding: 20px 0;
    vertical-align: top;
    width: auto;
}

.woocommerce-order-details th {
    padding-right: 40px;
}

.woocommerce-order-details th.product-name,
.woocommerce-order-details td.product-name {
    text-align: left;
    width: 68%;
}

.woocommerce-order-details .sullivan-order-item__header {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.woocommerce-order-details .sullivan-order-item__name {
    flex: 1 1 auto;
    min-width: 0;
}

.woocommerce-order-details .sullivan-order-item__quantity {
    flex: 0 0 auto;
    font-weight: 400;
    margin: 0;
    text-align: right;
    white-space: nowrap;
}

.woocommerce-order-details .sullivan-order-item__meta {
    margin-top: 8px;
}

.woocommerce-order-details .sullivan-order-backorder {
    margin-top: 12px;
    max-width: 380px;
}

.woocommerce-order-details .sullivan-order-backorder__badge {
    color: #475569;
    display: inline-flex;
    font-family: Archivo, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    padding: 0;
    text-transform: uppercase;
}

.woocommerce-order-details .sullivan-order-backorder__card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #94a3b8;
    border-radius: 8px;
    display: grid;
    gap: 4px;
    padding: 9px 10px;
}

.woocommerce-order-details .sullivan-order-backorder__headline {
    color: #0f172a;
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.woocommerce-order-details .sullivan-order-backorder__summary {
    color: #64748b;
    display: block;
    font-family: Archivo, sans-serif;
    font-size: 11px;
    line-height: 1.4;
}

.woocommerce-order-details .sullivan-order-backorder__eta {
    align-items: center;
    background: transparent;
    border-radius: 0;
    color: #92400e;
    display: inline-flex;
    font-family: Archivo, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    text-transform: uppercase;
}

.woocommerce-order-details th.product-total,
.woocommerce-order-details td.product-total {
    text-align: right;
    white-space: nowrap;
    width: 32%;
}

.woocommerce-order-details .sullivan-order-item__total,
.woocommerce-order-details th.product-total > *,
.woocommerce-order-details td.product-total > * {
    display: block;
    text-align: right;
}

.woocommerce-order-details tfoot th {
    text-align: right;
}

.woocommerce-order-details tfoot td,
.woocommerce-order-details tfoot th {
    color: var(--gray-800);
    font-weight: 600;
}

.woocommerce-order-details tfoot td {
    text-align: right;
}

.woocommerce-order-details .order-again {
    margin-top: 25px;
}


/* Customer Details ----------------------------- */

.woocommerce-customer-details {
    margin-top: 20px;
}

.woocommerce-customer-details .woocommerce-column__title {
    font-size: 22px;
    margin-bottom: 18px;
}


.woocommerce-columns--addresses {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.woocommerce-order .woocommerce-columns--addresses {
    gap: 40px;
    margin-top: 0;
}

.woocommerce-columns--addresses h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.woocommerce-columns--addresses .woocommerce-column {
    width: calc( 50% - 20px );
}

.woocommerce-order .woocommerce-columns--addresses .woocommerce-column {
    background: #F5F5F7;
    border-radius: 10px;
    min-height: 100%;
    padding: 32px;
}

.woocommerce-order .woocommerce-columns--addresses .woocommerce-column > :last-child {
    margin-bottom: 0;
}

.woocommerce-columns--addresses address {
    background: transparent;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 0;
    padding: 0;
    white-space: pre-line;
}

.woocommerce-customer-details .woocommerce-customer-details--phone,
.woocommerce-customer-details .woocommerce-customer-details--email {
    border-top: 1px solid #E1E1E5;
    display: block;
    font-size: 14px;
    margin-top: 16px;
    padding-top: 16px;
}

.woocommerce-columns--addresses address {
    margin-bottom: 0;
}


/* -------------------------------------------------------------------------------- */
/*	X. My Account
/* -------------------------------------------------------------------------------- */


.account-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.account-wrapper > .woocommerce {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 75%;
    width: 870px;
}

.account-wrapper > .woocommerce > .woocommerce-message,
.account-wrapper > .woocommerce > .woocommerce-error,
.account-wrapper > .woocommerce > .woocommerce-info {
    width: 100%;
}

.account-nav-wrapper {
    flex-shrink: 0;
    margin-right: 50px;
    width: 220px;
}

.account-wrapper > .woocommerce > .woocommerce-MyAccount-navigation {
    flex-shrink: 0;
    margin-right: 50px;
    width: 220px;
}

.woocommerce-MyAccount-content {
    width: calc( 100% - 270px );
}

.account-wrapper .sidebar {
    width: calc( 25% - 40px  );
}


/* Account Nav ----------------------------- */


@media ( min-width: 801px ) {
    .account-nav-wrapper nav,
    .woocommerce-MyAccount-navigation {
        display: block !important;
    }
}

.account-nav-wrapper,
.woocommerce-MyAccount-navigation {
    font-size: 16px;
}

.account-nav-wrapper .toggle {
    display: none;
}

.account-nav-wrapper li,
.woocommerce-MyAccount-navigation li {
    border-top: none;
    list-style: none;
}

.account-nav-wrapper li + li,
.woocommerce-MyAccount-navigation li + li {
    margin-top: 2px;
}

.account-nav-wrapper ul,
.woocommerce-MyAccount-navigation ul {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: none;
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 8px;
}

.account-nav-wrapper a,
.woocommerce-MyAccount-navigation a {
    color: var(--gray-700);
    display: block;
    border-radius: 8px;
    font-weight: 500;
    padding: 14px 48px 14px 14px;
    position: relative;
    transition: background-color .18s ease, color .18s ease;
}

.account-nav-wrapper li a,
.woocommerce-MyAccount-navigation li a {
    opacity: 1;
}

.account-nav-wrapper a:before,
.woocommerce-MyAccount-navigation a:before {
    background: no-repeat center;
    content: "";
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
        right: 14px;
        top: calc( 50% - 10px );
    transition: opacity .18s ease;
    width: 20px;
}

.woocommerce-MyAccount-navigation-link--dashboard a:before { background-image: url( ../svg/account-black.svg ); background-size: 20px auto; }
.woocommerce-MyAccount-navigation-link--orders a:before { background-image: url( ../svg/orders-black.svg ); background-size: auto 20px; }
.woocommerce-MyAccount-navigation-link--downloads a:before { background-image: url( ../svg/download-black.svg ); background-size: 20px auto; }
.woocommerce-MyAccount-navigation-link--edit-address a:before { background-image: url( ../svg/location-black.svg ); background-size: auto 20px; }
.woocommerce-MyAccount-navigation-link--edit-account a:before { background-image: url( ../svg/cog-black.svg ); background-size: 17px auto; }
.woocommerce-MyAccount-navigation-link--customer-logout a:before { background-image: url( ../svg/sign-out-arrow-right-black.svg ); background-size: auto 16px; }

.account-nav-wrapper li.is-active a,
.account-nav-wrapper li a:hover,
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    background: #f9fafb;
    color: var(--gray-900);
    text-decoration: none;
}

.account-nav-wrapper li.is-active a,
.woocommerce-MyAccount-navigation li.is-active a {
    background: #f3f4f6;
    color: #111827;
    font-weight: 600;
}

.account-nav-wrapper li.is-active a:before,
.account-nav-wrapper li a:hover:before,
.woocommerce-MyAccount-navigation li.is-active a:before,
.woocommerce-MyAccount-navigation li a:hover:before {
    opacity: 1;
}


/* WooCommerce Account Content ----------------------------- */

.woocommerce-MyAccount-content > p {
    line-height: 1.5;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content > *:last-child {
    margin-bottom: 0;
}

.woocommerce-MyAccount-content mark {
    background: none;
}

.woocommerce-MyAccount-content a:not(.button) {
    text-decoration: none;
}

.woocommerce-MyAccount-content a:not(.button):hover {
    opacity: 0.7;
    text-decoration: none;
}

.woocommerce-MyAccount-content form .button {
    margin-top: 24px;
}


/* WooCommerce Account Orders ----------------------------- */

.woocommerce-orders-table,
.woocommerce-table--order-downloads {
    font-size: 14px;
}

.woocommerce-orders-table tr,
.woocommerce-table--order-downloads tr {
    border: none;
}

.woocommerce-orders-table tbody tr:nth-child(odd),
.woocommerce-table--order-downloads tbody tr:nth-child(odd) {
    background: #F5F5F7;
}

.woocommerce-orders-table td,
.woocommerce-orders-table th,
.woocommerce-table--order-downloads td,
.woocommerce-table--order-downloads th {
    padding: 18px 20px 18px 0;
}

.woocommerce-orders-table td:first-child,
.woocommerce-orders-table th:first-child,
.woocommerce-table--order-downloads td:first-child,
.woocommerce-table--order-downloads th:first-child {
    padding-left: 20px;
}

.woocommerce-orders-table thead th,
.woocommerce-table--order-downloads thead th {
    padding-top: 0;
}

.woocommerce-orders-table__cell-order-number a,
.woocommerce-table--order-downloads .download-product a {
    font-weight: 500;
    text-decoration: none;
}

.woocommerce-orders-table .button,
.woocommerce-table--order-downloads .button {
    background: none;
    color: #111;
    font-size: 1em;
    font-weight: 400;
    min-width: auto;
    padding: 0;
    text-decoration: underline;
}

.woocommerce-orders-table .button:hover,
.woocommerce-table--order-downloads .button:hover {
    text-decoration: underline;
}

.woocommerce-orders-table__cell-order-actions .button {
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    color: var(--gray-800);
    display: inline-flex;
    font-size: 13px;
    font-weight: 500;
    gap: 8px;
    line-height: 1;
    min-height: 36px;
    padding: 0 14px;
    text-decoration: none;
}

.woocommerce-orders-table__cell-order-actions .button:before {
    background: url( ../svg/spyglass-black.svg ) no-repeat center;
    background-size: 14px auto;
    content: "";
    display: block;
    height: 14px;
    width: 14px;
}

.woocommerce-orders-table__cell-order-actions .button:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    opacity: 1;
    text-decoration: none;
}


/* WooCommerce Account Order Details ----------------------------- */

.woocommerce-view-order .account-wrapper .order-status {
    font-weight: 500;
}

.woocommerce-MyAccount-content .woocommerce-column {
    width: calc( 50% - 10px );
}

.woocommerce-order-details {
    background: #F5F5F7;
    padding: 40px;
    border-radius: 6px;
}


/* WooCommerce Account Addresses ----------------------------- */

.account-wrapper .woocommerce-Addresses {
    margin-top: 40px;
}

.woocommerce-Addresses {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.woocommerce-Addresses .woocommerce-Address {
    background: #F5F5F7;
    border-radius: 10px;
    padding: 24px;
    width: calc( 50% - 10px );
}

.woocommerce-Address-title {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.woocommerce-Address-title h2 {
    font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.woocommerce-Address-title > * {
    display: block;
    margin: 0;
}

.woocommerce-Address-title .edit {
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    color: var(--gray-800);
    display: inline-flex;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 500;
    gap: 8px;
    line-height: 1;
    margin-left: 0;
    min-height: 36px;
    padding: 0 14px;
    text-decoration: none;
    white-space: nowrap;
}

.woocommerce-Address-title .edit:before {
    background: url( ../svg/location-black.svg ) no-repeat center;
    background-size: 14px auto;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}

.woocommerce-Address-title .edit:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    opacity: 1;
    text-decoration: none;
}

.woocommerce-Address address {
    background: transparent;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    padding: 0;
    white-space: pre-line;
}

.woocommerce-Address address br {
    content: "";
    display: block;
    margin-top: 4px;
}

/* EDIT ADDRESS */

h3 + .woocommerce-address-fields {
    margin-top: 30px;
}


/* Edit Account ----------------------------- */

.woocommerce-EditAccountForm label {
    display: block;
}


/* -------------------------------------------------------------------------------- */
/*	X. Login & Registration
/* -------------------------------------------------------------------------------- */


.showing-registration-form #site-content .section-inner .col2-set .col-1 { display: none; }
.showing-login-form #site-content .section-inner .col2-set .col-2 { display: none; }

.single-account-form #site-content .section-inner .section-inner.max-percentage {
    max-width: 400px;
}

.both-account-forms #site-content .col2-set > div {
    max-width: 400px;
    width: calc( 50% - 20px );
}

.both-account-forms #site-content .section-inner .section-inner.max-percentage {
    max-width: 880px;
    width: 100%;
}

.both-account-forms #site-content .section-inner .col2-set {
    display: flex;
    justify-content: space-between;
}

.account-form .woocommerce h2 {
    margin-bottom: 25px;
}

.account-form .woocommerce p {
    line-height: 1.5;
}

.woocommerce .woocommerce-form-login .button {
    margin-right: 1rem;
}

.woocommerce .woocommerce-form-login > .lost_password {
    display: none;
}

.woocommerce .login-registration-form-links {
    margin-top: 20px;
}

.woocommerce .login-registration-form-links p {
    display: inline;
    font-size: 14px;
    font-weight: 500;
}

.woocommerce .login-registration-form-links .sep {
    color: #767676;
    margin: 0 8px 0 5px;
}


/* Lost Password ----------------------------- */


.account-form.woocommerce-lost-password .woocommerce-message {
    padding-right: 20px;
}


/* -------------------------------------------------------------------------------- */
/*	X. WooCommerce Widgets
/* -------------------------------------------------------------------------------- */


/* Widget Cart ------------------------------- */

.widget_shopping_cart_content {
    font-size: 14px;
}


/* Widget Products --------------------------- */

.widget_products .product_list_widget li {
    font-size: 14px;
    min-height: 60px;
    padding: 0 0 0 72px;
    position: relative;
}

.widget_products .product_list_widget li a {
    display: block;
    padding-top: 8px;
}

.widget_products .product_list_widget li img {
    border-radius: 2px;
    display: block;
    height: 60px;
    position: absolute;
        left: 0;
        top: 0;
    width: 60px;
}

.widget_products .product_list_widget .product-title {
    display: block;
    font-family: Newsreader, Georgia, serif;
    font-size: 18px;
    margin-bottom: 5px;
    width: 100%;
}


/* -------------------------------------------------------------------------------- */
/*	X. Media Queries
/* -------------------------------------------------------------------------------- */


@media ( max-width: 1100px ) {


    /* Single Product ----------------------------- */

    .woocommerce-product-gallery {
		width: 38%;
    }

    .single-product .summary {
        margin-left: 40px;
    }

    .product-lower-wrapper .sidebar {
        display: none;
    }

    .single-product .woocommerce-tabs {
        max-width: 100%;
    }


    /* Cart ----------------------------- */

    .cart_totals {
        width: calc( 66.6% - 5px );
    }


    /* My Account ----------------------------- */

    .account-wrapper > .woocommerce {
        max-width: 100%;
        width: 100%;
    }

    .account-wrapper .sidebar {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 80px;
        width: 100%;
    }

    .account-wrapper .sidebar .widget {
        width: calc( 50% - 20px );
    }

    .account-wrapper .sidebar .widget:nth-child(2) {
        margin-top: 0;
    }


}


@media ( max-width: 1000px ) {


    /* Mobile Menu Account ----------------------------- */

    .mobile-account {
        font-size: 14px;
        font-weight: 500;
        padding: 10px 0;
    }

    .mobile-account a {
        display: block;
        padding: 15px 5vw 15px calc( 10vw + 18px );
        position: relative;
    }

    .mobile-account a:before {
        background: no-repeat center;
        content: "";
        display: block;
        height: 18px;
        position: absolute;
            left: 5vw;
            top: calc( 50% - 9px );
        width: 18px;
    }

    .mobile-account a.sign-in:before { background-image: url( ../svg/padlock-black.svg ); background-size: auto 17px; }
    .mobile-account a.my-account:before,
    .mobile-account a.register:before { background-image: url( ../svg/account-black.svg ); background-size: auto 18px; }
    .mobile-account a.sign-out:before { background-image: url( ../svg/sign-out-arrow-black.svg ); background-size: 16px auto; }

    /* Single Product ----------------------------- */

    .product-upper-wrapper {
        display: block;
    }

    .woocommerce-product-gallery {
        left: auto;
        margin-left: auto;
        margin-right: auto;
        max-width: 92vw;
        width: 92vw;
    }

    .woocommerce-product-gallery .flex-viewport,
    .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .single-product .summary {
        margin: 40px 0 0;
        max-width: 700px;
        width: 100%;
    }


}


@media ( max-width: 900px ) {

    .woocommerce-product-gallery {
        left: auto;
        margin-left: auto;
        margin-right: auto;
        max-width: 95vw;
        width: 95vw;
    }


    /* Checkout ----------------------------- */


    form.woocommerce-checkout {
        display: block;
    }
    
    form.woocommerce-checkout #customer_details,
    form.woocommerce-checkout #order_review {
        width: 100%;
    }

    form.woocommerce-checkout #order_review {
        margin-top: 40px;
    }


    /* Order Review ----------------------------- */

    .woocommerce-order,
    .woocommerce-columns--addresses {
        display: block;
    }

	.woocommerce-order .woocommerce-order-overview,
	.woocommerce-order .woocommerce-order-downloads, 
    .woocommerce-order .woocommerce-order-details,
    .woocommerce-columns--addresses .woocommerce-column {
        width: 100%;
    }

	.woocommerce-order .woocommerce-order-overview {
		margin-top: 24px;
	}

	.woocommerce-order .woocommerce-order-downloads,
    .woocommerce-order .woocommerce-order-details {
		margin-top: 24px;
    }

    .woocommerce-columns--addresses .woocommerce-column + .woocommerce-column {
        margin-top: 40px;
    }


    /* My Account ----------------------------- */

    /* ADDRESSES */

    .woocommerce-Addresses {
        display: block;
    }

    .woocommerce-Addresses .woocommerce-Address {
        width: 100%;
    }

    .woocommerce-Addresses .woocommerce-Address + .woocommerce-Address {
        margin-top: 40px;
    }


}


@media ( max-width: 800px ) {


    /* Product Archive ----------------------------- */

    .shop-archive-layout {
        display: block;
    }

    .shop-archive-filter-column {
        margin-bottom: 24px;
    }

    .shop-archive-products nav.woocommerce-pagination,
    .woocommerce.archive nav.woocommerce-pagination,
    .woocommerce-page.archive nav.woocommerce-pagination,
    .post-type-archive-product nav.woocommerce-pagination,
    .tax-product_cat nav.woocommerce-pagination,
    .tax-product_tag nav.woocommerce-pagination {
        margin-top: 48px;
        padding-top: 22px;
    }

    .shop-archive-products nav.woocommerce-pagination ul.page-numbers .prev,
    .shop-archive-products nav.woocommerce-pagination ul.page-numbers .next,
    .woocommerce.archive nav.woocommerce-pagination ul.page-numbers .prev,
    .woocommerce.archive nav.woocommerce-pagination ul.page-numbers .next,
    .woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers .prev,
    .woocommerce-page.archive nav.woocommerce-pagination ul.page-numbers .next,
    .post-type-archive-product nav.woocommerce-pagination ul.page-numbers .prev,
    .post-type-archive-product nav.woocommerce-pagination ul.page-numbers .next,
    .tax-product_cat nav.woocommerce-pagination ul.page-numbers .prev,
    .tax-product_cat nav.woocommerce-pagination ul.page-numbers .next,
    .tax-product_tag nav.woocommerce-pagination ul.page-numbers .prev,
    .tax-product_tag nav.woocommerce-pagination ul.page-numbers .next {
        min-width: 0;
    }

    .shop-archive-products .woocommerce-ordering,
    .woocommerce.archive .woocommerce-ordering,
    .woocommerce-page.archive .woocommerce-ordering,
    .post-type-archive-product .woocommerce-ordering,
    .tax-product_cat .woocommerce-ordering,
    .tax-product_tag .woocommerce-ordering {
        width: 100%;
    }

    .shop-archive-products .woocommerce-ordering select,
    .woocommerce.archive .woocommerce-ordering select,
    .woocommerce-page.archive .woocommerce-ordering select,
    .post-type-archive-product .woocommerce-ordering select,
    .tax-product_cat .woocommerce-ordering select,
    .tax-product_tag .woocommerce-ordering select {
        min-width: 0;
        width: 100%;
    }

    .shop-archive-filter-toggle {
        align-items: center;
        background: #fff;
        border: 1px solid #e1e1e5;
        border-radius: 999px;
        box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.04 );
        display: inline-flex;
        font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
        font-size: 14px;
        font-weight: 500;
        gap: 12px;
        justify-content: center;
        line-height: 1;
        margin-bottom: 12px;
        min-width: 160px;
        padding: 14px 18px;
        text-decoration: none;
        transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
    }

    .shop-archive-filter-toggle:hover {
        background: #f9fafb;
        border-color: #d1d5db;
        box-shadow: 0 2px 6px rgba( 0, 0, 0, 0.06 );
        text-decoration: none;
    }

    .shop-archive-filter-toggle.active {
        background: #f3f4f6;
        border-color: #d1d5db;
    }

    .wc-block-product-filters__open-overlay {
        align-items: center;
        background: #fff;
        border: 1px solid #e1e1e5;
        border-radius: 999px;
        box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.04 );
        color: var(--text-color);
        display: inline-flex;
        font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
        font-size: 14px;
        font-weight: 500;
        gap: 12px;
        justify-content: center;
        line-height: 1;
        margin-bottom: 12px;
        min-width: 160px;
        padding: 14px 18px;
        text-decoration: none;
        transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
    }

    .wc-block-product-filters__open-overlay:hover,
    .wc-block-product-filters__open-overlay:focus {
        background: #f9fafb;
        border-color: #d1d5db;
        box-shadow: 0 2px 6px rgba( 0, 0, 0, 0.06 );
        color: var(--text-color);
        text-decoration: none;
    }

    .wc-block-product-filters__open-overlay:after {
        background: url( ../svg/chevron-down-black.svg ) no-repeat center;
        background-size: 16px auto;
        content: "";
        display: block;
        flex-shrink: 0;
        height: 16px;
        width: 16px;
    }

    .wc-block-product-filters__overlay-header {
        display: flex;
        flex-flow: row;
        justify-content: flex-end;
        text-align: right;
    }

    .wc-block-product-filters__close-overlay {
        align-items: center;
        background: #fff;
        border: 1px solid #e1e1e5;
        border-radius: 999px;
        box-shadow: 0 8px 24px rgba( 15, 23, 42, 0.12 );
        color: var(--text-color);
        display: inline-flex;
        font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
        font-size: 13px;
        font-weight: 500;
        gap: 8px;
        height: 42px;
        justify-content: center;
        opacity: 1;
        padding: 0 14px;
        margin-left: auto;
        text-decoration: none;
        transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
    }

    .wc-block-product-filters__close-overlay:hover,
    .wc-block-product-filters__close-overlay:focus,
    .wc-block-product-filters__close-overlay:active {
        background: #f9fafb;
        border-color: #d1d5db;
        box-shadow: 0 10px 28px rgba( 15, 23, 42, 0.16 );
        color: var(--text-color);
        opacity: 1;
    }

    .wc-block-product-filters__close-overlay span {
        line-height: 1;
        padding: 0;
    }

    .wc-block-product-filters__close-overlay svg {
        display: block;
        fill: currentColor;
        flex-shrink: 0;
        height: 16px;
        width: 16px;
    }

    .shop-archive-filter-toggle:before {
        background: url( ../svg/chevron-down-black.svg ) no-repeat center;
        background-size: 16px auto;
        content: "";
        display: block;
        height: 16px;
        order: 2;
        transition: transform .25s linear;
        width: 16px;
    }

    .shop-archive-filter-toggle.active:before {
        transform: rotate( 180deg );
    }

    .shop-archive-filter-toggle .hide,
    .shop-archive-filter-toggle.active .show {
        display: none;
    }

    .shop-archive-filter-toggle .show,
    .shop-archive-filter-toggle.active .hide {
        display: inline-block;
    }

    .shop-archive-sidebar {
        display: block;
        margin-bottom: 32px;
        position: static;
    }

    .shop-archive-products ul.products {
        display: grid !important;
        grid-template-columns: repeat( 2, minmax( 0, 1fr ) ) !important;
    }

    .shop-archive-products ul.item-grid {
        display: grid !important;
        grid-template-columns: repeat( 2, minmax( 0, 1fr ) ) !important;
    }

    .shop-archive-products ul.item-grid > li,
    .shop-archive-products ul.item-grid li.product,
    .shop-archive-products ul.products > li,
    .shop-archive-products ul.products li.product {
        float: none;
        margin: 0 !important;
        width: 100% !important;
    }

    .woocommerce.archive ul.products,
    .woocommerce-page.archive ul.products,
    .post-type-archive-product ul.products,
    .tax-product_cat ul.products,
    .tax-product_tag ul.products {
        display: grid !important;
        grid-template-columns: repeat( 2, minmax( 0, 1fr ) ) !important;
    }

    .woocommerce.archive ul.item-grid,
    .woocommerce-page.archive ul.item-grid,
    .post-type-archive-product ul.item-grid,
    .tax-product_cat ul.item-grid,
    .tax-product_tag ul.item-grid {
        display: grid !important;
        grid-template-columns: repeat( 2, minmax( 0, 1fr ) ) !important;
    }

    .woocommerce.archive ul.item-grid > li,
    .woocommerce-page.archive ul.item-grid > li,
    .post-type-archive-product ul.item-grid > li,
    .tax-product_cat ul.item-grid > li,
    .tax-product_tag ul.item-grid > li,
    .woocommerce.archive ul.item-grid li.product,
    .woocommerce-page.archive ul.item-grid li.product,
    .post-type-archive-product ul.item-grid li.product,
    .tax-product_cat ul.item-grid li.product,
    .tax-product_tag ul.item-grid li.product {
        float: none;
        margin: 0 !important;
        width: 100% !important;
    }

    .woocommerce.archive li.product .button,
    .woocommerce.archive li.product .product-inquiry-link,
    .woocommerce.archive li.product .added_to_cart,
    .woocommerce-page.archive li.product .button,
    .woocommerce-page.archive li.product .product-inquiry-link,
    .woocommerce-page.archive li.product .added_to_cart,
    .post-type-archive-product li.product .button,
    .post-type-archive-product li.product .product-inquiry-link,
    .post-type-archive-product li.product .added_to_cart,
    .tax-product_cat li.product .button,
    .tax-product_cat li.product .product-inquiry-link,
    .tax-product_cat li.product .added_to_cart,
    .tax-product_tag li.product .button,
    .tax-product_tag li.product .product-inquiry-link,
    .tax-product_tag li.product .added_to_cart {
        box-sizing: border-box;
        min-width: 100%;
        width: 100%;
    }

    .woocommerce.archive li.product .button + .added_to_cart,
    .woocommerce.archive li.product .product-inquiry-link + .added_to_cart,
    .woocommerce.archive li.product .added_to_cart + .button,
    .woocommerce.archive li.product .added_to_cart + .product-inquiry-link,
    .woocommerce-page.archive li.product .button + .added_to_cart,
    .woocommerce-page.archive li.product .product-inquiry-link + .added_to_cart,
    .woocommerce-page.archive li.product .added_to_cart + .button,
    .woocommerce-page.archive li.product .added_to_cart + .product-inquiry-link,
    .post-type-archive-product li.product .button + .added_to_cart,
    .post-type-archive-product li.product .product-inquiry-link + .added_to_cart,
    .post-type-archive-product li.product .added_to_cart + .button,
    .post-type-archive-product li.product .added_to_cart + .product-inquiry-link,
    .tax-product_cat li.product .button + .added_to_cart,
    .tax-product_cat li.product .product-inquiry-link + .added_to_cart,
    .tax-product_cat li.product .added_to_cart + .button,
    .tax-product_cat li.product .added_to_cart + .product-inquiry-link,
    .tax-product_tag li.product .button + .added_to_cart,
    .tax-product_tag li.product .product-inquiry-link + .added_to_cart,
    .tax-product_tag li.product .added_to_cart + .button,
    .tax-product_tag li.product .added_to_cart + .product-inquiry-link {
        margin-left: 0;
        margin-top: 10px;
    }

    .woocommerce-products-header {
        margin-bottom: 40px;
    }

    /* TERM ARCHIVE */

    .term-has-image .woocommerce-products-header,
    .term-missing-image .woocommerce-products-header {
        display: block;
        margin: 0 auto 80px auto;
        max-width: 100%;
        text-align: center;
        width: 600px;
    }

    .term-has-image .breadcrumbs,
    .term-has-image .rank-math-breadcrumb {
        text-align: center;
    }

    .term-has-image .woocommerce-products-header h1,
    .term-has-image .woocommerce-products-header .term-description {
        width: 100%;
    }

    /* PRODUCT PREVIEW */

    li.product img {
        margin-bottom: 10px;
    }

    .woocommerce-loop-product__title {
        font-size: 18px;
    }

    li.product .price {
        font-size: 14px;
    }

    li.product .button,
    li.product .product-inquiry-link,
    li.product .added_to_cart {
        min-width: 128px;
        padding: 11px 16px;
    }


    /* Single Product ----------------------------- */

    .product-lower-wrapper {
        padding-top: 0;
    }

    .woocommerce-tabs {
        display: block;
    }

    .product-lower-wrapper .wc-tabs {
        border-bottom: 1px solid #e1e1e5;
        border-top: 1px solid #e1e1e5;
        display: flex;
        margin-bottom: 80px;
        padding: 0 5%;
        position: relative;
            left: calc( 50% - 50vw );
        width: 100vw;
    }

    .product-lower-wrapper .wc-tabs li {
        border: none;
        border-left: 1px solid #e1e1e5;
        width: 100%;
    }

    .product-lower-wrapper .wc-tabs li:last-child {
        border-right: 1px solid #e1e1e5;
    }

    .product-lower-wrapper .wc-tabs a {
        padding-left: 20px;
    }


    /* Cart ----------------------------- */

    /* CART TABLE */

    .shop_table.cart .product-remove {
        width: 60px;
    }

    /* CART TOTALS */

    .cart_totals {
        width: 100%;
    }


    /* My Account ----------------------------- */

    .account-wrapper > .woocommerce,
    .account-nav-wrapper .toggle {
        display: block;
    }

    .account-nav-wrapper,
    .woocommerce-MyAccount-content {
        width: 100%;
    }

    .account-nav-wrapper,
    .account-wrapper > .woocommerce > .woocommerce-MyAccount-navigation {
        margin-bottom: 40px;
        margin-right: 0;
    }

    .account-nav-wrapper .toggle {
        border: 1px solid #e1e1e5;
        line-height: 1;
        text-decoration: none;
    }

    .account-nav-wrapper .toggle:before {
        background-image: url( ../svg/chevron-down-black.svg ); background-size: 16px auto;
        transition: transform .25s linear;
    }

    .account-nav-wrapper .toggle.active:before {
        transform: rotate(180deg);
    }

    .account-nav-wrapper li:first-child,
    .woocommerce-MyAccount-navigation li:first-child {
        border-top: none;
    }

    .account-nav-wrapper .toggle span {
        display: block;
    }

    .account-nav-wrapper .toggle .hide,
    .account-nav-wrapper .toggle.active .show { display: none; }
    .account-nav-wrapper .toggle.active .hide { display: block; }

    .account-nav-wrapper nav {
        border-left: 1px solid #e1e1e5;
        border-right: 1px solid #e1e1e5;
        display: none;
    }

    .account-nav-wrapper a,
    .woocommerce-MyAccount-navigation a {
        padding: 16px 56px 16px 16px;
    }

    .account-nav-wrapper a:before,
    .woocommerce-MyAccount-navigation a:before {
        right: 16px;
    }

    
}

@media ( max-width: 600px ) {

    .front-products__grid li.product .button,
    .front-products__grid li.product .product-inquiry-link,
    .front-products__grid li.product .added_to_cart {
        display: flex;
        margin-left: 0;
        min-width: 0;
        width: 100%;
    }

    .front-products__grid li.product .button + .added_to_cart,
    .front-products__grid li.product .product-inquiry-link + .added_to_cart,
    .front-products__grid li.product .added_to_cart + .button,
    .front-products__grid li.product .added_to_cart + .product-inquiry-link {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .shop-archive-products ul.products {
        gap: 24px 16px;
        grid-template-columns: repeat( 2, minmax( 0, 1fr ) ) !important;
    }

    .shop-archive-products ul.item-grid {
        gap: 24px 16px;
        grid-template-columns: repeat( 2, minmax( 0, 1fr ) ) !important;
    }

    .woocommerce.archive ul.products,
    .woocommerce-page.archive ul.products,
    .post-type-archive-product ul.products,
    .tax-product_cat ul.products,
    .tax-product_tag ul.products {
        gap: 24px 16px;
        grid-template-columns: repeat( 2, minmax( 0, 1fr ) ) !important;
    }

    .woocommerce.archive ul.item-grid,
    .woocommerce-page.archive ul.item-grid,
    .post-type-archive-product ul.item-grid,
    .tax-product_cat ul.item-grid,
    .tax-product_tag ul.item-grid {
        gap: 24px 16px;
        grid-template-columns: repeat( 2, minmax( 0, 1fr ) ) !important;
    }

    .shop-archive-sidebar {
        margin-bottom: 24px;
    }

    .shop-archive-sidebar .widget {
        border-radius: 12px;
        margin-top: 12px;
        padding: 14px;
    }

    .shop-archive-sidebar .widget-title {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .shop-archive-sidebar .widget_archive li a,
    .shop-archive-sidebar .widget_categories li a,
    .shop-archive-sidebar .widget_meta li a,
    .shop-archive-sidebar .widget_nav_menu li a,
    .shop-archive-sidebar .widget_pages li a,
    .shop-archive-sidebar .widget_product_categories li a,
    .shop-archive-sidebar .widget_recent_entries a,
    .shop-archive-sidebar .widget_recent_comments a,
    .shop-archive-sidebar .widget_rss li a {
        padding: 8px 10px;
    }

    .shop-archive-sidebar .price_slider_wrapper {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .woocommerce.archive ul.item-grid,
    .woocommerce-page.archive ul.item-grid,
    .post-type-archive-product ul.item-grid,
    .tax-product_cat ul.item-grid,
    .tax-product_tag ul.item-grid {
        grid-template-columns: 1fr;
    }

}


@media ( max-width: 750px ) {


    /* Cart ----------------------------- */

    /* CART TABLE */

    .shop_table.cart thead th {
        display: none;
    }

    .shop_table.cart tbody {
        border-top: 1px solid #e1e1e5;
    }

    .shop_table.cart tbody tr.cart_item {
        display: flex;
        flex-wrap: wrap;
        font-size: 14px;
        min-height: 110px;
        padding: 15px 0 15px 95px;
        position: relative;
    }

    .shop_table.cart .cart_item td {
        padding: 0;
    }

    .shop_table.cart .product-thumbnail {
        padding-right: 0;
        position: absolute;
            left: 0;
            top: 15px;
    }

    .shop_table.cart .cart_item .product-remove {
        display: none;
    }

    .shop_table.cart .product-name {
        font-size: 18px;
        margin-bottom: 5px;
        width: 100%;
    }

    .shop_table.cart .cart_item .product-price,
    .shop_table.cart .cart_item .product-quantity {
        width: 50%;
    }

    .woocommerce-cart .shop_table.cart td.product-quantity,
    .woocommerce-cart .shop_table.cart .cart_item .product-quantity,
    .woocommerce-cart .shop_table.cart .cart_item .product-quantity > .sullivan-backorder-plan-under-qty {
        min-width: 0;
    }

    .shop_table.cart .cart_item .product-subtotal {
        margin-top: 8px;
        width: 100%;
    }

    .shop_table.cart .cart_item .product-price:before,
    .shop_table.cart .cart_item .product-quantity:before,
    .shop_table.cart .cart_item .product-subtotal:before {
        content: attr( data-title );
        display: block;
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 3px;
    }

    .shop_table.cart .cart_item .product-subtotal {
        text-align: left;
    }

    .shop_table.cart .cart_item .product-subtotal .amount,
    .shop_table.cart .cart_item .product-subtotal bdi,
    .woocommerce-cart .cart_totals .amount,
    .woocommerce-cart .cart_totals bdi,
    .woocommerce-cart .cart_totals .order-total .amount,
    .woocommerce-cart .cart_totals .order-total bdi {
        align-items: baseline;
        display: inline-flex;
        gap: 0.2em;
        white-space: nowrap;
    }

    .shop_table.cart .cart_item .product-subtotal .woocommerce-Price-currencySymbol,
    .woocommerce-cart .cart_totals .woocommerce-Price-currencySymbol {
        display: inline !important;
        font-size: 0.78em;
        font-weight: 600;
        line-height: 1;
    }

    .shop_table.cart .cart_item .product-subtotal .amount,
    .shop_table.cart .cart_item .product-subtotal bdi,
    .shop_table.cart .cart_item .product-subtotal strong {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.1;
    }

    .shop_table.cart .product-quantity input {
        padding: 4px 8px;
        width: 50px;
    }

    .shop_table.cart .product-quantity .quantity-nav {
        display: none;
    }

    .woocommerce-cart .shop_table.cart .product-name .wc-item-meta,
    .woocommerce-cart .shop_table.cart .product-name dl.variation {
        margin-top: 8px;
    }

    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty {
        margin-top: 10px;
        max-width: 100%;
    }

    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__card,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__card {
        padding: 10px;
    }

    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__card,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__card {
        gap: 6px;
    }

    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__headline,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__headline {
        font-size: 13px;
    }

    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__detail,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__detail {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__detail-label,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__detail-label,
    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__detail-value,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__detail-value {
        font-size: 10px;
        line-height: 1.35;
    }

    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__detail-value,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__detail-value {
        text-align: left;
        white-space: normal;
    }

    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__eta,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__eta {
        font-size: 9px;
        line-height: 1.3;
        white-space: normal;
    }

    .woocommerce-cart .cart_totals {
        margin-top: 14px;
    }

    .woocommerce-cart .cart_totals .woo-gray-box {
        margin-left: 6px;
        margin-right: 6px;
    }


}


@media ( max-width: 600px ) {


    /* Notifications ----------------------------- */

    .woocommerce-message,
    .woocommerce-error, 
    .woocommerce-info {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 19px 20px;
    }

    .woocommerce-message, 
    .woocommerce-info {
        padding-right: 160px;
    }

    .woocommerce-message .button, 
    .woocommerce-error .button, 
    .woocommerce-info .button {
        font-size: 12px;
        max-width: 120px;
        padding: 12px 16px;
        right: 7px;
    }

    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__headline,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__headline {
        font-size: 14px;
    }

    .woocommerce-cart .shop_table.cart .product-quantity .sullivan-backorder-plan-under-qty__summary,
    .woocommerce-cart .wc-block-components-product-metadata .sullivan-backorder-plan-under-qty__summary {
        font-size: 11px;
        line-height: 1.4;
    }

    .shop_table.cart .cart_item .product-subtotal .amount,
    .shop_table.cart .cart_item .product-subtotal bdi,
    .shop_table.cart .cart_item .product-subtotal strong {
        font-size: 20px;
    }

    .woocommerce-cart .cart_totals .woo-gray-box {
        margin-left: 0;
        margin-right: 0;
    }


    /* Base Page Styles ----------------------------- */

    .woocommerce-page .page-header + .section-inner {
        margin-top: 28px;
    }


    /* Product Archive ----------------------------- */

    .breadcrumbs,
    .rank-math-breadcrumb {
        margin-bottom: 12px;
    }

    .term-has-image .woocommerce-products-header, 
    .term-missing-image .woocommerce-products-header {
        margin-bottom: 40px;
    }

    .term-description p {
        font-size: 18px;
    }

    .woocommerce-result-count .prefix {
        display: none;
	}

	.woocommerce-result-count .rest {
		display: block;
	}
	
	.woocommerce-result-count .rest:first-letter {
		text-transform: uppercase;
	}

    li.product .onsale {
        font-size: 9px;
        height: 24px;
        padding: 0 8px;
    }

    li.product .sullivan-loop-backorder-badge {
        font-size: 9px;
        height: 24px;
        padding: 0 8px;
    }


    /* Product Single ----------------------------- */

    .single-product .breadcrumbs,
    .single-product .rank-math-breadcrumb {
        padding: 20px 0;
    }

    .product-upper-wrapper,
    .product-lower-wrapper {
        padding-bottom: 40px;
    }

    /* Upper Wrapper */

    .single-product .product-upper-wrapper > .onsale,
    .single-product .summary .onsale {
        font-size: 10px;
        height: 26px;
        padding: 0 10px;
    }

    .woocommerce-product-gallery {
        margin-left: auto;
        margin-right: auto;
        max-width: 92vw;
        position: relative;
            left: auto;
        width: 92vw;
    }

    .woocommerce-product-gallery .flex-viewport,
    .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .woocommerce-product-gallery__image img {
        display: block;
        height: auto;
        max-width: 100%;
        width: 100%;
    }

    .woocommerce-product-gallery__image,
    .woocommerce-product-gallery__image a {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .woocommerce-product-gallery .flex-control-nav {
        margin-left: 5px;
        margin-right: 5px;
    }

    .woocommerce-product-gallery .flex-control-nav li {
        width: 80px;
    }

    .single-product .summary h1 {
        font-size: 32px;
    }

    .single-product .product-price-rating {
        margin: 15px 0 20px;
    }

    .single-product .product-upper-wrapper .price {
        font-size: 20px;
    }

    .single-product .woocommerce-product-rating {
        margin-left: 15px;
        padding-left: 15px;
    }

    .single-product .woocommerce-product-details__short-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .single-product .summary .cart .quantity + .button {
        margin-left: 15px;
    }

    /* Lower Wrapper */

    .product-lower-wrapper .wc-tabs {
        border: none;
        display: block;
        margin-bottom: 40px;
        padding: 0;
        position: relative;
            left: calc( 50% - 50vw );
        width: 100vw;
    }

    .product-lower-wrapper .wc-tabs li {
        border: none;
        border-top: 1px solid #e1e1e5;
        width: 100%;
    }

    .product-lower-wrapper .wc-tabs li:last-child {
        border-right: none;
        border-bottom: 1px solid #e1e1e5;
    }

    .product-lower-wrapper .wc-tabs a {
        font-size: 14px;
        padding: 17px 10px 18px 5%;
    }

    .woocommerce-tabs .panel h2,
    .woocommerce-tabs #review_form .comment-reply-title {
        font-size: 24px;
        margin: 0 0 15px;
    }

    /* PRODUCT CONTENT */

    .product_meta {
        margin-top: 25px;
    }

    .product_meta > span {
        display: block;
    }

    .product_meta > span + span {
        margin: 8px 0 0;
    }

    /* PRODUCT REVIEWS */

    #reviews li {
        padding: 20px;
    }

    #reviews li .avatar {
        display: none;
    }

    #reviews li + li {
        margin-top: 10px;
    }

    #reviews .comment-text .description {
        font-size: 15px;
    }

    #review_form .comment-respond {
        margin-top: 30px;
    }

    /* RELATED PRODUCTS */

    .products.related, 
    .products.up-sells, 
    .cross-sells {
        margin-bottom: 40px;
        margin-top: 40px;
    }


    /* Checkout ----------------------------- */

    form.woocommerce-checkout .woocommerce-billing-fields h3, 
    #order_review_heading {
        margin-bottom: 20px;
    }


    /* Order Review ----------------------------- */

    .woocommerce-order .woocommerce-order-overview, 
    .woocommerce-order .woocommerce-order-downloads, 
    .woocommerce-order .woocommerce-order-details {
        padding: 20px;
    }

    .woocommerce-order {
        gap: 30px;
    }

    .woocommerce-order .woocommerce-thankyou-order-received {
        font-size: 16px;
        padding: 18px 20px;
    }

    .woocommerce-order .woocommerce-thankyou-payment-method {
        margin-top: 12px;
        padding: 16px 20px;
    }

    .woocommerce-thankyou-payment-method__value {
        font-size: 20px;
    }

    .woocommerce-order .sullivan-order-backorder-summary,
    .woocommerce-order-details .sullivan-order-backorder-summary {
        margin-top: 18px;
        padding: 16px;
    }

    .woocommerce-order .sullivan-order-backorder-summary__grid,
    .woocommerce-order-details .sullivan-order-backorder-summary__grid {
        grid-template-columns: 1fr;
    }

    .woocommerce-order .sullivan-order-backorder-summary__item,
    .woocommerce-order-details .sullivan-order-backorder-summary__item {
        padding: 12px 14px;
    }

    .woocommerce-order .sullivan-order-backorder-summary__item span,
    .woocommerce-order-details .sullivan-order-backorder-summary__item span {
        letter-spacing: 0.04em;
    }

    .woocommerce-order .sullivan-order-backorder-summary__item strong,
    .woocommerce-order-details .sullivan-order-backorder-summary__item strong {
        font-size: 20px;
    }

    .woocommerce-order .sullivan-order-backorder-summary__note,
    .woocommerce-order-details .sullivan-order-backorder-summary__note {
        font-size: 12px;
    }

    .woocommerce-order-overview {
        gap: 0;
    }

    .woocommerce-order-overview li {
        min-height: 0;
        padding: 0;
    }

    .woocommerce-columns--addresses {
        margin-top: 28px;
    }

    .woocommerce-columns--addresses .woocommerce-column + .woocommerce-column {
        margin-top: 24px;
    }

    .woocommerce-order-overview li + li {
        margin-top: 16px;
        padding-top: 16px;
    }

    .woocommerce-order-overview li {
        font-size: 13px;
    }

    .woocommerce-order-overview strong {
        font-size: 18px;
        margin-top: 6px;
    }

    .woocommerce-columns--addresses h2 {
        font-size: 24px;
    }


    /* Login & Registration ----------------------------- */

    .single-account-form #site-content .section-inner .section-inner.max-percentage,
    .both-account-forms #site-content .col2-set > div {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    .both-account-forms #site-content .col2-set > div + div {
        margin-top: 40px;
    }

    .both-account-forms #site-content .section-inner .col2-set {
        display: block;
    }

    /* My Account ----------------------------- */

    .account-wrapper .sidebar,
    .account-wrapper .sidebar .widget:nth-child(2) {
        margin-top: 40px;
        display: block;
    }

    .account-wrapper .sidebar .widget {
        width: 100%;
    }

    /* ACCOUNT NAV */

    .account-nav-wrapper,
    .woocommerce-MyAccount-navigation {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .account-nav-wrapper a,
    .woocommerce-MyAccount-navigation a {
        padding: 14px 46px 14px 14px;
    }

    .account-nav-wrapper a:before,
    .woocommerce-MyAccount-navigation a:before {
        right: 14px;
    }

    /* ACCOUNT ADRESSES */

    .woocommerce-Addresses .woocommerce-Address + .woocommerce-Address {
        margin-top: 30px;
    }

    /* ACCOUNT ORDERS */

    .woocommerce-orders-table,
    .woocommerce-table--order-downloads {
        font-size: 14px;
    }

    .woocommerce-orders-table thead,
    .woocommerce-table--order-downloads thead {
        display: none;
    }

    .woocommerce-orders-table tr,
    .woocommerce-table--order-downloads tr {
        display: flex;
        flex-direction: column;
        padding: 10px 0;
    }

    .woocommerce-orders-table td,
    .woocommerce-orders-table td:first-child,
    .woocommerce-table--order-downloads td,
    .woocommerce-table--order-downloads td:first-child {
        padding: 8px 18px 8px 80px;
    }
    
    .woocommerce-orders-table td,
    .woocommerce-table--order-downloads td {
        position: relative;
        text-align: right;
    }
    
    .woocommerce-orders-table td:before,
    .woocommerce-table--order-downloads td:before {
        content: attr( data-title ) ':';
        font-size: 14px;
        font-weight: 500;
        position: absolute;
            left: 18px;
    }

    /* ORDER DETAILS */

    .woocommerce-order-details {
        padding: 20px;
    }

    .woocommerce-columns--addresses {
        margin-top: 30px;
    }


}


@media ( max-width: 500px ) {

    .woocommerce-product-gallery {
        max-width: 92vw;
        width: 92vw;
    }


    /* Product Archive ----------------------------- */

    /* PRODUCT PREVIEW */

    .woocommerce-loop-product__title {
        font-size: 16px;
    }

    li.product .price {
        font-size: 13px;
    }

    li.product .button,
    li.product .product-inquiry-link,
    li.product .added_to_cart {
        min-width: 100%;
    }

    .product-inquiry-box {
        padding: 14px;
    }


    /* Cart ----------------------------- */

    .shop_table.cart .coupon {
        width: 100%;
    }

    .shop_table.cart td.actions > .button {
        padding: 20px;
        position: static;
        width: 100%;
    }

	.shop_table.cart td.actions > .coupon ~ .button {
		margin-top: 30px;
	}

    /* WOO GRAY BOX */

    .woo-gray-box {
        padding: 20px;
    }

    .woo-gray-box h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .woo-gray-box table {
        margin-bottom: 5px;
    }

    .woo-gray-box th, 
    .woo-gray-box td {
        padding: 15px 0;
    }

    .woo-gray-box th {
        padding-right: 20px;
    }

    .woo-gray-box .button.alt {
        font-size: 14px;
        padding: 18px 21px 19px;
    }

    .woocommerce-cart .woo-gray-box .wc-proceed-to-checkout .checkout-button,
    .woocommerce-cart .woo-gray-box .wc-proceed-to-checkout .checkout-button.alt {
        font-size: 14px;
        padding: 18px 21px 19px;
    }
    
}


@media ( max-width: 450px ) {


    /* Notifications ----------------------------- */

    .woocommerce-message, 
    .woocommerce-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 20px;
        text-align: left;
    }

    .woocommerce-message .button, 
    .woocommerce-error .button, 
    .woocommerce-info .button {
        display: block;
        margin: 18px 0 -7px;
        max-width: none;
        position: static;
    }


}

/* Slide-out Cart Modal ----------------------------- */

.slide-right {
    background: #fff;
    border: none;
    border-left: 1px solid var(--gray-200);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    height: 100vh;
    opacity: 0;
    position: fixed;
    right: -400px;
    top: 0;
    transform: translateX(0);
    transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
    width: 400px;
    z-index: 1000;
}

.slide-right.active {
    opacity: 1;
    right: 0;
}

.modal-overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.3s ease-in-out;
    width: 100vw;
    z-index: 999;
}

.modal-overlay.active {
    opacity: 1;
}

.cart-modal-header {
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.cart-modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cart-modal-header .cart-close {
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    box-shadow: none;
    color: var(--gray-600);
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    font-weight: 400;
    height: 36px;
    justify-content: center;
    line-height: 1;
    margin: 0;
    min-width: 0;
    opacity: 1;
    padding: 0;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
    width: 36px;
}

.cart-modal-header .cart-close:hover,
.cart-modal-header .cart-close:focus {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-900);
    outline: none;
}

.cart-modal-content {
    max-height: 70vh;
    overflow-y: auto;
    padding: 0;
}

.sullivan-mini-cart {
    background: #fff;
}

.sullivan-mini-cart__items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sullivan-mini-cart__item {
    align-items: flex-start;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    position: relative;
}

.sullivan-mini-cart__item:last-child {
    border-bottom: none;
}

.sullivan-mini-cart__thumb {
    border-radius: var(--border-radius);
    flex: 0 0 64px;
    overflow: hidden;
}

.sullivan-mini-cart__thumb img {
    border-radius: var(--border-radius);
    display: block;
    height: 64px;
    object-fit: cover;
    width: 64px;
}

.sullivan-mini-cart__details {
    flex: 1;
    min-width: 0;
}

.sullivan-mini-cart__title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 24px;
}

.sullivan-mini-cart__meta {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.4;
    margin-top: 6px;
}

.sullivan-mini-cart__quantity {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    margin-top: 10px;
    padding: 4px 0;
}

.sullivan-mini-cart__qty-button {
    align-items: center;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    box-shadow: none;
    color: var(--text-color);
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    height: 28px;
    justify-content: center;
    min-width: 28px;
    padding: 0;
    width: 28px;
}

.sullivan-mini-cart__qty-button:hover {
    opacity: 1;
    background: var(--gray-200);
}

.sullivan-mini-cart__qty-value {
    font-size: 13px;
    font-weight: 600;
    min-width: 12px;
    text-align: center;
}

.sullivan-mini-cart__quantity.is-updating {
    opacity: 0.5;
    pointer-events: none;
}

.sullivan-mini-cart__remove {
    color: var(--gray-500);
    font-size: 22px;
    line-height: 1;
    position: absolute;
    right: 18px;
    top: 16px;
}

.sullivan-mini-cart__remove:hover {
    color: var(--red-500);
    text-decoration: none;
}

.sullivan-mini-cart__footer {
    border-top: 1px solid var(--gray-200);
    padding: 18px 20px 20px;
}

.sullivan-mini-cart__subtotal {
    align-items: center;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    margin: 0 0 14px;
}

.sullivan-mini-cart__actions {
    display: grid;
    gap: 10px;
}

.sullivan-mini-cart__actions .button {
    display: block;
    text-align: center;
}

.sullivan-mini-cart__empty {
    color: var(--gray-600);
    padding: 28px 20px;
    text-align: center;
}

/* Ensure cart toggle button styling */
.header-cart .cart-toggle {
    background: none;
    border: none;
    padding: 0;
    position: relative;
}

.header-cart .cart-toggle:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('../svg/cart-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Mobile responsive for slide-out cart */
@media (max-width: 768px) {
    .modal.slide-right {
        width: 100vw;
        right: -100vw;
    }
    
    .modal.slide-right.active {
        right: 0;
    }
}

    .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove {
        align-items: center;
        background: #ffffff;
        border: 1px solid #d1d5db;
        border-radius: 999px;
        box-shadow: 0 1px 2px rgba( 15, 23, 42, 0.08 );
        color: var(--gray-700);
        display: inline-flex;
        height: 28px;
        justify-content: center;
        margin-left: 8px;
        opacity: 1;
        padding: 0;
        transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease, transform .15s ease;
        width: 28px;
    }

    .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove:hover,
    .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove:focus {
        background: #f9fafb;
        border-color: #9ca3af;
        box-shadow: 0 4px 10px rgba( 15, 23, 42, 0.1 );
        color: var(--gray-900);
        outline: none;
        transform: translateY( -1px );
    }

    .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove:active {
        background: #f3f4f6;
        box-shadow: inset 0 1px 2px rgba( 15, 23, 42, 0.1 );
        transform: translateY( 0 );
    }

    .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove svg {
        display: block;
        fill: currentColor;
        height: 12px;
        width: 12px;
    }

.wc-block-product-filter-price-slider .text input[type=text] {
    max-width: 110px;
}
