/* Pure Jewelry — product-page (PDP) enhancement layer.
   Loads only on single product pages. Prefixed `pure-pdp-`; removable. */

:root {
	--pure-pdp-forest: #6b4c32;
	--pure-pdp-ink: #211f1b;
	--pure-pdp-line: #e3ddd0;
	--pure-pdp-paper: #fbf8f1;
}

/* --- Trust row under the add-to-cart buttons -------------------------------- */
.pure-pdp-trust {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 20px;
	margin: 22px 0 4px;
	padding: 18px 20px;
	list-style: none;
	background: var(--pure-pdp-paper);
	border: 1px solid var(--pure-pdp-line);
	border-radius: 3px;
	font-family: "Assistant", Arial, Helvetica, sans-serif;
}

.pure-pdp-trust li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.3;
	color: #43403a;
}

.pure-pdp-trust li::before {
	content: none;
}

.pure-pdp-trust__i {
	display: inline-flex;
	flex: none;
	color: var(--pure-pdp-forest);
}

.pure-pdp-trust .amount {
	white-space: nowrap;
	font-weight: 600;
	color: var(--pure-pdp-forest);
}

@media (max-width: 480px) {
	.pure-pdp-trust {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 16px;
	}
}

/* --- Size guide ------------------------------------------------------------- */
.pure-sizeguide-open {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 8px 0 16px;
	padding: 9px 16px;
	background: var(--pure-pdp-paper);
	border: 1px solid var(--pure-pdp-forest);
	border-radius: 3px;
	color: var(--pure-pdp-forest);
	font-family: "Assistant", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease;
}

.pure-sizeguide-open:hover {
	background: var(--pure-pdp-forest);
	color: #fffefb;
}

.pure-sizeguide[hidden] {
	display: none;
}

.pure-sizeguide {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	font-family: "Assistant", Arial, Helvetica, sans-serif;
}

.pure-sizeguide__overlay {
	position: absolute;
	inset: 0;
	background: rgba(60, 44, 30, .5);
	backdrop-filter: blur(2px);
}

.pure-sizeguide__dialog {
	position: relative;
	width: min(560px, 100%);
	max-height: 88vh;
	overflow-y: auto;
	background: #fffefb;
	border-radius: 4px;
	padding: 32px clamp(20px, 4vw, 40px) 28px;
	box-shadow: 0 30px 80px -30px rgba(60, 44, 30, .6);
	animation: pure-sg-in .3s cubic-bezier(.22, .61, .36, 1);
}

@keyframes pure-sg-in {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: none; }
}

.pure-sizeguide__x {
	position: absolute;
	inset-block-start: 12px;
	inset-inline-start: 14px;
	width: 34px;
	height: 34px;
	background: none;
	border: 0;
	font-size: 26px;
	line-height: 1;
	color: #6e6960;
	cursor: pointer;
}

.pure-sizeguide__title {
	margin: 0 0 18px;
	font-size: 26px;
	font-weight: 400;
	color: var(--pure-pdp-ink);
}

.pure-sizeguide__tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--pure-pdp-line);
}

.pure-sizeguide__tab {
	padding: 8px 14px;
	background: none;
	border: 0;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	font-family: inherit;
	font-size: 15px;
	color: #6e6960;
	cursor: pointer;
	transition: color .2s ease, border-color .2s ease;
}

.pure-sizeguide__tab.is-active {
	color: var(--pure-pdp-forest);
	border-bottom-color: var(--pure-pdp-forest);
	font-weight: 600;
}

.pure-sizeguide__panel[hidden] {
	display: none;
}

.pure-sizeguide__table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 22px;
	font-size: 14px;
}

.pure-sizeguide__table th,
.pure-sizeguide__table td {
	padding: 10px 12px;
	text-align: center;
	border-bottom: 1px solid var(--pure-pdp-line);
}

.pure-sizeguide__table th {
	background: var(--pure-pdp-paper);
	font-weight: 600;
	color: var(--pure-pdp-forest);
}

.pure-sizeguide__table tbody tr:hover {
	background: #fbf8f1;
}

.pure-sizeguide__how {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 600;
	color: var(--pure-pdp-ink);
}

.pure-sizeguide__steps {
	margin: 0 0 18px;
	padding-inline-start: 20px;
	color: #4a463f;
	font-size: 14px;
	line-height: 1.7;
}

.pure-sizeguide__steps li {
	margin-bottom: 6px;
}

.pure-sizeguide__note {
	margin: 0;
	padding-top: 16px;
	border-top: 1px solid var(--pure-pdp-line);
	font-size: 13px;
	color: #6e6960;
}

@media (prefers-reduced-motion: reduce) {
	.pure-sizeguide__dialog { animation: none; }
}

/* --- Sticky mobile add-to-cart bar ----------------------------------------- */
.pure-pdp-sticky {
	position: fixed;
	inset-inline: 0;
	inset-block-end: 0;
	z-index: 190;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 16px;
	background: #fffefb;
	border-top: 1px solid var(--pure-pdp-line);
	box-shadow: 0 -8px 24px -18px rgba(60, 44, 30, .55);
	font-family: "Assistant", Arial, Helvetica, sans-serif;
	transform: translateY(100%);
	transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.pure-pdp-sticky[hidden] {
	display: flex; /* keep in layout so it can slide; visibility via .is-visible */
}

.pure-pdp-sticky.is-visible {
	transform: translateY(0);
}

.pure-pdp-sticky__info {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.pure-pdp-sticky__img {
	width: 46px;
	height: 46px;
	object-fit: cover;
	border-radius: 3px;
	flex: none;
}

.pure-pdp-sticky__text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.pure-pdp-sticky__text strong {
	font-size: 14px;
	font-weight: 600;
	color: var(--pure-pdp-ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 46vw;
}

.pure-pdp-sticky__price {
	font-size: 13px;
	color: var(--pure-pdp-forest);
}

.pure-pdp-sticky__price del {
	color: #9a938a;
	margin-inline-end: 5px;
}

.pure-pdp-sticky__price ins {
	text-decoration: none;
	font-weight: 600;
}

.pure-pdp-sticky__btn {
	flex: none;
	min-height: 46px;
	padding: 0 26px;
	border: 0;
	border-radius: 3px;
	background: var(--pure-pdp-forest);
	color: #fffefb;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color .2s ease;
}

.pure-pdp-sticky__btn:hover {
	background: #523a26;
}

.pure-pdp-sticky__btn.is-loading {
	opacity: .6;
	pointer-events: none;
}

/* Sticky bar is a mobile/tablet closer only. */
@media (min-width: 1025px) {
	.pure-pdp-sticky {
		display: none !important;
	}
}

/* --- Complete the Look strip ------------------------------------------------ */
.pure-look-pdp {
	width: min(100% - 32px, 1320px);
	margin: 8px auto 48px;
	font-family: "Assistant", Arial, Helvetica, sans-serif;
}

.pure-look-pdp__head {
	margin-bottom: 20px;
	text-align: center;
}

.pure-look-pdp__eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .18em;
	color: #4a463f;
}

.pure-look-pdp__head h2 {
	margin: 0;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 400;
	letter-spacing: -.02em;
	color: var(--pure-pdp-ink);
}

.pure-look-pdp__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.pure-look-card {
	min-width: 0;
}

.pure-look-card__media {
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #ede9e1;
}

.pure-look-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}

.pure-look-card__media:hover .pure-look-card__img {
	transform: scale(1.03);
}

.pure-look-card__body {
	padding-top: 12px;
}

.pure-look-card__title {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
}

.pure-look-card__title a {
	color: var(--pure-pdp-ink);
}

.pure-look-card__price {
	font-size: 14px;
	color: var(--pure-pdp-ink);
}

.pure-look-card__price del { color: #9a938a; margin-inline-end: 5px; }
.pure-look-card__price ins { text-decoration: none; color: var(--pure-pdp-forest); }

.pure-look-card__add {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 42px;
	margin-top: 12px;
	padding: 0 14px;
	border: 1px solid var(--pure-pdp-ink);
	font-size: 13px;
	color: var(--pure-pdp-ink);
	transition: color .2s ease, background-color .2s ease;
}

.pure-look-card__add:hover,
.pure-look-card__add.pure-added {
	background: var(--pure-pdp-ink);
	color: #fffefb;
}

.pure-look-card__add + .added_to_cart { display: none !important; }

.pure-look-pdp__all {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
	padding: 18px 22px;
	background: var(--pure-pdp-paper);
	border: 1px solid var(--pure-pdp-line);
	border-radius: 3px;
}

.pure-look-pdp__total {
	font-size: 16px;
	color: var(--pure-pdp-ink);
}

.pure-look-pdp__total .amount { font-weight: 700; color: var(--pure-pdp-forest); }

.pure-look-add-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 28px;
	border: 0;
	border-radius: 3px;
	background: var(--pure-pdp-forest);
	color: #fffefb;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color .2s ease;
}

.pure-look-add-all:hover { background: #523a26; }
.pure-look-add-all.is-loading { opacity: .6; pointer-events: none; }

.pure-look-pdp__live {
	position: absolute;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

@media (max-width: 767px) {
	.pure-look-pdp__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 10px; }
	.pure-look-pdp__grid > .pure-look-card:nth-child(3) { grid-column: 1 / -1; max-width: 60%; margin-inline: auto; }
	.pure-look-pdp__all { flex-direction: column; }
	.pure-look-add-all { width: 100%; justify-content: center; }
}

/* --- Product-info accordion (summary column) ------------------------------- */
.pure-pdp-acc {
	margin: 20px 0 6px;
	border-top: 1px solid var(--pure-pdp-line);
	font-family: "Assistant", Arial, Helvetica, sans-serif;
}

.pure-pdp-acc__item {
	border-bottom: 1px solid var(--pure-pdp-line);
}

.pure-pdp-acc__item > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 2px;
	list-style: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: var(--pure-pdp-ink);
}

.pure-pdp-acc__item > summary::-webkit-details-marker { display: none; }

.pure-pdp-acc__item > summary::after {
	content: "+";
	font-size: 20px;
	font-weight: 400;
	color: var(--pure-pdp-forest);
}

.pure-pdp-acc__item[open] > summary::after { content: "–"; }

.pure-pdp-acc__body {
	padding: 0 2px 16px;
	font-size: 14px;
	line-height: 1.7;
	color: #4a463f;
}

.pure-pdp-acc__body p { margin: 0 0 8px; }

.pure-pdp-acc__link {
	padding: 0;
	background: none;
	border: 0;
	font: inherit;
	font-weight: 600;
	color: var(--pure-pdp-forest);
	cursor: pointer;
}

.pure-recently { margin-top: 40px; }

@media (prefers-reduced-motion: reduce) {
	.pure-pdp-sticky {
		transition: none;
	}

	.pure-look-card__img {
		transition: none;
	}
}

/* PDP customer-voices block (category-matched real quotes, in summary column). */
.pure-pdp-voices {
	margin: 20px 0 4px;
	padding: 18px 20px;
	background: #fbf8f1;
	border: 1px solid #ece5d7;
	border-radius: 6px;
	font-family: "Assistant", Arial, Helvetica, sans-serif;
}

.pure-pdp-voices__title {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .01em;
	color: #6b4c32;
}

.pure-pdp-voice {
	margin: 0;
	padding: 10px 0;
	border-top: 1px solid #ece5d7;
}

.pure-pdp-voice:first-of-type { border-top: 0; padding-top: 0; }

.pure-pdp-voice blockquote {
	margin: 0 0 5px;
	padding: 0;
	border: 0;
	background: none;
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
	color: #3a3630;
}

.pure-pdp-voice blockquote::before,
.pure-pdp-voice blockquote::after { content: none; }

.pure-pdp-voice figcaption {
	font-size: 12px;
	color: #8a857b;
}

/* PDP: remove Share bar + Compare (per brand request). */
.single-product .wd-social-icons,
.single-product .social-share,
.single-product .wd-product-share,
.single-product .product-share,
.single-product .compare-button,
.single-product .wd-compare-btn,
.woocommerce div.product .wd-social-icons { display: none !important; }

/* PDP customer review screenshots (real WhatsApp/IG) + lightbox. */
.pure-pdp-shots { width: min(100% - 32px, 1100px); margin: 24px auto 0; font-family: "Assistant", Arial, sans-serif; }
.pure-pdp-shots__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; margin-bottom: 16px; }
.pure-pdp-shots__stars { color: #c9a86a; letter-spacing: 2px; font-size: 16px; }
.pure-pdp-shots__head strong { font-size: 18px; color: #6b4c32; }
.pure-pdp-shots__head span { font-size: 13px; color: #6e6960; }
.pure-pdp-shots__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pure-pdp-shots .pure-shot { display: block; width: 100%; margin: 0; padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: 10px; overflow: hidden; box-shadow: 0 16px 40px -30px rgba(60,44,30,.5); }
.pure-pdp-shots .pure-shot img { display: block; width: 100%; height: auto; border: 1px solid #ece5d7; border-radius: 10px; }
.pure-lightbox { position: fixed; inset: 0; z-index: 100002; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(17,30,26,.86); }
.pure-lightbox.is-open { display: flex; }
.pure-lightbox img { max-width: min(92vw,520px); max-height: 90vh; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); }
.pure-lightbox__x { position: absolute; top: 18px; inset-inline-end: 20px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,254,251,.92); color: #6b4c32; font-size: 26px; line-height: 1; cursor: pointer; }

/* Reviews block ships 10px wider than the viewport on mobile (negative side
   margins) → 5px horizontal scroll on the whole PDP. Clamp it. */
#reviews, .woocommerce-Reviews { max-width: 100%; overflow-x: hidden; margin-inline: 0 !important; }

/* PDP review carousel: horizontal scroll with many screenshots + roomy quotes grid. */
.pure-pdp-shots__row { display: flex !important; grid-template-columns: none !important; gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 2px 2px 10px; scrollbar-width: thin; }
.pure-pdp-shots .pure-shot { flex: 0 0 auto; width: clamp(150px, 40vw, 200px); }
.pure-pdp-shots .pure-shot img { width: 100%; height: auto; }
.pure-pdp-shots__quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 26px; }
.pure-pdp-quote { margin: 0; padding: 18px 20px; background: #fbf8f1; border: 1px solid #ece5d7; border-radius: 8px; }
.pure-pdp-quote__stars { display: block; color: #c9a86a; letter-spacing: 2px; font-size: 14px; margin-bottom: 8px; }
.pure-pdp-quote blockquote { margin: 0 0 8px; padding: 0; border: 0; background: none; font-style: normal; font-size: 14px; line-height: 1.6; color: #3a3630; }
.pure-pdp-quote blockquote::before, .pure-pdp-quote blockquote::after { content: none; }
.pure-pdp-quote figcaption { font-size: 12px; color: #8a857b; }
