/* === LAYOUT COMPONENTS === */

/* Product Layout Grid */
.pdp-layout-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.pdp-layout-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

.pdp-column {
	display: flex;
	flex-direction: column;
}

/*
 * Storefront sets `overflow: hidden` on the product wrapper, which turns it
 * into a scroll container and stops `position: sticky` working on anything
 * inside it. `overflow: clip` crops identically without that side effect, and
 * `display: flow-root` keeps the block formatting context the original rule
 * provided. `overflow: hidden` stays as a fallback for browsers without clip.
 * Outranks Storefront's `.single-product div.product`, which loads
 * after this stylesheet.
 */
body.single-product div.product {
	display: flow-root;
	overflow: hidden;
	overflow: clip;
}

/*
 * Pin the gallery and banners while the taller options column scrolls past.
 * The column is a grid item, so it releases at the bottom of .pdp-layout-grid
 * — i.e. as the Solution / Add-ons row below comes into view. On products
 * whose options column is shorter than the media column there is no travel
 * available and it behaves exactly as before.
 */
@media (min-width: 768px) {
	.pdp-media-column {
		position: sticky;
		top: 2rem;
		align-self: start;
	}
}

.single-product div.product form.cart {
	margin-bottom: 0 !important;
	padding: 0 !important;
}

/* Solution and Addons 50/50 Split Row (for both_available state) */
.pdp-solution-addons-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
	.pdp-solution-addons-row {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: stretch;
	}
}

.pdp-solution-column,
.pdp-addons-column {
	display: flex;
	flex-direction: column;
	background: #F9FAFB;
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #F3F4F6;
}

.pdp-addons-column {
	padding: 0;
	border: none;
	background: transparent;
}


.pdp-single-solution-section {
	background: #F9FAFB;
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #F3F4F6;
	margin-bottom: 2rem;
}


.product-addons-section {

	background: #F9FAFB;
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #F3F4F6;

}



.product-solution-section h2 {
	color: var(--hs-color-gray-900);
	font-size: 1.5rem;
	font-weight: 600;
}

.solution-info,
.addon-description {
	color: var(--hs-color-gray-900);
	font-weight: 500;
	font-size: 14px;
	line-height: 150%;
}

.solution-header {
	display: flex;
	align-items: center;
	color: var(--hs-color-hs-red);
	font-size: 18px;
	margin-left: 10px;
	font-weight: 600;
}

.solution-learn-more {
	text-decoration: underline;
}

.solution-option {
	margin: 1rem 0;
	padding: 1rem;
	border-radius: 1rem;
}

.solution-radio-input {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 15px;
	height: 15px;
	border: 0.5px solid var(--hs-color-hs-red);
	border-radius: 50%;
	position: relative;
	cursor: pointer;
}

.solution-radio-input:checked::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--hs-color-hs-red);
	border-radius: 50%;
}

.solution-radio-input,
.addon-checkbox {
	accent-color: var(--hs-color-hs-red);
}

.solution-radio-label {
	display: inline-flex;
	align-items: center;
}

@media (max-width: 1023px) {
	.pdp-solution-column {
		order: 1;
	}

	.pdp-addons-column {
		order: 2;
	}
}

/* === GALLERY COMPONENTS === */

.pdp-gallery-section {
	margin-bottom: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	border-radius: 0.5rem;
	padding: 1rem;
}

.pdp-gallery-carousel {
	width: 100%;
	max-width: 32rem;
	margin: 0 auto;
}

.pdp-gallery-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 0.5rem;
}

/* === BANNER COMPONENTS === */

.pdp-banner-section {
	margin-top: 0.5rem;
	margin-bottom: 2rem;

}

.pdp-banner-image {
	width: 100%;
	height: auto;

}

.pdp-banner-stack {
	gap: 2rem;
}

/* === BRAND COMPONENTS === */

.pdp-brand-section {
	margin-bottom: 2rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.pdp-brand-logo {
	max-height: 3rem;
	width: auto;
}

/* === PRODUCT INFO COMPONENTS === */

.pdp-info-section {
	margin-bottom: 2rem;
}

.pdp-product-title {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: bold;
	color: var(--hs-color-gray-800);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.pdp-product-description {
	color: var(--hs-color-gray-500);
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

/* === VARIATIONS COMPONENTS === */

.pdp-variations-section {
	margin-bottom: 2rem;
}

/* Style the WooCommerce variations form */
.pdp-variations-section .variations_form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}



.pdp-quantity-cart-section .pdp-quantity-field {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.pdp-quantity-cart-section .pdp-quantity-label {
	display: inline-block;
	font-weight: 600;
	color: var(--hs-color-gray-700);
	font-size: 1rem;
	margin: 0;
}

.pdp-quantity-cart-section .quantity {
	display: block;
	margin: 0;
}

.pdp-quantity-cart-section .quantity label {
	display: none;
}

.pdp-quantity-cart-section .quantity {
	display: inline-flex;
	align-items: center;
	gap: 0;
	margin-left: auto;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.pdp-quantity-cart-section .qty-btn {
	height: 44px;
	width: 44px;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #111111;
	font-size: 1rem;
	line-height: 1;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.pdp-quantity-cart-section .qty-btn--minus {
	border-radius: 8px 0 0 8px;
}

.pdp-quantity-cart-section .qty-btn--plus {
	border-radius: 0 8px 8px 0;
}

.pdp-quantity-cart-section .qty-btn:hover {
	background-color: transparent;
}

.pdp-quantity-cart-section .qty-btn:focus {
	outline: none;
	box-shadow: none;
}

.pdp-quantity-cart-section .qty-btn:disabled {
	background: transparent;
	cursor: not-allowed;
	box-shadow: none;
}

.pdp-quantity-cart-section .qty-btn:disabled .qty-icon {
	stroke: #9ca3af;
}

.pdp-quantity-cart-section .qty-icon {
	display: block;
	width: 18px;
	height: 18px;
	margin: 0 auto;
	stroke: #111111;
	stroke-width: 2.25;
	stroke-linecap: round;
	fill: none;
}

.pdp-quantity-cart-section .quantity input[type="number"] {
	width: 50px;
	min-width: 2.5ch;
	height: 44px;
	padding: 0 12px;
	border: none;
	border-radius: 0;
	text-align: center;
	font-size: 1rem;
	color: var(--hs-color-gray-700);
	background-color: transparent;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	margin: 0;
}

/* Remove native number input spinners */
.pdp-quantity-cart-section .quantity input[type="number"]::-webkit-outer-spin-button,
.pdp-quantity-cart-section .quantity input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.pdp-quantity-cart-section .quantity input[type="number"] {
	-moz-appearance: textfield;
}

.single_add_to_cart_button,
.single_add_to_cart_button.button.alt {
	color: white !important;
}

.pdp-quantity-cart-section .quantity input[type="number"]:focus {
	outline: none;
	box-shadow: none;
}

.pdp-quantity-cart-section .quantity:focus-within {
	border-color: var(--hs-color-hs-red);
	box-shadow: 0 0 0 3px rgba(193, 40, 82, 0.1);
}

.pdp-quantity-cart-section .single_add_to_cart_button {
	background-color: var(--hs-color-hs-red) !important;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
	margin-left: auto;
}

.pdp-quantity-cart-section .single_add_to_cart_button:hover {
	background-color: #a11e45;
}

.pdp-quantity-cart-section .single_add_to_cart_button:disabled {
	background-color: #9ca3af;
	cursor: not-allowed;
	opacity: 0.6;
}

/* PDP uses the pricing bar button; hide the inline add-to-basket */
.single-product .pdp-quantity-cart-section .single_add_to_cart_button {
	display: none;
}


/* Quantity and Add to Cart section */
.pdp-quantity-cart-section {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #f3f4f6;
	justify-content: space-between;
	width: 100%;
}

.pdp-quantity-cart-section .pdp-explore-brand-wrap {
	margin-left: auto;
}

/* Hide the clear/reset variations button */
.pdp-variations-section .reset_variations {
	display: none !important;
}

/* Stock info styling */
.stock-info {
	font-size: 0.875rem;
	margin-top: 0.5rem;
	padding: 0.25rem 0;
}

/* Hide all stock messages globally - In Stock, Low Stock, and Out of Stock */
.stock-info,
.stock-info.in-stock,
.stock-info.low-stock,
.stock-info.out-of-stock,
.stock-info:empty {
	display: none !important;
}

/* Hide WooCommerce default stock display */
p.stock,
.stock,
.stock.in-stock,
.stock.out-of-stock {
	display: none !important;
}

.pdp-variations-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--hs-color-gray-800);
}

/* === CONTENT SECTIONS === */

.pdp-content-sections {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.pdp-section {
	margin-bottom: 2rem;
}

.pdp-section-title {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 1rem;
	color: var(--hs-color-gray-800);
}

/* === TABS COMPONENTS === */

.product-tabs .tabs-nav {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #e5e7eb;
}

.product-tabs .tab-link {
	padding: 0.75rem 1.5rem;
	border: none;
	color: var(--hs-color-gray-500);
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 500;
	font-family: inherit;
	background: transparent;
}

.product-tabs .tab-link.active {
	background: transparent;
	color: var(--hs-color-hs-red);
	border: 0;
	border-bottom: 1px solid var(--hs-color-hs-red);
}

.product-tabs .tab-link:hover:not(.active) {
	color: var(--hs-color-hs-red);
}

.product-tabs .tabs-content {
	padding: 1.5rem 0.5rem;
}

@media (min-width: 768px) {
	.product-tabs .tabs-content {
		padding: 1.5rem;
	}
}

.product-tabs .tab-panel {
	display: none;
}

.product-tabs .tab-panel.active {
	display: block;
}

/* Tab Content Show More Functionality */
.tab-content-wrapper {
	position: relative;

	table {
		width: 100%;
		border-collapse: collapse;
		display: block;

		thead {
			display: none;
		}

		tbody {
			display: block;
		}

		tr {
			display: block;
			border: 1px solid #ddd;
			border-radius: 6px;
			margin-bottom: 1rem;
			padding: 0.5rem;
		}

		td {
			display: block;
			padding: 0.5rem;
			position: relative;

			&:first-child {
				color: #000;
			}
		}

		@media (min-width: 768px) {
			& {
				display: table;
			}

			thead {
				display: table-header-group;
			}

			tbody {
				display: table-row-group;
			}

			tr {
				display: table-row;
				border: none;
				border-radius: 0;
				margin-bottom: 0;
				padding: 0;
			}

			td,
			th {
				display: table-cell;
				padding: 0.5rem;
			}
		}
	}
}

.tab-content-preview {
	overflow: hidden;
	position: relative;
	max-height: 4.5rem;
	/* Show approximately 3 lines */
	line-height: 1.5;
	mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
	-webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.tab-content-preview.expanded {
	max-height: none;
	mask-image: none;
	-webkit-mask-image: none;
}

.tab-content-full {
	display: none;
}

/* .show-more-btn {
background: none;
border: none;
color: var(--hs-color-hs-red);
cursor: pointer;
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
font-weight: 500;
padding: 0.5rem 0;
margin-top: 1rem;
transition: all 0.2s ease;
}

.show-more-btn:hover {
color: #a11e45;
} */

.show-more-icon {
	transition: transform 0.2s ease;
}

.show-more-btn.expanded .show-more-icon {
	transform: rotate(180deg);
}

/* === REWARD POINTS COMPONENTS === */

.pdp-reward-points {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background-color: #f9fafb;
	padding: 1rem;
	border-radius: 0.5rem;
	border: 1px solid #e5e7eb;
}

.pdp-reward-label {
	font-weight: 500;
	color: var(--hs-color-gray-700);
}

.pdp-reward-value {
	font-weight: 600;
	color: var(--hs-color-hs-red);
}

/* === UPGRADES COMPONENTS === */

.pdp-upgrades-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 768px) {
	.pdp-upgrades-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.pdp-upgrades-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pdp-upgrade-item {
	border: 1px solid #e5e7eb;
	padding: 1rem;
	border-radius: 0.5rem;
	background-color: white;
	transition: box-shadow 0.2s ease;
}

.pdp-upgrade-item:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pdp-upgrade-title {
	font-weight: 600;
	color: var(--hs-color-gray-800);
	margin-bottom: 0.5rem;
}

.pdp-upgrade-price {
	font-weight: 600;
	color: var(--hs-color-hs-red);
	margin-bottom: 0.5rem;
}

.pdp-upgrade-link {
	color: var(--hs-color-hs-red);
	text-decoration: none;
	font-size: 0.875rem;
}

.pdp-upgrade-link:hover {
	text-decoration: underline;
}

/* === GALLERY CAROUSEL COMPONENTS === */

/* Splide carousel base styles */
.splide {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.splide__slide img {
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
}

.splide__pagination {
	margin-bottom: 0;
	top: calc(100% + 0.5rem);
	padding-top: 0.25rem;
}

/* Gallery pagination dots styling to match design */
.splide__pagination__page {
	background-color: var(--hs-color-hs-red);
	opacity: 0.32;
	transition: opacity 0.2s ease;

}

.splide__pagination__page.is-active {
	opacity: 1;
	background-color: var(--hs-color-hs-red);
}

.splide__pagination__page:hover {
	opacity: 0.8;
}

/* === VARIATIONS FORM COMPONENTS === */

/* Variations Form Styling */
.variations_form {
	width: 100%;
}

.variations {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 1.5rem;
}

.variations tbody tr {
	display: block;
	margin-bottom: 1.5rem;
}

.variations th.label {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--hs-color-gray-700);
	font-size: 1rem;
	text-align: left;
	border: none;
}

.variations th.label label {
	display: block;
	font-weight: 600;
	color: var(--hs-color-gray-700);
	margin-bottom: 0.5rem;
	text-transform: capitalize;
}

.variations td.value {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
}

.variations select {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	background-color: white;
	font-size: 1rem;
	color: var(--hs-color-gray-700);
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 16px;
	padding-right: 48px;
	transition: border-color 0.2s ease;
}

.variations select:focus {
	outline: none;
	border-color: var(--hs-color-hs-red);
	box-shadow: 0 0 0 3px rgba(193, 40, 82, 0.1);
}

.variations select:hover {
	border-color: #d1d5db;
}

.single-product div.product table.variations select {
	max-width: 95% !important;
}

/* Stock Information - Hidden globally */
.stock-info,
.stock-info.in-stock,
.stock-info.low-stock,
.stock-info.out-of-stock {
	display: none !important;
}

/* Disabled variation options */
.variations select option:disabled {
	color: #9ca3af !important;
	background-color: #f3f4f6 !important;
}

/* === WOOCOMMERCE PRODUCT ADD-ONS STYLING === */

.woocommerce-product-addons {
	margin: 2rem 0;
}

.woocommerce-product-addons h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--hs-color-gray-800);
	margin-bottom: 1rem;
}

.woocommerce-product-addons .form-row {
	margin-bottom: 1.5rem;
	padding: 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background-color: #fff;
}

.woocommerce-product-addons .form-row label {
	display: block;
	font-weight: 500;
	color: var(--hs-color-gray-700);
	margin-bottom: 0.5rem;
}

.woocommerce-product-addons .form-row .required::after {
	content: " *";
	color: #dc2626;
}

.woocommerce-product-addons .form-row input[type="text"],
.woocommerce-product-addons .form-row input[type="number"],
.woocommerce-product-addons .form-row textarea,
.woocommerce-product-addons .form-row select {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 1rem;
	background-color: #fff;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.woocommerce-product-addons .form-row input[type="text"]:focus,
.woocommerce-product-addons .form-row input[type="number"]:focus,
.woocommerce-product-addons .form-row textarea:focus,
.woocommerce-product-addons .form-row select:focus {
	outline: none;
	border-color: var(--hs-color-hs-red);
	box-shadow: 0 0 0 3px rgba(193, 40, 82, 0.1);
}

.woocommerce-product-addons .form-row input[type="checkbox"],
.woocommerce-product-addons .form-row input[type="radio"] {
	margin-right: 0.5rem;
	accent-color: var(--hs-color-hs-red);
}


.woocommerce-product-addons .product-addon-price {
	font-weight: 600;
	color: var(--hs-color-hs-red);
	margin-left: 0.5rem;
}

/* Checkbox/Radio group styling */
.woocommerce-product-addons .form-row .addon-option-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	padding: 0.5rem;
	border-radius: 4px;
	transition: background-color 0.15s ease;
}

.woocommerce-product-addons .form-row .addon-option-wrapper:hover {
	background-color: #f9fafb;
}

.woocommerce-product-addons .form-row .addon-option-wrapper label {
	margin: 0;
	margin-left: 0.5rem;
	font-weight: normal;
	cursor: pointer;
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* === RESPONSIVE DESIGN === */

/* Grid layout for larger screens */
@media (min-width: 768px) {
	.variations tbody {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.variations tbody tr {
		margin-bottom: 0;
	}

	.pdp-tabs-nav {
		flex-direction: row;
	}
}

/* === FAQ COMPONENTS === */

.product-faqs {
	width: -webkit-fill-available;
	padding: 7rem 0;
	max-width: 700px;
	margin: 0 auto;
}

.product-faqs__title {
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.product-faqs__container {
	display: flex;
	flex-direction: column;
}

.product-faq__item {
	border-bottom: 1px solid var(--hs-color-gray-100);
}

.product-faq__toggle {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1.25rem 0;
	cursor: pointer;
}

.product-faq__question-icon {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
}

.product-faq__question {
	font-size: 0.875rem;
	margin: 0 0 0 0.5rem;
	flex: 1;
}

.product-faq__expand-arrow {
	width: 13px;
	height: 13px;
	margin-left: auto;
	transition: transform 0.2s ease;
}

.product-faq__item.active .product-faq__expand-arrow {
	transform: rotate(180deg);
}

.product-faq__answer {
	display: none;
	padding: 1.25rem 0;
	border-top: 1px solid var(--hs-color-gray-100);
}

.product-faq__item.active .product-faq__answer {
	display: block;
}

.product-faq__answer-text {
	font-size: 1rem;
	margin: 0;
}

/* === PRODUCT UPGRADES COMPONENTS === */

.product-upgrades {
	margin: 3rem 0;
}

.product-upgrades-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--hs-color-gray-900);
	margin-bottom: 4rem;
	text-align: center;
}

.product-upgrades-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.product-upgrades-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.product-upgrades-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.product-upgrade-card {
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	background-color: white;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-upgrade-card:hover {
	box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	transform: translateY(-1px);
}

.product-upgrade-image {
	position: relative;
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 20px;
}

.product-upgrade-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease;
}

.product-upgrade-image:hover img {
	transform: scale(1.05);
}

.product-upgrade-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #f3f4f6;
	color: #9ca3af;
}

.product-upgrade-content {
	padding: 20px;
}

.product-upgrade-title {
	margin: 0 0 0.75rem 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
}

.product-upgrade-title a {
	color: var(--hs-color-gray-900);
	text-decoration: none;
	transition: color 0.2s ease;
}

.product-upgrade-title a:hover {
	color: var(--hs-color-hs-red);
}

.product-upgrade-description {
	color: var(--hs-color-gray-500);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 1rem;
}

.product-upgrade-price {
	margin-bottom: 1.5rem;
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: var(--hs-color-gray-900);
}

.product-upgrade-actions {
	margin-top: auto;
}

.product-upgrade-add-to-cart {
	width: 100%;
	background-color: var(--hs-color-hs-red);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 400;
	font-size: 0.875rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
	text-align: center;
	text-decoration: none;
	display: block;
}

.product-upgrade-add-to-cart:hover {
	background-color: #a11e45;
	color: white;
	text-decoration: none;
}

.product-upgrade-unavailable {
	width: 100%;
	background-color: #9ca3af;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	text-align: center;
	display: block;
}

.product-upgrade-actions .cart {
	margin: 0;
}

/* === PRODUCT PRICING BAR === */

/* Pricing Bar Section */
.product-pricing-bar {
	background-color: #2a2a2a;
	padding: 10px 32px;
	margin-top: 16px;
	position: relative;
	border-radius: 8px;
}

.product-pricing-bar.is-sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	margin-top: 0;
	z-index: 1000;
	border-radius: 0;
	box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
}

/* Drop pricing bar below mobile menu when it's open */
.hs-menu-open .product-pricing-bar.is-sticky {
	z-index: 0;
}

.pricing-bar-placeholder {
	display: none;
}

.pricing-bar-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.pricing-breakdown {
	display: flex;
	flex-direction: column;
	gap: 0;
	color: white;
	min-width: 150px;
	padding-right: 24px;
	border-right: 2px solid rgba(255,255,255,0.6);
}

.pricing-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.pricing-item-label {
	font-size: 16px;
	font-weight: 400;
	color: white;
}

.pricing-item-value {
	font-size: 18px;
	font-weight: 700;
	color: white;
}

.pricing-total {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pricing-total-label {
	font-size: 18px;
	font-weight: 400;
	color: white;
}

.pricing-total-value {
	font-size: 26px;
	font-weight: 700;
	color: white;
}

.pricing-total-vat {
	font-size: 18px;
	color: white;
	font-weight: 400;
}

.pricing-add-to-basket {
	background-color: var(--hs-color-hs-red);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	white-space: nowrap;
}

.pricing-rewards {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	color: white;
	font-weight: 400;
	font-size: 18px;
	white-space: nowrap;
}

/* Trustpilot Section */
.trustpilot-section {
	padding: 16px 0;
	position: relative;
}

.trustpilot-widget {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

@media (max-width: 768px) {
	.pricing-bar-content {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.pricing-breakdown {
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px;
	}

	.pricing-add-to-basket {
		width: auto;
		min-width: 200px;
	}

	.pricing-rewards {
		justify-content: center;
	}
}

.pricing-add-to-basket:hover:not(:disabled) {
	background-color: #a11e45;
}

.pricing-add-to-basket:disabled {
	background-color: var(--hs-color-gray-500);
	cursor: not-allowed;
}


.rewards-points {
	font-weight: 700;
	font-size: 20px;
}

.star-stack {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1px;
	width: fit-content;
	margin-right: 5px;
}

.star svg {
	fill: white;
	display: block;
}

.star.small {
	transform: translateX(0px);
	/* farthest left */
}

.star.medium {
	transform: translateX(3px);
	/* middle */
}

.star.large {
	transform: translateX(6px);
	/* farthest right */
}

.star.small svg {
	width: 5px;
	height: 5px;
}

.star.medium svg {
	width: 7px;
	height: 7px;
}

.star.large svg {
	width: 9px;
	height: 9px;
}

/* Trustpilot Section */
.trustpilot-section {
	padding: 1rem 0;
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.trustpilot-widget {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
}

.product-addons-section h2 {
	font-size: 1.5rem;
	/* Reduced from 1.75rem (28px) to 1.5rem (24px) to match the visual size of the Solution header. */
	margin-bottom: 1.5rem;
	font-weight: 600;
	color: var(--hs-color-gray-900);
}

.addons-container {
	display: grid;
	gap: 1rem;
}

.addon-header {
	display: inline-flex;
	align-items: center;
}

.addon-item {
	display: flex;
	align-items: center;
	padding: 1.25rem;
	border-radius: 8px;
	background: var(--hs-color-hs-pale-red);
	transition: all 0.2s;
	position: relative;
	cursor: pointer;
}

.addon-item:hover {
	border-color: #d1d5db;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.addon-checkbox {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 15px;
	height: 15px;
	min-width: 15px;
	min-height: 15px;
	flex: 0 0 15px;
	flex-shrink: 0;
	border: 0.5px solid var(--hs-color-hs-red);
	border-radius: 2px;
	position: relative;
	cursor: pointer;
	margin-right: 10px;
}

.addon-checkbox:checked::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--hs-color-hs-red);
}

.addon-image {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-right: 1.25rem;
	border-radius: 4px;
}

.addon-placeholder-image {
	width: 80px;
	height: 80px;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1.25rem;
	border-radius: 4px;
	font-size: 0.75rem;
	color: #9ca3af;
}

.addon-content {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.addon-info {
	flex: 1;
}

.addon-header {
	margin-bottom: 0.5rem;
}

.addon-name {
	color: var(--hs-color-gray-700);
	font-size: 18px;
	font-weight: 600;
}

/* "Read More" link sits on its own line below the description; icon then label. */
.addon-learn-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 6px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	color: var(--hs-color-hs-red);
	text-decoration: none;
	cursor: pointer;
}

.addon-learn-more:hover,
.addon-learn-more:focus-visible {
	text-decoration: underline;
}

.addon-learn-more-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.addon-learn-more-text {
	line-height: 1;
}

.solution-info-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 4px;
}

.info-checkmark {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	flex-shrink: 0;
}

.info-text {
	font-size: 14px;
	line-height: 1.5;
	color: var(--hs-color-gray-900);
}


.addon-co2e-info,
.addon-media {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

.addon-co2e-icon,
.addon-custom-icon {
	width: 65px;
	height: 65px;
	object-fit: contain;
	margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
	.addon-co2e-icon,
	.addon-custom-icon {
		width: 40px;
		height: 40px;
	}
}

.addon-co2e-label {
	font-size: 14px;
	color: var(--hs-color-gray-900);
	margin-bottom: 0.25rem;
	text-align: center;
	font-weight: 500;
}

.addon-co2e-value {
	font-size: 14px;
	font-weight: 500;
	color: var(--hs-color-hs-red);
	text-align: center;
}

.addons-loading {
	text-align: center;
	padding: 2rem;
	color: var(--hs-color-gray-500);
}

.addons-error {
	text-align: center;
	padding: 2rem;
	color: #dc2626;
}

.no-addons {
	text-align: center;
	padding: 2rem;
	color: var(--hs-color-gray-500);
}

.addon-visual {
	margin-left: 2rem;
	padding-left: 2rem;
}

@media (max-width: 768px) {
	.addon-item {
		flex-wrap: wrap;
	}

	.addon-content {
		flex-direction: row;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.addon-co2e-info,
	.addon-media {
		margin-left: auto;
		margin-top: 0;
		padding-left: 0;
		border-left: none;
		border-top: none;
		padding-top: 0;
		align-items: flex-end;
		width: auto;
		min-width: 40px;
	}


}

/* Responsive Design */
@media (max-width: 768px) {
	.pricing-bar-content {
		flex-direction: column;
		text-align: center;
		gap: 1.25rem;
	}

	.pricing-breakdown {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem 0.75rem;
		font-size: 15px;
	}

	.price-value {
		font-size: 1.25rem;
	}

	.total-price .price-value {
		font-size: 1.35rem;
	}

	.price-separator {
		margin: 0 0.35rem;
	}

	.pricing-add-to-basket {
		width: 100%;
	}

	.pricing-rewards {
		justify-content: center;
	}
}

a:focus,
button:focus,
.button.alt:focus,
input:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
	outline-color: var(--hs-color-hs-red) !important;
}

/* --- FIX for Add-ons Alignment on Mobile/Single-Column View --- */
@media (max-width: 1023px) {
	.product-addons-section {
		margin-top: 2rem;
	}
}

/* === EXPLORE BRAND LINK === */

.pdp-explore-brand-link {
	display: inline-block;
	margin-top: 0;
	padding: 0.5rem 1rem;
	border: 1.5px solid var(--hs-color-hs-red);
	border-radius: 6px;
	color: var(--hs-color-hs-red);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.pdp-explore-brand-link:hover {
	background-color: var(--hs-color-hs-red);
	color: white;
	text-decoration: none;
}

/* === ADDON TOGGLE SWITCH === */

.addon-price-toggle {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	margin-left: 1rem;
	flex-shrink: 0;
}

.addon-price-label {
	font-size: 16px;
	font-weight: 400;
	color: var(--hs-color-gray-500);
	white-space: nowrap;
}

.addon-toggle {
	position: relative;
	display: inline-block;
	width: 56px;
	height: 28px;
	cursor: pointer;
}

.addon-toggle input[type="checkbox"] {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.addon-toggle-slider {
	position: absolute;
	inset: 0;
	background-color: #d1d5db;
	border-radius: 24px;
	transition: background-color 0.2s ease;
}

.addon-toggle-slider::before {
	content: '';
	position: absolute;
	width: 28px;
	height: 22px;
	left: 3px;
	top: 3px;
	background-color: white;
	border-radius: 11px;
	transition: transform 0.2s ease;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.addon-toggle input:checked + .addon-toggle-slider {
	background-color: var(--hs-color-hs-red);
}

.addon-toggle input:checked + .addon-toggle-slider::before {
	transform: translateX(22px);
}

.addon-toggle input:focus + .addon-toggle-slider {
	box-shadow: 0 0 0 3px rgba(193, 40, 82, 0.15);
}

/* Addon item layout with toggle on right */
.addon-item .addon-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
}

.addon-item .addon-info {
	flex: 1;
}

/* Addon section flex distribution */
.product-addons-section {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-addons-section .addons-banner {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: space-between;
	gap: 0.75rem;
}

/* Pricing bar responsive overrides for new structure */
@media (max-width: 768px) {
	.product-pricing-bar {
		padding: 10px 16px;
	}

	.pricing-bar-content {
		flex-wrap: wrap;
		gap: 12px;
		justify-content: center;
	}

	.pricing-breakdown {
		min-width: auto;
		width: 100%;
		padding-right: 0;
		border-right: none;
	}

	.pricing-total-value {
		font-size: 20px;
	}

	.pricing-add-to-basket {
		width: 100%;
	}
}

@media (min-width: 769px) {
	.product-pricing-bar {
		padding-left: 64px;
		padding-right: 64px;
	}

	.pricing-add-to-basket {
		padding-left: 40px;
		padding-right: 40px;
	}

	.pdp-info-section {
		padding-top: 2rem;
	}
}
