/**
 * single-product.css — WooCommerce single product page only. Loaded after global.css.
 */

.pdp-crumbs {
	padding: 2.2rem 0 0;
	font-size: .72rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--muted);
}

.pdp-crumbs a:hover {
	color: var(--gold-lt);
}

.pdp {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 3.4rem;
	padding: 2.6rem 0 5rem;
	align-items: start;
}

@media (max-width: 960px) {
	.pdp {
		grid-template-columns: 1fr;
		gap: 2.2rem;
	}
}

.pdp-gallery {
	position: sticky;
	top: 2rem;
}

.pdp-stage {
	border-radius: 26px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #000;
	aspect-ratio: 1;
}

.pdp-stage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .7s cubic-bezier(.2, .8, .25, 1);
}

.pdp-thumbs {
	display: flex;
	gap: .9rem;
	margin-top: 1rem;
}

.pdp-thumbs button {
	width: 84px;
	aspect-ratio: 1;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #000;
	cursor: pointer;
	padding: 0;
	opacity: .55;
	transition: .35s;
}

.pdp-thumbs button.is-active,
.pdp-thumbs button:hover {
	opacity: 1;
	border-color: var(--gold);
}

.pdp-thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pdp-title {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	margin: .9rem 0 .8rem;
}

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

.pdp-rating {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin: 1.2rem 0;
	font-size: .8rem;
	color: var(--muted);
}

.pdp-price-row {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	margin: 1.8rem 0 .4rem;
}

.pdp-price {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 2.4rem;
}

.pdp-was {
	color: var(--muted);
	text-decoration: line-through;
	font-size: 1rem;
}

.pdp-vat {
	font-size: .76rem;
	color: var(--muted);
}

.pdp-opts {
	display: flex;
	gap: .8rem;
	margin: 1.6rem 0;
	flex-wrap: wrap;
}

.pdp-opt {
	flex: 1;
	min-width: 140px;
	padding: 1rem;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, .03);
	cursor: pointer;
	text-align: left;
	color: var(--text);
	font-family: inherit;
	transition: .35s;
}

.pdp-opt.is-active {
	border-color: var(--gold);
	background: rgba(212, 175, 55, .09);
}

.pdp-opt b {
	display: block;
	font-weight: 500;
	font-size: .95rem;
}

.pdp-qty-row {
	display: flex;
	gap: .9rem;
	align-items: stretch;
	margin-top: 1.4rem;
	flex-wrap: wrap;
}

.pdp-qty {
	display: flex;
	align-items: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	overflow: hidden;
}

.pdp-qty-row .pdp-qty button {
	background: none;
	border: 0;
	color: var(--gold);
	width: 44px;
	height: 100%;
	font-size: 1.1rem;
	cursor: pointer;
}

/* Overrides WooCommerce's own default button hover skin (white text),
   which otherwise wins here since it targets bare <button> elements. */
.pdp-qty-row .pdp-qty button:hover,
.pdp-qty-row .pdp-qty button:focus {
	background: none;
	color: var(--gold);
	box-shadow: none;
}

.pdp-qty input {
	width: 42px;
	text-align: center;
	border: 0;
	background: none;
	padding: 0;
	-moz-appearance: textfield;
}

.pdp-assure {
	display: grid;
	gap: .7rem;
	margin-top: 1.8rem;
	font-size: .85rem;
	color: var(--muted);
}

.pdp-assure div {
	display: flex;
	gap: .7rem;
	align-items: center;
}

.pdp-accordion {
	margin-top: 2.2rem;
	border-top: 1px solid var(--line);
}

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

.pdp-accordion summary {
	list-style: none;
	cursor: pointer;
	padding: 1.15rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .78rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold-lt);
}

.pdp-accordion summary::-webkit-details-marker {
	display: none;
}

.pdp-accordion summary svg {
	transition: .35s;
}

.pdp-accordion details[open] summary svg {
	transform: rotate(45deg);
}

.pdp-accordion p {
	color: var(--muted);
	font-size: .92rem;
	padding-bottom: 1.3rem;
	white-space: pre-line;
}

