/* ═══════════════════════════════════════════════════════════════════
   PRODUCT PAGE — unified stylesheet (theme + configurator merged)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Global overrides ────────────────────────────────────────────── */
body.cc-dark-header main { background: white; }
main.wp-block-group { padding: 0 !important; }

.product-page {
	position: relative;
	color: var(--black);
}

.product-page__configurator {
	--cc-accent:  var(--rust);
	--cc-surface: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO + LAYOUT
   ═══════════════════════════════════════════════════════════════════ */

.product-page__hero {
	padding: 1rem 0 5rem;
}

.product-page__hero .wrap {
	
	margin: 0 auto;
	
}

/* ── Breadcrumbs ─────────────────────────────────────────────────── */
.product-page__crumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	line-height: 20px;
	color: var(--gray-700);
	margin-bottom: 32px;
}
.product-page__crumbs a {
	color: var(--gray-700);
	transition: color 0.15s var(--ease);
}
.product-page__crumbs a:hover { color: var(--rust); }
.product-page__crumbs span:last-of-type { color: var(--black); }
.product-page__crumb-sep { color: var(--gray-400); user-select: none; }

/* ── Desktop grid ────────────────────────────────────────────────── */
.product-page__hero-grid {
	display: grid;
	grid-template-columns: 7fr 4fr;
	gap: 48px;
	align-items: start;
}

.product-page__left {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
	min-width: 0;
	border-right: 1px solid #E8E4E0;
	padding-right: 2rem;
}

.product-page__sidebar {
	min-width: 0;
	background: transparent;
	height: 100%;
}

.product-page__sidebar-sticky {
	position: sticky;
	top: 4rem;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: transparent;
}

.product-page__configurator-mount { display: none; }

/* ── Configurator controls (left side, desktop) ──────────────────── */
.product-page__configurator-head {
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--gray-300, #e5e5e5);
}

.product-page__configurator-title {
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 700;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0;
}

.product-page__configurator-controls [data-ccc-region="controls"] {
	display: flex;
	flex-direction: column;
}

/* ═══════════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════════ */

.product-page__gallery {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 12px;
	width: 100%;
}

.product-page__gallery-main {
	background: var(--img-bg);
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border: 1px solid var(--border-grey);
	cursor: zoom-in;
}

.product-page__gallery-main:after {
	content: "";
	position: absolute;
	top: var(--img-rect-y, 0);
	left: var(--img-rect-x, 0);
	width: var(--img-rect-w, 100%);
	height: var(--img-rect-h, 100%);
	background: var(--img-scrim);
	pointer-events: none;
	z-index: 1;
	transition: top 180ms ease, left 180ms ease, width 180ms ease, height 180ms ease;
}
.product-page__gallery-thumb:after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--img-scrim);
	border-radius: inherit;
	pointer-events: none;
	z-index: 1;
}

.product-page__gallery-img,
.product-page__gallery-main img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transition: opacity 180ms ease;
}
.product-page__gallery-img.is-switching {
	opacity: 0;
}

.product-page__gallery-empty {
	background: var(--img-bg);
	border-radius: 16px;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-400);
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.product-page__gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
	gap: 8px;
}

.product-page__gallery-thumb {
	background: var(--white);
	border-radius: 10px;
	padding: 4px;
	cursor: pointer;
	transition: border-color 0.15s var(--ease);
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
	border: 1px solid var(--border-grey);
}
.product-page__gallery-thumb:hover { border-color: var(--gray-300); }
.product-page__gallery-thumb.is-active { border-color: var(--black); }
.product-page__gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Gallery arrows + zoom button */
.product-page__gallery-arrow,
.product-page__gallery-zoom {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	color: var(--black);
	opacity: 0;
	transition: opacity 0.2s var(--ease), background 0.15s var(--ease);
}

.product-page__gallery-main:hover .product-page__gallery-arrow,
.product-page__gallery-main:hover .product-page__gallery-zoom { opacity: 1; }

.product-page__gallery-arrow:hover,
.product-page__gallery-zoom:hover { background: #fff; }

.product-page__gallery-arrow--prev { left: 10px; top: 50%; transform: translateY(-50%); }
.product-page__gallery-arrow--next { right: 10px; top: 50%; transform: translateY(-50%); }
.product-page__gallery-zoom        { right: 10px; top: 10px; }

@media (hover: none) {
	.product-page__gallery-arrow,
	.product-page__gallery-zoom { opacity: 1; }
}

/* Phone viewport: swipe (change image) and tap (zoom) already do the same
   job, so the always-visible buttons from the hover:none rule above are
   just clutter here — hide them outright. */
@media (max-width: 767px) {
	.product-page__gallery-arrow,
	.product-page__gallery-zoom { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT HEAD (title + SKU + intro + bullets)
   ═══════════════════════════════════════════════════════════════════ */

.product-page__head {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #E8E4E0;
}

.product-page__sku {
	font-family: var(--mono);
	font-size: 12px;
	line-height: 16px;
	color: var(--gray-500);
	letter-spacing: 0.04em;
	text-transform: none;
}
.product-page__sku strong { color: var(--black); font-weight: 700; }

.product-page__title {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(22px, 1.5rem + 1.6vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 0;
	color: var(--black);
	text-transform: uppercase;
}

.product-page__intro {
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	line-height: 1.6;
	color: var(--gray-700);
	margin: 0;
}

.product-page__bullets {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-page__bullet {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	line-height: 1.5;
	color: var(--black);
}

.product-page__bullet::before {
	content: "";
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 2px;
	background: var(--rust);
	mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.2 12L2 7.8l1.4-1.4L6.2 9.2l6.4-6.4L14 4.2z'/%3E%3C/svg%3E");
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.2 12L2 7.8l1.4-1.4L6.2 9.2l6.4-6.4L14 4.2z'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

/* ═══════════════════════════════════════════════════════════════════
   CONFIGURATOR BASE (from plugin configurator.css)
   ═══════════════════════════════════════════════════════════════════ */

.ccc-configurator {
	--ccc-accent:        var(--cc-accent, #0f172a);
	--ccc-border:        color-mix(in srgb, currentColor 12%, transparent);
	--ccc-border-strong: color-mix(in srgb, currentColor 22%, transparent);
	--ccc-muted-bg:      color-mix(in srgb, currentColor 4%, transparent);
	--ccc-hover-bg:      color-mix(in srgb, currentColor 8%, transparent);
	position: relative;
	display: block;
	padding: 1.25rem;
	border: 1px solid var(--ccc-border);
	border-radius: 0.5rem;
	background: var(--ccc-muted-bg);
}
.ccc-configurator > * + * { margin-block-start: 1rem; }
.ccc-configurator__loading { font-style: italic; opacity: 0.6; }

/* Token mapping: plugin vars → theme tokens */
.product-page [class*="ccc-"] {
	--ccc-accent:   var(--rust,     #D34E2D);
	--ccc-text:     var(--black,    #0C0402);
	--ccc-text-dim: var(--gray-700, #55504E);
	--ccc-muted-bg: transparent;
}

/* Hide the legacy root when split layout is active */
.ccc-configurator[data-ccc-layout="split"] { display: none !important; }

/* Notes */
.ccc-note {
	margin: 0.5rem 0;
	font-size: 0.875rem;
	opacity: 0.75;
}
.ccc-note--warn {
	color: #b85c00;
	background: #fff7ed;
	padding: 0.5rem 0.75rem;
	border-radius: 0.375rem;
	border: 1px solid #fed7aa;
	opacity: 1;
}

/* ── Sliders ─────────────────────────────────────────────────────── */
.ccc-slider { display: block; margin-bottom: 0; }
.ccc-slider + .ccc-slider { margin-top: 16px; }

.ccc-slider__header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 8px;
}

.ccc-slider__label {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--black);
}

.ccc-slider__value {
	font-variant-numeric: tabular-nums;
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 700;
	color: var(--black);
	background: transparent;
	padding: 0;
	border-radius: 0;
}

.ccc-slider__input {
	width: 100%;
	height: 8px;
	border-radius: 4px;
	background: linear-gradient(to right, var(--rust) var(--fill, 20%), #EBEBEB var(--fill, 20%));
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	display: block;
}

.ccc-slider__input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--rust);
	border: 2.5px solid #fff;
	box-shadow: 0 0 0 1.5px var(--rust), 0 1px 4px rgba(0,0,0,0.15);
	cursor: grab;
}

.ccc-slider__input::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--rust);
	border: 2.5px solid #fff;
	box-shadow: 0 0 0 1.5px var(--rust), 0 1px 4px rgba(0,0,0,0.15);
	cursor: grab;
}

.ccc-slider--snap .ccc-slider__input { height: 8px; }

/* ── Quantity stepper ────────────────────────────────────────────── */
.ccc-qty { display: flex; align-items: center; gap: 0.75rem; }
.ccc-qty__label { font-weight: 500; font-size: 0.95rem; }
.ccc-qty__group {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--ccc-border-strong);
	border-radius: 0.375rem;
	overflow: hidden;
}
.ccc-qty__btn {
	border: 0;
	background: transparent;
	padding: 0.4rem 0.7rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	color: inherit;
	transition: background 0.12s ease;
}
.ccc-qty__btn:hover { background: var(--ccc-hover-bg); }
.ccc-qty__input {
	width: 3rem;
	text-align: center;
	border: 0;
	border-inline: 1px solid var(--ccc-border-strong);
	background: transparent;
	color: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	-moz-appearance: textfield;
}
.ccc-qty__input::-webkit-outer-spin-button,
.ccc-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   SHARED SECTIONS (option groups, extras, info sliders, add-ons)
   ═══════════════════════════════════════════════════════════════════ */

.ccc-shared-section { margin-top: 20px; }
.ccc-shared-section--groups { margin-top: 16px; }
.ccc-shared-section--extras,
.ccc-shared-section--info-sliders {
	padding-top: 20px;
	border-top: 1px solid #E8E4E0;
}

.ccc-shared-section__label {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--black);
	text-transform: none;
	letter-spacing: 0;
	margin-bottom: 12px;
}

[data-ccc-region="controls"] .ccc-type-controls {
	padding-bottom: 20px;
	border-bottom: 1px solid #E8E4E0;
}

[data-ccc-region="controls"] .ccc-type-controls,
[data-ccc-region="controls"] .ccc-shared-sections {
	margin-bottom: 20px;
}
[data-ccc-region="controls"] .ccc-shared-section:first-child { margin-top: 0; }
[data-ccc-region="controls"] .ccc-shared-section--extras:first-child,
[data-ccc-region="controls"] .ccc-shared-section--info-sliders:first-child {
	border-top: none;
	padding-top: 0;
}

/* ── Option group ────────────────────────────────────────────────── */
.ccc-option-group { margin-bottom: 20px; }

.ccc-option-group__label {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--black);
	margin-bottom: 10px;
}

.ccc-option-group__desc {
	font-size: 13px;
	color: var(--ccc-text-dim, #6b7280);
	margin-bottom: 12px;
}

.ccc-option-group__list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ccc-option-group + .ccc-option-group {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #F0EDEA;
}

.ccc-option-card {
	display: block;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.ccc-option-card:hover { border-color: #C9C7C4; }

.ccc-option-card__head {
	display: grid;
	grid-template-columns: 80px 1fr auto auto;
	align-items: center;
}
.ccc-option-card__head > * + * { margin-left: 10px; }
.ccc-option-card__head > *:last-child { margin-left: 12px; }

.ccc-option-card__img {
	width: 80px;
	height: 80px;
	border-radius: 6px;
	border: 1px solid #F0EDEA;
	background: #fff;
	object-fit: contain;
	padding: 4px;
}
.ccc-option-card__img--placeholder { background: #F5F3F1; }

.ccc-option-card__info { min-width: 0; }

.ccc-option-card__title {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--black);
	line-height: 1.3;
}

.ccc-option-card__info--expandable { cursor: pointer; }

.ccc-option-card__sub {
	font-size: var(--cc-font-size-pp-sm);
	color: var(--gray-500);
	margin-top: 1px;
}

.ccc-option-card__price {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--gray-700);
	margin-top: 2px;
}

.ccc-option-card__expand-btn {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--gray-400);
	padding: 0;
	flex-shrink: 0;
	border-radius: 4px;
	transition: color 0.12s ease;
}
.ccc-option-card__expand-btn svg { transition: transform 0.15s ease; }
.ccc-option-card__expand-btn.is-open svg { transform: rotate(180deg); }
.ccc-option-card__expand-btn:hover { color: var(--rust); }

.ccc-option-card__input {
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	accent-color: var(--rust);
	cursor: pointer;
	margin: 0;
	border: 2px solid #d1d5db;
	background: white;
	transition-property: color, background-color, border-color;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.ccc-option-card__body {
	overflow: hidden;
	max-height: 0;
	padding: 0 0 0 0;
	margin: 0;
	border-bottom: 1px solid transparent;
	font-size: var(--cc-font-size-pp-sm);
	color: var(--gray-700);
	line-height: 1.5;
	transition: max-height 0.3s ease, padding 0.25s ease,
	            margin 0.25s ease, border-color 0.25s ease;
}
.ccc-option-card.is-expanded .ccc-option-card__body {
	padding-top: 10px;
	margin-top: 10px;
	border-bottom-color: #F0EDEA;
	max-height: 400px;
}
.ccc-option-card__body ul { margin: 6px 0 0; padding-left: 16px; }
.ccc-option-card__body li { margin: 3px 0; }

/* ── Extras ──────────────────────────────────────────────────────── */
.ccc-shared-section--extras .ccc-shared-section__label,
.ccc-shared-section--info-sliders .ccc-shared-section__label {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--black);
	text-transform: none;
	letter-spacing: 0;
}

.ccc-extra {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	padding: 10px 0;
	gap: 10px;
	align-items: center;
	border-bottom: 1px solid #f0f0f0;
}
.ccc-extra:first-of-type { border-top: 1px solid #F0EDEA; }
.ccc-extra:last-child { border-bottom: none; }

.ccc-extra__img {
	width: 56px;
	height: 56px;
	border-radius: 8px;
	border: 1px solid #F0EDEA;
	padding: 4px;
	background: #fff;
	object-fit: contain;
}
.ccc-extra__img--placeholder { background: #F5F3F1; }

.ccc-extra__name {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--black);
	line-height: 1.3;
}
.ccc-extra__sub {
	font-size: 11px;
	color: var(--gray-500);
	margin-top: 1px;
}
.ccc-extra__price {
	font-size: 12px;
	font-weight: 600;
	color: var(--gray-700);
	margin-top: 2px;
}

.ccc-extra__control {
	display: flex;
	align-items: center;
	gap: 2px;
	border-radius: 8px;
	padding: 2px;
}

.ccc-extra__add {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1.5px solid var(--rust);
	color: var(--rust);
	background: transparent;
	font-size: 20px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background 0.15s ease, color 0.15s ease;
}
.ccc-extra__add:hover { background: var(--rust); color: #fff; }

.ccc-extra__btn {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	border: none;
	background: transparent;
	color: var(--black);
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.1s ease;
}
.ccc-extra__btn:hover { background: rgba(0,0,0,0.08); }

.ccc-extra__qty {
	width: 32px;
	height: 28px;
	text-align: center;
	border: none;
	background: transparent;
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 700;
	color: var(--black);
	-moz-appearance: textfield;
}
.ccc-extra__qty::-webkit-outer-spin-button,
.ccc-extra__qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ── Info slider ─────────────────────────────────────────────────── */
.ccc-info-slider {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #F0EDEA;
	margin-bottom: 20px;
}
.ccc-info-slider__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 8px;
}
.ccc-info-slider__label {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--black);
}
.ccc-info-slider__input {
	width: 100%;
	accent-color: var(--rust);
}
.ccc-info-slider__ends {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: baseline;
	font-size: 12px;
	color: var(--ccc-text-dim, #6b7280);
	margin-top: 4px;
}
.ccc-info-slider__end--max { text-align: right; }
.ccc-info-slider__current {
	text-align: center;
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 700;
	color: var(--rust);
}
.ccc-info-slider__end--min,
.ccc-info-slider__end--max {
	font-size: 11px;
	color: var(--gray-500);
}
.ccc-info-slider__foot {
	font-size: 11px;
	color: var(--gray-500);
	margin-top: 6px;
	line-height: 1.4;
}

/* ── Add-ons ─────────────────────────────────────────────────────── */
.ccc-addons {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #E8E4E0;
}
.ccc-addons__title {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--black);
	margin-bottom: 10px;
}
.ccc-addons__list { display: flex; flex-direction: column; }

.ccc-addons__row {
	display: grid;
	grid-template-columns: 80px 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #F0EDEA;
	cursor: pointer;
	transition: border-color 0.12s ease, background 0.12s ease;
}
.ccc-addons__row:last-child { border-bottom: none; }
.ccc-addons__row:hover { background: var(--ccc-hover-bg); }

.ccc-addons__img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	border-radius: 8px;
	border: 1px solid #F0EDEA;
	padding: 4px;
	background: #fff;
}
.ccc-addons__img--placeholder { background: #F5F3F1; }

.ccc-addons__name {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--black);
	display: block;
}
.ccc-addons__sub {
	display: block;
	font-size: 0.78rem;
	opacity: 0.65;
}
.ccc-addons__price {
	font-size: 12px;
	font-weight: 500;
	color: var(--gray-700);
	margin-top: 2px;
	display: block;
	font-variant-numeric: tabular-nums;
}
.ccc-addons__control { display: flex; align-items: center; }

.ccc-addons__add {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	border: 1.5px solid var(--rust);
	background: transparent;
	color: var(--rust);
	font-size: 20px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition-property: color, background-color, border-color;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.ccc-addons__add:hover { background: var(--rust); color: #fff; }

.ccc-addons__stepper {
	display: flex;
	align-items: center;
	gap: 8px;
	border-radius: 8px;
	padding: 2px;
}

.ccc-addons__btn {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	border: none;
	background: white;
	color: var(--black);
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.1s ease;
}
.ccc-addons__btn:hover { background: rgba(0,0,0,0.08); }

.ccc-addons__qty-num {
	width: 28px;
	text-align: center;
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 700;
	color: var(--black);
}

.ccc-addons__remove {
	width: 28px;
	height: 28px;
	border: 1px solid #E8E4E0;
	border-radius: 6px;
	background: #fff;
	color: var(--gray-500);
	font-size: 16px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ccc-addons__qty {
	width: 3rem;
	text-align: center;
	padding: 0.25rem 0.4rem;
	font-size: 0.85rem;
	border: 1px solid var(--ccc-border-strong);
	border-radius: 0.25rem;
	background: transparent;
	color: inherit;
}

/* ═══════════════════════════════════════════════════════════════════
   INFO BLOCKS (accordion — Add name & comments, Delivery, Included)
   ═══════════════════════════════════════════════════════════════════ */

.ccc-info-blocks {
	margin-top: 0;
	border-bottom: 1px solid #E8E4E0;
}

.ccc-info-block {
	border-bottom: 1px solid #E8E4E0;
	background: transparent;
	padding: 0;
}
.ccc-info-block:last-child { border-bottom: none; }

.ccc-info-block__head {
	display: grid;
	grid-template-columns: 20px 1fr auto auto;
	gap: 8px;
	align-items: center;
	padding: 13px 0;
	cursor: pointer;
	list-style: none;
	font-size: var(--cc-font-size-pp-sm);
	color: var(--ccc-text, #111);
}
.ccc-info-block__head::-webkit-details-marker { display: none; }

.ccc-info-block__title-wrap { display: contents; }

.ccc-info-block__icon {
	display: inline-flex;
	width: 20px;
	height: 20px;
	color: var(--rust);
}
.ccc-info-block__icon svg { width: 16px; height: 16px; }

.ccc-info-block__title {
	font-size: var(--cc-font-size-pp-sm) !important;
	font-weight: 600;
	color: var(--black);
}

.ccc-info-block__status {
	font-size: var(--cc-font-size-pp-sm) !important;
	font-weight: 500;
	color: var(--ccc-text-dim, #6b7280);
}
.ccc-info-block--included .ccc-info-block__status { color: #15803d; }
.ccc-info-block--surcharge .ccc-info-block__status { color: var(--rust); }

.ccc-info-block__chev {
	display: inline-flex;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	color: var(--gray-500);
	transition: transform 0.2s ease;
	flex-shrink: 0;
	font-size: var(--cc-font-size-pp-sm) !important;
}
.ccc-info-block[open] > .ccc-info-block__head .ccc-info-block__chev {
	transform: rotate(180deg);
}

.ccc-info-block__body {
	overflow: hidden;
	transition: max-height 0.3s ease, padding-bottom 0.3s ease;
	padding: 0 0 0 28px;
	font-size: var(--cc-font-size-pp-sm) !important;
	line-height: 1.5;
	color: var(--ccc-text-dim, #55504E);
}
.ccc-info-block[open] .ccc-info-block__body {
	padding-bottom: 14px;
}
.ccc-info-block.is-closing .ccc-info-block__body {
	padding-bottom: 0;
}

.ccc-info-block__desc p {
	margin: 0 0 8px 0;
	font-size: var(--cc-font-size-pp-sm) !important;
}
.ccc-info-block__desc p:last-child { margin-bottom: 0; }

.ccc-info-block__bullets-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
	margin-top: 8px;
}
.ccc-info-block__bullets--yes { color: var(--ccc-text, #111); }
.ccc-info-block__bullets--no  { color: var(--ccc-text-dim, #999); }

.ccc-info-block__bullet-mark {
	display: inline-flex;
	width: 14px;
	flex-shrink: 0;
}
.ccc-info-block__bullets--yes .ccc-info-block__bullet-mark { color: #15803d; }
.ccc-info-block__bullets--no  .ccc-info-block__bullet-mark { color: #ef4444; }

@media (max-width: 600px) {
	.ccc-info-block__bullets-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   SIDEBAR INPUTS (Add name & comments accordion)
   ═══════════════════════════════════════════════════════════════════ */

.ccc-sidebar-inputs {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ccc-sidebar-inputs__name,
.ccc-sidebar-inputs__comments {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	font-family: inherit;
	font-size: var(--cc-font-size-pp-sm);
	color: var(--black);
	background: #fff;
	transition: border-color 0.15s ease;
}
.ccc-sidebar-inputs__name:focus,
.ccc-sidebar-inputs__comments:focus {
	outline: none;
	border-color: var(--rust);
}
.ccc-sidebar-inputs__comments {
	resize: vertical;
	min-height: 60px;
}

.ccc-sidebar-inputs__accordion {
	border-top: 1px solid #E8E4E0;
	margin-top: 2px;
}
.ccc-sidebar-inputs__toggle {
	display: grid;
	grid-template-columns: 20px 1fr auto;
	align-items: center;
	gap: 8px;
	padding: 13px 0;
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.ccc-sidebar-inputs__toggle::-webkit-details-marker { display: none; }
.ccc-sidebar-inputs__icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-500);
}
.ccc-sidebar-inputs__label {
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	color: var(--black);
}
.ccc-sidebar-inputs__opt {
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	color: var(--gray-500);
	font-weight: 400;
}
.ccc-sidebar-inputs__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 4px 0 14px;
}

/* ═══════════════════════════════════════════════════════════════════
   SUMMARY BOX (price + add-to-cart + breakdown)
   ═══════════════════════════════════════════════════════════════════ */

.ccc-summary {
	background: transparent;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ccc-summary__top {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: end;
}

.ccc-summary__price-block {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ccc-summary__label {
	font-size: var(--cc-font-size-pp-xs);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--gray-500);
	text-transform: uppercase;
}

.ccc-summary__amount {
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--ccc-text, #111);
	display: flex;
	align-items: baseline;
	gap: 1px;
}

.ccc-summary__currency {
	font-size: 26px;
	font-weight: 700;
	align-self: flex-start;
	padding-top: 6px;
}

.ccc-summary__amount-text { font-size: 38px; }

.ccc-summary__vat {
	font-size: var(--cc-font-size-pp-xs);
	color: var(--gray-500);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-top: 3px;
}

.ccc-summary__dims-row {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
}
.ccc-summary__dims-label {
	font-size: var(--cc-font-size-pp-xs);
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--gray-500);
	text-transform: uppercase;
}
.ccc-summary__dims-value {
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 700;
	color: var(--black);
	text-align: right;
}

.ccc-summary__disclaimer {
	display: flex;
	gap: 6px;
	padding: 8px 10px;
	border-radius: 8px;
	font-size: 11px;
	line-height: 1.4;
	color: var(--gray-700);
}
.ccc-summary__disclaimer::before {
	content: "ⓘ";
	color: var(--rust);
	flex-shrink: 0;
	font-size: var(--cc-font-size-pp-sm);
	line-height: 1.3;
}

.ccc-summary__inputs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ccc-summary__inputs .ccc-sidebar-inputs { margin-top: 0; }

.ccc-summary__inputs .ccc-sidebar-inputs__name,
.ccc-summary__inputs .ccc-sidebar-inputs__comments {
	border: 1px solid #9ca3af;
	border-radius: 24px;
	font-size: var(--cc-font-size-pp-sm);
	padding: 16px 20px;
	background: #FAFAF9;
	color: var(--black);
}
.ccc-summary__inputs .ccc-sidebar-inputs__name:focus,
.ccc-summary__inputs .ccc-sidebar-inputs__comments:focus {
	border-color: var(--rust);
	outline: none;
	background: #fff;
}

.ccc-summary__add-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 20px;
	background: var(--rust);
	color: #fff;
	border: none;
	border-radius: 999px;
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 2rem;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.05s ease;
}
.ccc-summary__add-btn:hover { background: var(--rust-deep, #B53D1F); }
.ccc-summary__add-btn:active { transform: translateY(1px); }
.ccc-summary__add-btn.is-added { background: #15803d; }
.ccc-summary__add-btn svg { width: 18px; height: 18px; }

.ccc-summary__breakdown {
	border-top: 1px solid #f0f0f0;
	padding-top: 12px;
}
.ccc-summary__breakdown summary {
	cursor: pointer;
	font-size: 11px;
	color: var(--gray-500);
	font-weight: 500;
	list-style: none;
}
.ccc-summary__breakdown summary::-webkit-details-marker { display: none; }
.ccc-summary__breakdown summary::after {
	content: " +";
	color: var(--rust);
}
.ccc-summary__breakdown[open] summary::after { content: " −"; }

.ccc-summary__breakdown-body {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ccc-summary__breakdown-row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: var(--ccc-text-dim, #55504E);
}

.ccc-summary__breakdown-row.is-grand {
	border-top: 1px solid #f0f0f0;
	padding-top: 8px;
	margin-top: 4px;
	font-weight: 700;
	color: var(--ccc-text, #111);
}

.ccc-summary__reset {
	background: none;
	border: none;
	color: var(--gray-500);
	font-size: 11px;
	cursor: pointer;
	text-decoration: underline;
	padding: 0;
	align-self: center;
	margin-top: 4px;
}
.ccc-summary__reset:hover { color: var(--rust); }

/* ═══════════════════════════════════════════════════════════════════
   MOBILE LAYOUT (≤ 1023px) — display:contents grid flatten + order
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {

	.product-page__hero { padding: 1rem 0 1rem; }
	.product-page__hero .wrap { padding: 0 16px; }

	.product-page__hero-grid {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	/* Flatten kolonnid — lapsed muutuvad grid-i otsesteks lasteks */
	#colLeft,
	#colRight,
	#stickyWrap {
		display: contents;
	}

	.product-page__left,
	.product-page__sidebar {
		border-right: none;
		padding-right: 0;
	}

	.product-page__sidebar-sticky { position: static; }

	/* Mobiili järjekord */
	#galleryWrap        { order: 1; }
	#productHeader      { order: 2; margin-top: 20px; margin-bottom: 16px; }
	#priceSection       { order: 3; }
	#infoBlocksWrap     { order: 4; width: 100%; }
	#configuratorSection { order: 5; }

	.product-page__configurator-mount { order: 99; }

	.ccc-info-block__head { padding: 12px 0; }

	

	div#configuratorSection {
		width: 100%;
		margin-top: 2rem;
	}
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE STICKY TOP BAR
   ═══════════════════════════════════════════════════════════════════ */

#pp-mobile-sticky-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 110;
	background: #fff;
	box-shadow: 0 2px 14px rgba(0,0,0,0.10);
	transform: translateY(-110%);
	transition: transform 0.3s ease;
	box-sizing: border-box;
	display: none;
}

@media (max-width: 1023px) {
	#pp-mobile-sticky-bar { display: block; }
}

#pp-mobile-sticky-bar.is-visible { transform: translateY(0); }

.pp-msb__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
}

.pp-msb__price-block { text-align: left; }
.pp-msb__dims-block  { text-align: right; }

.pp-msb__label {
	display: block;
	font-size: 10px;
	color: #55504E;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 500;
	margin-bottom: 2px;
}

.pp-msb__price,
.pp-msb__dims {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #050F13;
	line-height: 1.1;
}

.pp-msb__cart-btn {
	width: 48px;
	height: 48px;
	border: 1px solid var(--rust);
	border-radius: 50%;
	background: #fff;
	color: var(--rust);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
}
.pp-msb__cart-btn:hover { background: var(--rust); color: #fff; }
.pp-msb__cart-btn:active { transform: scale(0.94); }
.pp-msb__cart-btn.is-confirmed {
	background: #22c55e;
	border-color: #22c55e;
	color: #fff;
}

/* Nav peita scroll all mobiilis */
@media (max-width: 1023px) {
	body.pp-nav-hidden .masthead,
	body.pp-nav-hidden header.wp-block-template-part,
	body.pp-nav-hidden .site-header {
		transform: translateY(-100%);
		transition: transform 0.3s ease;
	}
	.masthead, header.wp-block-template-part, .site-header {
		transition: transform 0.3s ease;
	}
}

/* ═══════════════════════════════════════════════════════════════════
   CONTENT SECTIONS (Description / Applications / Specs / Chars)
   ═══════════════════════════════════════════════════════════════════ */

.product-page__content-sections {
	padding: 0 0 56px;
}

.product-page__content-section {
	border: 1px solid var(--border-grey, #E8E4E0);
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	overflow: hidden;
}

.product-page__content-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #F5F5F5;
	color: var(--black);
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	list-style: none;
	user-select: none;
	border-radius: 0.5rem;
}
.product-page__content-section[open] .product-page__content-section__header {
	border-radius: 0.5rem 0.5rem 0 0;
}
.product-page__content-section__header::-webkit-details-marker { display: none; }

.product-page__content-section__title {
	font-family: var(--display);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.product-page__content-section__chev {
	color: var(--gray-500);
	transition: transform 0.2s var(--ease);
	flex-shrink: 0;
	display: inline-flex;
}
.product-page__content-section[open] .product-page__content-section__chev {
	transform: rotate(180deg);
}

.product-page__content-section__body {
	padding: 1rem 1.5rem;
	background: #fff;
}
.product-page__content-section__body h3:first-of-type { margin-top: 0; }

/* ── Tab content ─────────────────────────────────────────────────── */
.product-page__tab-content {
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	line-height: 1.6;
	color: var(--gray-700);
}

.product-page__tab-content h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	text-transform: uppercase;
	margin: 24px 0 8px;
}

.product-page__tab-content p { margin: 0 0 12px; }

.product-page__tab-subtitle {
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	font-weight: 700;
	color: var(--black);
	margin: 24px 0 10px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.product-page__ta-list,
.product-page__strengths,
.product-page__limitations {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	line-height: 1.5;
	color: var(--gray-700);
}

.product-page__ta-list li::before {
	content: "✓ ";
	color: var(--rust);
	font-weight: 700;
}
.product-page__strengths li::before {
	content: "✓ ";
	color: #15803d;
	font-weight: 700;
}
.product-page__limitations li::before {
	content: "✕ ";
	color: #c0392b;
	font-weight: 700;
}

.product-page__tab--two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

@media (max-width: 767px) {
	.product-page__tab--two-col { grid-template-columns: 1fr; gap: 32px; }
	.product-page__content-sections .wrap { padding-inline: 0; padding: 0; }
}

/* ── Specs table ─────────────────────────────────────────────────── */
.product-page__specs {
	width: 100%;
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	line-height: 22px;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	overflow: hidden;
}

.product-page__specs th,
.product-page__specs td {
	text-align: left;
	padding: 12px 16px;
		vertical-align: top;
}

.product-page__specs th {
	width: 15%;
	font-weight: 600;
	color: var(--gray-700);
	font-size: 12px;
}

.product-page__specs tr:nth-child(odd)  { background: white; }
.product-page__specs tr:nth-child(even) { background: #F5F5F5; }

.product-page__specs td { color: var(--black); }
.product-page__specs tr:last-child th,
.product-page__specs tr:last-child td { border-bottom: 0; }

.product-page__content-section .product-page__specs th,
.product-page__content-section .product-page__specs td {
	padding: 10px 16px;
	font-family: var(--display);
	font-size: var(--cc-font-size-pp-sm);
	text-align: left;
	
}
.product-page__content-section .product-page__specs th {
	font-weight: 400;
	color: var(--gray-500);
	width: 40%;
}
.product-page__content-section .product-page__specs td {
	 
	 color: var(--black);
	 }

/* ═══════════════════════════════════════════════════════════════════
   ACCESSORIES + RELATED CAROUSELS
   ═══════════════════════════════════════════════════════════════════ */

.product-page__accessories {
	background: var(--paper);
	padding: 72px 0 96px;
}

.product-page__related {
	background: white;
	padding: 2rem 0 1rem;
}

.product-page__section-title,
.product-page__related-title {
	font-family: var(--display);
	font-size: clamp(28px, 1.4rem + 1.4vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	margin: 0 0 32px;
}

.product-page__related-title .thin,
.product-page__section-title.thin { font-weight: 300; color: var(--gray-700); }
.product-page__related-title .bold { font-weight: 700; color: var(--black); margin-left: 8px; }

.product-page__acc-wrap { overflow: hidden; }

.product-page__acc-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}
.product-page__acc-track::-webkit-scrollbar { display: none; }

.product-page__acc-card {
	flex: 0 0 292px;
	scroll-snap-align: start;
	background: var(--white);
	border: 1px solid var(--gray-300);
	border-radius: 12px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.product-page__acc-card:hover {
	border-color: var(--rust);
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.product-page__acc-name {
	font-family: var(--display);
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--black);
	margin: 0;
	line-height: 1.4;
	min-height: 2.8em;
}
.product-page__acc-name a { color: inherit; text-decoration: none; }

.product-page__acc-img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--img-bg);
	border-radius: 8px;
	aspect-ratio: 4/3;
	overflow: hidden;
	flex: 1;
}
.product-page__acc-img { width: 100%; height: 100%; object-fit: contain; }
.product-page__acc-img-placeholder {
	width: 100%;
	aspect-ratio: 4/3;
	background: var(--img-bg);
}

.product-page__acc-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
}

.related-footer { flex-direction: row-reverse; }

.product-page__acc-price {
	font-family: var(--display);
	font-size: 24px;
	font-weight: 600;
	color: var(--black);
}

.product-page__acc-actions { display: flex; gap: 6px; }

.product-page__acc-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1.5px solid var(--rust);
	background: transparent;
	color: var(--rust);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}
.product-page__acc-btn:hover,
.product-page__acc-btn.is-added {
	background: var(--rust);
	color: var(--white);
}

.product-page__acc-footer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
}

.product-page__see-all {
	display: inline-block;
	font-size: clamp(18px, 2.5vw, 24px);
	color: var(--gray-700);
	text-decoration: none;
	transition: color 0.15s;
}
.product-page__see-all:hover { color: var(--rust); }

.product-page__acc-nav { display: flex; gap: 8px; }

.product-page__acc-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid var(--gray-300);
	background: var(--white);
	color: var(--black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.product-page__acc-arrow:hover {
	border-color: var(--rust);
	background: var(--rust);
	color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════
   CUSTOM CTA
   ═══════════════════════════════════════════════════════════════════ */

.product-page__custom-cta {
	padding: 48px 0;
	background: white;
}

.product-page__custom-cta-title {
	font-family: var(--display);
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 400;
	color: var(--gray-700);
	line-height: 1.4;
	margin: 0;
}

.product-page__custom-cta-link {
	display: inline-block;
	margin-top: 8px;
	font-size: clamp(18px, 2.5vw, 24px);
	color: var(--gray-700);
	text-decoration: underline;
}
.product-page__custom-cta-link:hover { color: var(--rust); }

@media (min-width: 1060px) {
	.product-page__custom-cta-grid { max-width: 800px; }
}

/* ═══════════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════════ */

.pp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}
.pp-lightbox.is-open {
	visibility: visible;
	opacity: 1;
}

.pp-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 10, 15, 0.92);
}

.pp-lightbox__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 48px;
}

.pp-lightbox__img {
	max-width: 100%;
	max-height: calc(100dvh - 96px);
	object-fit: contain;
	background: #fff;
	border-radius: 8px;
	display: block;
	user-select: none;
}

.pp-lightbox__close,
.pp-lightbox__prev,
.pp-lightbox__next {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.15s var(--ease);
}
.pp-lightbox__close:hover,
.pp-lightbox__prev:hover,
.pp-lightbox__next:hover { background: rgba(255, 255, 255, 0.22); }

.pp-lightbox__close { top: 16px; right: 16px; width: 40px; height: 40px; }
.pp-lightbox__prev  { left: 16px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.pp-lightbox__next  { right: 16px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }

.pp-lightbox__counter {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--display);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.pp-lightbox-open { overflow: hidden; }

@media (max-width: 600px) {
	.pp-lightbox__inner { padding: 16px; }
	.pp-lightbox__prev  { left: 4px; width: 40px; height: 40px; }
	.pp-lightbox__next  { right: 4px; width: 40px; height: 40px; }
}
/* ─── Shared configurator lightbox (modules / option cards / extras) ──── */
.ccc-lightbox-trigger {
	position: relative;
	display: block;
	cursor: zoom-in;
	overflow: hidden;
}
.ccc-lightbox-trigger__img {
	width: 100%;
	height: 100%;
	object-fit: inherit;
	display: block;
}
.ccc-lightbox-trigger__zoom {
	position: absolute;
	right: 3px;
	bottom: 3px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(5, 15, 19, 0.55);
	color: #fff;
	border: none;
	cursor: zoom-in;
	opacity: 0;
	transition: opacity 0.15s ease;
}
.ccc-lightbox-trigger:hover .ccc-lightbox-trigger__zoom,
.ccc-lightbox-trigger:focus-within .ccc-lightbox-trigger__zoom {
	opacity: 1;
}

.ccc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background: rgba(5, 10, 15, 0.88);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}
.ccc-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}
.ccc-lightbox__img {
	max-width: 90vw;
	max-height: 85vh;
	background: #fff;
	border-radius: 8px;
	object-fit: contain;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.ccc-lightbox__close {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.15s ease;
}
.ccc-lightbox__close:hover { background: rgba(255, 255, 255, 0.22); }