/* =========================================================================
 * Bundle PDP — scoped styles (loaded only on products in "Bundles" category)
 *
 * Tokens & sizes match the Figma "STZY Enhanced PDP" design.
 * Fonts: Inter (display + price), Open Sans (body), Montserrat (UI accents).
 * Black accent: #000  •  Red accent: #E02B20  •  Stars: #FFA90A
 * Sections alternate WHITE buybox/reviews and BLACK accordion/highlight/trust.
 * Mobile-first. Breakpoints: 768, 1024, 1280.
 * ========================================================================= */

:root {
	--bundle-accent:        #E02B20;
	--bundle-accent-hover:  #b21f17;
	--bundle-ink:           #000000;
	--bundle-ink-soft:      #333333;
	--bundle-muted:         #696969;
	--bundle-placeholder:   #949494;
	--bundle-bg:            #ffffff;
	--bundle-bg-dark:       #000000;
	--bundle-bg-chip:       #EEEEEE;
	--bundle-border-soft:   rgba(255, 255, 255, 0.4);
	--bundle-star:          #FFA90A;
	--bundle-card-shadow:   0 12px 44px rgba(0, 0, 0, 0.20);

	--bundle-font-display:  'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--bundle-font-body:     'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--bundle-font-ui:       'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

	--bundle-space-1: 0.25rem; /* 4 */
	--bundle-space-2: 0.5rem;  /* 8 */
	--bundle-space-3: 0.75rem; /* 12 */
	--bundle-space-4: 1rem;    /* 16 */
	--bundle-space-5: 1.25rem; /* 20 */
	--bundle-space-6: 1.5rem;  /* 24 */
	--bundle-space-7: 2rem;    /* 32 */
	--bundle-space-8: 2.5rem;  /* 40 */
	--bundle-space-9: 3rem;    /* 48 */
	--bundle-space-10: 4rem;   /* 64 */
}

/* ----- Reset within scope ----- */
.bundle-pdp,
.bundle-pdp *,
.bundle-pdp *::before,
.bundle-pdp *::after {
	box-sizing: border-box;
}

.bundle-pdp {
	color: var(--bundle-ink);
	font-family: var(--bundle-font-body);
	line-height: 1.4;
	background: var(--bundle-bg-dark);
}

.bundle-pdp img {
	max-width: 100%;
	height: auto;
	display: block;
}

.bundle-pdp__container {
	width: 100%;
	max-width: none;
	margin-inline: auto;
}

@media (max-width: 1023px) {
  .mobile-padding {
		padding-inline: var(--bundle-space-5);
	}
}

/* =========================================================================
 * 0. HERO BANNER (full-bleed bg + 3 overlapping photos + title)
 * ========================================================================= */
.bundle-pdp__hero {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0 auto;
	aspect-ratio: 16 / 6.6;
	overflow: hidden;
	background-color: var(--bundle-bg-dark);
	color: #fff;
	min-height: 300px;
}

/* Grayscale background image via pseudo-element */
.bundle-pdp__hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--hero-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: grayscale(100%);
	z-index: 0;
}

/* Gradient overlay via pseudo-element */
.bundle-pdp__hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
	z-index: 1;
}

/* --- Floating photos --- */
.bundle-pdp__hero-photo {
	position: absolute;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bundle-pdp__hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bundle-pdp__hero-photo--center {
	width: 30%;
	aspect-ratio: 4 / 3;
	top: 5%;
	right: 5%;
	z-index: 2;
}

.bundle-pdp__hero-photo--right {
	width: 26%;
	bottom: 7%;
	left: 37%;
	z-index: 2;
}

.bundle-pdp__hero-photo--bottom-right {
	right: 3%;
	bottom: -5%;
	width: 22%;
	aspect-ratio: 3 / 4;
	z-index: 1;
	border-radius: 0;
}

/* --- Title with red accent bar on top --- */
.bundle-pdp__hero-title-wrap {
	position: absolute;
	bottom: 8%;
	left: 4%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.bundle-pdp__hero-accent {
	width: 40px;
	height: 8px;
	background: var(--bundle-accent);
	flex-shrink: 0;
}

.bundle-pdp__hero-title {
	font-family: var(--bundle-font-display);
	font-size: clamp(2.5rem, 3.5vw, 3.5rem);
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0;
	max-width: 220px;
}

/* --- Hero promo banner --- */
.bundle-pdp__hero-promo {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 4;
	background: var(--bundle-accent);
	color: #fff;
	font-family: var(--bundle-font-display);
	font-weight: 700;
	font-size: clamp(0.875rem, 1.2vw, 1.125rem);
	text-align: center;
	letter-spacing: 0.03em;
	padding: 10px var(--bundle-space-4);
	line-height: 1.4;
}

/* --- Mobile adjustments --- */
@media (max-width: 767px) {
	.bundle-pdp__hero-photo--center,
	.bundle-pdp__hero-photo--right,
	.bundle-pdp__hero-photo--bottom-right {
		display: none;
	}

	.bundle-pdp__hero-title-wrap {
		top: 25%;
		left: 5%;
		bottom: auto;
	}
}

/* =========================================================================
 * 1. BUY BOX (white background, image-flush left, summary right)
 * ========================================================================= */
.bundle-pdp__buybox {
	background: #000
}

.bundle-pdp__buybox-grid {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
	.bundle-pdp__buybox-grid {
		grid-template-columns: minmax(0, 50fr) minmax(0, 50fr);
		align-items: stretch;
	}
}

.bundle-pdp__gallery {
	background: #000;
}

/* Disable WooCommerce zoom/magnify */
.bundle-pdp__gallery .woocommerce-product-gallery {
	overflow: hidden;
}
.bundle-pdp__gallery .woocommerce-product-gallery__trigger {
	display: none !important;
}
.bundle-pdp__gallery .zoomImg,
.bundle-pdp__gallery .woocommerce-product-gallery .zoomImg {
	display: none !important;
}
.bundle-pdp__gallery .woocommerce-product-gallery__image a {
	pointer-events: none;
	cursor: default;
}

.bundle-pdp__gallery .woocommerce-product-gallery,
.bundle-pdp__gallery .woocommerce-product-gallery__wrapper,
.bundle-pdp__gallery .woocommerce-product-gallery__image,
.bundle-pdp__gallery .woocommerce-product-gallery__image a,
.bundle-pdp__gallery .woocommerce-product-gallery__image img {
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 0;
}

.bundle-pdp__gallery .woocommerce-product-gallery__image img {
	object-fit: cover;
	max-height: 640px;
}

@media (min-width: 1024px) {
	.bundle-pdp__gallery .woocommerce-product-gallery__image img {
		min-height: 600px;
	}
}

/* Summary column ---------------------------------------------------------- */
.bundle-pdp__summary {
	padding: var(--bundle-space-7) var(--bundle-space-5);
	display: flex;
	flex-direction: column;
	gap: var(--bundle-space-1);
  background: var(--bundle-bg);;
}

@media (min-width: 1024px) {
	.bundle-pdp__summary {
		padding: var(--bundle-space-2) var(--bundle-space-7);
		justify-content: center;
	}
}

.bundle-pdp__title {
	margin: 0;
	font-family: var(--bundle-font-display);
	font-weight: 700;
	font-size: clamp(1.5rem, 2.4vw + 0.6rem, 2rem); /* up to 32px */
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--bundle-ink);
	display: inline;
}

.bundle-pdp__title-main {
	color: var(--bundle-ink);
}

.bundle-pdp__title-accent {
	color: var(--bundle-accent);
	margin-left: 0.4em;
}

.bundle-pdp__intro {
	font-family: var(--bundle-font-body);
	font-weight: 400;
	font-size: 1rem; /* 16 */
	line-height: 1.4;
	color: var(--bundle-ink);
}
.bundle-pdp__intro p { margin: 0; }

/* Easy Product Bundles — hidden (synced via custom UI + JS) -------------- */

/* Hide plugin alerts, hrs, quantity, resets */
.bundle-pdp__form .asnp-alert,
.asnp-alert {
	display: none !important;
}

.bundle-pdp__form hr {
	display: none !important;
}

.bundle-pdp__form .cart .quantity {
	display: none !important;
}

.bundle-pdp__form .cart {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
}

.bundle-pdp__form .reset_variations {
	display: none !important;
}

/* Add to Cart button ----------------------------------------------------- */
.bundle-pdp__form .single_add_to_cart_button,
.bundle-pdp__form button.button.alt {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	background: var(--bundle-bg-dark);
	color: #fff;
	border: 0;
	border-radius: 0;
	padding: 0 var(--bundle-space-8);
	font-family: var(--bundle-font-body);
	font-size: 1.5rem; /* 24 */
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s ease;
	pointer-events: auto !important;
	opacity: 1 !important;
}

.bundle-pdp__form .single_add_to_cart_button:hover {
	background: #1a1a1a;
}

.bundle-pdp__form .single_add_to_cart_button:active {
	background: #2a2a2a;
}

/* Override plugin disabled state (asnp-addToCart-disable) */
.bundle-pdp__form .single_add_to_cart_button.asnp-addToCart-disable,
.bundle-pdp__form .single_add_to_cart_button[disabled],
.bundle-pdp__form .single_add_to_cart_button.disabled,
.bundle-pdp__form button.button.alt[disabled],
.bundle-pdp__form button.button.alt.disabled {
	pointer-events: auto !important;
	opacity: 1 !important;
	cursor: pointer !important;
	background: var(--bundle-bg-dark) !important;
	color: #fff !important;
}

/* Price row -------------------------------------------------------------- */
.bundle-pdp__price,
.bundle-pdp__form .price,
.bundle-pdp__form .asnp-productPrice,
.bundle-pdp__summary .price {
	font-family: var(--bundle-font-display);
	font-weight: 700;
	font-size: 2rem; /* 32 */
	line-height: 1.2;
	color: var(--bundle-ink-soft);
	margin: var(--bundle-space-4) 0 var(--bundle-space-4);
	display: flex !important;
	align-items: baseline;
	gap: var(--bundle-space-2);
}

.bundle-pdp__price del,
.bundle-pdp__price del .amount,
.bundle-pdp__form .price del,
.bundle-pdp__form .price del .amount,
.bundle-pdp__summary .price del,
.bundle-pdp__summary .price del .amount {
	font-family: var(--bundle-font-display);
	font-weight: 400;
	font-size: 1.5rem; /* 24 */
	color: var(--bundle-ink-soft);
	text-decoration: line-through;
	opacity: 1;
	order: 2;
}

.bundle-pdp__price ins,
.bundle-pdp__price ins .amount,
.bundle-pdp__form .price ins,
.bundle-pdp__form .price ins .amount,
.bundle-pdp__summary .price ins,
.bundle-pdp__summary .price ins .amount {
	background: transparent;
	color: var(--bundle-ink-soft);
	font-weight: 700;
	text-decoration: none;
	order: 1;
}

/* =========================================================================
 * 1b. BUNDLE SELECTOR — custom product picker UI
 * ========================================================================= */

/* Hide plugin's default React UI */
.bundle-pdp__form #asnp_easy_product_bundle {
	position: absolute !important;
	overflow: hidden !important;
	width: 1px !important;
	height: 1px !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Bundle group wrapper */
.bundle-pdp__bundle-group {
	display: flex;
	flex-direction: column;
	gap: var(--bundle-space-2);
	padding: var(--bundle-space-3) 0;
	border-top: 1px solid #eee;
}

.bundle-pdp__bundle-group:first-of-type {
	border-top: none;
}

.bundle-pdp__bundle-label {
	font-family: var(--bundle-font-body);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--bundle-ink);
	display: flex;
	align-items: center;
	gap: var(--bundle-space-1);
}

/* Free badge */
.bundle-pdp__free-badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	background: var(--bundle-accent);
	color: #fff;
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 2px;
	line-height: 1.4;
}

/* --- Slide swatches --- */
.bundle-pdp__swatches {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bundle-space-1);
}

.bundle-pdp__swatch {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	padding: 1px;
	cursor: pointer;
	outline: none;
}

.bundle-pdp__swatch img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	border: 2px solid transparent;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.bundle-pdp__swatch-name {
	font-size: 0.625rem;
	color: var(--bundle-muted);
	text-align: center;
	white-space: nowrap;
	max-width: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bundle-pdp__swatch:hover img {
	border-color: var(--bundle-muted);
}

.bundle-pdp__swatch--active img {
	border-color: var(--bundle-ink);
	box-shadow: 0 0 0 1px var(--bundle-ink);
}

/* --- Sock toggle buttons --- */
.bundle-pdp__socks-row {
	display: flex;
	align-items: center;
	gap: var(--bundle-space-3);
	justify-content: space-between;
}

.bundle-pdp__color-toggles {
	display: flex;
	gap: var(--bundle-space-2);
}

@media (min-width: 1024px) {
	.bundle-pdp__color-toggles {
		flex: 0 0 68%;
	}
	.bundle-pdp__color-toggle {
		width: 50%;
	}
}

.bundle-pdp__color-toggle {
	appearance: none;
	background: var(--bundle-bg);
	border: 1px solid #ccc;
	border-radius: 2px;
	padding: 6px 20px;
	font-family: var(--bundle-font-body);
	font-size: 0.8125rem;
	font-weight: 400;
	color: var(--bundle-ink);
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
	line-height: 1.4;
}

.bundle-pdp__color-toggle:hover {
	border-color: var(--bundle-ink);
}

.bundle-pdp__color-toggle--active {
	background: var(--bundle-ink);
	border-color: var(--bundle-ink);
	color: #fff;
}

/* --- Size select dropdown --- */
.bundle-pdp__size-select {
	appearance: none;
	-webkit-appearance: none;
	background: var(--bundle-bg);
	border: 1px solid #ccc;
	border-radius: 2px;
	padding: 0 32px 0 12px;
	height: 34px;
	font-family: var(--bundle-font-body);
	font-size: 0.8125rem;
	font-weight: 400;
	color: var(--bundle-ink);
	line-height: 34px;
	cursor: pointer;
	min-width: 140px;
	flex: 1;
	max-width: 200px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23696969' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 12px center;
	transition: border-color 0.15s, opacity 0.15s;
}

.bundle-pdp__size-select:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	color: var(--bundle-placeholder);
}

.bundle-pdp__size-select:focus {
	outline: 2px solid var(--bundle-accent);
	outline-offset: -2px;
	border-color: var(--bundle-accent);
}

/* Slides group — swatches and size dropdown on same row */
.bundle-pdp__bundle-group[data-bundle-index="0"] {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	gap: var(--bundle-space-2);
	align-items: center;
}

.bundle-pdp__bundle-group[data-bundle-index="0"] .bundle-pdp__bundle-label {
	grid-column: 1 / -1;
}

.bundle-pdp__bundle-group[data-bundle-index="0"] .bundle-pdp__swatches {
	grid-column: 1;
	grid-row: 2;
}

.bundle-pdp__bundle-group[data-bundle-index="0"] .bundle-pdp__size-select {
	grid-column: 2;
	grid-row: 2;
	width: auto;
	min-width: 160px;
	max-width: 200px;
	align-self: start;
	margin-top: 4px;
}

/* Mobile: ensure swatches fit in one row */
@media (max-width: 767px) {
	.bundle-pdp__title {
		display: flex;
		flex-wrap: wrap;
	}

	.bundle-pdp__title-accent {
		display: block;
		width: 100%;
		margin-left: 0;
	}

	.bundle-pdp__bundle-group[data-bundle-index="0"] {
		grid-template-columns: 1fr;
	}

	.bundle-pdp__bundle-group[data-bundle-index="0"] .bundle-pdp__swatches {
		grid-column: 1;
	}

	.bundle-pdp__bundle-group[data-bundle-index="0"] .bundle-pdp__size-select {
		grid-column: 1;
		grid-row: 3;
		width: 100%;
		max-width: 100%;
	}

	.bundle-pdp__swatches {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: var(--bundle-space-1);
	}

	.bundle-pdp__swatch img {
		width: 32px;
		height: 32px;
	}

	.bundle-pdp__socks-row {
		flex-wrap: wrap;
	}

	.bundle-pdp__size-select {
		max-width: none;
		flex: 1;
		min-width: 120px;
	}

	/* Mobile: gallery overlays hero */
	.bundle-pdp__gallery {
		margin-top: -100px;
		position: relative;
		z-index: 4;
		width: 60%;
		right: -20%;
	}

	.bundle-pdp__summary {
		margin-top: -170px;
    padding-top: 180px;
	}

	/* Mobile: price above Add to Cart, centered */
	.bundle-pdp__form {
		display: flex;
		flex-direction: column;
	}

	.bundle-pdp__price,
	.bundle-pdp__form .price,
	.bundle-pdp__form .asnp-productPrice,
	.bundle-pdp__summary .price {
		order: 99;
		justify-content: center;
		text-align: center;
		margin: var(--bundle-space-4) 0 var(--bundle-space-2);
	}

	.bundle-pdp__form .cart {
		order: 100;
	}
}

/* =========================================================================
 * 2. ACCORDION (BLACK background, white text, white-translucent dividers)
 * ========================================================================= */
.bundle-pdp__accordion {
	background: var(--bundle-bg-dark);
	color: #fff;
	padding-block: var(--bundle-space-9);
}

.bundle-pdp__accordion .bundle-pdp__container.mobile-padding {
	padding-inline: var(--bundle-space-7);
}

.bundle-pdp__row {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--bundle-border-soft);
	border-radius: 0;
	margin: 0;
	overflow: hidden;
	padding-block: var(--bundle-space-3);
}

.bundle-pdp__row[open] {
	padding-bottom: var(--bundle-space-3);
}

.bundle-pdp__row-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bundle-space-4);
	cursor: pointer;
	list-style: none;
	font-family: var(--bundle-font-display);
	font-weight: 700;
	font-size: 1.5rem; /* 24 */
	line-height: 1.4;
	text-transform: uppercase;
	color: #fff;
	padding-block: var(--bundle-space-3);
}

.bundle-pdp__row-summary::-webkit-details-marker { display: none; }

.bundle-pdp__row-title { flex: 1; }

.bundle-pdp__row-chevron {
	width: 14px;
	height: 14px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	flex-shrink: 0;
	margin-right: 4px;
}

.bundle-pdp__row[open] .bundle-pdp__row-chevron {
	transform: rotate(-135deg);
}

.bundle-pdp__row-body {
	padding-top: 0;
	color: rgba(255, 255, 255, 0.92);
	font-family: var(--bundle-font-body);
	font-size: 1rem;
	line-height: 1.4;
}

.bundle-pdp__row-body :first-child { margin-top: 0; }
.bundle-pdp__row-body :last-child  { margin-bottom: 0; }

/* Rich-text elements inside accordion body */
.bundle-pdp__row-body p {
	margin: 0 0 var(--bundle-space-3);
}

.bundle-pdp__row-body ul,
.bundle-pdp__row-body ol {
	margin: 0 0 var(--bundle-space-3);
	padding-left: 1.5em;
}

.bundle-pdp__row-body ul {
	list-style: disc;
}

.bundle-pdp__row-body ol {
	list-style: decimal;
}

.bundle-pdp__row-body li {
	margin: 0 0 var(--bundle-space-1);
	color: rgba(255, 255, 255, 0.92);
}

.bundle-pdp__row-body li::marker {
	color: rgba(255, 255, 255, 0.92);
}

.bundle-pdp__row-body strong,
.bundle-pdp__row-body b {
	font-weight: 700;
	color: #fff;
}

.bundle-pdp__row-body em,
.bundle-pdp__row-body i {
	font-style: italic;
}

.bundle-pdp__row-body a {
	color: var(--bundle-accent);
	text-decoration: underline;
}

.bundle-pdp__row-body a:hover {
	color: var(--bundle-accent-hover);
}

.bundle-pdp__row-body hr {
	border: 0;
	border-top: 1px solid var(--bundle-border-soft);
	margin: var(--bundle-space-4) 0;
}

.bundle-pdp__row-body h1,
.bundle-pdp__row-body h2,
.bundle-pdp__row-body h3,
.bundle-pdp__row-body h4,
.bundle-pdp__row-body h5,
.bundle-pdp__row-body h6 {
	font-family: var(--bundle-font-display);
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	margin: var(--bundle-space-4) 0 var(--bundle-space-2);
	line-height: 1.4;
}

/* =========================================================================
 * 3a. HIGHLIGHT 1 (BLACK background, white text)
 *     Title + 4 icon callouts at corners around a centered background image.
 *     Desktop: image as CSS background; Mobile: image inline.
 * ========================================================================= */
.bundle-pdp__hl1 {
	background: var(--bundle-bg-dark);
	color: #fff;
	padding-block: var(--bundle-space-10);
}

.bundle-pdp__hl1-title {
	font-family: var(--bundle-font-display);
	font-weight: 700;
	font-size: clamp(1.75rem, 3vw + 0.5rem, 3rem);
	line-height: 1.4;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 var(--bundle-space-9);
	letter-spacing: 0.01em;
}

.bundle-pdp__hl1-figure {
	margin: 0;
}

/* Mobile: single column, figure at bottom naturally */
.bundle-pdp__hl1-grid {
	display: flex;
	flex-direction: column;
	gap: var(--bundle-space-7);
}

/* Callout rows: on mobile stack callouts vertically */
.bundle-pdp__hl1-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--bundle-space-7);
}

@media (min-width: 1024px) {
	.bundle-pdp__hl1-grid {
		min-height: 500px;
		background: var(--hl1-bg) center / cover no-repeat;
		justify-content: space-around;
		gap: var(--bundle-space-9);
    padding: 0 40px;
		aspect-ratio: 2;
	}
	/* Desktop: each row is horizontal */
	.bundle-pdp__hl1-row {
		flex-direction: row;
		align-items: flex-start;
	}
	.bundle-pdp__hl1-row--top {
		justify-content: space-around;
	}
	.bundle-pdp__hl1-row--bottom {
		justify-content: space-between;
	}
	/* Hide mobile image on desktop */
	.bundle-pdp__hl1-figure {
		display: none;
	}
}

.bundle-pdp__hl1-callout {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--bundle-space-2);
	padding: 0;
	max-width: 240px;
}

.bundle-pdp__hl1-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.bundle-pdp__hl1-callout-title {
	font-family: var(--bundle-font-body);
	font-weight: 700;
	font-size: 1.25rem; /* 20 */
	line-height: 1.4;
	color: #fff;
	margin: 0;
}

.bundle-pdp__hl1-callout-body {
	font-family: var(--bundle-font-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.4;
	color: #fff;
	margin: 0;
}

/* =========================================================================
 * 3b. HIGHLIGHT 2 (BLACK background, white text)
 *     Image on the right, 6 callouts in a 2×3 grid on the left.
 *     Each callout has a red accent bar above the title.
 * ========================================================================= */
.bundle-pdp__hl2 {
	background: var(--bundle-bg-dark);
	color: #fff;
	padding-block: var(--bundle-space-10);
}

/* Collapse top padding when HL2 follows HL1 */
.bundle-pdp__hl1 + .bundle-pdp__hl2 {
	padding-top: 0;
}

.bundle-pdp__hl2-figure {
	margin: 0;
}

/* Mobile: hide desktop figure, show mobile figure */
.bundle-pdp__hl2-grid .bundle-pdp__hl2-figure--desktop {
	display: none;
}

.bundle-pdp__hl2-grid .bundle-pdp__hl2-figure--mobile {
	display: block;
}

.bundle-pdp__hl2-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bundle-space-7);
	align-items: center;
}

@media (min-width: 1024px) {
	/* Desktop: show desktop figure, hide mobile figure */
	.bundle-pdp__hl2-grid .bundle-pdp__hl2-figure--desktop {
		display: block;
	}
	.bundle-pdp__hl2-grid .bundle-pdp__hl2-figure--mobile {
		display: none;
	}
	.bundle-pdp__hl2-grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
		gap: var(--bundle-space-10);
	}
}

.bundle-pdp__hl2-callouts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bundle-space-7);
}

@media (min-width: 640px) {
	.bundle-pdp__hl2-callouts {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 43px;
		row-gap: 51px;
	}
}

.bundle-pdp__hl2-callout {
	display: flex;
	flex-direction: column;
	gap: var(--bundle-space-2);
	padding: 0;
}

/* Red accent bar above each HL2 callout */
.bundle-pdp__hl2-callout::before {
	content: "";
	display: block;
	width: 43px;
	height: 11px;
	background: var(--bundle-accent);
}

.bundle-pdp__hl2-callout-title {
	font-family: var(--bundle-font-body);
	font-weight: 700;
	font-size: 1.25rem; /* 20 */
	line-height: 1.4;
	color: #fff;
	margin: 0;
}

.bundle-pdp__hl2-callout-body {
	font-family: var(--bundle-font-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.4;
	color: #fff;
	margin: 0;
}

/* =========================================================================
 * 4. TRUST PANEL (BLACK background, white text, circle icons)
 * ========================================================================= */
.bundle-pdp__trust {
	background: var(--bundle-bg-dark);
	color: #fff;
	border: 0;
	padding-block: var(--bundle-space-9);
}

.bundle-pdp__trust-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bundle-space-7);
}

@media (min-width: 768px) {
	.bundle-pdp__trust-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--bundle-space-9);
	}
}

.bundle-pdp__trust-card {
	text-align: center;
	padding: 0;
	color: #fff;
}

.bundle-pdp__trust-icon {
	width: 36px;
	height: 36px;
	margin: 0 auto var(--bundle-space-3);
	object-fit: contain;
	padding: 6px;
	background: transparent;
	filter: brightness(0) invert(1);
}

.bundle-pdp__trust-title {
	font-family: var(--bundle-font-display);
	font-weight: 700;
	font-size: 1.125rem; /* 18 */
	line-height: 1.4;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 var(--bundle-space-2);
	letter-spacing: 0.02em;
}

.bundle-pdp__trust-body {
	font-family: var(--bundle-font-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* =========================================================================
 * 5. REVIEWS (WHITE section, "WHAT OTHERS ARE SAYING" with red SAYING)
 * ========================================================================= */
.bundle-pdp__reviews {
	background: var(--bundle-bg);
	padding-block: var(--bundle-space-9);
}

/* Reviews header: title center, dots right */
.bundle-pdp__reviews-header {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: var(--bundle-space-7);
}

@media (max-width: 767px) {
	.bundle-pdp__reviews-header {
		flex-direction: column;
		gap: var(--bundle-space-3);
	}
}

.bundle-pdp__reviews-title {
	font-family: var(--bundle-font-display);
	font-weight: 700;
	font-size: clamp(1.5rem, 2.6vw + 0.5rem, 2rem); /* up to 32 */
	line-height: 1.4;
	text-transform: uppercase;
	text-align: center;
	color: var(--bundle-ink);
	margin: 0;
	letter-spacing: 0.01em;
}

.bundle-pdp__reviews-accent {
	color: var(--bundle-accent);
}

/* Carousel dot pagination */
.bundle-pdp__reviews-dots {
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translateY(-50%);
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
}

@media (max-width: 767px) {
	.bundle-pdp__reviews-dots {
		position: static;
		transform: none;
	}
}

.bundle-pdp__reviews-dot {
	display: block;
	width: 13px;
	height: 13px;
	min-width: 13px;
	min-height: 13px;
	border-radius: 999px !important;
	background: var(--bundle-ink) !important;
	border: none !important;
	padding: 0 !important;
	margin: 0;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease;
}

.bundle-pdp__reviews-dot--active {
	width: 39px;
	min-width: 39px;
	background: var(--bundle-accent) !important;
}

/* WooCommerce native reviews — horizontal scroll carousel */
.bundle-pdp__reviews-track {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 40px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	padding-bottom: var(--bundle-space-4);
}

/* Hide scrollbar but keep functionality */
.bundle-pdp__reviews-track::-webkit-scrollbar {
	display: none;
}
.bundle-pdp__reviews-track {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.bundle-pdp__review-card {
	background: #fff;
	box-shadow: 0px 12px 44px rgba(0, 0, 0, 0.2);
	border: 0;
	padding: 20px;
	margin: 0;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	width: 400px;
	min-width: 400px;
	flex: 0 0 400px;
	scroll-snap-align: start;
}

@media (max-width: 479px) {
	.bundle-pdp__review-card {
		width: 300px;
		min-width: 300px;
		flex: 0 0 300px;
	}
}

.bundle-pdp__review-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bundle-pdp__review-stars {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2px;
}

.bundle-pdp__star {
	width: 21px;
	height: 21px;
	font-size: 21px;
	line-height: 1;
	color: var(--bundle-star);
	opacity: 0.25;
}

.bundle-pdp__star--filled {
	opacity: 1;
	color: var(--bundle-star);
}

.bundle-pdp__review-title {
	font-family: var(--bundle-font-body);
	font-weight: 700;
	font-size: 1.25rem; /* 20 */
	line-height: 1.4;
	color: var(--bundle-ink);
	margin: 0;
	align-self: stretch;
}

.bundle-pdp__review-body {
	font-family: var(--bundle-font-body);
	font-weight: 400;
	font-size: 1rem; /* 16 */
	line-height: 1.4;
	color: var(--bundle-ink);
	margin: 0;
	align-self: stretch;
}

.bundle-pdp__review-body p {
	margin: 0;
}

.bundle-pdp__review-footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	margin-top: auto;
}

.bundle-pdp__review-author {
	font-family: var(--bundle-font-body);
	font-style: italic;
	font-weight: 300;
	font-size: 1rem; /* 16 */
	line-height: 1.4;
	color: var(--bundle-ink);
}

.bundle-pdp__review-verified {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 8px;
	gap: 10px;
	height: 22px;
	background: var(--bundle-accent);
	color: #fff;
	font-family: var(--bundle-font-ui);
	font-weight: 500;
	font-size: 1rem; /* 16 */
	line-height: 1.4;
	border-radius: 0;
	text-transform: lowercase;
}

/* =========================================================================
 * 6. Body class hooks
 * ========================================================================= */
body.bundle-pdp #main-content,
body.bundle-pdp .et_pb_section,
body.bundle-pdp #left-area {
	padding: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

body.bundle-pdp .container.et_menu_container { /* keep header container intact */ }

body.bundle-pdp #main-content {
	background: var(--bundle-bg);
}

/* =========================================================================
 * 7. Auto-attribute list inside accordion rows
 * ========================================================================= */
.bundle-pdp__attrs {
	display: grid;
	grid-template-columns: max-content 1fr;
	column-gap: var(--bundle-space-5);
	row-gap: var(--bundle-space-2);
	margin: 0;
	padding: 0;
	font-family: var(--bundle-font-body);
	font-size: 1rem;
	line-height: 1.4;
}

.bundle-pdp__attrs-term {
	margin: 0;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 0.875rem;
}

.bundle-pdp__attrs-desc {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}

.bundle-pdp__attrs-heading {
	font-family: var(--bundle-font-display);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.4;
	text-transform: uppercase;
	color: #fff;
	margin: var(--bundle-space-5) 0 var(--bundle-space-2);
	letter-spacing: 0.02em;
}

.bundle-pdp__attrs-heading:first-child {
	margin-top: 0;
}
