/* ==========================================================
   SINGLE PRODUCT PAGE
   Responsive WooCommerce design
   File: assets/css/single-product.css
   ========================================================== */

:root {
	--spp-bg: #faf8f5;
	--spp-cream: #f2ece1;
	--spp-gold: #c99a4b;
	--spp-gold-dark: #a97f39;
	--spp-text: #1f1c19;
	--spp-text-muted: #756f68;
	--spp-border: #e6e1d8;
	--spp-radius: 10px;
}

.single-product-page,
.single-product-page * {
	box-sizing: border-box;
}

.single-product-page {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 34px 24px 70px;
	color: var(--spp-text);
	font-family: "Helvetica Neue", Arial, sans-serif;
}

.single-product-page a {
	color: inherit;
}

.spp-wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
	gap: 28px;
	align-items: start;
}

/* ==========================================================
   FLOATING CART
   ========================================================== */

.spp-floating-cart {
	position: fixed;
	z-index: 99999;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #181716;
	color: #fff !important;
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(0,0,0,.18);
	text-decoration: none !important;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.spp-floating-cart:hover {
	transform: translateY(-50%) scale(1.06);
	background: #000;
	box-shadow: 0 14px 34px rgba(0,0,0,.25);
}

.spp-floating-cart svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: #fff;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.spp-cart-count {
	position: absolute;
	top: -5px;
	right: -4px;
	min-width: 22px;
	height: 22px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--spp-gold);
	color: #fff;
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

/* ==========================================================
   GALLERY
   ========================================================== */

.spp-gallery {
	min-width: 0;
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 18px;
}

.spp-thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.spp-thumb {
	width: 88px;
	height: 88px;
	padding: 0;
	display: block;
	background: #fff;
	border: 1px solid var(--spp-border);
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	transition: border-color .18s ease, transform .18s ease;
}

.spp-thumb:hover,
.spp-thumb.is-active {
	border-color: var(--spp-gold);
}

.spp-thumb.is-active {
	box-shadow: 0 0 0 1px var(--spp-gold);
}

.spp-thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	background: #fff;
}

.spp-main-image {
	position: relative;
	width: 100%;
	min-width: 0;
	aspect-ratio: 1 / 1.05;
	background: var(--spp-cream);
	border-radius: var(--spp-radius);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.spp-main-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
	background: var(--spp-cream);
}

.spp-badge {
	position: absolute;
	z-index: 2;
	top: 16px;
	left: 16px;
	background: #fff;
	color: var(--spp-gold-dark);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 7px 11px;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0,0,0,.07);
}

/* ==========================================================
   PRODUCT INFO
   ========================================================== */

.spp-info {
	min-width: 0;
	padding-top: 3px;
}

.spp-eyebrow {
	color: var(--spp-gold-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 0 0 8px;
	line-height: 1.4;
}

.spp-title {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 0 9px !important;
	padding: 0 !important;
	color: var(--spp-text) !important;
	font-size: clamp(25px, 2.2vw, 32px) !important;
	font-weight: 500 !important;
	line-height: 1.18 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	white-space: normal !important;
	overflow: visible !important;
	word-break: normal !important;
	overflow-wrap: anywhere;
}

.spp-brand {
	margin: 0 0 9px;
	color: var(--spp-text-muted);
	font-size: 13px;
	line-height: 1.4;
}

.spp-rating {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0 0 15px;
	font-size: 13px;
}

.spp-stars .star-rating {
	margin: 0;
	color: var(--spp-gold) !important;
}

.spp-stars .star-rating::before,
.spp-stars .star-rating span::before {
	color: var(--spp-gold) !important;
}

.spp-review-count {
	color: var(--spp-text-muted) !important;
	text-decoration: none !important;
	white-space: nowrap;
}

.spp-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 15px;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--spp-border);
	font-size: 25px;
	font-weight: 700;
	line-height: 1.2;
}

.spp-price ins,
.spp-sale-price {
	color: var(--spp-text) !important;
	text-decoration: none !important;
	font-weight: 700;
}

.spp-price del,
.spp-regular-price {
	color: #88817a !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	opacity: 1 !important;
	text-decoration: line-through !important;
}

.spp-price .woocommerce-Price-amount {
	white-space: nowrap;
}

.spp-discount-pill {
	display: inline-flex;
	align-items: center;
	background: var(--spp-cream);
	color: var(--spp-gold-dark);
	font-size: 11px;
	font-weight: 800;
	padding: 5px 9px;
	border-radius: 6px;
	white-space: nowrap;
}

.spp-short-desc {
	color: var(--spp-text-muted);
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 18px;
}

.spp-short-desc p {
	margin: 0 0 8px;
}

.spp-short-desc p:last-child {
	margin-bottom: 0;
}

/* ==========================================================
   FEATURES
   ========================================================== */

.spp-features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	padding: 17px 0;
	margin: 0 0 18px;
	border-top: 1px solid var(--spp-border);
	border-bottom: 1px solid var(--spp-border);
}

.spp-feature {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 7px;
	text-align: center;
	color: var(--spp-text-muted);
	font-size: 11px;
	line-height: 1.25;
}

.spp-feature-icon {
	color: var(--spp-gold);
	font-size: 19px;
	line-height: 1;
}

/* ==========================================================
   WOOCOMMERCE ADD TO CART / VARIATIONS
   ========================================================== */

.spp-info form.cart {
	margin: 0 !important;
}

.spp-info .variations {
	width: 100%;
	margin: 0 0 15px;
	border: 0 !important;
}

.spp-info table.variations,
.spp-info .variations tbody,
.spp-info .variations tr,
.spp-info .variations td {
	display: block;
	width: 100%;
}

.spp-info .variations tr {
	margin-bottom: 13px;
}

.spp-info .variations td.label {
	padding: 0 0 7px !important;
	font-size: 13px;
	font-weight: 700;
}

.spp-info .variations td.value {
	padding: 0 !important;
}

.spp-info .variations select {
	min-width: 130px;
	max-width: 100%;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid var(--spp-border);
	border-radius: 7px;
	font-size: 14px;
}

.spp-info .reset_variations {
	margin-left: 8px;
	font-size: 12px;
}

.spp-info .quantity {
	display: inline-flex !important;
	align-items: center;
	width: auto !important;
	height: 46px;
	margin: 0 8px 0 0 !important;
	border: 1px solid var(--spp-border);
	border-radius: 7px;
	overflow: hidden;
	vertical-align: middle;
}

.spp-info .quantity .qty {
	width: 48px !important;
	height: 44px;
	padding: 0 !important;
	border: 0 !important;
	background: #fff;
	color: var(--spp-text);
	text-align: center;
	font-size: 14px;
	box-shadow: none !important;
}

.spp-info .single_add_to_cart_button,
.spp-info .spp-buy-now-btn {
	min-height: 46px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 23px !important;
	border: 0 !important;
	border-radius: 7px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	cursor: pointer;
	vertical-align: middle;
	transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.spp-info .single_add_to_cart_button {
	background: #181716 !important;
	color: #fff !important;
}

.spp-info .single_add_to_cart_button:hover {
	background: #000 !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.spp-info .spp-buy-now-btn {
	background: var(--spp-gold) !important;
	color: #fff !important;
}

.spp-info .spp-buy-now-btn:hover {
	background: var(--spp-gold-dark) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.spp-info .single_add_to_cart_button.disabled,
.spp-info .single_add_to_cart_button:disabled {
	opacity: .5;
	cursor: not-allowed;
	transform: none;
}

.spp-info .stock {
	display: block;
	margin: 9px 0 0;
	font-size: 13px;
	color: var(--spp-text-muted);
}

.spp-info .stock.out-of-stock {
	color: #b3341c;
	font-weight: 700;
}

/* ==========================================================
   TABS + TRUST
   ========================================================== */

.spp-tabs-section {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, 1fr);
	gap: 24px;
	align-items: start;
	margin-top: 52px;
}

.spp-tabs-left {
	min-width: 0;
}

.spp-tabs-nav {
	display: flex;
	align-items: center;
	gap: 27px;
	overflow-x: auto;
	border-bottom: 1px solid var(--spp-border);
	scrollbar-width: none;
}

.spp-tabs-nav::-webkit-scrollbar {
	display: none;
}

.spp-tab-btn {
	flex: 0 0 auto;
	margin: 0 0 -1px;
	padding: 12px 0 11px;
	background: none !important;
	border: 0 !important;
	border-bottom: 2px solid transparent !important;
	color: var(--spp-text-muted) !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
}

.spp-tab-btn.is-active {
	color: var(--spp-gold-dark) !important;
	border-bottom-color: var(--spp-gold-dark) !important;
}

.spp-tabs-body {
	min-height: 160px;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--spp-border);
	border-top: 0;
	border-radius: 0 0 var(--spp-radius) var(--spp-radius);
}

.spp-tab-panel {
	display: none;
	color: var(--spp-text-muted);
	font-size: 14px;
	line-height: 1.7;
}

.spp-tab-panel.is-active {
	display: block;
}

.spp-tab-panel p:first-child {
	margin-top: 0;
}

.spp-trust-badges {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 23px;
	background: var(--spp-bg);
	border: 1px solid var(--spp-border);
	border-radius: var(--spp-radius);
}

.spp-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	color: var(--spp-text);
	font-size: 13px;
	line-height: 1.35;
}

.spp-trust-icon {
	flex: 0 0 28px;
	width: 28px;
	font-size: 20px;
	line-height: 1;
	text-align: center;
}

.spp-trust-item strong {
	display: block;
	font-weight: 700;
}

.spp-trust-item small {
	display: block;
	margin-top: 2px;
	color: var(--spp-text-muted);
	font-size: 12px;
}

/* ==========================================================
   RELATED PRODUCTS
   ========================================================== */

.spp-related-section {
	margin-top: 58px;
}

.spp-related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 20px;
}

.spp-related-header h2 {
	margin: 0 !important;
	padding: 0 !important;
	color: var(--spp-text) !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	letter-spacing: .06em;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}

.spp-view-all {
	color: var(--spp-text-muted) !important;
	font-size: 13px;
	text-decoration: none !important;
	white-space: nowrap;
}

.spp-related-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.spp-related-card {
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--spp-border);
	border-radius: 8px;
}

.spp-related-img {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #fff;
	overflow: hidden;
	text-decoration: none !important;
}

.spp-related-img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
	transition: transform .25s ease;
}

.spp-related-img:hover img {
	transform: scale(1.035);
}

.spp-related-content {
	min-width: 0;
	padding: 11px 12px 12px;
}

.spp-related-name {
	display: block !important;
	min-height: 38px;
	margin: 0 0 7px !important;
	padding: 0 !important;
	color: var(--spp-text) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.45 !important;
	text-decoration: none !important;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: anywhere;
}

.spp-related-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.spp-related-price {
	min-width: 0;
	color: var(--spp-gold-dark);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.spp-related-price ins {
	text-decoration: none;
}

.spp-related-price del {
	color: #8a837b;
	font-weight: 400;
	margin-right: 3px;
}

.spp-related-cart-btn {
	position: relative;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #181716 !important;
	border: 0 !important;
	border-radius: 50%;
	color: #fff !important;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease;
}

.spp-related-cart-btn:hover {
	background: #000 !important;
	transform: translateY(-1px);
}

.spp-related-cart-btn svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.spp-related-cart-btn .spp-cart-check {
	display: none;
	font-size: 17px;
	font-weight: 800;
}

.spp-related-cart-btn.loading {
	opacity: .6;
	cursor: wait;
}

.spp-related-cart-btn.loading svg {
	animation: spp-spin .8s linear infinite;
}

.spp-related-cart-btn.added {
	background: var(--spp-gold) !important;
}

.spp-related-cart-btn.added svg {
	display: none;
}

.spp-related-cart-btn.added .spp-cart-check {
	display: block;
}

@keyframes spp-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ==========================================================
   DESKTOP GALLERY / INFO LAYOUT FIX
   ========================================================== */

@media (min-width: 1051px) {

	.single-product-page .spp-wrapper {
		display: grid !important;
		grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr) !important;
		gap: 28px !important;
		align-items: start !important;
	}

	.single-product-page .spp-gallery {
		grid-column: 1 !important;
		grid-row: 1 !important;
		display: grid !important;
		grid-template-columns: 88px minmax(0, 1fr) !important;
		gap: 18px !important;
		width: 100% !important;
		min-width: 0 !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.single-product-page .spp-info {
		grid-column: 2 !important;
		grid-row: 1 !important;
		width: 100% !important;
		min-width: 0 !important;
		background: transparent !important;
	}

	.single-product-page .spp-thumbs {
		width: 88px !important;
		min-width: 88px !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 12px !important;
	}

	.single-product-page .spp-thumb {
		width: 88px !important;
		height: 88px !important;
		min-width: 88px !important;
		flex: 0 0 88px !important;
	}

	.single-product-page .spp-main-image {
		width: 100% !important;
		min-width: 0 !important;
		min-height: 500px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.single-product-page .spp-main-image img,
	.single-product-page #spp-main-img {
		display: block !important;
		width: 100% !important;
		height: 100% !important;
		max-width: 100% !important;
		max-height: 100% !important;
		object-fit: contain !important;
		object-position: center center !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1050px) {

	.single-product-page {
		padding-left: 20px;
		padding-right: 20px;
	}

	.spp-wrapper {
		grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
		gap: 20px;
	}

	.spp-gallery {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 14px;
		min-width: 0;
	}

	.spp-thumb {
		width: 76px;
		height: 76px;
	}

	.spp-title {
		font-size: 27px !important;
	}

	.spp-related-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 13px;
	}
}

/* ==========================================================
   TABLET / LARGE MOBILE
   ========================================================== */

@media (max-width: 900px) {

	.spp-wrapper {
		display: block !important;
	}

	.spp-gallery {
		display: grid !important;
		grid-template-columns: 76px minmax(0, 1fr) !important;
		width: 100% !important;
		min-width: 0 !important;
	}

	.spp-info {
		width: 100% !important;
		margin-top: 23px;
	}

	.spp-tabs-section {
		grid-template-columns: 1fr;
	}

	.spp-trust-badges {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spp-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

	.single-product-page {
		padding: 18px 14px 55px;
	}

	.spp-floating-cart {
		right: 12px;
		width: 52px;
		height: 52px;
	}

	.spp-floating-cart svg {
		width: 22px;
		height: 22px;
	}

	.spp-wrapper {
		display: block;
	}

	.spp-gallery {
		display: flex;
		flex-direction: column-reverse;
		gap: 11px;
	}

	.spp-main-image {
		width: 100%;
		aspect-ratio: 1 / 1.05;
		border-radius: 8px;
	}

	.spp-thumbs {
		width: 100%;
		flex-direction: row;
		gap: 8px;
		overflow-x: auto;
		padding-bottom: 2px;
		scrollbar-width: none;
	}

	.spp-thumbs::-webkit-scrollbar {
		display: none;
	}

	.spp-thumb {
		flex: 0 0 64px;
		width: 64px;
		height: 64px;
	}

	.spp-info {
		margin-top: 23px;
	}

	.spp-title {
		font-size: 25px !important;
		line-height: 1.2 !important;
	}

	.spp-price {
		font-size: 23px;
	}

	.spp-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 16px;
	}

	.spp-info .quantity {
		margin-right: 5px !important;
	}

	.spp-info .single_add_to_cart_button,
	.spp-info .spp-buy-now-btn {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.spp-tabs-section {
		margin-top: 40px;
	}

	.spp-tabs-nav {
		gap: 20px;
	}

	.spp-tabs-body {
		padding: 18px;
	}

	.spp-trust-badges {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 18px;
	}

	.spp-related-section {
		margin-top: 45px;
	}

	.spp-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.spp-related-content {
		padding: 9px;
	}

	.spp-related-name {
		font-size: 12px !important;
		min-height: 35px;
	}

	.spp-related-cart-btn {
		flex-basis: 34px;
		width: 34px;
		height: 34px;
	}

	.spp-related-cart-btn svg {
		width: 16px;
		height: 16px;
	}
}

/* ==========================================================
   VERY SMALL PHONES
   ========================================================== */

@media (max-width: 380px) {

	.spp-related-grid {
		grid-template-columns: 1fr;
	}

	.spp-related-card {
		display: grid;
		grid-template-columns: 110px minmax(0, 1fr);
	}

	.spp-related-img {
		aspect-ratio: 1 / 1;
	}

	.spp-related-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.spp-info .single_add_to_cart_button,
	.spp-info .spp-buy-now-btn {
		width: 100%;
		margin: 6px 0 0 !important;
	}

	.spp-info .quantity {
		margin-bottom: 5px !important;
	}
}


/* ==========================================================
   FINAL AJAX / THEME OVERRIDES
   ========================================================== */
.spp-related-cart-btn,
.spp-related-cart-btn:focus,
.spp-related-cart-btn:active {
	position: relative !important;
	z-index: 5 !important;
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	min-height: 40px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	outline: 0 !important;
	background: #181716 !important;
	color: #fff !important;
	border-radius: 50% !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: 0 5px 14px rgba(0,0,0,.16) !important;
}

.spp-related-cart-btn svg {
	display: block !important;
	visibility: visible !important;
	width: 19px !important;
	height: 19px !important;
	stroke: #fff !important;
	fill: none !important;
}

.spp-related-cart-btn.added {
	background: var(--spp-gold) !important;
}

.spp-related-cart-btn.error {
	background: #a33 !important;
}

.spp-info form.cart {
	position: relative;
}

.spp-info form.cart .single_add_to_cart_button.loading {
	pointer-events: none;
	opacity: .65;
}

.spp-info form.cart .single_add_to_cart_button.added {
	background: var(--spp-gold) !important;
	color: #fff !important;
}

.spp-ajax-message {
	display: none;
	margin: 0 0 10px;
	padding: 9px 12px;
	border-radius: 7px;
	font-size: 13px;
	line-height: 1.4;
}
.spp-ajax-message.show { display: block; }
.spp-ajax-error {
	background: #fff3f1;
	color: #8d3428;
	border: 1px solid #efc8c2;
}

/* Keep product names readable even when the theme adds aggressive heading rules. */
.spp-title,
.spp-related-name {
	font-family: inherit !important;
	text-transform: none !important;
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: clip !important;
	word-break: normal !important;
	overflow-wrap: anywhere !important;
}

/* Better sale-price presentation: regular/original price is crossed out. */
.spp-related-price del,
.spp-price del.spp-regular-price {
	text-decoration: line-through !important;
	text-decoration-thickness: 1px !important;
}

@media (max-width: 768px) {
	.spp-floating-cart {
		right: 14px;
		width: 52px;
		height: 52px;
	}
	.spp-cart-count {
		min-width: 21px;
		height: 21px;
	}
	.spp-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}
}

@media (max-width: 480px) {
	.spp-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.spp-related-content {
		padding: 10px !important;
	}
	.spp-related-name {
		font-size: 12.5px !important;
		min-height: 36px;
	}
	.spp-related-bottom {
		align-items: center;
	}
	.spp-related-cart-btn {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
		min-height: 36px !important;
	}
}