/* Pendant page — node 1:1675. All selectors scoped under .pg-pendant. */

.pg-pendant { overflow-x: hidden; }

/* Hero */
.pg-pendant .pd-hero {
	position: relative;
	height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pg-pendant .pd-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 25%;
}
.pg-pendant .pd-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
}
.pg-pendant .pd-hero__content {
	position: relative;
	z-index: 1;
	width: 437px;
	max-width: calc(100% - 40px);
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.pg-pendant .pd-hero__title { font-family: var(--font-heading); font-size: 48px; font-weight: 400; }
.pg-pendant .pd-hero__subtitle { font-size: 16px; letter-spacing: 0.48px; }
.pg-pendant .pd-hero__content .btn { margin-top: 10px; }

/* Category cards — Men / Women / Unisex */
.pg-pendant .pd-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.pg-pendant .pd-card {
	position: relative;
	aspect-ratio: 1;
	border-radius: 10px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 30px;
	gap: 16px;
}
.pg-pendant .pd-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(26, 5, 4, 0) 68%, rgba(26, 5, 4, 0.2) 100%);
}
.pg-pendant .pd-card__label {
	position: relative;
	z-index: 1;
	color: #fff;
	font-family: var(--font-heading);
	font-size: 22px;
}
.pg-pendant .pd-card .btn { position: relative; z-index: 1; }

/* Shop by Category — circular tiles */
.pg-pendant .pd-shopcat { background: #f7f9fb; }
.pg-pendant .pd-circles {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
	justify-items: center;
}
.pg-pendant .pd-circle { text-align: center; width: 100%; max-width: 168px; }
.pg-pendant .pd-circle__disc {
	position: relative;
	width: 168px;
	max-width: 100%;
	aspect-ratio: 1;
	margin: 0 auto;
	background: url('/wp-content/themes/jeweler/assets/img/pendant/circle.svg') center / contain no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pg-pendant .pd-circle__disc img {
	width: 66%;
	height: 66%;
	object-fit: contain;
}
.pg-pendant .pd-circle__label {
	margin-top: 18px;
	font-family: var(--font-heading);
	font-size: 22px;
	color: #242424;
	line-height: 1.25;
}

/* Popular Products */
.pg-pendant .pd-products__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 27px;
}
.pg-pendant .pd-product { display: block; }
.pg-pendant .pd-product__media {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 1;
	background: #d9d9d9;
}
.pg-pendant .pd-product__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-pendant .pd-product__name {
	display: block;
	margin-top: 20px;
	font-size: 16px;
	text-transform: capitalize;
	line-height: 1.5;
}
.pg-pendant .pd-product__price {
	display: block;
	margin-top: 12px;
	font-size: 16px;
	font-weight: 700;
	color: #242424;
}

/* Gallery strip */
.pg-pendant .pd-strip {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}
.pg-pendant .pd-strip__item { aspect-ratio: 239 / 400; }
.pg-pendant .pd-strip__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Responsive */
@media (max-width: 1024px) {
	.pg-pendant .pd-cards__grid { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
	.pg-pendant .pd-circles { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
	.pg-pendant .pd-products__grid { grid-template-columns: 1fr 1fr; }
	.pg-pendant .pd-strip { grid-template-columns: repeat(3, 1fr); }
	.pg-pendant .pd-circle__label { font-size: 18px; }
}
@media (max-width: 640px) {
	.pg-pendant .pd-hero__title { font-size: 36px; }
	.pg-pendant .pd-cards__grid { grid-template-columns: 1fr; }
	.pg-pendant .pd-circles { grid-template-columns: 1fr 1fr; }
	.pg-pendant .pd-products__grid { grid-template-columns: 1fr; }
	.pg-pendant .pd-strip { grid-template-columns: repeat(2, 1fr); }
}
