/* ==========================================================================
   Landing Page Collection — Sample 2 "Premium Showcase"
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
	--lpc2-dark: #1a1e2e;
	--lpc2-darker: #13162a;
	--lpc2-green: #2e7d32;
	--lpc2-green-hover: #256b29;
	--lpc2-gold: #e6a817;
	--lpc2-gray: #ffffff;
	--lpc2-text: #333;
	--lpc2-text-light: #999;
	--lpc2-radius: 12px;
	--lpc2-max-width: 1440px;
}

/* ---------- Container ---------- */
.lpc2-container {
	max-width: var(--lpc2-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lpc2-section-title {
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
	margin: 0 0 32px;
	letter-spacing: -0.3px;
}


/* ==========================================================================
   SECTION 1: HERO — SPLIT LAYOUT
   ========================================================================== */

.lpc2-hero {
	display: flex;
	min-height: 520px;
	overflow: hidden;
}

.lpc2-hero__content {
	flex: 0 0 45%;
	background: var(--lpc2-dark);
	color: #fff;
	padding: 60px 50px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lpc2-hero__image {
	flex: 1;
	position: relative;
	overflow: hidden;
}

.lpc2-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Breadcrumbs */
.lpc2-hero__breadcrumbs {
	font-size: 12px;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, .5);
}

.lpc2-hero__breadcrumbs a {
	color: rgba(255, 255, 255, .6);
	text-decoration: none;
	transition: color .2s;
}

.lpc2-hero__breadcrumbs a:hover {
	color: #fff;
}

.lpc2-hero__sep {
	margin: 0 6px;
}

.lpc2-hero__current {
	color: rgba(255, 255, 255, .8);
}

/* Title */
.lpc2-hero__title {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -1px;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.lpc2-hero__subtitle {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .7);
	margin: 0 0 28px;
	max-width: 400px;
}

/* CTA */
.lpc2-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--lpc2-green);
	color: #fff;
	padding: 14px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all .3s ease;
	width: fit-content;
}

.lpc2-hero__cta:hover {
	background: var(--lpc2-green-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(46, 125, 50, .35);
	color: #fff;
}

/* Hero trust badges */
.lpc2-hero__badges {
	display: flex;
	gap: 16px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.lpc2-hero__badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: rgba(255, 255, 255, .55);
	letter-spacing: .3px;
}

.lpc2-hero__badge-icon {
	font-size: 16px;
}


/* ==========================================================================
   SECTION 2: TRUST / USP BAR
   ========================================================================== */

.lpc2-trust {
	background: var(--lpc2-darker);
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.lpc2-trust__inner {
	max-width: var(--lpc2-max-width);
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 0;
}

.lpc2-trust__item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 20px;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.lpc2-trust__item:last-child {
	border-right: none;
}

.lpc2-trust__icon {
	font-size: 20px;
}

.lpc2-trust__text {
	font-size: 12.5px;
	font-weight: 600;
	color: rgba(255, 255, 255, .85);
	letter-spacing: .3px;
}


/* ==========================================================================
   SECTION 3: SEO CONTENT
   ========================================================================== */

.lpc2-seo {
	background: #fff;
	padding: 40px 0 20px;
}

.lpc2-seo__wrapper {
	max-height: 80px;
	overflow: hidden;
	transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
	position: relative;
}

.lpc2-seo__wrapper.is-expanded {
	max-height: 2000px;
}

.lpc2-seo__wrapper:not(.is-expanded)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40px;
	background: linear-gradient(transparent, #fff);
}

.lpc2-seo__text {
	font-size: 14px;
	line-height: 1.8;
	color: #555;
}

.lpc2-seo__text h2,
.lpc2-seo__text h3 {
	font-size: 16px;
	margin: 12px 0 6px;
	color: #333;
}

.lpc2-seo__toggle {
	display: flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	color: var(--lpc2-green);
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	padding: 8px 0;
	margin-top: 4px;
	transition: color .2s;
}

.lpc2-seo__toggle:hover {
	color: var(--lpc2-green-hover);
}

.lpc2-seo__toggle-icon {
	transition: transform .3s;
}

.lpc2-seo__wrapper.is-expanded~.lpc2-seo__toggle .lpc2-seo__toggle-icon {
	transform: rotate(180deg);
}


/* ==========================================================================
   SECTION 4: PRODUCT GRID + FILTER SIDEBAR
   ========================================================================== */

.lpc2-products {
	background: var(--lpc2-gray);
	padding: 60px 0;
}

/* Layout: sidebar left + grid right */
.lpc2-products__layout {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	position: relative;
}

.lpc2-products__main {
	flex: 1;
	min-width: 0;
	position: relative;
	transition: opacity 0.3s ease;
}

.lpc2-products__main.lpc2-loading {
	opacity: 0.5;
	pointer-events: none;
}

.lpc2-products__main.lpc2-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 32px;
	border: 3px solid rgba(46, 125, 50, 0.2);
	border-top-color: var(--lpc2-green);
	border-radius: 50%;
	animation: lpc2-spin 0.7s linear infinite;
	z-index: 5;
}

/* Result count */
.lpc2-products__result-count {
	font-size: 13px;
	color: var(--lpc2-text-light);
	margin-bottom: 16px;
}

/* Without filter — full width */
.lpc2-products:not(.has-filter) .lpc2-products__layout {
	display: block;
}

.lpc2-product-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* With sidebar filter — still 3 columns */
.has-filter .lpc2-product-grid {
	grid-template-columns: repeat(3, 1fr);
}

/* No products */
.lpc2-no-products {
	text-align: center;
	padding: 60px 20px;
	color: #999;
}

/* ── Filter Sidebar (Desktop — Left Column) ── */
.lpc2-products .lpc-filter.lpc-filter--shop {
	flex: 0 0 240px;
	position: sticky;
	top: 100px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid #e8e8e8;
	overflow: hidden;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}

/* Scrollbar styling */
.lpc2-products .lpc-filter.lpc-filter--shop::-webkit-scrollbar {
	width: 4px;
}
.lpc2-products .lpc-filter.lpc-filter--shop::-webkit-scrollbar-track {
	background: transparent;
}
.lpc2-products .lpc-filter.lpc-filter--shop::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 2px;
}

/* Hide old lpc2-filter elements (dead code, now using shared partial) */
.lpc2-filter__header {
	display: none;
}

/* Mobile filter toggle button (hidden on desktop) */
.lpc2-products .lpc-filter-toggle {
	display: none;
}

/* Product fade-in (shared) */
.lpc-product-fadein {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.lpc-product-fadein.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Load More */
.lpc2-view-all {
	text-align: center;
	margin-top: 32px;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.lpc2-view-all.is-hidden {
	opacity: 0;
	transform: translateY(-10px);
}

.lpc2-view-all__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--lpc2-green);
	color: #fff;
	padding: 12px 28px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .5px;
	transition: all .3s ease;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

.lpc2-view-all__btn:hover {
	background: var(--lpc2-green-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(46, 125, 50, .3);
	color: #fff;
}

.lpc2-load-more__count {
	font-size: 11px;
	opacity: 0.8;
	font-weight: 400;
}

.lpc2-load-more__spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: lpc2-spin 0.7s linear infinite;
}

.lpc2-view-all__btn.is-loading .lpc2-load-more__text {
	display: none;
}

.lpc2-view-all__btn.is-loading .lpc2-load-more__count {
	display: none;
}

.lpc2-view-all__btn.is-loading .lpc2-load-more__spinner {
	display: inline-block;
}

.lpc2-view-all__btn.is-loading {
	pointer-events: none;
	padding: 12px 40px;
}

.lpc2-view-all__btn.is-loading::after {
	content: 'Loading...';
	font-weight: 500;
	margin-left: 8px;
}

@keyframes lpc2-spin {
	to {
		transform: rotate(360deg);
	}
}


/* ==========================================================================
   SECTION 5: CUSTOMER REVIEWS SLIDER
   ========================================================================== */

.lpc2-reviews {
	background: #faf9f7;
	padding: 60px 0 50px;
}

.lpc2-reviews__label {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--lpc2-text-light);
	margin: 0 0 8px;
	text-transform: uppercase;
}

.lpc2-reviews__slider {
	overflow: hidden;
	position: relative;
}

.lpc2-reviews__track {
	display: flex;
	transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.lpc2-review-card {
	background: #fff;
	border-radius: var(--lpc2-radius);
	padding: 28px 24px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
	text-align: center;
	box-sizing: border-box;
	flex-shrink: 0;
	margin: 0 10px;
}

.lpc2-review-card__stars {
	margin-bottom: 14px;
}

.lpc2-star {
	font-size: 18px;
	color: var(--lpc2-gold);
}

.lpc2-star--empty {
	color: #ddd;
}

.lpc2-review-card__text {
	font-size: 14px;
	line-height: 1.6;
	color: #555;
	font-style: italic;
	margin: 0 0 16px;
	min-height: 44px;
}

.lpc2-review-card__author {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 4px;
}

.lpc2-review-card__verified {
	font-size: 11px;
	color: var(--lpc2-green);
	font-weight: 600;
}

/* Slider navigation */
.lpc2-reviews__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
}

.lpc2-reviews__btn {
	width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
	color: #666;
}

.lpc2-reviews__btn:hover {
	border-color: var(--lpc2-green);
	color: var(--lpc2-green);
	background: #f0faf0;
}

.lpc2-reviews__dots {
	display: flex;
	gap: 8px;
}

.lpc2-reviews__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all .2s;
}

.lpc2-reviews__dot.active {
	background: var(--lpc2-green);
	width: 24px;
	border-radius: 4px;
}


/* ==========================================================================
   SECTION 6: COLLECTION STORY BANNER
   ========================================================================== */

.lpc2-story {
	background: linear-gradient(135deg, #1b5e20, #0d3d14);
	padding: 80px 24px;
	text-align: center;
}

.lpc2-story__inner {
	max-width: 700px;
	margin: 0 auto;
}

.lpc2-story__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, .5);
	margin: 0 0 12px;
}

.lpc2-story__title {
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 16px;
	letter-spacing: -0.5px;
}

.lpc2-story__text {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .75);
	margin: 0;
}


/* ==========================================================================
   SECTION 7: SIZE GUIDE CTA
   ========================================================================== */

.lpc2-sizeguide {
	background: #fff;
	padding: 40px 0;
}

.lpc2-sizeguide__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--lpc2-gray);
	border-radius: var(--lpc2-radius);
	padding: 24px 32px;
	border: 1px solid #eee;
}

.lpc2-sizeguide__text {
	display: flex;
	align-items: center;
	gap: 14px;
}

.lpc2-sizeguide__icon {
	font-size: 28px;
}

.lpc2-sizeguide__text strong {
	font-size: 15px;
	color: #1a1a1a;
	display: block;
	margin-bottom: 2px;
}

.lpc2-sizeguide__text p {
	font-size: 13px;
	color: #888;
	margin: 0;
}

.lpc2-sizeguide__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	color: var(--lpc2-green);
	padding: 10px 20px;
	border: 2px solid var(--lpc2-green);
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	transition: all .3s ease;
	white-space: nowrap;
}

.lpc2-sizeguide__btn:hover {
	background: var(--lpc2-green);
	color: #fff;
}


/* ==========================================================================
   SECTION 8: FAQ ACCORDION
   ========================================================================== */

.lpc2-faq {
	background: #fff;
	padding: 60px 0;
}

.lpc2-faq__label {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--lpc2-text-light);
	margin: 0 0 8px;
	text-transform: uppercase;
}

.lpc2-faq__list {
	max-width: 800px;
	margin: 0 auto;
}

.lpc2-faq__item {
	border: 1px solid #eee;
	border-radius: 8px;
	margin-bottom: 8px;
	overflow: hidden;
	transition: border-color .3s;
}

.lpc2-faq__item.is-open {
	border-color: var(--lpc2-green);
}

.lpc2-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px 20px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	text-align: left;
	transition: color .2s;
}

.lpc2-faq__question:hover {
	color: var(--lpc2-green);
}

.lpc2-faq__chevron {
	transition: transform .3s;
	flex-shrink: 0;
	color: #999;
}

.lpc2-faq__item.is-open .lpc2-faq__chevron {
	transform: rotate(180deg);
	color: var(--lpc2-green);
}

.lpc2-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
	padding: 0 20px;
}

.lpc2-faq__item.is-open .lpc2-faq__answer {
	max-height: 500px;
	padding: 0 20px 16px;
}

.lpc2-faq__answer p {
	font-size: 13.5px;
	line-height: 1.7;
	color: #666;
	margin: 0;
}


/* ==========================================================================
   SECTION 9: RELATED COLLECTIONS (Horizontal cards)
   ========================================================================== */

.lpc2-related {
	background: var(--lpc2-gray);
	padding: 60px 0;
}

.lpc2-related__label {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--lpc2-text-light);
	margin: 0 0 8px;
	text-transform: uppercase;
}

.lpc2-related__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
	max-width: 1000px;
	margin: 0 auto;
}

.lpc2-related__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--lpc2-radius);
	overflow: hidden;
	text-decoration: none;
	border: 1px solid #eee;
	transition: all .3s ease;
}

.lpc2-related__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
	border-color: transparent;
}

.lpc2-related__card-img {
	width: 100%;
	height: 160px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	background-color: #f0f0f0;
}

.lpc2-related__card-info {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lpc2-related__card-name {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
}

.lpc2-related__card-count {
	font-size: 12px;
	color: var(--lpc2-text-light);
}


/* ==========================================================================
   SECTION 10: NEWSLETTER CTA
   ========================================================================== */

.lpc2-newsletter {
	background: var(--lpc2-dark);
	padding: 70px 24px;
	text-align: center;
}

.lpc2-newsletter__inner {
	max-width: 600px;
	margin: 0 auto;
}

.lpc2-newsletter__title {
	font-size: 36px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.5px;
	text-transform: uppercase;
}

.lpc2-newsletter__subtitle {
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
	margin: 0 0 28px;
	line-height: 1.6;
}

/* CF7 form override inside newsletter */
.lpc2-newsletter__form .wpcf7-form {
	display: flex;
	gap: 0;
	max-width: 480px;
	margin: 0 auto;
}

.lpc2-newsletter__form .wpcf7-form input[type="email"],
.lpc2-newsletter__form .wpcf7-form input[type="text"] {
	flex: 1;
	padding: 14px 20px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-right: none;
	border-radius: 50px 0 0 50px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 14px;
	outline: none;
	transition: border-color .2s;
}

.lpc2-newsletter__form .wpcf7-form input[type="email"]:focus,
.lpc2-newsletter__form .wpcf7-form input[type="text"]:focus {
	border-color: var(--lpc2-green);
}

.lpc2-newsletter__form .wpcf7-form input[type="email"]::placeholder,
.lpc2-newsletter__form .wpcf7-form input[type="text"]::placeholder {
	color: rgba(255, 255, 255, .4);
}

.lpc2-newsletter__form .wpcf7-form input[type="submit"],
.lpc2-newsletter__form .wpcf7-form .wpcf7-submit {
	padding: 14px 28px;
	background: var(--lpc2-green);
	color: #fff;
	border: 1px solid var(--lpc2-green);
	border-radius: 0 50px 50px 0;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all .3s;
	white-space: nowrap;
}

.lpc2-newsletter__form .wpcf7-form input[type="submit"]:hover,
.lpc2-newsletter__form .wpcf7-form .wpcf7-submit:hover {
	background: var(--lpc2-green-hover);
}

/* CF7 messages */
.lpc2-newsletter__form .wpcf7-response-output {
	color: rgba(255, 255, 255, .7);
	border-color: rgba(255, 255, 255, .2) !important;
	margin: 12px 0 0;
}

.lpc2-newsletter__note {
	color: rgba(255, 255, 255, .4);
	font-size: 13px;
}


/* ==========================================================================
   RESPONSIVE — Tablet (≤849px)
   ========================================================================== */

@media (max-width: 849px) {
	.lpc2-hero {
		flex-direction: column;
		min-height: auto;
	}

	.lpc2-hero__content {
		flex: 0 0 auto;
		padding: 40px 30px 36px;
		text-align: center;
		align-items: center;
	}

	.lpc2-hero__title {
		font-size: 30px;
	}

	.lpc2-hero__subtitle {
		max-width: 100%;
	}

	.lpc2-hero__image {
		height: 280px;
	}

	.lpc2-hero__badges {
		justify-content: center;
	}

	.lpc2-trust__inner {
		flex-wrap: wrap;
	}

	.lpc2-trust__item {
		flex: 0 0 50%;
		border-bottom: 1px solid rgba(255, 255, 255, .06);
	}

	.lpc2-trust__item:nth-child(2) {
		border-right: none;
	}

	.lpc2-trust__item:nth-child(3),
	.lpc2-trust__item:nth-child(4) {
		border-bottom: none;
	}



	.lpc2-review-card {
		margin: 0 6px;
	}

	.lpc2-story__title {
		font-size: 26px;
	}

	.lpc2-sizeguide__inner {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.lpc2-sizeguide__text {
		flex-direction: column;
	}

	.lpc2-section-title {
		font-size: 24px;
	}
}

/* ==========================================================================
   RESPONSIVE — Filter: sidebar → toggle button (≤990px)
   ========================================================================== */

@media (max-width: 990px) {
	/* Filter — inline expand/collapse below FILTER button */
	.lpc2-products .lpc2-products__layout {
		flex-direction: column;
	}

	/* Reorder: button first, filter second, products third */
	.lpc2-products .lpc-filter-toggle {
		display: inline-flex;
		order: 1;
	}

	.lpc2-products .lpc-filter.lpc-filter--shop {
		order: 2;
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		height: auto;
		flex: none;
		max-height: 0;
		overflow: hidden;
		border: none;
		border-radius: 10px;
		box-shadow: none;
		margin-bottom: 0;
		flex-direction: column;
		transition: max-height .4s cubic-bezier(.4, 0, .2, 1),
		            border .2s ease,
		            margin .2s ease,
		            padding .2s ease;
	}

	.lpc2-products .lpc-filter.lpc-filter--shop.is-open {
		max-height: 2000px;
		border: 1px solid #e8e8e8;
		margin-bottom: 20px;
		overflow: visible;
	}

	.lpc2-products .lpc-filter.lpc-filter--shop > .filter-section {
		flex: none;
		min-width: 0;
		border-right: none;
		border-bottom: 1px solid #eee;
	}

	.lpc2-products .lpc2-products__main {
		order: 3;
	}
}

/* ==========================================================================
   RESPONSIVE — Small Tablet (≤761px)
   ========================================================================== */

@media (max-width: 761px) {
	.lpc2-product-grid,
	.has-filter .lpc2-product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}


/* ==========================================================================
   RESPONSIVE — Mobile (≤480px)
   ========================================================================== */

@media (max-width: 480px) {
	.lpc2-hero__content {
		padding: 28px 20px;
	}

	.lpc2-hero__title {
		font-size: 24px;
	}

	.lpc2-hero__cta {
		padding: 12px 24px;
		font-size: 12px;
	}

	.lpc2-hero__badges {
		flex-direction: column;
		gap: 8px;
		align-items: center;
	}

	.lpc2-hero__image {
		height: 200px;
	}

	.lpc2-trust__item {
		flex: 0 0 100%;
		border-right: none;
		padding: 12px 20px;
	}

	.lpc2-product-grid,
	.has-filter .lpc2-product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.lpc2-products,
	.lpc2-reviews,
	.lpc2-faq,
	.lpc2-related {
		padding: 40px 0;
	}

	.lpc2-story {
		padding: 50px 20px;
	}

	.lpc2-story__title {
		font-size: 22px;
	}

	.lpc2-newsletter {
		padding: 50px 16px;
	}

	.lpc2-newsletter__title {
		font-size: 24px;
	}

	.lpc2-newsletter__form .wpcf7-form {
		flex-direction: column;
		gap: 10px;
	}

	.lpc2-newsletter__form .wpcf7-form input[type="email"],
	.lpc2-newsletter__form .wpcf7-form input[type="text"] {
		border-radius: 50px;
		border-right: 1px solid rgba(255, 255, 255, .15);
	}

	.lpc2-newsletter__form .wpcf7-form input[type="submit"],
	.lpc2-newsletter__form .wpcf7-form .wpcf7-submit {
		border-radius: 50px;
	}

	.lpc2-section-title {
		font-size: 20px;
	}

	.lpc2-related__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.lpc2-related__card-img {
		height: 120px;
	}
}