.ramm-after-add-to-cart-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin: 8px 10px 0 0;
    padding: 0.6em 1.2em;

    background: var(--global-palette-btn-bg, #555);
    color: var(--global-palette-btn, #fff);

    border-radius: 0px;
    border: none;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;

    box-shadow: 0px 0px 0px -7px rgba(0,0,0,0);
    transition: all 0.2s ease;
}

.ramm-after-add-to-cart-content a:hover {
    background: var(--global-palette-btn-bg-hover, #333);
    color: var(--global-palette-btn-hover, #fff);
    text-decoration: none;
}

/* Content after add to cart */
.ramm-after-add-to-cart-content {
    margin-top: 24px;
    padding: 18px 20px;
    background: #f7f7f7;
    border-left: 4px solid #555;
    font-size: 15px;
    line-height: 1.6;
}

.ramm-after-add-to-cart-content p:last-child {
    margin-bottom: 0;
}

.ramm-after-add-to-cart-content a {
    display: inline-block;
    margin: 8px 10px 0 0;
    padding: 10px 16px;
    background: #555;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
}

.ramm-after-add-to-cart-content a:hover {
    background: #333;
    color: #fff;
}


.ramm-after-add-to-cart-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin: 8px 10px 0 0;
    padding: 0.6em 1.2em;

    background: var(--global-palette-btn-bg, #555);
    color: var(--global-palette-btn, #fff);

    border-radius: 3px;
    border: none;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;

    box-shadow: 0px 0px 0px -7px rgba(0,0,0,0);
    transition: all 0.2s ease;
}

.ramm-after-add-to-cart-content a:hover {
    background: var(--global-palette-btn-bg-hover, #333);
    color: var(--global-palette-btn-hover, #fff);
    text-decoration: none;
}

.ramm-variation-info-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    padding: 12px;
    background: #f7f7f7;
    flex-wrap: wrap;
}

.ramm-variation-info-tab {
    border: none;
    background: #555;
    color: #fff;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.ramm-variation-info-tab.active {
    background: #333;
    color: #fff;
}

.ramm-variation-info-panel {
    display: none;
    padding: 22px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.ramm-variation-info-panel.active {
    display: block;
}

.ramm-variation-info-heading {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.ramm-variation-info-panel p:last-child {
    margin-bottom: 0;
}


/* WooCommerce Product Tabs - Premium Left Tabs / Right Content */

.single-product .woocommerce-tabs {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 40px;
	align-items: start;
	margin-top: 30px;
}

/* Left tab column */
.single-product .woocommerce-tabs ul.tabs {
	display: flex !important;
	flex-direction: column;
	gap: 14px;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
}

/* Remove Woo default tab lines */
.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs::after {
	display: none !important;
	border: none !important;
}

/* Remove Woo tab wrapper styling */
.single-product .woocommerce-tabs ul.tabs li {
	border: none !important;
	background: transparent !important;
	margin: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

/* Remove Woo pseudo borders */
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
	border: none !important;
	box-shadow: none !important;
}

/* Tab buttons */
.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	width: 100%;
	background: #555 !important;
	color: #fff !important;
	padding: 14px 18px !important;
	border: none !important;
	border-radius: 4px;
	text-decoration: none !important;
	font-weight: 400 !important;
	letter-spacing: 0.5px;
	text-transform: none !important;
	transition: all 0.25s ease;
}

/* Hover state */
.single-product .woocommerce-tabs ul.tabs li a:hover {
	background: #666 !important;
	color: #fff !important;
	transform: translateX(3px);
}

/* Active tab */
.single-product .woocommerce-tabs ul.tabs li.active a {
	background: #333 !important;
	color: #fff !important;
	font-weight: 400 !important;
}

/* Right-side content area */
.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
}

/* Mobile: stack tabs above content */
@media (max-width: 768px) {
	.single-product .woocommerce-tabs {
		display: block;
	}

	.single-product .woocommerce-tabs ul.tabs {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
		margin-bottom: 25px !important;
	}

	.single-product .woocommerce-tabs ul.tabs li a {
		width: auto;
		padding: 11px 16px !important;
	}

	.single-product .woocommerce-tabs ul.tabs li a:hover {
		transform: none;
	}
}



/* Styles for Buttons below the Add to Cart on Product Pages*/

.ramm-cta-box {
    margin-top: 18px;
    padding: 18px;
    /*border: 1px solid var(--global-gray-400, #e5e5e5);
    background: var(--global-palette9, #fafafa);
    border-radius: 6px;*/
}

.ramm-cta-message {
    font-size: 18px;
	font-weight: 500;
    line-height: 1.5;
    margin-bottom: 14px;
    color: var(--global-palette3, #333);
}

.ramm-cta-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.ramm-cta-links .ramm-cta-link {
    width: 100%;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 42px;
    box-sizing: border-box;
    text-decoration: none;
}

.ramm-cta-links .ramm-cta-link:hover {
    text-decoration: none;
}

.ramm-cta-links .ramm-cta-link:only-child {
    grid-column: 1 / -1;
}

@media (max-width: 767px) {
    .ramm-cta-links {
        grid-template-columns: 1fr;
    }
}





/* Modifications of Product pages */
.woocommerce div.product span.price del,.woocommerce div.product p.price del {
    opacity: .5;
    display: inline-flex;
}
tr.wdr_bulk_table_tr.bulk_table_row {
    text-align: center;
}
.single-product .woocommerce-Price-amount {
	font-size: 1.1rem;
}
.woocommerce .product .kwt-title-single .product_title {
    margin-top: 1rem;
    font-size: 2rem;
}
.awdr-bulk-customizable-table {
    width: 100%;
}
th#customize-bulk-table-range, th#customize-bulk-table-discount {
    font-weight: 500;
}
.woocommerce div.product span.price,
.woocommerce div.product p.price,
.list-price-shortcode .woocommerce-Price-amount.amount{
	font-size: 1.1rem;
}
.entry.loop-entry {
	text-align:center;
}
.woocommerce div.product span.price ins,
.woocommerce div.product p.price ins {
    background: inherit;
    font-weight: 500 !important;
    display: inline-block
}
.woocommerce div.product span.price,
.woocommerce div.product p.price {
	font-size: 1.75rem !important;
}
.price_label {
	margin-right: 0.5rem;
	font-size: 19px;
}
.quantity.spinners-added input.minus,.quantity.spinners-added input.plus {
    background: rgba(0,0,0,0);
    color: var(--global-palette1);
    box-shadow: none;
    padding: .4em .8em;
    line-height: 38px;
    border: 0
}
.woocommerce .quantity.spinners-added .qty {
    width: 2.3em;
    text-align: center;
    border: 0;
    padding: 6px;
    box-shadow: none;
    height: 38px;
    px; */-moz-appearance: textfield
}



th#customize-bulk-table-discount,
th#customize-bulk-table-range, 
td.wdr_bulk_table_td.wdr_bulk_range.col_index_2, 
td.wdr_bulk_table_td.wdr_bulk_table_discount.col_index_3 {
    border-bottom: solid;
    border-bottom-width: 1px;
}


/* Center Buttons on Sale Page */
a.button.view-product-button {
    text-align: center;
    font-size: 12px;
	width: 100%;
}

/* Change color of show pw icon on Woo Reg page */
.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
    background: black;
    color: white;
}

/* Break First and Last Name into 2 lines on Woo Reg Page */
.woocommerce .form-row-first,
.woocommerce .form-row-last {
    width: 100% !important;
    float: left;
}

body.page-id-5564 .kb-row-layout-id304_5b5499-eb{
    display: none;
}

figcaption {
    display: none;
}

/* Fix Shop Page Nav from wrapping arrow to next line */
ul#menu-nav_menu-3 .drawer-nav-drop-wrap {
	display: flex;
}
.drawer-nav-drop-wrap .drawer-sub-toggle {
    padding: 0;
    background: none;
    border: none;
    color: black;
}

.single-product [aria-current="page"] {
    color: var(--global-palette4)!important;
}
span.breadcrumb_last {
    color: var(--global-palette9) !important;
}

/* Adj widths of checkout 
.wc-block-components-sidebar-layout .wc-block-components-main {
    box-sizing: border-box;
    margin: 0;
    padding-right: 5% !important;
    width: 45% !important;
}

.wc-block-components-sidebar {
    FONT-VARIANT: JIS04;
    box-sizing: border-box;
    margin-top: 8px;
    padding-left: 5 !important;
    width: 45% !important;
} */

.purechat-launcher-message {
    box-shadow: none !important;
	background: #ffffff66 !important;   
}
.purechat-launcher-image.purechat-launcher-image-light {
    display: none !important;
}
/* Removes Box Shadows */
.entry.single-entry {
	box-shadow: none;
}
.entry.loop-entry {
	box-shadow: none;
}
/* Space below Refresh Button on Shop page */
section#block-98 {
    margin-bottom: 3em;
}
/* Space below Search on Shop page */
.primary-sidebar.widget-area .widget {
	 margin-bottom: 1.0em;
}
/* Sort option on Shop page */
select.orderby:focus-visible {
	outline: 0px solid #000;
}
/* Search Field on Shop page */
input#search-filter-input-text-0 {
    background: white !important;
}
/* Temp Hide Search Field on Shop page
section#block-63 {
    display: none;
}*/
/* Yoast Breadcrumbs */
.yoast-breadcrumbs {
    font-size: 0.875rem;
    padding-top: 20px;
}

/* Hides Favorite Vendors Nav Link */
li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--favorite-vendors.menu-item {
    display: none;
}

/* Removes BG from Woo Login Form */
.woocommerce form.login, .woocommerce form.checkout_coupon, .woocommerce form.register {
	border-radius: 0;
	border: none;
	background: none;
}

.kb-row-layout-id398_50d65c-82 > .kt-row-column-wrap {
	padding-bottom: 60px;
}

/* Decreases Height of Green Header */
/*.kt-row-column-wrap.kt-has-1-columns.kt-row-layout-equal.kt-tab-layout-inherit.kt-mobile-layout-row.kt-row-valign-top.kb-theme-content-width {
    min-height: auto;
}
*/
/* White BG for Woo Notice */
.kwt-notice-wrap .woocommerce-message {
    border-style: solid;
    border-width: 0;
    border-left-width: 10px;
    background-color: #fff;
}
/*     .kb-row-layout-id304_5b5499-eb {
        background-color: #000 !important;
    }
*/
/*
.stickyheader.woocommerce-checkout form.checkout:before {
content: '';
display: table;
clear: both;
}
.stickyheader.woocommerce-checkout .woocommerce-error {
margin-top: 1000px;
}
*/

/* Tighten Up Header Nav */
.menu-item .nav-drop-title-wrap {
    padding-right: 20px;
}
.header-navigation .menu {
    grid-column-gap: 1.5rem;
}