/* ==========================================================
   Single Product Page (PDP) — Gucci Child Theme
   ========================================================== */

/* ── Breadcrumbs ──────────────────────────────────────── */
.gc-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 6px;
	padding: 16px 0;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #888;
}
.gc-breadcrumbs a {
	color: #888;
	text-decoration: none;
	transition: color 0.2s;
}
.gc-breadcrumbs a:hover {
	color: #1a1a1a;
}
.gc-breadcrumbs__sep {
	color: #bbb;
}
.gc-breadcrumbs [aria-current="page"] {
	color: #1a1a1a;
}

/* ── Page wrapper ─────────────────────────────────────── */
.gc-pdp-page {
	background: #fff;
}

/* ── PDP grid ─────────────────────────────────────────── */
.gc-pdp {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding-top: 24px;
	padding-bottom: 24px;
	align-items: start;
}
@media (min-width: 900px) {
	.gc-pdp {
		grid-template-columns: 1.4fr 1fr;
		gap: 80px;
		padding-top: 30px;
		padding-bottom: 32px;
	}
}

/* ── Gallery — main 1:1 + 2-col thumbs ────────────────── */
.gc-pdp__gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
}

/* Main image — full width, large 1:1 */
.gc-pdp__image.is-main {
	grid-column: 1 / -1;
	aspect-ratio: 1 / 1;
}

/* Thumbnail images — half width, 1:1 */
.gc-pdp__image {
	aspect-ratio: 1 / 1;
	background-color: #f5f1ea;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.gc-pdp__image-link {
	position: absolute;
	inset: 0;
	display: block;
	cursor: zoom-in;
}

/* ── Mobile: gallery becomes a swipe carousel (one image per view) ── */
.gc-pdp__gallery-bars { display: none; }
.gc-pdp__gallery-wrap { min-width: 0; }
@media (max-width: 767px) {
	.gc-pdp__gallery-wrap { max-width: 100%; }
	.gc-pdp__gallery {
		display: flex;
		grid-template-columns: none;
		gap: 0;
		min-width: 0;
		max-width: 100%;
		overflow-x: auto;
		overscroll-behavior-x: contain;   /* don't chain the swipe to the page */
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.gc-pdp__gallery::-webkit-scrollbar { display: none; }
	.gc-pdp__image,
	.gc-pdp__image.is-main {
		flex: 0 0 100%;
		width: 100%;
		min-width: 0;
		grid-column: auto;
		aspect-ratio: 1 / 1;
		scroll-snap-align: start;
	}
	/* Full-width segments just under the image — like the shop cards.
	   Shown only when there is more than one image (JS toggles .has-carousel). */
	.gc-pdp__gallery-wrap.has-carousel .gc-pdp__gallery-bars {
		display: flex;
		gap: 3px;
		margin-top: 6px;
		padding: 0 2px;
	}
	.gc-pdp__gallery-bar {
		flex: 1;
		height: 2px;
		background: rgba(0, 0, 0, .18);
		transition: background .2s ease;
	}
	.gc-pdp__gallery-bar.is-active { background: #111; }
}

/* ── Lightbox ─────────────────────────────────────────── */
.gc-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
}
.gc-lightbox.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}
.gc-lightbox__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
}
.gc-lightbox__wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 60px 80px;
	box-sizing: border-box;
}
.gc-lightbox__stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	max-width: 900px;
}
.gc-lightbox__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	transition: opacity 0.2s;
}
.gc-lightbox__img.is-loading {
	opacity: 0;
}
.gc-lightbox__close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	padding: 8px;
	z-index: 1;
	opacity: 0.8;
	transition: opacity 0.15s;
}
.gc-lightbox__close:hover {
	opacity: 1;
}
.gc-lightbox__prev,
.gc-lightbox__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 20px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.15s;
	z-index: 1;
}
.gc-lightbox__prev:hover,
.gc-lightbox__next:hover {
	background: rgba(255, 255, 255, 0.25);
}
.gc-lightbox__prev {
	left: 16px;
}
.gc-lightbox__next {
	right: 16px;
}
.gc-lightbox__counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	letter-spacing: 0.08em;
	z-index: 1;
}

@media (max-width: 767px) {
	.gc-lightbox__wrap {
		padding: 56px 12px 48px;
	}
	.gc-lightbox__prev {
		left: 8px;
	}
	.gc-lightbox__next {
		right: 8px;
	}
}

/* ── Info column ──────────────────────────────────────── */
.gc-pdp__info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media (min-width: 900px) {
	.gc-pdp__info {
		position: sticky;
		top: var(--gc-header-h, 140px);
		align-self: start;
	}
}

.gc-pdp__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: none;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.2;
}

.gc-pdp__attrs {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}
.gc-pdp__attrs li {
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #888;
	line-height: 1.8;
}
.gc-pdp__condition {
	color: #1a1a1a;
	font-weight: 700;
}

/* ── Price ────────────────────────────────────────────── */
.gc-pdp__price-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.gc-pdp__price {
	margin: 0;
}
/* Current / sale price — bold + dark (matches the shop card now-price) */
.gc-pdp__price .woocommerce-Price-amount,
.gc-pdp__price .price {
	font-size: 26px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: 0.02em;
}
.gc-pdp__price ins {
	text-decoration: none;
}
.gc-pdp__price ins .woocommerce-Price-amount {
	color: #1a1a1a;
	font-weight: 700;
}
/* Original price — grey + strikethrough, smaller */
.gc-pdp__price del {
	margin-right: 8px;
	text-decoration: line-through;
}
.gc-pdp__price del .woocommerce-Price-amount {
	font-size: 18px;
	font-weight: 400;
	color: #999;
}
/* Discount % badge beside the price (matches the shop sale badge) */
.gc-pdp__discount {
	display: inline-flex;
	align-items: center;
	background: #111;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 5px 9px;
	border-radius: 2px;
}
.gc-pdp__discount[hidden] {
	display: none;
}

/* ── Auth badge ───────────────────────────────────────── */
.gc-pdp__auth-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f5f1ea;
	padding: 10px 14px;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1a1a1a;
	font-weight: 400;
	width: fit-content;
	margin-bottom: 0;
}
.gc-pdp__auth-badge svg {
	flex-shrink: 0;
	color: #1a1a1a;
	width: 14px;
	height: 14px;
}

/* ── Color swatches ───────────────────────────────────── */
.gc-pdp__variants {
	margin: 0;
}
.gc-pdp__variant-label {
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #888;
	margin: 0 0 10px;
}
.gc-pdp__variant-label strong {
	color: #1a1a1a;
	font-weight: 500;
}
.gc-pdp__swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.gc-pdp__swatch {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid transparent;
	padding: 0;
	cursor: pointer;
	transition: border-color 0.15s, transform 0.15s;
	position: relative;
	outline: none;
}
.gc-pdp__swatch:hover {
	transform: scale(1.1);
}
.gc-pdp__swatch.is-selected {
	border-color: #1a1a1a;
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1a1a1a;
}
.gc-pdp__swatch[data-light="1"].is-selected {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #888;
	border-color: #888;
}
.gc-pdp__swatch.is-out-of-stock {
	opacity: 0.45;
}
.gc-pdp__swatch.is-out-of-stock::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: linear-gradient(135deg, transparent 45%, #ccc 45%, #ccc 55%, transparent 55%);
}

/* Image swatches — variation main image instead of a colour circle */
.gc-pdp__swatch--image {
	width: 72px;
	height: 72px;
	border-radius: 0;
	border: 1px solid #e0ddd5;
	background: #f5f1ea;
	overflow: hidden;
}
.gc-pdp__swatch--image img,
.gc-pdp__swatch--image .gc-pdp__swatch-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gc-pdp__swatch--image:hover { transform: none; border-color: #b9b2a5; }
.gc-pdp__swatch--image.is-selected {
	border-color: #1a1a1a;
	box-shadow: 0 0 0 1px #1a1a1a;
}
.gc-pdp__swatch--image.is-out-of-stock::after {
	border-radius: 0;
	background: linear-gradient(135deg, transparent 46%, rgba(120,120,120,.6) 46%, rgba(120,120,120,.6) 54%, transparent 54%);
}

/* ── Add to Cart form ─────────────────────────────────── */
.gc-pdp__cart-wrap {
	margin: 0;
}

/* Hide default WC variation table header/labels */
.gc-pdp__cart-wrap .variations {
	display: none !important;
}
.gc-pdp__cart-wrap .woocommerce-variation {
	display: none !important;
}
.gc-pdp__cart-wrap .quantity {
	display: none !important;
}
.gc-pdp__cart-wrap .variations_form .variations_button {
	display: block;
}
/* Add to cart button — override WooCommerce + parent theme */
.gc-pdp__cart-wrap .single_add_to_cart_button,
.gc-pdp__cart-wrap .button.alt,
.gc-pdp__cart-wrap .button {
	display: block !important;
	width: 100% !important;
	padding: 16px 24px !important;
	background: #1a1a1a !important;
	background-color: #1a1a1a !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	border: none !important;
	border-radius: 0 !important;
	cursor: pointer !important;
	transition: background 0.2s !important;
	text-align: center !important;
	box-shadow: none !important;
	line-height: 1.2 !important;
}
.gc-pdp__cart-wrap .single_add_to_cart_button:hover,
.gc-pdp__cart-wrap .button.alt:hover,
.gc-pdp__cart-wrap .button:hover {
	background: #333 !important;
	background-color: #333 !important;
}
.gc-pdp__cart-wrap .single_add_to_cart_button.disabled,
.gc-pdp__cart-wrap .single_add_to_cart_button[disabled],
.gc-pdp__cart-wrap .button.disabled,
.gc-pdp__cart-wrap .button[disabled] {
	background: #ccc !important;
	background-color: #ccc !important;
	cursor: not-allowed !important;
}

/* ── Wishlist button ──────────────────────────────────── */
.gc-pdp__wishlist {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 13px 24px;
	background: transparent;
	border: 1.5px solid #1a1a1a;
	color: #1a1a1a;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	margin: 0;
}
.gc-pdp__wishlist:hover,
.gc-pdp__wishlist.is-active {
	background: #1a1a1a;
	color: #fff;
}
.gc-pdp__wishlist.is-active .gc-pdp__wishlist-icon {
	fill: #fff;
}
.gc-pdp__wishlist-icon {
	flex-shrink: 0;
	transition: fill 0.2s;
}

/* ── Title row + wishlist heart (top-right) ───────────── */
.gc-pdp__title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 11px;
}
.gc-pdp__title-row .gc-pdp__title { margin: 0; flex: 1 1 auto; }

.gc-pdp__wishlist--heart {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	width: auto;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	color: #1a1a1a;
}
.gc-pdp__wishlist--heart:hover,
.gc-pdp__wishlist--heart.is-active {
	background: transparent;
	color: #c0392b;
}
.gc-pdp__wishlist--heart .gc-pdp__wishlist-icon { width: 22px; height: 22px; }
.gc-pdp__wishlist--heart.is-active .gc-pdp__wishlist-icon path { fill: #c0392b; }

/* ── Buy It Now (outline, under Add to cart) ──────────── */
/* Purchase group: Add to Cart / Buy It Now / payments tightly spaced,
   independent of the .gc-pdp__info column gap that otherwise pushed them apart. */
.gc-pdp__purchase {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.gc-pdp__cart-wrap { margin: 0; }
.gc-pdp__cart-wrap .single_variation_wrap,
.gc-pdp__cart-wrap .woocommerce-variation-add-to-cart,
.gc-pdp__cart-wrap form.cart { margin: 0 !important; }

.gc-pdp__buynow {
	display: block;
	width: 100%;
	padding: 15px 24px;
	margin-top: 0;
	background: transparent;
	border: 1.5px solid #1a1a1a;
	color: #1a1a1a;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.gc-pdp__buynow:hover { background: #1a1a1a; color: #fff; }

/* ── Accepted payment icons ───────────────────────────── */
.gc-pdp__payments {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 2px 0 0;
}
.gc-pdp__pay { display: inline-flex; line-height: 0; }
.gc-pdp__pay svg { display: block; height: 40px; width: 40px; }

/* ── PayPal "Buy now, pay later" messaging ────────────── */
.gc-pdp__paylater {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 7px;
	margin: 4px 0 0;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 0.03em;
	line-height: 1.35;
	color: #888;
}
.gc-pdp__paylater-mark {
	height: 15px;
	width: auto;
	flex-shrink: 0;
}
.gc-pdp__paylater-brand {
	font-weight: 700;
	font-style: italic;
	margin-right: 1px;
}
.gc-pdp__paylater-brand .gc-pp-a { color: #003087; }
.gc-pdp__paylater-brand .gc-pp-b { color: #0070e0; }
.gc-pdp__paylater-text a,
.gc-pdp__paylater-learn {
	color: #888;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.gc-pdp__paylater-learn {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	cursor: pointer;
}
.gc-pdp__paylater-text a:hover,
.gc-pdp__paylater-learn:hover { color: #0070e0; }

/* ── PayPal Pay Later modal ───────────────────────────── */
html.gc-paylater-open { overflow: hidden; }
.gc-paylater-modal[hidden] { display: none; }
.gc-paylater-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.gc-paylater-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.55);
}
.gc-paylater-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 440px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: #fff;
	border-radius: 10px;
	padding: 30px 28px 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	font-family: 'Inter', sans-serif;
	outline: none;
}
.gc-paylater-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: 0;
	font-size: 26px;
	line-height: 1;
	color: #6b7176;
	cursor: pointer;
	padding: 4px 8px;
}
.gc-paylater-modal__close:hover { color: #111; }
.gc-paylater-modal__brand {
	display: flex;
	align-items: center;
	gap: 7px;
}
.gc-paylater-modal__brand .gc-pdp__paylater-mark { height: 22px; width: auto; }
.gc-paylater-modal__brand .gc-pdp__paylater-brand { font-size: 17px; font-style: italic; font-weight: 700; }
.gc-paylater-modal__title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 14px 0 6px;
}
.gc-paylater-modal__sub {
	font-size: 13.5px;
	line-height: 1.5;
	color: #555;
	margin: 0 0 20px;
}
.gc-paylater-modal__options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.gc-paylater-opt {
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	padding: 15px 16px;
}
.gc-paylater-opt__badge {
	display: inline-block;
	background: #003087;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.01em;
	padding: 4px 10px;
	border-radius: 4px;
}
.gc-paylater-opt__amount {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 11px 0 4px;
}
.gc-paylater-opt__desc {
	font-size: 13px;
	line-height: 1.5;
	color: #666;
	margin: 0;
}
.gc-paylater-modal__legal {
	font-size: 11px;
	line-height: 1.5;
	color: #999;
	margin: 18px 0 0;
}

/* ── Delivery dates ───────────────────────────────────── */
.gc-pdp__shipping {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 0;
	border-top: 1px solid #e8e2d5;
	border-bottom: 1px solid #e8e2d5;
	margin: 0;
	font-size: 13px;
	color: #555;
}
.gc-pdp__shipping svg {
	flex-shrink: 0;
	color: #888;
}
.gc-pdp__shipping strong {
	color: #1a1a1a;
	font-weight: 600;
}

/* ── Accordion ────────────────────────────────────────── */
.gc-pdp__accordion {
	border-top: 1px solid #ececec;
	margin: 0;
}

.gc-pdp__acc-item {
	border-bottom: 1px solid #e8e2d5;
}

.gc-pdp__acc-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 18px 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1a1a1a;
	text-align: left;
}

.gc-pdp__acc-chevron {
	flex-shrink: 0;
	transition: transform 0.25s ease;
}
.gc-pdp__acc-trigger[aria-expanded="true"] .gc-pdp__acc-chevron {
	transform: rotate(180deg);
}

.gc-pdp__acc-body {
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	max-height: 0;
	opacity: 0;
}
.gc-pdp__acc-body.is-open {
	opacity: 1;
}

.gc-pdp__acc-content {
	padding: 0 0 20px;
	font-size: 13px;
	line-height: 1.75;
	color: #555;
}
.gc-pdp__acc-content p {
	margin: 0 0 12px;
}
.gc-pdp__acc-content p:last-child {
	margin-bottom: 0;
}
.gc-pdp__acc-content a {
	color: #1a1a1a;
	text-decoration: underline;
}
.gc-pdp__acc-content ul,
.gc-pdp__acc-content ol {
	padding-left: 20px;
	margin: 0 0 12px;
}

/* ── Sticky CTA (mobile + desktop) — slides up when the main add-to-cart
      area scrolls out of view; hidden off-screen via transform until then. ── */
.gc-pdp-sticky {
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: #fff;
	border-top: 1px solid #e8e2d5;
	padding: 10px 0 12px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}
.gc-pdp-sticky.is-visible {
	transform: translateY(0);
}
.gc-pdp-sticky__inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
/* Product thumbnail — desktop only (hidden on the compact mobile bar) */
.gc-pdp-sticky__thumb { display: none; }
/* Swatches row — shown only for variable products */
.gc-pdp-sticky__swatches-row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.gc-pdp-sticky__color-label {
	font-size: 11px;
	letter-spacing: 0.06em;
	color: #888;
	white-space: nowrap;
	flex-shrink: 0;
	/* Pin the (variable-width) colour name to the right edge so switching
	   variations moves only the label, never the swatches. */
	order: 2;
	margin-left: auto;
	text-align: right;
}
.gc-pdp-sticky__color-label strong {
	color: #1a1a1a;
	font-weight: 500;
}
.gc-pdp-sticky__swatches {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	order: 1;
}
/* Sticky swatches reuse the image swatch, just smaller */
.gc-pdp-sticky__swatch.gc-pdp__swatch {
	width: 30px;
	height: 30px;
}
/* Actions row */
.gc-pdp-sticky__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.gc-pdp-sticky__info {
	flex: 1;
	min-width: 0;
}
.gc-pdp-sticky__name {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #1a1a1a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* Price styled like the main PDP price: bold dark current, grey struck old, badge */
.gc-pdp-sticky__price-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.gc-pdp-sticky__price {
	display: inline-block;
	font-size: 13px;
	color: #1a1a1a;
}
.gc-pdp-sticky__price ins {
	text-decoration: none;
	background: transparent;
}
.gc-pdp-sticky__price .woocommerce-Price-amount,
.gc-pdp-sticky__price ins .woocommerce-Price-amount {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
}
.gc-pdp-sticky__price del,
.gc-pdp-sticky__price del .woocommerce-Price-amount {
	font-size: 12px;
	font-weight: 400;
	color: #999;
}
.gc-pdp-sticky__discount {
	display: inline-flex;
	align-items: center;
	background: #111;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 4px 6px;
	border-radius: 2px;
}
.gc-pdp-sticky__discount[hidden] { display: none; }
.gc-pdp-sticky__btn {
	padding: 12px 20px;
	background: #1a1a1a;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	white-space: nowrap;
}

/* Desktop: group everything toward the centre + larger swatches & price.
   Kicks in at 1024px — below that the compact mobile bar is used (the
   horizontal layout gets cramped around ~820px). */
@media (min-width: 1024px) {
	.gc-pdp-sticky { padding: 12px 0 14px; }
	/* Desktop: the product (thumb + swatches + name/price) sits on the LEFT,
	   the Add to Cart button is pinned to the far RIGHT. */
	.gc-pdp-sticky__inner {
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 20px;
		max-width: none; /* span full width so product hugs the left, button the right */
	}
	/* Product thumbnail — desktop only */
	.gc-pdp-sticky__thumb {
		display: block;
		flex: 0 0 auto;
		width: 52px;
		height: 52px;
		border-radius: 4px;
		overflow: hidden;
		background: #f4f2ee;
	}
	.gc-pdp-sticky__thumb img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.gc-pdp-sticky__swatches-row,
	.gc-pdp-sticky__actions { gap: 18px; }
	/* Actions fill the remaining width → info stays left, button pinned right. */
	.gc-pdp-sticky__actions { flex: 1 1 auto; justify-content: space-between; }
	/* Undo the mobile right-pin so the colour label sits next to the swatches.
	   Reserve a fixed-width slot (fits the longest colour name) so switching
	   variations never changes the row width → the right side stays put. */
	.gc-pdp-sticky__color-label {
		order: 2;
		margin-left: 0;
		text-align: left;
		font-size: 13px;
		flex: 0 0 150px;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.gc-pdp-sticky__swatch.gc-pdp__swatch { width: 46px; height: 46px; }
	.gc-pdp-sticky__info { flex: 0 0 auto; }
	.gc-pdp-sticky__name { font-size: 15px; }
	/* Reserve a fixed width for the price row (fits the priciest sale combo:
	   struck old + bold new + −%% badge) so switching variations — or the
	   badge showing/hiding — never changes its width → right side stays put. */
	.gc-pdp-sticky__price-row { width: 250px; flex-wrap: nowrap; }
	.gc-pdp-sticky__price .woocommerce-Price-amount,
	.gc-pdp-sticky__price ins .woocommerce-Price-amount { font-size: 20px; }
	.gc-pdp-sticky__price del,
	.gc-pdp-sticky__price del .woocommerce-Price-amount { font-size: 15px; }
	.gc-pdp-sticky__discount { font-size: 11px; padding: 5px 8px; }
	.gc-pdp-sticky__btn { padding: 15px 32px; font-size: 12px; }
}

/* ── Price + duties wrapper ───────────────────────────── */
.gc-pdp__price-wrap {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.gc-pdp__duties {
	margin: 0;
	font-size: 11px;
	letter-spacing: 0.04em;
	color: #999;
}

/* ── Estimated delivery ───────────────────────────────── */
/* Override parent theme's .single-product__shipping column layout */
.gc-pdp__delivery.single-product__shipping {
	flex-direction: row !important;
	align-items: center !important;
	gap: 5px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	font-size: 12px;
	letter-spacing: 0.03em;
	color: #888;
}
.gc-pdp__delivery-icon {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
	stroke: #999;
}
.gc-pdp__delivery-date {
	color: #1a1a1a;
	font-weight: 600;
}
.gc-pdp__delivery-worldwide {
	color: #888;
}

/* ── Store Pickup ─────────────────────────────────────── */
.gc-pdp__pickup {
	border: 1px solid #e5e1d8;
	overflow: hidden;
	max-width: 100%;
}
.gc-pdp__pickup-body {
	overflow: hidden;
}
.gc-pdp__pickup-toggle {
	width: 100%;
	background: transparent;
	border: none;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	gap: 8px;
}
.gc-pdp__pickup-toggle-left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.gc-pdp__pickup-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: #555;
}
.gc-pdp__pickup-title {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #1a1a1a;
}
.gc-pdp__pickup-cities {
	display: block;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #888;
	margin-top: 2px;
}
.gc-pdp__pickup-chevron {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: #555;
	transition: transform 0.25s ease;
}
.gc-pdp__pickup-toggle[aria-expanded="true"] .gc-pdp__pickup-chevron {
	transform: rotate(180deg);
}
.gc-pdp__pickup-body {
	padding: 0 16px 16px;
	border-top: 1px solid #e5e1d8;
	padding-top: 18px;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.gc-pdp__pickup-body[hidden] {
	display: none;
}
.gc-pdp__pickup-sep {
	height: 1px;
	background: #e5e1d8;
	margin: 18px 0;
}
.gc-pdp__pickup-loc-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 8px;
	gap: 8px;
	min-width: 0;
}
@media (max-width: 767px) {
	.gc-pdp__pickup-loc-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}
.gc-pdp__pickup-loc-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	line-height: 1;
	display: flex;
	align-items: baseline;
	gap: 6px;
	min-width: 0;
	overflow-wrap: break-word;
	word-break: break-word;
}
.gc-pdp__pickup-loc-flag {
	font-size: 14px;
}
.gc-pdp__pickup-ready {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #2e7d4f;
	font-weight: 600;
	white-space: nowrap;
}
.gc-pdp__pickup-address {
	font-size: 13px;
	line-height: 1.6;
	color: #6b6b6b;
	margin: 0 0 10px;
	overflow-wrap: break-word;
	word-break: break-word;
}
.gc-pdp__pickup-hours {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b6b6b;
	padding-top: 10px;
	border-top: 1px dashed #e5e1d8;
	margin: 0 0 12px;
	overflow-wrap: break-word;
	word-break: break-word;
}
.gc-pdp__pickup-directions {
	display: block;
	text-align: center;
	padding: 10px;
	border: 1px solid #1a1a1a;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	color: #1a1a1a;
	font-weight: 600;
	transition: background 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
	.gc-pdp__pickup-directions:hover {
		background: #1a1a1a;
		color: #fff;
	}
}

/* ── Related products ─────────────────────────────────── */
.gc-pdp-related {
	padding-top: 48px;
	padding-bottom: 64px;
	border-top: 1px solid #e8e2d5;
}
.gc-pdp-related__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 40px;
}
.gc-pdp-related__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: #1a1a1a;
	margin: 0;
	text-align: left;
}
.gc-pdp-related__nav {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}
.gc-pdp-related__arrow {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid #d8d2c6;
	background: #fff;
	color: #1a1a1a;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.gc-pdp-related__arrow svg { width: 18px; height: 18px; display: block; }
.gc-pdp-related__arrow:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.gc-pdp-related__arrow:disabled,
.gc-pdp-related__arrow.swiper-button-disabled { opacity: .3; cursor: default; }
.gc-pdp-related__arrow:disabled:hover,
.gc-pdp-related__arrow.swiper-button-disabled:hover { background: #fff; color: #1a1a1a; border-color: #d8d2c6; }
/* Not enough slides to scroll → Swiper locks the arrows; hide them. */
.gc-pdp-related__arrow.swiper-button-lock { display: none; }

/* Swiper carousel: 4 slides per view on desktop, 2 on mobile (see JS).
   These pre-size the slides in our own (head) CSS so there's no full-width
   flash before Swiper's CDN CSS/JS load and take over the inline sizing. */
.gc-related-swiper { width: 100%; overflow: hidden; }
.gc-related-swiper .swiper-wrapper { display: flex; }
.gc-related-swiper .swiper-slide {
	flex-shrink: 0;
	width: calc((100% - 10px) / 2); /* 2 per view (mobile / tablet) */
	height: auto;
}
@media (min-width: 900px) {
	.gc-related-swiper .swiper-slide { width: calc((100% - 48px) / 4); } /* 4 per view */
}
.gc-related-swiper .swiper-slide > .gc-card { height: 100%; }
/* Colour swap in progress — soften the grid until fresh cards arrive. */
.gc-pdp-related--suggested.is-loading .gc-pdp-related__grid {
	opacity: .45;
	transition: opacity .15s ease;
	pointer-events: none;
}
.gc-pdp-related__item {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	background: #f5f1ea;
	overflow: hidden;
	position: relative;
}
.gc-pdp-related__img-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #ede5d6;
	overflow: hidden;
	flex-shrink: 0;
	display: block;
	text-decoration: none;
}

.gc-pdp-related__item.gc-card--slider {
	overflow: visible;
}

.gc-card--slider .gc-pdp-related__img-wrap {
	overflow: visible;
}
.gc-pdp-related__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transition: transform 0.3s ease;
}
@media (hover: hover) {
	.gc-pdp-related__item:not(.gc-card--slider):hover .gc-pdp-related__img-wrap img {
		transform: scale(1.04);
	}
}

.gc-pdp-related__body {
	text-decoration: none;
}
.gc-pdp-related__body a {
	text-decoration: none;
	color: inherit;
}
.gc-pdp-related__name {
	font-size: 13px;
	letter-spacing: 0.02em;
	color: #1a1a1a;
	margin: 0 0 6px;
	line-height: 1.4;
}
.gc-pdp-related__price {
	font-size: 13px;
	font-weight: 500;
	color: #1a1a1a;
	margin: 0;
}
.gc-pdp-related__price .woocommerce-Price-amount {
	font-size: 13px;
}
/* Text body sits inside the beige card */
.gc-pdp-related__body {
	padding: 16px 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 767px) {
	.gc-pdp {
		padding-top: 16px;
		padding-bottom: 120px;
		gap: 24px;
	}
	.gc-pdp__info {
		gap: 16px;
	}
	.gc-pdp-sticky {
		display: block;
	}
	.gc-pdp-related {
		padding-top: 32px;
		padding-bottom: 40px;
	}
	.gc-pdp-related__head {
		margin-bottom: 24px;
		gap: 10px;
	}
	.gc-pdp-related__arrow { width: 36px; height: 36px; }
	.gc-pdp-related__arrow svg { width: 16px; height: 16px; }

	/* Related carousels on phones: one image per card. The inner per-product
	 * image swiper is not mounted here (see main.js) — the outer card carousel
	 * owns the horizontal swipe, and a nested swiper only fights it. So pin the
	 * first photo and hide the now-dead gallery chrome. */
	.gc-related-swiper .gc-card-swiper .swiper-wrapper { display: block; }
	.gc-related-swiper .gc-card-swiper .swiper-slide { width: 100% !important; }
	.gc-related-swiper .gc-card-swiper .swiper-slide:not(:first-child) { display: none; }
	.gc-related-swiper .gc-card__slider-bars,
	.gc-related-swiper .gc-card__slider-arrow { display: none; }
}

/* Sold out label (PDP) — overlaid on first gallery image */
.gc-pdp__image { position: relative; }
.gc-pdp__sold-out {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 4;
	padding: 8px 16px;
	background: #111;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	line-height: 1;
	pointer-events: none;
}

/* ───────────────────────── Write-a-review CTA + modal ───────────────────────── */
.gc-review-cta {
	display: flex;
	justify-content: center;
	margin: 24px auto 48px;
}
/* When JS moves the button into the parent's pagination row, lay them side by side */
.reviews-block__pagination.gc-pagination--has-review-btn {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
/* Both review buttons — identical white bg / black text, same box size */
.gc-review-cta__btn,
.reviews-block .reviews-block__load-more {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .02em;
	padding: 13px 30px;
	min-width: 210px;
	box-sizing: border-box;
	text-align: center;
	background: #fff;
	color: #111;
	border: 1px solid #111;
	border-radius: 2px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.gc-review-cta__btn:hover,
.reviews-block .reviews-block__load-more:hover {
	background: #111;
	color: #fff;
}

.gc-review-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.gc-review-modal[hidden] { display: none; }
.gc-review-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .55);
}
.gc-review-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 4px;
	padding: 32px 28px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.gc-review-modal__close {
	position: absolute;
	top: 12px;
	right: 16px;
	font-size: 28px;
	line-height: 1;
	background: none;
	border: 0;
	cursor: pointer;
	color: #555;
}
.gc-review-modal__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 26px;
	font-weight: 600;
	margin: 0 0 20px;
}

.gc-review-form__row {
	display: block;
	margin-bottom: 18px;
}
.gc-review-form__label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 6px;
	color: #222;
}
.gc-review-form__label small { color: #888; font-weight: 400; }
.gc-review-form input[type="text"],
.gc-review-form textarea {
	width: 100%;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 2px;
	box-sizing: border-box;
}
.gc-review-form textarea { resize: vertical; }
.gc-review-form__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.gc-review-stars { display: inline-flex; gap: 2px; }
.gc-review-stars__star {
	font-size: 26px;
	line-height: 1;
	background: none;
	border: 0;
	padding: 0 2px;
	cursor: pointer;
	color: #d6d6d6;
	transition: color .12s ease;
}
.gc-review-stars__star.is-active,
.gc-review-stars.is-hovering .gc-review-stars__star.is-hover { color: #111; }

.gc-review-form__feedback {
	font-size: 13px;
	margin-bottom: 12px;
	min-height: 18px;
}
.gc-review-form__feedback.is-error { color: #c0392b; }
.gc-review-form__feedback.is-success { color: #1e7e34; }

.gc-review-form__submit {
	width: 100%;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 13px;
	background: #111;
	color: #fff;
	border: 1px solid #111;
	border-radius: 2px;
	cursor: pointer;
	transition: opacity .2s ease;
}
.gc-review-form__submit:disabled { opacity: .55; cursor: default; }
body.gc-review-modal-open { overflow: hidden; }
