/* Landing Page — scoped under .pg-landing. Figma node 1:462 */

.pg-landing { overflow-x: hidden; }
.pg-landing img { max-width: 100%; }

/* ---------- Hero ---------- */
.pg-landing .lp-hero {
	background: var(--color-grey-bg);
	display: grid;
	grid-template-columns: minmax(0, 830px) 1fr;
	align-items: stretch;
	min-height: 520px;
}
.pg-landing .lp-hero__media {
	position: relative;
	overflow: hidden;
}
.pg-landing .lp-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pg-landing .lp-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.1);
}
.pg-landing .lp-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: 40px 80px;
}
.pg-landing .lp-hero__title {
	font-family: var(--font-heading);
	font-size: 48px;
	font-weight: 400;
	color: #000;
	text-align: center;
	margin: 0;
}
.pg-landing .lp-hero__text {
	font-family: var(--font-body);
	font-size: 14px;
	color: #6d6161;
	letter-spacing: 0.42px;
	margin: 0;
	max-width: 479px;
}

/* ---------- USP marquee ---------- */
.pg-landing .lp-marquee {
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	overflow: hidden;
	padding: 20px 0;
}
.pg-landing .lp-marquee__track {
	display: flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	white-space: nowrap;
	animation: lp-marquee 30s linear infinite;
}
.pg-landing .lp-marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-right: 10px;
	font-family: var(--font-heading);
	font-size: 18px;
	color: #000;
}
.pg-landing .lp-marquee__item img { width: 17px; height: 16px; }
@keyframes lp-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ---------- Category cards ---------- */
.pg-landing .lp-cats {
	padding: 70px 0;
}
.pg-landing .lp-cats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
.pg-landing .lp-cat {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
}
.pg-landing .lp-cat img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pg-landing .lp-cat__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 96px;
	text-align: center;
	font-family: var(--font-heading);
	font-size: 22px;
	color: #fff;
	margin: 0;
	z-index: 1;
}
.pg-landing .lp-cat .btn {
	position: absolute;
	left: 50%;
	bottom: 46px;
	transform: translateX(-50%);
	z-index: 1;
}

/* ---------- Top selling ---------- */
.pg-landing .lp-top__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 27px;
}
.pg-landing .lp-product__media {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	overflow: hidden;
	background: #000;
	margin-bottom: 18px;
}
.pg-landing .lp-product__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pg-landing .lp-product__name {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: #000;
	text-transform: capitalize;
	margin: 0 0 12px;
}
.pg-landing .lp-product__price {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	color: #242424;
	margin: 0;
}

/* ---------- FAQ ---------- */
.pg-landing .lp-faq__title {
	text-align: center;
	margin-bottom: 40px;
}
.pg-landing .lp-faq__list {
	max-width: 850px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.pg-landing .lp-faq-item {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.pg-landing .lp-faq-item__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 80px;
	padding: 24px 29px;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	box-shadow: 0px 44px 18px 0px rgba(161, 161, 161, 0.01), 0px 16px 15px 0px rgba(161, 161, 161, 0.04);
	font-family: var(--font-heading);
	font-size: 20px;
	line-height: 1.5;
	color: #000;
	text-align: left;
	cursor: pointer;
}
.pg-landing .lp-faq-item__arrow {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}
.pg-landing .lp-faq-item.is-open .lp-faq-item__arrow { transform: rotate(180deg); }
.pg-landing .lp-faq-item__a {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: #000;
	max-width: 820px;
	margin: 0;
}

/* ---------- Gallery strip ---------- */
.pg-landing .lp-gallery {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}
.pg-landing .lp-gallery__item {
	aspect-ratio: 239 / 400;
	overflow: hidden;
}
.pg-landing .lp-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.pg-landing .lp-hero {
		grid-template-columns: 1fr;
	}
	.pg-landing .lp-hero__media { min-height: 320px; }
	.pg-landing .lp-hero__content { padding: 40px; text-align: center; align-items: center; }
	.pg-landing .lp-top__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.pg-landing .lp-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
	.pg-landing .lp-hero__title { font-size: 36px; }
	.pg-landing .lp-hero__content { padding: 32px 20px; }
	.pg-landing .lp-cats__grid { grid-template-columns: 1fr; }
	.pg-landing .lp-top__grid { grid-template-columns: 1fr; }
	.pg-landing .lp-gallery { grid-template-columns: repeat(2, 1fr); }
	.pg-landing .lp-faq-item__q { font-size: 17px; padding: 20px; }
	.pg-landing .lp-cat__label { bottom: 80px; }
	.pg-landing .lp-cat .btn { bottom: 30px; }
}
