/* Product detail (prod_det) — mockup layout on GU tokens */

.gu-pdp-page .gu-main {
	background: #fff;
}

.gu-pdp {
	padding: 1.25rem 0 0;
}

.gu-pdp-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .35rem .45rem;
	font-size: .85rem;
	color: var(--gu-muted);
	margin-bottom: 1.25rem;
}

.gu-pdp-breadcrumb a {
	color: var(--gu-muted) !important;
	text-decoration: none !important;
}

.gu-pdp-breadcrumb a:hover {
	color: var(--gu-navy) !important;
}

.gu-pdp-breadcrumb span[aria-hidden="true"] {
	opacity: .55;
}

.gu-pdp-top {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 2.5rem;
	align-items: start;
	padding-bottom: 2.5rem;
	overflow: visible;
}

.gu-pdp-gallery {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}

.gu-pdp-main-stage {
	position: relative;
	min-width: 0;
}

.gu-pdp-thumbs {
	display: flex;
	flex-direction: column;
	gap: .65rem;
}

.gu-pdp-thumbs button {
	display: block;
	width: 72px;
	height: 72px;
	padding: 0;
	border: 1.5px solid var(--gu-border);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.gu-pdp-thumbs button.is-active,
.gu-pdp-thumbs button:hover {
	border-color: var(--gu-navy);
	box-shadow: 0 0 0 1px var(--gu-navy);
}

.gu-pdp-thumbs img,
.gu-pdp-thumbs video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #fafafa;
}

.gu-pdp-thumbs button.is-video {
	position: relative;
	background: #111;
}

.gu-pdp-thumbs button.is-video video {
	background: #111;
	object-fit: cover;
}

.gu-pdp-thumb-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: .85rem;
	background: rgba(0,0,0,.28);
	pointer-events: none;
}

.gu-pdp-main-img video {
	max-width: 100%;
	max-height: 480px;
	width: 100%;
	height: auto;
	background: #111;
}

.gu-pdp-main-img {
	border: 1px solid var(--gu-border);
	border-radius: 12px;
	background: #fafafa;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	overflow: hidden;
	position: relative;
}

.gu-pdp-discount-badge {
	position: absolute;
	top: .65rem;
	left: .65rem;
	z-index: 4;
	background: var(--gu-navy);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	padding: .25rem .5rem;
	border-radius: 6px;
}

.gu-pdp-main-img.is-video .gu-pdp-discount-badge {
	display: none;
}

.gu-pdp-zoom-lens {
	position: absolute;
	z-index: 3;
	border: 2px solid rgba(71, 119, 247, .95);
	background: rgba(255, 255, 255, .28);
	box-sizing: border-box;
	pointer-events: none;
}

.gu-pdp-zoom-pane {
	position: absolute;
	left: calc(100% + 12px);
	top: 0;
	width: 800px;
	height: 600px;
	max-width: min(800px, 48vw);
	max-height: min(600px, 75vh);
	border: 1px solid var(--gu-border);
	border-radius: 12px;
	background-color: #fff;
	background-repeat: no-repeat;
	box-shadow: 0 16px 40px rgba(7, 24, 48, .18);
	z-index: 40;
	pointer-events: none;
}

.gu-pdp-main-img img {
	max-width: 100%;
	max-height: 480px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.gu-pdp-info__brand {
	display: block;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--gu-muted);
	margin-bottom: .35rem;
}

.gu-pdp-info__title {
	margin: 0 0 .65rem;
	font-size: clamp(1.55rem, 2.4vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--gu-text);
}

.gu-pdp-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .65rem 1rem;
	margin-bottom: .75rem;
	font-size: .9rem;
	color: var(--gu-muted);
}

.gu-pdp-stars {
	display: inline-flex;
	align-items: center;
	gap: .2rem;
	color: var(--gu-star);
}

.gu-pdp-rating__stars {
	display: inline-flex;
	align-items: center;
	gap: .05rem;
}

.gu-pdp-rating__star {
	border: 0;
	background: transparent;
	padding: 0 1px;
	color: var(--gu-star);
	font-size: 1.15rem;
	line-height: 1;
	cursor: pointer;
}

.gu-pdp-rating__star:focus {
	outline: none;
}

.gu-pdp-rating__star:focus-visible {
	outline: 2px solid var(--gu-navy);
	outline-offset: 2px;
	border-radius: 2px;
}

.gu-pdp-rating.is-busy .gu-pdp-rating__star {
	pointer-events: none;
	opacity: .7;
}

.gu-pdp-stars strong,
.gu-pdp-rating__avg {
	color: var(--gu-text);
	margin-left: .25rem;
	font-weight: 600;
}

.gu-pdp-stars .gu-pdp-reviews {
	color: var(--gu-muted);
	font-weight: 400;
	margin-left: .15rem;
}

.gu-pdp-sku {
	color: var(--gu-muted);
}

.gu-pdp-stock {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: var(--gu-stock);
	font-weight: 600;
	font-size: .92rem;
	margin-bottom: 1rem;
}

.gu-pdp-stock.is-out {
	color: #c0392b;
}

.gu-pdp-stock i {
	font-size: 1rem;
}

.gu-pdp-price-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: .65rem .9rem;
	margin-bottom: .25rem;
}

.gu-pdp-price {
	font-size: clamp(1.7rem, 2.5vw, 2.15rem);
	font-weight: 700;
	color: var(--gu-navy);
	line-height: 1;
}

.gu-pdp-price-old {
	font-size: 1.05rem;
	color: var(--gu-muted);
	text-decoration: line-through;
}

.gu-pdp-save {
	display: inline-flex;
	align-items: center;
	padding: .28rem .7rem;
	border-radius: 999px;
	background: var(--gu-navy);
	color: #fff;
	font-size: .78rem;
	font-weight: 600;
}

.gu-pdp-iva {
	margin: 0 0 1.25rem;
	font-size: .85rem;
	color: var(--gu-muted);
}

.gu-pdp-highlights {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: .75rem;
	margin-bottom: 1.35rem;
	padding: 1rem 0;
	border-top: 1px solid var(--gu-border);
	border-bottom: 1px solid var(--gu-border);
}

.gu-pdp-highlight {
	text-align: center;
}

.gu-pdp-highlight__icon {
	width: 42px;
	height: 42px;
	margin: 0 auto .45rem;
	border-radius: 50%;
	border: 1.5px solid #d7e2ef;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gu-navy);
	font-size: 1rem;
	background: #f5f8fc;
}

.gu-pdp-highlight__label {
	display: block;
	font-size: .72rem;
	line-height: 1.3;
	color: var(--gu-muted);
}

.gu-pdp-option {
	margin-bottom: 1.15rem;
}

.gu-pdp-option__label {
	display: block;
	font-size: .9rem;
	font-weight: 600;
	color: var(--gu-text);
	margin-bottom: .5rem;
}

.gu-pdp-chips {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.gu-pdp-chip {
	min-height: 38px;
	padding: .45rem 1rem;
	border-radius: 8px;
	border: 1.5px solid var(--gu-border);
	background: #fff;
	color: var(--gu-text);
	font-weight: 600;
	font-size: .88rem;
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.gu-pdp-chip.is-active {
	border-color: var(--gu-navy);
	color: var(--gu-navy);
	background: #f3f7fc;
}

.gu-pdp-actions {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: .75rem;
	margin-bottom: .75rem;
}

.gu-pdp-qty {
	display: inline-flex;
	align-items: stretch;
	border: 1.5px solid var(--gu-border);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.gu-pdp-qty button {
	width: 40px;
	border: 0;
	background: #f5f7fa;
	color: var(--gu-navy);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
}

.gu-pdp-qty input {
	width: 48px;
	border: 0;
	border-left: 1px solid var(--gu-border);
	border-right: 1px solid var(--gu-border);
	text-align: center;
	font-weight: 600;
	font-size: 1rem;
	color: var(--gu-text);
	-moz-appearance: textfield;
	appearance: textfield;
}

.gu-pdp-qty input::-webkit-outer-spin-button,
.gu-pdp-qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.gu-pdp-actions .gu-btn {
	width: 100%;
}

.gu-pdp-buy-now {
	width: 100%;
	margin-bottom: 1.15rem;
}

.gu-pdp-ship {
	border: 1px solid var(--gu-border);
	border-radius: 12px;
	padding: .85rem;
	margin-bottom: 1.15rem;
	background: #fafbfc;
}

.gu-pdp-ship__tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .5rem;
	margin-bottom: .75rem;
}

.gu-pdp-ship__tab {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .45rem;
	min-height: 44px;
	padding: .55rem .75rem;
	border-radius: 8px;
	border: 1.5px solid var(--gu-border);
	background: #fff;
	color: var(--gu-text);
	font-weight: 600;
	font-size: .88rem;
	cursor: pointer;
}

.gu-pdp-ship__tab.is-active {
	border-color: var(--gu-navy);
	color: var(--gu-navy);
	background: #f3f7fc;
}

.gu-pdp-ship__zip {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: .5rem;
}

.gu-pdp-ship__zip input {
	min-height: 42px;
	border: 1.5px solid var(--gu-border);
	border-radius: 8px;
	padding: .5rem .8rem;
	font-size: .92rem;
}

.gu-pdp-ship__note {
	margin: .55rem 0 0;
	font-size: .8rem;
	color: var(--gu-muted);
}

.gu-pdp-trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .65rem;
}

.gu-pdp-trust__item {
	display: flex;
	align-items: center;
	gap: .45rem;
	font-size: .78rem;
	color: var(--gu-muted);
	line-height: 1.25;
}

.gu-pdp-trust__item i {
	color: var(--gu-navy);
	font-size: 1.05rem;
}

/* Tabs */
.gu-pdp-tabs {
	border-top: 1px solid var(--gu-border);
	padding-top: .25rem;
}

.gu-pdp-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: .25rem 1.5rem;
	border-bottom: 1px solid var(--gu-border);
	margin-bottom: 1.5rem;
}

.gu-pdp-tabs__nav button {
	appearance: none;
	border: 0;
	background: transparent;
	padding: .85rem 0;
	font-weight: 600;
	font-size: .95rem;
	color: var(--gu-muted);
	cursor: pointer;
	position: relative;
}

.gu-pdp-tabs__nav button.is-active {
	color: var(--gu-navy);
}

.gu-pdp-tabs__nav button.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--gu-navy);
}

.gu-pdp-tab-panel {
	display: none;
	padding-bottom: 2rem;
}

.gu-pdp-tab-panel.is-active {
	display: block;
}

.gu-pdp-desc {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
	gap: 2rem;
	align-items: center;
}

.gu-pdp-desc h3 {
	margin: 0 0 .75rem;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--gu-text);
}

.gu-pdp-desc p {
	margin: 0;
	color: var(--gu-muted);
	line-height: 1.65;
	font-size: .98rem;
}

.gu-pdp-desc__media {
	border-radius: 12px;
	overflow: hidden;
	background: var(--gu-surface);
	min-height: 220px;
}

.gu-pdp-desc__media img {
	width: 100%;
	height: 100%;
	min-height: 240px;
	object-fit: cover;
	display: block;
}

.gu-pdp-specs {
	padding: 0 0 2.5rem;
}

.gu-pdp-specs h2 {
	margin: 0 0 1.1rem;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--gu-text);
}

.gu-pdp-specs__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 3rem;
	border-top: 1px solid var(--gu-border);
}

.gu-pdp-specs__row {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 1rem;
	padding: .85rem 0;
	border-bottom: 1px solid #eef1f5;
	font-size: .95rem;
}

.gu-pdp-specs__row dt {
	margin: 0;
	color: var(--gu-muted);
	font-weight: 500;
}

.gu-pdp-specs__row dd {
	margin: 0;
	color: var(--gu-text);
	font-weight: 600;
}

.gu-pdp-help {
	background: var(--gu-navy);
	color: #fff;
	padding: 1.35rem 0;
	margin: .5rem 0 2.5rem;
}

.gu-pdp-help__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.gu-pdp-help__copy {
	display: flex;
	align-items: center;
	gap: .9rem;
}

.gu-pdp-help__copy i {
	font-size: 1.75rem;
	opacity: .95;
}

.gu-pdp-help__copy p {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.35;
	max-width: 36rem;
}

.gu-pdp-help .gu-btn {
	background: #fff;
	color: var(--gu-navy) !important;
	border-color: #fff;
	white-space: nowrap;
}

.gu-pdp-help .gu-btn:hover {
	background: #f0f4f9;
}

.gu-pdp-reviews {
	padding: 0 0 2.75rem;
}

.gu-pdp-reviews h2 {
	margin: 0 0 1.25rem;
	font-size: 1.35rem;
	font-weight: 700;
}

.gu-pdp-reviews__layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

.gu-pdp-reviews__score {
	text-align: left;
}

.gu-pdp-reviews__score .big {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--gu-text);
	line-height: 1;
	margin-bottom: .35rem;
}

.gu-pdp-reviews__score .big span {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--gu-muted);
}

.gu-pdp-bars {
	margin-top: 1rem;
	display: grid;
	gap: .35rem;
}

.gu-pdp-bar {
	display: grid;
	grid-template-columns: 14px 1fr 28px;
	gap: .45rem;
	align-items: center;
	font-size: .8rem;
	color: var(--gu-muted);
}

.gu-pdp-bar__track {
	height: 7px;
	background: #e8edf3;
	border-radius: 999px;
	overflow: hidden;
}

.gu-pdp-bar__fill {
	height: 100%;
	background: var(--gu-star);
	border-radius: 999px;
}

.gu-pdp-review-list {
	display: grid;
	gap: .9rem;
}

.gu-pdp-review {
	border: 1px solid var(--gu-border);
	border-radius: 12px;
	padding: 1rem 1.1rem;
	background: #fff;
}

.gu-pdp-review__head {
	display: flex;
	justify-content: space-between;
	gap: .75rem;
	margin-bottom: .45rem;
	font-size: .82rem;
	color: var(--gu-muted);
}

.gu-pdp-review p {
	margin: 0 0 .65rem;
	color: var(--gu-text);
	line-height: 1.5;
	font-size: .95rem;
}

.gu-pdp-review__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem .85rem;
	font-size: .85rem;
	color: var(--gu-muted);
}

.gu-pdp-review__foot strong {
	color: var(--gu-text);
	font-weight: 600;
}

.gu-pdp-verified {
	color: var(--gu-stock);
	font-weight: 600;
}

.gu-pdp-related {
	padding-bottom: 1rem;
}

.gu-pdp-related .gu-section__head {
	margin-bottom: 1.25rem;
}

@media (max-width: 991.98px) {
	.gu-pdp-top,
	.gu-pdp-desc,
	.gu-pdp-reviews__layout,
	.gu-pdp-specs__grid {
		grid-template-columns: 1fr;
	}

	.gu-pdp-gallery {
		grid-template-columns: 1fr;
	}

	.gu-pdp-thumbs {
		flex-direction: row;
		order: 2;
		overflow-x: auto;
	}

	.gu-pdp-main-img {
		order: 1;
		min-height: 300px;
	}

	.gu-pdp-zoom-pane,
	.gu-pdp-zoom-lens {
		display: none !important;
	}

	.gu-pdp-highlights {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gu-pdp-trust {
		grid-template-columns: 1fr;
	}

	.gu-pdp-actions {
		grid-template-columns: 1fr;
	}

	.gu-pdp-qty {
		justify-self: start;
	}
}

@media (max-width: 575.98px) {
	.gu-pdp-ship__tabs,
	.gu-pdp-ship__zip {
		grid-template-columns: 1fr;
	}

	.gu-pdp-tabs__nav {
		gap: .15rem 1rem;
	}

	.gu-pdp-tabs__nav button {
		font-size: .88rem;
	}
}

@media (hover: none) {
	.gu-pdp-zoom-pane,
	.gu-pdp-zoom-lens {
		display: none !important;
	}
}
