/**
 * Batya Jewelry Suite - Frontend Styles
 *
 * Color palette:
 *   --bjs-text:        #000000 (primary text + accent)
 *   --bjs-secondary:   #54595F (secondary text)
 *   --bjs-bg:          #FFFFFF (background + contrast)
 *   --bjs-bg-soft:     #E7E2DD (subtle highlight)
 *   --bjs-bg-strong:   #D8D8D8 (firmer highlight)
 *
 * Typography:
 *   font-family: 'Google Sans', 'Heebo', system-ui, sans-serif
 *   h1: 28px / 400, h2: 22px / 400, h3: 18px / 400, body: 14px / 400
 *
 * Design language: flat-cornered (no border-radius on cards/buttons/inputs/CTAs).
 * Only pills, dots, circles (swatches, whatsapp float) use radius.
 */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
	--bjs-text: #000000;
	--bjs-secondary: #54595F;
	--bjs-bg: #FFFFFF;
	--bjs-bg-soft: #E7E2DD;
	--bjs-bg-strong: #D8D8D8;
	--bjs-border: rgba(0, 0, 0, 0.08);
	--bjs-border-strong: rgba(0, 0, 0, 0.18);
	--bjs-success: #2D7A4F;
	--bjs-discount: #B0331E;

	/* Editorial flat design - no radius on cards/buttons/CTAs */
	--bjs-radius-sm: 0;
	--bjs-radius-md: 0;
	--bjs-radius-lg: 0;

	--bjs-shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.04);
	--bjs-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
	--bjs-shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.16);

	--bjs-transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);

	--bjs-font: 'Google Sans', 'Google Sans Text', 'Product Sans', 'Heebo', 'Assistant', system-ui, -apple-system, sans-serif;

	--bjs-h1: 28px;
	--bjs-h2: 22px;
	--bjs-h3: 18px;
	--bjs-text-size: 14px;
	--bjs-weight: 400;

	--bjs-card-aspect: 4 / 5; /* portrait — override in widget controls if needed */
}

/* ==========================================================================
   THEME BUTTON RESET (defensive)
   Many themes apply red borders/text/backgrounds to every <button>, [type="button"],
   [type="submit"]. The block below neutralizes those defaults inside BJS surfaces.
   ========================================================================== */
.bjs-loop button,
.bjs-loop [type="button"],
.bjs-loop [type="submit"],
.bjs-popup button,
.bjs-popup [type="button"],
.bjs-popup [type="submit"],
.bjs-product-card button,
.bjs-product-card [type="button"],
.bjs-set-offers button,
.bjs-set-offers [type="button"],
.bjs-set-offers [type="submit"],
.bjs-trust-row button,
.bjs-below-fold button,
.bjs-hero-gallery button,
.bjs-sticky-cta button,
.bjs-wishlist-toggle,
.bjs-load-more-btn,
.bjs-accordion__summary,
.bjs-size-filter-toggle,
.bjs-size-filter-clear,
.bjs-attribute-pills__option,
.bjs-size-option,
.bjs-set-offer__cta,
.bjs-popup__close,
.bjs-popup__cta,
.bjs-popup__skip,
.bjs-hero-gallery__nav,
.bjs-hero-gallery__thumb,
.bjs-hero-gallery__dot,
.bjs-cart-set-reminder__product,
.bjs-aside__product-link,
.bjs-gift-mode-wrap input,
.bjs-gift-mode-wrap textarea {
	border: 0 none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: inherit;
	text-decoration: none !important;
	background-color: transparent;
}

.bjs-loop button:hover,
.bjs-loop [type="button"]:hover,
.bjs-loop button:focus,
.bjs-loop [type="button"]:focus,
.bjs-popup button:hover,
.bjs-popup [type="button"]:hover,
.bjs-popup button:focus,
.bjs-popup [type="button"]:focus,
.bjs-product-card button:hover,
.bjs-set-offers button:hover,
.bjs-set-offers [type="button"]:hover,
.bjs-trust-row button:hover,
.bjs-below-fold button:hover,
.bjs-below-fold summary:hover,
.bjs-hero-gallery button:hover,
.bjs-sticky-cta button:hover,
.bjs-wishlist-toggle:hover,
.bjs-load-more-btn:hover,
.bjs-accordion__summary:hover,
.bjs-size-filter-toggle:hover,
.bjs-attribute-pills__option:hover,
.bjs-size-option:hover,
.bjs-set-offer__cta:hover,
.bjs-popup__close:hover,
.bjs-popup__skip:hover,
.bjs-hero-gallery__nav:hover,
.bjs-hero-gallery__thumb:hover,
.bjs-hero-gallery__dot:hover,
.bjs-aside__product-link:hover,
.bjs-cart-set-reminder__product:hover {
	color: inherit !important;
	text-decoration: none !important;
	border-color: transparent !important;
}

/* ==========================================================================
   Typography baselines (scoped to our containers to avoid theme conflicts)
   ========================================================================== */
.bjs-loop,
.bjs-product-card,
.bjs-popup,
.bjs-trust-row,
.bjs-set-offers,
.bjs-cart-set-reminder,
.bjs-free-shipping-bar,
.bjs-below-fold,
.bjs-gift-mode-wrap,
.bjs-gift-confirmation,
.bjs-load-more-wrap,
.bjs-size-filter-bar,
.bjs-saved-size-indicator,
.bjs-sticky-cta {
	font-family: var(--bjs-font);
	font-weight: var(--bjs-weight);
	font-size: var(--bjs-text-size);
	color: var(--bjs-text);
}

.bjs-loop h1, .bjs-product-card h1, .bjs-popup h1, .bjs-below-fold h1,
.bjs-loop h2, .bjs-product-card h2, .bjs-popup h2, .bjs-below-fold h2,
.bjs-loop h3, .bjs-product-card h3, .bjs-popup h3, .bjs-below-fold h3,
.bjs-set-offers h3, .bjs-set-offers h4 {
	font-family: var(--bjs-font);
	font-weight: var(--bjs-weight);
	margin: 0;
	color: var(--bjs-text);
}

.bjs-loop h1, .bjs-popup h1, .bjs-below-fold h1 { font-size: var(--bjs-h1); line-height: 1.2; }
.bjs-loop h2, .bjs-popup h2, .bjs-below-fold h2, .bjs-set-offers h2 { font-size: var(--bjs-h2); line-height: 1.3; }
.bjs-loop h3, .bjs-popup h3, .bjs-below-fold h3, .bjs-set-offers h3, .bjs-set-offers h4 { font-size: var(--bjs-h3); line-height: 1.4; }

/* SVG icons inherit color */
.bjs-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ==========================================================================
   Theme hover neutralization
   Some themes (Tomashin, Hello, Astra, others) apply a red/colored hover
   background to <button>, <summary>, .icon, etc. The rules below neutralize
   those defaults inside BJS containers so our visuals stay clean.
   ========================================================================== */
.bjs-loop button,
.bjs-loop summary,
.bjs-popup button,
.bjs-popup summary,
.bjs-product-card button,
.bjs-product-card summary,
.bjs-trust-row .bjs-trust-icon,
.bjs-trust-row .bjs-trust-item,
.bjs-set-offers button,
.bjs-below-fold button,
.bjs-below-fold summary,
.bjs-accordion__summary,
.bjs-wishlist-toggle,
.bjs-card-info,
.bjs-card-link,
.bjs-hero-gallery button,
.bjs-hero-gallery__thumb,
.bjs-hero-gallery__nav,
.bjs-aside__product-link {
	background-color: transparent;
}
.bjs-loop button:hover,
.bjs-loop summary:hover,
.bjs-popup button:hover,
.bjs-popup summary:hover,
.bjs-product-card button:hover,
.bjs-product-card summary:hover,
.bjs-trust-row .bjs-trust-icon:hover,
.bjs-trust-row .bjs-trust-item:hover,
.bjs-below-fold button:hover,
.bjs-below-fold summary:hover,
.bjs-accordion__summary:hover,
.bjs-accordion__item:hover,
.bjs-wishlist-toggle:hover,
.bjs-card-info:hover,
.bjs-card-link:hover,
.bjs-hero-gallery button:hover,
.bjs-hero-gallery__thumb:hover,
.bjs-aside__product-link:hover {
	background-color: transparent !important;
}
/* Some themes color SVG fill on hover - keep our fill (currentColor) */
.bjs-icon, .bjs-icon path { fill: currentColor; }
.bjs-icon:hover, .bjs-icon:hover path { fill: currentColor; }
/* The accordion <details>/<summary> shouldn't get themed marker arrow */
.bjs-accordion__summary { list-style: none !important; }
.bjs-accordion__summary::-webkit-details-marker { display: none !important; }

/* ==========================================================================
   Loop Layout - Custom Grid (defensive)
   ========================================================================== */
/* Reset WC defaults that fight against CSS grid */
.woocommerce .bjs-loop::before,
.woocommerce .bjs-loop::after,
.woocommerce-page .bjs-loop::before,
.woocommerce-page .bjs-loop::after,
ul.products.bjs-loop::before,
ul.products.bjs-loop::after {
	content: none !important;
	display: none !important;
}

.woocommerce ul.products.bjs-loop,
.woocommerce-page ul.products.bjs-loop,
ul.products.bjs-loop,
.bjs-loop {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 24px;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
	clear: both;
}

.woocommerce ul.products.bjs-loop > li.product,
.woocommerce-page ul.products.bjs-loop > li.product,
ul.products.bjs-loop > li,
.bjs-loop > .product,
.bjs-loop > li {
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: none !important;
	background: transparent;
	box-sizing: border-box;
}

/* Position 6 = wide on desktop (4-col grid). Spans 2 columns.
   Image height equals normal cards (via flex layout in the card section below). */
@media (min-width: 768px) {
	.bjs-loop > .bjs-wide-desktop {
		grid-column: span 2 !important;
	}
	/* Hide closeup on cards that are wide-mobile but NOT wide-desktop */
	.bjs-loop > .bjs-wide-mobile:not(.bjs-wide-desktop) .bjs-img--closeup {
		display: none;
	}
	.bjs-loop > .bjs-wide-mobile:not(.bjs-wide-desktop) .bjs-img--studio {
		display: block;
		opacity: 1;
	}
}

/* Position 5 = wide on mobile (2-col grid). Spans 2 columns. */
@media (max-width: 767px) {
	.woocommerce ul.products.bjs-loop,
	.woocommerce-page ul.products.bjs-loop,
	ul.products.bjs-loop,
	.bjs-loop {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px;
	}
	.bjs-loop > .bjs-wide-mobile {
		grid-column: span 2 !important;
	}
	.bjs-loop > .bjs-wide-desktop:not(.bjs-wide-mobile) .bjs-img--closeup {
		display: none;
	}
	.bjs-loop > .bjs-wide-desktop:not(.bjs-wide-mobile) .bjs-img--studio {
		display: block;
		opacity: 1;
	}
}

/* ==========================================================================
   Product Card
   ========================================================================== */
.bjs-product-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: transparent;
	transition: opacity var(--bjs-transition);
	align-self: stretch;
	height: 100%;
}

.bjs-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	flex: 0 0 auto;
}

/* Normal card: 4:5 portrait image area (configurable via --bjs-card-aspect var).
   Wide cards override below to fill the row. */
.bjs-card-image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: var(--bjs-card-aspect);
	overflow: hidden;
	background: var(--bjs-bg-soft);
}

/* Wide cards (desktop and mobile) drop aspect-ratio so they fill the row height,
   matching the normal cards' image height (which is = column width × 1.25 for 4:5). */
@media (min-width: 768px) {
	.bjs-loop > .bjs-wide-desktop .bjs-card-image-wrap {
		aspect-ratio: unset;
		flex: 1 1 0;
		min-height: 0;
	}
	.bjs-loop > .bjs-wide-desktop .bjs-card-link {
		flex: 1 1 auto;
		min-height: 0;
		display: flex;
	}
	.bjs-loop > .bjs-wide-desktop .bjs-card-link .bjs-card-image-wrap {
		flex: 1 1 auto;
	}
}

@media (max-width: 767px) {
	.bjs-loop > .bjs-wide-mobile .bjs-card-image-wrap {
		aspect-ratio: unset;
		flex: 1 1 0;
		min-height: 0;
	}
	.bjs-loop > .bjs-wide-mobile .bjs-card-link {
		flex: 1 1 auto;
		min-height: 0;
		display: flex;
	}
	.bjs-loop > .bjs-wide-mobile .bjs-card-link .bjs-card-image-wrap {
		flex: 1 1 auto;
	}
}

.bjs-img-stack {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.bjs-img-stack--wide {
	/* Inherits container size from wrap */
}

/* Images forced to fill container - !important defeats theme img { width: auto } rules */
.bjs-img-stack .bjs-img {
	position: absolute !important;
	inset: 0;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	transition: opacity var(--bjs-transition);
}

.bjs-img-stack .bjs-img--studio { opacity: 1; z-index: 1; }
.bjs-img-stack .bjs-img--lifestyle { opacity: 0; z-index: 2; }
.bjs-img-stack .bjs-img--closeup { opacity: 1; z-index: 1; }

@media (hover: hover) {
	.bjs-has-hover:not(.bjs-wide-desktop):not(.bjs-wide-mobile):hover .bjs-img--studio { opacity: 0; }
	.bjs-has-hover:not(.bjs-wide-desktop):not(.bjs-wide-mobile):hover .bjs-img--lifestyle { opacity: 1; }
}

/* Card info row: short_name + price (right) | heart (left in RTL) */
.bjs-card-info {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	padding: 0 4px;
}

.bjs-card-info__text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bjs-card-name {
	font-size: var(--bjs-text-size);
	font-weight: 400;
	line-height: 1.4;
	color: var(--bjs-text);
	text-decoration: none;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bjs-card-name:hover {
	color: var(--bjs-secondary);
}

.bjs-card-price {
	font-size: var(--bjs-text-size);
	font-weight: 500;
	color: var(--bjs-text);
	line-height: 1.4;
}

.bjs-card-price del {
	color: var(--bjs-secondary);
	font-weight: 400;
	margin-inline-end: 6px;
	opacity: 0.7;
}

.bjs-card-price ins {
	background: transparent;
	text-decoration: none;
	color: var(--bjs-discount);
}

/* Wishlist heart toggle */
.bjs-wishlist-toggle {
	flex-shrink: 0;
	background: transparent;
	border: 0;
	padding: 4px;
	margin: 0;
	cursor: pointer;
	color: var(--bjs-text);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 200ms ease, color var(--bjs-transition);
	position: relative;
}

.bjs-wishlist-toggle:hover { transform: scale(1.1); }
.bjs-wishlist-toggle:active { transform: scale(0.95); }

.bjs-wishlist-toggle__filled { display: none; color: var(--bjs-text); }
.bjs-wishlist-toggle__outline { display: inline-flex; }

.bjs-wishlist-toggle.is-active .bjs-wishlist-toggle__outline { display: none; }
.bjs-wishlist-toggle.is-active .bjs-wishlist-toggle__filled { display: inline-flex; }

@keyframes bjs-heart-pop {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.3); }
}
.bjs-wishlist-toggle.is-just-toggled { animation: bjs-heart-pop 400ms ease; }

/* ==========================================================================
   Load More / Infinite Scroll
   ========================================================================== */
.bjs-load-more-wrap {
	margin: 48px auto;
	text-align: center;
	clear: both;
}

.bjs-load-more-btn {
	background: transparent !important;
	color: var(--bjs-text) !important;
	border: 1px solid var(--bjs-text) !important;
	padding: 12px 32px;
	font-size: var(--bjs-text-size);
	font-weight: 400;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: all var(--bjs-transition);
	font-family: inherit;
	min-width: 200px;
	border-radius: 0;
}

.bjs-load-more-btn:hover {
	background: var(--bjs-text) !important;
	color: var(--bjs-bg) !important;
	border-color: var(--bjs-text) !important;
}

.bjs-load-more-btn[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

.bjs-load-more-spinner {
	display: none;
	width: 12px;
	height: 12px;
	border: 1.5px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: bjs-spin 600ms linear infinite;
	margin-inline-start: 8px;
	vertical-align: middle;
}

.bjs-load-more-btn.is-loading .bjs-load-more-spinner { display: inline-block; }

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

.bjs-load-more-sentinel {
	height: 1px;
	width: 1px;
}

/* ==========================================================================
   Size Filter Bar
   ========================================================================== */
.bjs-size-filter-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--bjs-bg-soft);
	margin-bottom: 24px;
	font-size: var(--bjs-text-size);
	flex-wrap: wrap;
	border-radius: var(--bjs-radius-sm);
}

.bjs-size-filter-label {
	color: var(--bjs-secondary);
}

.bjs-size-filter-toggle {
	background: var(--bjs-bg) !important;
	border: 1px solid var(--bjs-border-strong) !important;
	color: var(--bjs-text) !important;
	padding: 8px 16px;
	cursor: pointer;
	font-size: var(--bjs-text-size);
	transition: all var(--bjs-transition);
	font-family: inherit;
}

.bjs-size-filter-toggle:hover {
	border-color: var(--bjs-text) !important;
}

.bjs-size-filter-toggle[aria-pressed="true"] {
	background: var(--bjs-text) !important;
	color: var(--bjs-bg) !important;
	border-color: var(--bjs-text) !important;
}

.bjs-saved-size-badge {
	display: inline-block;
	background: rgba(255,255,255,0.2);
	padding: 1px 8px;
	border-radius: 999px;
	margin-inline-start: 6px;
	font-size: 12px;
	font-weight: 500;
}

.bjs-size-filter-clear {
	background: transparent;
	border: none;
	color: var(--bjs-secondary);
	cursor: pointer;
	font-size: 12px;
}

/* ==========================================================================
   Popups (shared)
   ========================================================================== */
.bjs-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.bjs-popup[hidden] {
	display: none !important;
}

.bjs-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(4px);
	animation: bjs-fade-in 200ms ease-out;
}

.bjs-popup__panel {
	position: relative;
	background: var(--bjs-bg);
	border-radius: var(--bjs-radius-md);
	box-shadow: var(--bjs-shadow-lg);
	max-width: 480px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	animation: bjs-pop-in 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bjs-popup__panel--lg { max-width: 560px; }

.bjs-popup__close {
	position: absolute;
	top: 12px;
	left: 12px;
	background: transparent !important;
	border: none !important;
	width: 32px;
	height: 32px;
	cursor: pointer;
	color: var(--bjs-text) !important;
	transition: opacity var(--bjs-transition);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.bjs-popup__close:hover {
	opacity: 0.6;
	background: transparent !important;
	color: var(--bjs-text) !important;
}

.bjs-popup__header {
	padding: 32px 24px 16px;
	text-align: center;
}

.bjs-popup__icon {
	display: inline-flex;
	margin-bottom: 12px;
	color: var(--bjs-text);
}

.bjs-popup__title {
	font-size: var(--bjs-h2);
	font-weight: 400;
	margin: 0 0 8px;
}

.bjs-popup__subtitle {
	color: var(--bjs-secondary);
	font-size: var(--bjs-text-size);
	margin: 0;
	line-height: 1.5;
}

.bjs-popup__body {
	padding: 8px 24px;
}

.bjs-popup__footer {
	padding: 16px 24px 24px;
	display: flex;
	gap: 12px;
	flex-direction: row-reverse;
}

.bjs-popup__footer--stack {
	flex-direction: column;
}

.bjs-popup__cta {
	flex: 1;
	background: var(--bjs-text) !important;
	color: var(--bjs-bg) !important;
	border: none !important;
	padding: 14px 24px;
	font-size: var(--bjs-text-size);
	font-weight: 500;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background var(--bjs-transition);
	font-family: inherit;
}

.bjs-popup__cta:hover:not(:disabled) {
	background: var(--bjs-secondary) !important;
}

.bjs-popup__cta:disabled {
	background: var(--bjs-bg-strong) !important;
	color: var(--bjs-secondary) !important;
	cursor: not-allowed;
}

.bjs-popup__cta-spinner {
	display: inline-block;
	width: 12px;
	height: 12px;
	border: 1.5px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: bjs-spin 600ms linear infinite;
	margin-inline-start: 8px;
	vertical-align: middle;
}

.bjs-popup__skip {
	flex: 1;
	background: transparent !important;
	color: var(--bjs-secondary) !important;
	border: 1px solid var(--bjs-border-strong) !important;
	padding: 14px 24px;
	font-size: var(--bjs-text-size);
	cursor: pointer;
	font-family: inherit;
	transition: all var(--bjs-transition);
}

.bjs-popup__skip:hover {
	color: var(--bjs-text) !important;
	border-color: var(--bjs-text) !important;
}

@keyframes bjs-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes bjs-pop-in {
	from { opacity: 0; transform: translateY(20px) scale(0.96); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================================================
   Size Popup Specific
   ========================================================================== */
.bjs-size-options {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
	gap: 8px;
	margin-bottom: 16px;
}

.bjs-size-option {
	background: var(--bjs-bg) !important;
	border: 1px solid var(--bjs-border-strong) !important;
	color: var(--bjs-text) !important;
	padding: 12px 8px;
	cursor: pointer;
	font-size: var(--bjs-text-size);
	font-weight: 500;
	transition: all 200ms ease;
	font-family: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.bjs-size-option:hover:not(.is-unavailable):not([aria-checked="true"]) {
	border-color: var(--bjs-text) !important;
}

.bjs-size-option[aria-checked="true"] {
	background: var(--bjs-text) !important;
	color: var(--bjs-bg) !important;
	border-color: var(--bjs-text) !important;
}

.bjs-size-option.is-unavailable {
	opacity: 0.4;
	cursor: not-allowed;
	text-decoration: line-through;
}

.bjs-size-option small {
	font-size: 10px;
	font-weight: 400;
	text-decoration: none;
}

.bjs-size-popup__save {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	font-size: var(--bjs-text-size);
	color: var(--bjs-secondary);
	cursor: pointer;
}

.bjs-size-popup__save input[type="checkbox"] {
	margin: 0;
	accent-color: var(--bjs-text);
}

.bjs-size-popup__guide-link {
	display: block;
	text-align: center;
	color: var(--bjs-text);
	text-decoration: underline;
	font-size: 13px;
	margin-top: 8px;
}

/* Saved size indicator */
.bjs-saved-size-indicator {
	background: var(--bjs-bg-soft);
	color: var(--bjs-text);
	padding: 10px 14px;
	border-radius: var(--bjs-radius-sm);
	font-size: var(--bjs-text-size);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.bjs-saved-size-indicator .bjs-clear-size {
	background: transparent;
	border: none;
	color: var(--bjs-secondary);
	cursor: pointer;
	font-size: 12px;
	text-decoration: underline;
	margin-inline-start: auto;
}

/* ==========================================================================
   Cross-sell Popup Specific
   ========================================================================== */
.bjs-xsell-popup__badge {
	display: inline-block;
	background: var(--bjs-text);
	color: var(--bjs-bg);
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 500;
	margin-bottom: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: var(--bjs-radius-sm);
}

.bjs-xsell-popup__product {
	display: flex;
	gap: 16px;
	background: var(--bjs-bg-soft);
	padding: 16px;
	margin-bottom: 8px;
	border-radius: var(--bjs-radius-sm);
}

.bjs-xsell-popup__image {
	flex: 0 0 120px;
	height: 120px;
	overflow: hidden;
	background: var(--bjs-bg);
	border-radius: var(--bjs-radius-sm);
}

.bjs-xsell-popup__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bjs-xsell-popup__details {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bjs-xsell-popup__name {
	font-size: var(--bjs-h3);
	margin: 0 0 8px;
	color: var(--bjs-text);
	font-weight: 400;
}

.bjs-xsell-popup__pricing {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 8px;
}

.bjs-xsell-popup__original-price {
	color: var(--bjs-secondary);
	text-decoration: line-through;
	font-size: var(--bjs-text-size);
}

.bjs-xsell-popup__discounted-price {
	color: var(--bjs-discount);
	font-size: 20px;
	font-weight: 500;
}

.bjs-xsell-popup__discount-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--bjs-success);
	color: var(--bjs-bg);
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	align-self: flex-start;
	border-radius: var(--bjs-radius-sm);
}

/* ==========================================================================
   Set Offers (product page)
   ========================================================================== */
.bjs-set-offers {
	margin: 32px 0;
	padding: 24px;
	background: var(--bjs-bg-soft);
	border-radius: var(--bjs-radius-md);
}

.bjs-set-offers__title {
	font-size: var(--bjs-h3);
	margin: 0 0 20px;
	color: var(--bjs-text);
	text-align: center;
}

.bjs-set-offer {
	background: var(--bjs-bg);
	padding: 20px;
	margin-bottom: 16px;
	box-shadow: var(--bjs-shadow-sm);
	border-radius: var(--bjs-radius-sm);
}

.bjs-set-offer:last-child { margin-bottom: 0; }

.bjs-set-offer__header {
	margin-bottom: 16px;
	text-align: center;
}

.bjs-set-offer__name {
	font-size: var(--bjs-h3);
	margin: 0 0 4px;
	color: var(--bjs-text);
}

.bjs-set-offer__desc {
	font-size: 13px;
	color: var(--bjs-secondary);
	margin: 0;
}

.bjs-set-offer__products {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0;
}

.bjs-set-offer__product {
	flex: 1 1 0;
	min-width: 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 10px 6px;
	border: 1px solid var(--bjs-border-strong);
	cursor: pointer;
	transition: border-color var(--bjs-transition);
	background: var(--bjs-bg);
	position: relative;
	border-radius: var(--bjs-radius-sm);
}

.bjs-set-offer__product:has(input:checked) {
	border-color: var(--bjs-text);
}

.bjs-set-offer__product.is-current::before {
	content: "המוצר הנוכחי";
	position: absolute;
	top: -10px;
	right: 50%;
	transform: translateX(50%);
	background: var(--bjs-text);
	color: var(--bjs-bg);
	font-size: 10px;
	padding: 2px 8px;
	border-radius: 999px;
	font-weight: 500;
}

.bjs-set-offer__product input[type="checkbox"] {
	position: absolute;
	top: 4px;
	left: 4px;
	margin: 0;
	accent-color: var(--bjs-text);
}

.bjs-set-offer__product img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: var(--bjs-radius-sm);
}

.bjs-set-offer__product-name {
	font-size: 12px;
	text-align: center;
	color: var(--bjs-text);
	line-height: 1.3;
}

.bjs-set-offer__product-price {
	font-size: 12px;
	color: var(--bjs-secondary);
}

.bjs-set-offer__plus {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--bjs-secondary);
	font-weight: 300;
	width: 20px;
}

.bjs-set-offer__footer {
	border-top: 1px solid var(--bjs-border);
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bjs-set-offer__pricing {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	align-items: baseline;
}

.bjs-set-offer__original {
	color: var(--bjs-secondary);
	text-decoration: line-through;
	font-size: var(--bjs-text-size);
}

.bjs-set-offer__final {
	color: var(--bjs-discount);
	font-size: 20px;
	font-weight: 500;
}

.bjs-set-offer__savings {
	display: inline-block;
	background: var(--bjs-success);
	color: var(--bjs-bg);
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	border-radius: var(--bjs-radius-sm);
}

.bjs-set-offer__cta {
	background: var(--bjs-text) !important;
	color: var(--bjs-bg) !important;
	border: none !important;
	padding: 14px 24px;
	font-size: var(--bjs-text-size);
	font-weight: 500;
	cursor: pointer;
	font-family: inherit;
	transition: background var(--bjs-transition);
}

.bjs-set-offer__cta:hover:not(:disabled) {
	background: var(--bjs-secondary) !important;
}

/* ==========================================================================
   Cart Set Reminder
   ========================================================================== */
.bjs-cart-set-reminder {
	margin-bottom: 24px;
}

.bjs-cart-set-reminder__item {
	background: var(--bjs-bg-soft);
	padding: 16px;
	margin-bottom: 12px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	border-radius: var(--bjs-radius-md);
}

.bjs-cart-set-reminder__icon {
	display: inline-flex;
	color: var(--bjs-text);
}

.bjs-cart-set-reminder__text {
	font-size: var(--bjs-text-size);
	line-height: 1.5;
}

.bjs-cart-set-reminder__missing {
	grid-column: 1 / -1;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.bjs-cart-set-reminder__product {
	display: flex;
	align-items: center;
	gap: 6px;
	background: var(--bjs-bg);
	padding: 6px 10px;
	text-decoration: none;
	color: var(--bjs-text);
	font-size: 13px;
	border: 1px solid var(--bjs-border);
	transition: border-color var(--bjs-transition);
	border-radius: var(--bjs-radius-sm);
}

.bjs-cart-set-reminder__product:hover {
	border-color: var(--bjs-text);
}

.bjs-cart-set-reminder__product img {
	width: 32px;
	height: 32px;
	object-fit: cover;
	border-radius: 2px;
}

/* ==========================================================================
   Product Page Trust Row
   ========================================================================== */
.bjs-trust-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	margin: 16px 0;
	padding: 16px;
	background: var(--bjs-bg-soft);
	border-radius: var(--bjs-radius-sm);
}

.bjs-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--bjs-text);
}

.bjs-trust-icon {
	display: inline-flex;
	color: var(--bjs-text);
	flex-shrink: 0;
}

/* ==========================================================================
   Sticky Mobile CTA
   ========================================================================== */
.bjs-sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--bjs-bg);
	box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 99;
	transform: translateY(100%);
	transition: transform var(--bjs-transition);
	border-top: 1px solid var(--bjs-border);
}

.bjs-sticky-cta.is-visible {
	transform: translateY(0);
}

.bjs-sticky-cta__price {
	flex: 0 0 auto;
	font-size: var(--bjs-h3);
	font-weight: 500;
	color: var(--bjs-text);
}

.bjs-sticky-cta__price del {
	font-size: 13px;
	font-weight: 400;
	color: var(--bjs-secondary);
	margin-inline-end: 6px;
}

.bjs-sticky-cta__action {
	flex: 1;
}

.bjs-sticky-cta__action button,
.bjs-sticky-cta__action .single_add_to_cart_button {
	width: 100%;
	background: var(--bjs-text) !important;
	color: var(--bjs-bg) !important;
	padding: 14px !important;
	font-size: var(--bjs-text-size) !important;
	font-weight: 500 !important;
	border-radius: var(--bjs-radius-sm) !important;
	border: none !important;
	font-family: var(--bjs-font) !important;
}

@media (min-width: 768px) {
	.bjs-sticky-cta { display: none !important; }
}

/* ==========================================================================
   Free Shipping Bar
   ========================================================================== */
.bjs-free-shipping-bar {
	background: var(--bjs-bg-soft);
	padding: 14px 16px;
	margin-bottom: 20px;
	border-radius: var(--bjs-radius-sm);
}

.bjs-free-shipping-bar__message {
	text-align: center;
	font-size: var(--bjs-text-size);
	font-weight: 500;
	color: var(--bjs-text);
	margin-bottom: 8px;
}

.bjs-free-shipping-bar__track {
	height: 6px;
	background: var(--bjs-bg);
	overflow: hidden;
	border-radius: 3px;
}

.bjs-free-shipping-bar__fill {
	height: 100%;
	background: var(--bjs-text);
	transition: width var(--bjs-transition);
}

/* ==========================================================================
   Below-Fold Section (Accordion + Sidebar on product page)
   ========================================================================== */
.bjs-below-fold {
	margin-top: 64px;
	padding-top: 32px;
	border-top: 1px solid var(--bjs-border);
}

.bjs-below-fold__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

@media (min-width: 900px) {
	.bjs-below-fold__grid {
		grid-template-columns: 1fr 320px;
	}
}

.bjs-below-fold__main {
	min-width: 0;
}

/* Accordion */
.bjs-accordion {
	max-width: 720px;
}

.bjs-accordion__item {
	border-top: 1px solid var(--bjs-border-strong);
	margin: 0;
}

.bjs-accordion__item:last-child {
	border-bottom: 1px solid var(--bjs-border-strong);
}

.bjs-accordion__summary {
	cursor: pointer;
	list-style: none;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--bjs-h3);
	font-weight: 400;
	color: var(--bjs-text);
}

.bjs-accordion__summary::-webkit-details-marker { display: none; }
.bjs-accordion__summary::marker { content: ''; }

.bjs-accordion__title {
	flex: 1;
}

.bjs-accordion__icon {
	display: inline-flex;
	color: var(--bjs-secondary);
	transition: transform 250ms ease;
}

.bjs-accordion__item[open] .bjs-accordion__icon {
	transform: rotate(45deg);
}

.bjs-accordion__content {
	padding: 0 0 24px;
	font-size: var(--bjs-text-size);
	line-height: 1.7;
	color: var(--bjs-secondary);
}

.bjs-accordion__content p:first-child { margin-top: 0; }
.bjs-accordion__content p:last-child { margin-bottom: 0; }
.bjs-accordion__content ul, .bjs-accordion__content ol {
	margin: 8px 0;
	padding-inline-start: 20px;
}

/* Below-fold Sidebar */
.bjs-below-fold__aside {
	min-width: 0;
}

.bjs-aside__title {
	font-size: var(--bjs-h3);
	font-weight: 400;
	color: var(--bjs-text);
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--bjs-border-strong);
}

.bjs-aside__products {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bjs-aside__product {
	margin: 0;
	padding: 0;
}

.bjs-aside__product-link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-decoration: none;
	color: inherit;
}

.bjs-aside__product-image {
	aspect-ratio: 1 / 1;
	background: var(--bjs-bg-soft);
	overflow: hidden;
	border-radius: var(--bjs-radius-sm);
}

.bjs-aside__product-image img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
}

.bjs-aside__product-name {
	font-size: 13px;
	color: var(--bjs-text);
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bjs-aside__product-price {
	font-size: 13px;
	font-weight: 500;
	color: var(--bjs-text);
}

.bjs-aside__product-price del {
	color: var(--bjs-secondary);
	font-weight: 400;
	margin-inline-end: 4px;
	font-size: 12px;
}

/* ==========================================================================
   Gift Mode Checkout
   ========================================================================== */
.bjs-gift-mode-wrap {
	margin: 24px 0;
	padding: 16px;
	background: var(--bjs-bg-soft);
	border-radius: var(--bjs-radius-sm);
}

.bjs-gift-mode-wrap h3 {
	margin: 0 0 12px;
	font-size: var(--bjs-h3);
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 8px;
}

.bjs-gift-mode-wrap__icon {
	display: inline-flex;
	color: var(--bjs-text);
}

.bjs-gift-checkbox-label {
	display: flex !important;
	align-items: flex-start;
	gap: 8px;
	cursor: pointer;
	font-size: var(--bjs-text-size) !important;
	font-weight: 400 !important;
	color: var(--bjs-text);
}

.bjs-gift-checkbox-label input {
	margin-top: 4px !important;
	accent-color: var(--bjs-text);
}

.bjs-gift-message-row textarea {
	border-radius: var(--bjs-radius-sm) !important;
	margin-top: 6px !important;
	border: 1px solid var(--bjs-border-strong) !important;
	font-family: var(--bjs-font) !important;
}

.bjs-char-count {
	display: block;
	text-align: end;
	font-size: 11px;
	color: var(--bjs-secondary);
	margin-top: 4px;
}

.bjs-gift-confirmation {
	background: var(--bjs-bg-soft);
	padding: 16px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: var(--bjs-radius-sm);
}

.bjs-gift-confirmation__icon {
	display: inline-flex;
	color: var(--bjs-text);
}

/* ==========================================================================
   Variation Pills (replaces dropdown via JS)
   ========================================================================== */
.bjs-variation-wrap .bjs-attribute-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 8px 0;
}

.bjs-attribute-pills__option {
	background: var(--bjs-bg) !important;
	border: 1px solid var(--bjs-border-strong) !important;
	color: var(--bjs-text) !important;
	padding: 8px 16px;
	cursor: pointer;
	font-size: var(--bjs-text-size);
	font-weight: 400;
	transition: all var(--bjs-transition);
	font-family: var(--bjs-font);
}

.bjs-attribute-pills__option:hover:not(:disabled):not(.is-active) {
	border-color: var(--bjs-text) !important;
}

.bjs-attribute-pills__option.is-active {
	background: var(--bjs-text) !important;
	color: var(--bjs-bg) !important;
	border-color: var(--bjs-text) !important;
}

.bjs-attribute-pills__option:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	text-decoration: line-through;
}

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */
.bjs-whatsapp-float {
	position: fixed;
	bottom: 90px;
	left: 20px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--bjs-text);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 98;
	transition: transform var(--bjs-transition);
	color: var(--bjs-bg);
	text-decoration: none;
}

.bjs-whatsapp-float:hover {
	transform: scale(1.05);
	color: var(--bjs-bg);
}

@media (min-width: 768px) {
	.bjs-whatsapp-float { bottom: 30px; }
}

/* ==========================================================================
   Hero Gallery Widget (Elementor) - Editorial style
   Thumbnails OVERLAID on image (top-right), counter top-left, dots mobile
   ========================================================================== */
.bjs-hero-gallery {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.bjs-hero-gallery--sticky {
	position: relative;
}

@media (min-width: 860px) {
	.bjs-hero-gallery--sticky {
		position: sticky;
		top: 32px;
	}
}

.bjs-hero-gallery__main-wrap {
	position: relative;
	overflow: hidden;
}

.bjs-hero-gallery__main {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--bjs-bg-soft);
	overflow: hidden;
}

@media (max-width: 859px) {
	.bjs-hero-gallery__main {
		aspect-ratio: 4 / 5;
	}
}

.bjs-hero-gallery__img {
	position: absolute !important;
	inset: 0;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	opacity: 0;
	transition: opacity 550ms cubic-bezier(.4,0,.2,1), transform 550ms cubic-bezier(.4,0,.2,1);
}

.bjs-hero-gallery__img.is-active {
	opacity: 1;
	z-index: 1;
}

@media (hover: hover) {
	.bjs-hero-gallery__main-wrap:hover .bjs-hero-gallery__img.is-active {
		transform: scale(1.015);
	}
}

/* Counter (top-left) */
.bjs-hero-gallery__counter {
	position: absolute;
	top: 18px;
	inset-inline-start: 18px;
	background: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	padding: 6px 10px;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bjs-text);
	font-variant-numeric: tabular-nums;
	z-index: 5;
}

/* Thumbnails - overlaid on image (top-right corner, vertical stack) */
.bjs-hero-gallery__thumbs--overlaid {
	position: absolute;
	top: 20px;
	inset-inline-end: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 6;
}

.bjs-hero-gallery__thumb {
	width: 52px !important;
	height: 52px !important;
	padding: 0 !important;
	background: rgba(255, 255, 255, 0.6) !important;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(0, 0, 0, 0.18) !important;
	outline: none;
	cursor: pointer;
	overflow: hidden;
	transition: outline-color .2s, transform .2s, border-color .2s;
	transform: scale(0.96);
	border-radius: 0 !important;
}

.bjs-hero-gallery__thumb img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	display: block;
}

.bjs-hero-gallery__thumb.is-active {
	outline: 1.5px solid var(--bjs-text);
	outline-offset: 2px;
	border-color: var(--bjs-text) !important;
	transform: scale(1);
}

.bjs-hero-gallery__thumb:hover:not(.is-active) {
	border-color: var(--bjs-secondary) !important;
	transform: scale(1);
}

@media (max-width: 859px) {
	.bjs-hero-gallery__thumbs--overlaid {
		top: 14px;
		inset-inline-end: 14px;
	}
	.bjs-hero-gallery__thumb {
		width: 44px !important;
		height: 44px !important;
	}
}

/* Prev / Next nav arrows */
.bjs-hero-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.85) !important;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(0, 0, 0, 0.1) !important;
	color: var(--bjs-text) !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	opacity: 0;
	transition: opacity .25s, transform .25s;
	padding: 0 !important;
}

.bjs-hero-gallery__main-wrap:hover .bjs-hero-gallery__nav {
	opacity: 1;
}

.bjs-hero-gallery__nav--prev {
	inset-inline-end: 20px;
	transform: translateY(-50%) translateX(6px);
}
.bjs-hero-gallery__nav--next {
	inset-inline-start: 20px;
	transform: translateY(-50%) translateX(-6px);
}
.bjs-hero-gallery__main-wrap:hover .bjs-hero-gallery__nav--prev,
.bjs-hero-gallery__main-wrap:hover .bjs-hero-gallery__nav--next {
	transform: translateY(-50%) translateX(0);
}

/* Hide nav arrows on mobile; show dots instead */
@media (max-width: 859px) {
	.bjs-hero-gallery__nav { display: none; }
}

/* Mobile dots indicator (bottom center) */
.bjs-hero-gallery__dots {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	gap: 6px;
	background: rgba(255, 255, 255, 0.7);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	padding: 6px 10px;
	border-radius: 999px;
	z-index: 5;
}

@media (max-width: 859px) {
	.bjs-hero-gallery__dots { display: flex; }
}

.bjs-hero-gallery__dot {
	width: 6px !important;
	height: 6px !important;
	border-radius: 50% !important;
	padding: 0 !important;
	border: 0 !important;
	background: rgba(0, 0, 0, 0.25) !important;
	transition: background .2s;
	cursor: pointer;
}

.bjs-hero-gallery__dot.is-active {
	background: var(--bjs-text) !important;
}

/* Wishlist standalone button (used in wishlist widget) */
.bjs-wishlist-toggle--standalone {
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	background: var(--bjs-bg) !important;
	border: 1px solid var(--bjs-border-strong) !important;
	transition: border-color var(--bjs-transition), color var(--bjs-transition);
}

.bjs-wishlist-toggle--standalone:hover {
	border-color: var(--bjs-text) !important;
	transform: none;
}

.bjs-wishlist-toggle--standalone.is-active {
	border-color: var(--bjs-text) !important;
}

.bjs-wishlist-button-wrap.is-active .bjs-wishlist-button-label__inactive { display: none; }
.bjs-wishlist-button-wrap.is-active .bjs-wishlist-button-label__active { display: inline !important; }
