/*
 * NeoGrow Product Page Engine - component styles.
 *
 * Layout and page shell live in the NeoGrow Genz Electro child theme; this file
 * only styles the components the plugin renders, so the plugin still looks
 * correct with any other theme. Every colour reads a theme token first and
 * falls back to the Genz Mobile palette, and all box offsets use logical
 * properties so Arabic/RTL works without a second stylesheet.
 */

.ngpp-engine {
	--ngpp-primary: var(--ng-primary, #34dde4);
	--ngpp-primary-dark: var(--ng-primary-dark, #259da2);
	--ngpp-deep: var(--ng-deep, #0f4f52);
	--ngpp-dark: var(--ng-dark, #101718);
	--ngpp-text: var(--ng-text, #35484b);
	--ngpp-muted: var(--ng-muted, #6f8285);
	--ngpp-line: var(--ng-line, #e3eaec);
	--ngpp-surface: var(--ng-surface, #f7fafb);
	--ngpp-success: var(--ng-success, #168a55);
	--ngpp-sale: var(--ng-sale, #d63f44);
	--ngpp-radius: var(--ng-radius, 10px);
}

.ngpp-engine .ngpp-icon {
	flex: 0 0 auto;
}

/* -------------------------------------------------------------------------
 * Eyebrow, badge, buying note
 * ---------------------------------------------------------------------- */

.ngpp-engine .ngpp-eyebrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-block-end: 8px;
}

.ngpp-engine .ngpp-badge {
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(52, 221, 228, 0.18);
	color: var(--ngpp-deep);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.6;
}

.ngpp-engine .ngpp-subtitle {
	color: var(--ngpp-muted);
	font-size: 13px;
	font-weight: 600;
}

.ngpp-engine .ngpp-buying-note {
	margin: 0 0 12px;
	padding-inline-start: 12px;
	border-inline-start: 3px solid var(--ngpp-primary);
	color: var(--ngpp-text);
	font-size: 13px;
	line-height: 1.7;
}

.ngpp-engine .ngpp-variation-hint {
	margin: 0 0 10px;
	color: var(--ngpp-muted);
	font-size: 12px;
}

/* -------------------------------------------------------------------------
 * Variation swatches
 * ---------------------------------------------------------------------- */

.ngpp-engine .ngpp-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-block-start: 8px;
}

.ngpp-engine .ngpp-swatch {
	min-height: 44px;
	min-width: 44px;
	padding-inline: 14px;
	border: 1px solid var(--ngpp-line);
	border-radius: 8px;
	background: #fff;
	color: var(--ngpp-dark);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ngpp-engine .ngpp-swatch:hover:not([disabled]) {
	border-color: var(--ngpp-primary-dark);
}

.ngpp-engine .ngpp-swatch.is-selected {
	border-color: var(--ngpp-primary-dark);
	box-shadow: inset 0 0 0 1px var(--ngpp-primary-dark);
	background: rgba(52, 221, 228, 0.12);
}

.ngpp-engine .ngpp-swatch.is-selected::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-inline-end: 7px;
	border-radius: 50%;
	background: var(--ngpp-primary-dark);
	vertical-align: middle;
}

.ngpp-engine .ngpp-swatch[disabled] {
	background: var(--ngpp-surface);
	border-style: dashed;
	color: #a5b1b3;
	cursor: not-allowed;
	text-decoration: line-through;
}

.ngpp-engine .ngpp-swatch:focus-visible {
	outline: 2px solid var(--ngpp-primary-dark);
	outline-offset: 2px;
}

/* Keep the native select reachable for assistive technology. */
.ngpp-engine select.ngpp-select-enhanced {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* -------------------------------------------------------------------------
 * Buy Now
 * ---------------------------------------------------------------------- */

.ngpp-engine .ngpp-buy-now {
	min-height: 50px;
	flex: 1 1 170px;
	margin: 0;
	padding-inline: 22px;
	border: 0;
	border-radius: 8px;
	background: var(--ngpp-dark);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.ngpp-engine .ngpp-buy-now:hover,
.ngpp-engine .ngpp-buy-now:focus-visible {
	background: var(--ngpp-primary);
	color: var(--ngpp-deep);
}

/* -------------------------------------------------------------------------
 * Trust cards and WhatsApp
 * ---------------------------------------------------------------------- */

.ngpp-engine .ngpp-trust {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.ngpp-engine .ngpp-trust__item {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 0;
	padding: 10px;
	border: 1px solid var(--ngpp-line);
	border-radius: 8px;
	background: var(--ngpp-surface);
}

.ngpp-engine .ngpp-trust__item .ngpp-icon {
	margin-block-start: 1px;
	color: var(--ngpp-primary-dark);
}

.ngpp-engine .ngpp-trust__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.ngpp-engine .ngpp-trust__text strong {
	color: var(--ngpp-dark);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.ngpp-engine .ngpp-trust__text span {
	color: var(--ngpp-muted);
	font-size: 11px;
	line-height: 1.45;
}

.ngpp-engine .ngpp-whatsapp {
	display: flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-block-start: 10px;
	border-radius: 8px;
	background: #128c4a;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.ngpp-engine .ngpp-whatsapp:hover,
.ngpp-engine .ngpp-whatsapp:focus-visible {
	background: #0f7a40;
	color: #fff;
	text-decoration: none;
}

/* -------------------------------------------------------------------------
 * About this item
 * ---------------------------------------------------------------------- */

.ngpp-engine .ngpp-highlights {
	margin: 0;
}

.ngpp-engine .ngpp-highlights__row {
	display: grid;
	grid-template-columns: minmax(90px, 0.85fr) minmax(0, 1.15fr);
	gap: 10px;
	padding-block: 9px;
	border-block-end: 1px solid var(--ngpp-line);
}

.ngpp-engine .ngpp-highlights__row:last-child {
	border-block-end: 0;
}

.ngpp-engine .ngpp-highlights dt {
	margin: 0;
	color: var(--ngpp-muted);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
}

.ngpp-engine .ngpp-highlights dd {
	margin: 0;
	color: var(--ngpp-dark);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.ngpp-engine .ngpp-about-extra {
	margin-block-start: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	background: var(--ngpp-surface);
	font-size: 12px;
	line-height: 1.6;
}

.ngpp-engine .ngpp-about-extra strong {
	display: block;
	margin-block-end: 3px;
	color: var(--ngpp-dark);
}

.ngpp-engine .ngpp-about-extra p {
	margin: 0;
	color: var(--ngpp-text);
}

/* -------------------------------------------------------------------------
 * Buy it with
 * ---------------------------------------------------------------------- */

.ngpp-engine .ngpp-bundle {
	padding: 16px;
	border: 1px solid var(--ngpp-line);
	border-radius: var(--ngpp-radius);
	background: #fff;
}

.ngpp-engine .ngpp-bundle__items {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
}

.ngpp-engine .ngpp-bundle__plus {
	align-self: center;
	color: var(--ngpp-muted);
	font-size: 20px;
	font-weight: 400;
}

.ngpp-engine .ngpp-bundle-card {
	display: grid;
	grid-template-columns: auto 78px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	flex: 1 1 260px;
	padding: 10px;
	border: 1px solid var(--ngpp-line);
	border-radius: 8px;
}

.ngpp-engine .ngpp-bundle-card.is-main {
	background: var(--ngpp-surface);
}

.ngpp-engine .ngpp-bundle-card__tag {
	padding: 3px 7px;
	border-radius: 999px;
	background: rgba(52, 221, 228, 0.2);
	color: var(--ngpp-deep);
	font-size: 10px;
	font-weight: 700;
}

.ngpp-engine .ngpp-bundle-card input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
	accent-color: var(--ngpp-primary-dark);
}

.ngpp-engine .ngpp-bundle-card__media img {
	display: block;
	width: 78px;
	height: 78px;
	object-fit: contain;
}

.ngpp-engine .ngpp-bundle-card__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.ngpp-engine .ngpp-bundle-card__name {
	color: var(--ngpp-dark);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	cursor: pointer;
}

.ngpp-engine .ngpp-bundle-card__price {
	color: var(--ngpp-sale);
	font-size: 13px;
	font-weight: 700;
}

.ngpp-engine .ngpp-bundle-card__price del {
	color: var(--ngpp-muted);
	font-size: 0.85em;
	font-weight: 500;
}

.ngpp-engine .ngpp-bundle-card__stock .stock {
	margin: 0;
	font-size: 11px;
}

.ngpp-engine .ngpp-bundle__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	margin-block-start: 14px;
	padding-block-start: 14px;
	border-block-start: 1px solid var(--ngpp-line);
}

.ngpp-engine .ngpp-bundle__total {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	margin-inline-end: auto;
}

.ngpp-engine .ngpp-bundle__total span {
	color: var(--ngpp-muted);
	font-size: 12px;
}

.ngpp-engine .ngpp-bundle__total strong {
	color: var(--ngpp-sale);
	font-size: 21px;
	font-weight: 700;
}

.ngpp-engine .ngpp-bundle__submit {
	min-height: 48px;
	padding-inline: 24px;
	border: 0;
	border-radius: 8px;
	background: var(--ngpp-dark);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.ngpp-engine .ngpp-bundle__submit:hover,
.ngpp-engine .ngpp-bundle__submit:focus-visible {
	background: var(--ngpp-primary);
	color: var(--ngpp-deep);
}

.ngpp-engine .ngpp-bundle__note {
	margin: 10px 0 0;
	color: var(--ngpp-muted);
	font-size: 12px;
}

/* -------------------------------------------------------------------------
 * Detailed specifications
 * ---------------------------------------------------------------------- */

.ngpp-engine .ngpp-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 28px;
	align-items: start;
}

.ngpp-engine .ngpp-specs__title {
	margin: 0 0 8px;
	color: var(--ngpp-deep);
	font-size: 15px;
	font-weight: 700;
}

.ngpp-engine .ngpp-specs__table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	table-layout: fixed;
}

.ngpp-engine .ngpp-specs__table th,
.ngpp-engine .ngpp-specs__table td {
	padding: 10px 0;
	border: 0;
	border-block-end: 1px solid var(--ngpp-line);
	font-size: 13px;
	line-height: 1.5;
	text-align: start;
	vertical-align: top;
	overflow-wrap: anywhere;
}

.ngpp-engine .ngpp-specs__table th {
	width: 42%;
	color: var(--ngpp-muted);
	font-weight: 500;
}

.ngpp-engine .ngpp-specs__table td {
	color: var(--ngpp-dark);
	font-weight: 600;
}

/* -------------------------------------------------------------------------
 * Top categories
 * ---------------------------------------------------------------------- */

.ngpp-engine .ngpp-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ngpp-engine .ngpp-categories__item {
	margin: 0;
	list-style: none;
	min-width: 0;
}

.ngpp-engine .ngpp-category {
	display: flex;
	min-height: 108px;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 8px;
	border: 1px solid var(--ngpp-line);
	border-radius: 12px;
	background: #fff;
	color: var(--ngpp-dark);
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: border-color 0.15s ease;
}

.ngpp-engine .ngpp-category:hover,
.ngpp-engine .ngpp-category:focus-visible {
	border-color: var(--ngpp-primary);
	color: var(--ngpp-dark);
	text-decoration: none;
}

.ngpp-engine .ngpp-category__media {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 12px;
	background: rgba(52, 221, 228, 0.14);
	color: var(--ngpp-deep);
	overflow: hidden;
}

.ngpp-engine .ngpp-category__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ngpp-engine .ngpp-category__name {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 1.35;
}

/* -------------------------------------------------------------------------
 * Mobile purchase bar
 * ---------------------------------------------------------------------- */

.ngpp-engine .ngpp-mobile-bar {
	display: none;
}

@media (max-width: 767px) {
	.ngpp-engine .ngpp-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ngpp-engine .ngpp-specs {
		grid-template-columns: 1fr;
	}

	.ngpp-engine .ngpp-bundle-card {
		flex-basis: 100%;
	}

	.ngpp-engine .ngpp-bundle__footer {
		justify-content: stretch;
	}

	.ngpp-engine .ngpp-bundle__submit {
		flex: 1 1 100%;
	}

	.ngpp-engine .ngpp-categories {
		display: flex;
		overflow-x: auto;
		padding-block-end: 6px;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
	}

	.ngpp-engine .ngpp-categories__item {
		flex: 0 0 118px;
		scroll-snap-align: start;
	}

	.ngpp-engine .ngpp-mobile-bar {
		position: fixed;
		z-index: 9990;
		inset-inline: 0;
		inset-block-end: 0;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 12px;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
		border-block-start: 1px solid var(--ngpp-line);
		background: #fff;
		box-shadow: 0 -6px 20px rgba(16, 23, 24, 0.1);
	}

	.ngpp-engine .ngpp-mobile-bar__price {
		margin: 0;
		color: var(--ngpp-sale);
		font-size: 17px;
		font-weight: 700;
		line-height: 1.25;
	}

	.ngpp-engine .ngpp-mobile-bar__price del {
		color: var(--ngpp-muted);
		font-size: 0.7em;
		font-weight: 500;
	}

	.ngpp-engine .ngpp-mobile-bar__button {
		min-height: 46px;
		padding-inline: 22px;
		border: 0;
		border-radius: 8px;
		background: var(--ngpp-primary);
		color: var(--ngpp-deep);
		font-size: 14px;
		font-weight: 700;
		cursor: pointer;
	}

	body.ngpp-has-mobile-bar {
		padding-block-end: calc(72px + env(safe-area-inset-bottom));
	}
}

@media (prefers-reduced-motion: reduce) {
	.ngpp-engine * {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* -------------------------------------------------------------------------
 * Shared layout primitives
 *
 * Used by all six layouts. Layout-specific geometry lives in
 * assets/css/layouts/<layout-id>.css, and only the active one is enqueued.
 * ---------------------------------------------------------------------- */

.ngpp-layout {
	display: block;
}

.ngpp-layout *,
.ngpp-layout *::before,
.ngpp-layout *::after {
	box-sizing: border-box;
}

.ngpp-section {
	margin-block-start: 34px;
}

.ngpp-section__head {
	margin-block-end: 14px;
	padding-block-end: 10px;
	border-block-end: 1px solid var(--ngpp-line);
}

.ngpp-section__title,
.ngpp-block-title {
	margin: 0;
	color: var(--ngpp-dark);
	font-size: clamp(17px, 1.5vw, 23px);
	font-weight: 700;
	line-height: 1.3;
}

.ngpp-block-title {
	margin-block-end: 10px;
	font-size: 16px;
}

.ngpp-layout__tail {
	margin-block-start: 12px;
}

.ngpp-header {
	min-width: 0;
}

.ngpp-brand {
	margin: 0 0 4px;
	color: var(--ngpp-primary-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ngpp-price-block {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 12px;
	margin-block: 6px 10px;
}

.ngpp-savings {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	padding: 4px 9px;
	border-radius: 6px;
	background: rgba(214, 63, 68, 0.1);
	color: var(--ngpp-sale);
	font-size: 12px;
	font-weight: 700;
}

.ngpp-rating-summary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-block-end: 10px;
	color: var(--ngpp-text);
	font-size: 13px;
	text-decoration: none;
}

.ngpp-rating-summary__score {
	font-size: 17px;
	font-weight: 700;
	color: var(--ngpp-dark);
}

.ngpp-rating-summary__count {
	color: var(--ngpp-muted);
}

/* Honest urgency */

.ngpp-low-stock {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 8px 0 0;
	color: #b4552a;
	font-size: 12px;
	font-weight: 700;
}

.ngpp-low-stock__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
}

.ngpp-countdown {
	margin: 8px 0 0;
	font-size: 12px;
	color: var(--ngpp-sale);
}

.ngpp-countdown__value {
	font-weight: 700;
}

/* Delivery rows */

.ngpp-delivery {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
	border: 1px solid var(--ngpp-line);
	border-radius: 10px;
}

.ngpp-delivery__row {
	display: grid;
	grid-template-columns: minmax(90px, 0.7fr) minmax(0, 1.3fr);
	gap: 10px;
	margin: 0;
	padding: 10px 12px;
	border-block-end: 1px solid var(--ngpp-line);
	font-size: 12px;
	list-style: none;
}

.ngpp-delivery__row:last-child {
	border-block-end: 0;
}

.ngpp-delivery__label {
	color: var(--ngpp-muted);
}

.ngpp-delivery__value {
	color: var(--ngpp-dark);
	font-weight: 600;
}

/* Accordions */

.ngpp-accordions {
	display: grid;
	gap: 8px;
}

.ngpp-accordion {
	border: 1px solid var(--ngpp-line);
	border-radius: 10px;
	background: #fff;
}

.ngpp-accordion__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 52px;
	padding: 12px 14px;
	cursor: pointer;
	list-style: none;
	color: var(--ngpp-dark);
	font-size: 14px;
	font-weight: 700;
}

.ngpp-accordion__summary::-webkit-details-marker {
	display: none;
}

.ngpp-accordion__summary:focus-visible {
	outline: 2px solid var(--ngpp-primary-dark);
	outline-offset: -2px;
	border-radius: 10px;
}

.ngpp-accordion__chevron {
	flex: 0 0 auto;
	color: var(--ngpp-muted);
	transition: transform 0.18s ease;
}

.ngpp-accordion[open] .ngpp-accordion__chevron {
	transform: rotate(180deg);
}

.ngpp-accordion__body {
	padding: 0 14px 14px;
	font-size: 13px;
	line-height: 1.7;
}

/* Share */

.ngpp-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-block-start: 12px;
	font-size: 12px;
}

.ngpp-share__label {
	color: var(--ngpp-muted);
	font-weight: 600;
}

.ngpp-share__link,
.ngpp-share__copy {
	padding: 6px 10px;
	border: 1px solid var(--ngpp-line);
	border-radius: 999px;
	background: #fff;
	color: var(--ngpp-dark);
	font-size: 12px;
	text-decoration: none;
	cursor: pointer;
}

.ngpp-share__link:hover,
.ngpp-share__copy:hover {
	border-color: var(--ngpp-primary-dark);
	color: var(--ngpp-dark);
}

.ngpp-share__status {
	color: var(--ngpp-success);
	font-weight: 600;
}

/* Questions and review media */

.ngpp-questions {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ngpp-questions__item {
	margin: 0 0 14px;
	padding: 0 0 14px;
	border-block-end: 1px solid var(--ngpp-line);
	list-style: none;
}

.ngpp-questions__q {
	margin: 0 0 4px;
	color: var(--ngpp-dark);
	font-weight: 700;
}

.ngpp-questions__a {
	margin: 0;
	color: var(--ngpp-text);
}

.ngpp-review-media {
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	list-style: none;
}

.ngpp-review-media__item {
	flex: 0 0 auto;
	margin: 0;
	list-style: none;
}

.ngpp-review-media__button {
	display: block;
	width: 84px;
	height: 84px;
	padding: 0;
	border: 1px solid var(--ngpp-line);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	cursor: zoom-in;
}

.ngpp-review-media__button img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Video */

.ngpp-video {
	margin-block-end: 18px;
}

.ngpp-video__player,
.ngpp-video__embed iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 12px;
	background: #000;
}

@media (prefers-reduced-motion: reduce) {
	.ngpp-accordion__chevron {
		transition: none;
	}
}

/* -------------------------------------------------------------------------
 * Emergency fallback stage
 *
 * Only ever rendered if a layout's own render_stage() throws (see
 * AbstractLayout::fallback_stage()). Deliberately minimal: its entire purpose
 * is to keep the gallery, price and Add to Cart working while the real
 * layout's design is unavailable for that one request.
 * ---------------------------------------------------------------------- */

.ngpp-stage--fallback {
	max-width: 640px;
	margin-inline: auto;
}

.ngpp-stage--fallback .ngpp-purchase-card {
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid var(--ngpp-line);
	border-radius: var(--ngpp-radius);
	background: #fff;
}
