*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--theme-emerald-primary: #15803d;
	--theme-emerald-vivid: #16a34a;
	--theme-emerald-deep: #166534;
	--theme-amethyst-dark: #2e1065;
	--theme-page-bg: #fafafa;
	--theme-surface-white: #ffffff;
	--theme-slate-text: #1e1b4b;
	--theme-slate-muted: #6b7280;
	--theme-gray-border: #e5e7eb;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--theme-page-bg);
	color: var(--theme-slate-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.5;
	overflow-x: hidden;
}

img,
svg {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	background: none;
	border: none;
	cursor: pointer;
	font: inherit;
	color: inherit;
}

.site-container-wrap {
	max-width: 880px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.main-top-header {
	background: #ffffff;
	border-bottom: 1px solid var(--theme-gray-border);
	padding: 12px 0;
}
.main-top-header__inner {
	display: flex;
	align-items: center;
}
.brand-identity-box {
	display: flex;
	align-items: center;
	gap: 8px;
}
.brand-identity-box__logo {
	width: 30px;
	height: 30px;
	background: var(--theme-emerald-primary);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.brand-identity-box__logo svg {
	width: 18px;
	height: 18px;
	fill: #ffffff;
}
.brand-identity-box__title {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--theme-amethyst-dark);
	letter-spacing: -0.3px;
}

.content-page-section {
	padding: 0 0 40px;
}

.media-video-container {
	margin: 0 -20px 18px;
}
.media-video-container #eco-player {
	border-radius: 0;
	overflow: hidden;
}
@media (max-width: 640px) {
	.content-page-section {
		padding: 0 0 32px;
	}
	.site-container-wrap {
		padding-left: 0;
		padding-right: 0;
	}
	.article-main-heading,
	.author-byline-bar,
	.promo-action-card,
	#promo-block-inline,
	.cm-section-wrapper,
	.site-bottom-footer .site-container-wrap {
		padding-left: 16px;
		padding-right: 16px;
	}
	.media-video-container {
		margin: 0 0 14px;
	}
}
@media (min-width: 641px) {
	.article-main-heading {
		margin-top: 16px;
	}
}

.article-main-heading {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--theme-amethyst-dark);
	margin-bottom: 16px;
	letter-spacing: -0.3px;
}

.author-byline-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--theme-gray-border);
}
.author-byline-bar__pic {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.author-byline-bar__details {
	flex: 1;
	min-width: 0;
}
.author-byline-bar__author {
	font-size: 15px;
	font-weight: 600;
	color: var(--theme-amethyst-dark);
	line-height: 1.2;
}
.author-byline-bar__info {
	font-size: 13px;
	color: var(--theme-slate-muted);
	margin-top: 2px;
}
.user-interaction-panel {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.btn-engage-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	background: #f0f2f5;
	color: var(--theme-amethyst-dark);
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease;
}
.btn-engage-toggle:hover {
	background: #e4e7ec;
}
.btn-engage-toggle svg {
	fill: currentColor;
}
@media (max-width: 640px) {
	.user-interaction-panel .btn-engage-toggle span {
		display: none;
	}
	.btn-engage-toggle {
		padding: 8px 10px;
	}
}
@media (max-width: 420px) {
	.author-byline-bar__info {
		font-size: 12px;
	}
}

#promo-block-inline {
	display: none;
	text-align: center;
	margin: 0 0 12px;
}
#promo-block-inline.promo-appear-anim {
	animation: promo-appear-anim 0.6s ease-out both;
}
@keyframes promo-appear-anim {
	0% {
		opacity: 0;
		transform: translateY(-12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.promo-action-card__label {
	font-size: 12px;
	font-weight: 700;
	color: var(--theme-emerald-deep);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.cta-button-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--theme-emerald-primary);
	color: #ffffff;
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.5px;
	padding: 18px 32px;
	border-radius: 12px;
	width: 100%;
	max-width: 440px;
	box-shadow: 0 6px 22px rgba(21, 128, 61, 0.45);
	animation: cta-glow-pulse 1.8s ease-in-out infinite;
	transition: transform 0.15s ease, background 0.15s ease;
}
.cta-button-primary:hover {
	background: var(--theme-emerald-deep);
	animation: none;
	transform: translateY(-2px);
}
.cta-button-primary:active {
	transform: translateY(0);
}
.cta-button-primary svg {
	stroke: currentColor;
	flex-shrink: 0;
}

@keyframes cta-glow-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 6px 22px rgba(21, 128, 61, 0.45);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 10px 32px rgba(21, 128, 61, 0.6);
	}
}

.promo-action-card__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--theme-slate-muted);
}
.promo-action-card__badge-shield,
.promo-action-card__badge-truck {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	color: var(--theme-emerald-deep);
}
.promo-action-card__badge-shield svg,
.promo-action-card__badge-truck svg {
	stroke: currentColor;
}

@media (max-width: 520px) {
	.promo-action-card {
		padding: 22px 18px;
		border-radius: 10px;
	}
	.cta-button-primary {
		font-size: 15px;
		padding: 14px 18px;
		gap: 8px;
		letter-spacing: 0.3px;
		width: 80%;
		max-width: 320px;
	}
	.promo-action-card__bottom {
		font-size: 12px;
		gap: 12px;
	}
}

#cm-section-wrapper,
.cm-section-wrapper {
	margin-top: 28px;
	padding-top: 4px;
}
.cm-section-wrapper__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--theme-amethyst-dark);
	font-weight: 600;
	font-size: 15px;
}
.cm-section-wrapper__head svg {
	fill: var(--theme-amethyst-dark);
}
.cm-section-wrapper__filter {
	margin-left: auto;
	font-size: 13px;
	color: var(--theme-slate-muted);
	font-weight: 500;
}

.cm-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
}
.cm-item + .cm-item {
	border-top: 1px solid var(--theme-gray-border);
}
.cm-item__pic {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.cm-item__content {
	flex: 1;
	min-width: 0;
}
.cm-item__meta {
	font-size: 13px;
	color: var(--theme-slate-muted);
	margin-bottom: 4px;
}
.cm-item__meta b {
	color: var(--theme-amethyst-dark);
	font-weight: 600;
	margin-right: 8px;
}
.cm-item__text {
	font-size: 14px;
	color: var(--theme-slate-text);
	line-height: 1.55;
	margin-bottom: 8px;
	word-break: break-word;
}
.cm-item__actions {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: -8px;
}
.cm-item__actions button {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	border-radius: 50px;
	color: var(--theme-slate-muted);
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.cm-item__actions button:hover {
	background: #f0f2f5;
	color: var(--theme-amethyst-dark);
}
.cm-item__actions button svg {
	fill: currentColor;
}

.cm-item__actions button.is-liked {
	color: #166534 !important;
	background-color: #dcfce7 !important;
}

.cm-item__actions button.is-disliked {
	color: #dc2626 !important;
	background-color: #fef2f2 !important;
}

.btn-engage-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-engage-toggle.is-liked {
	color: #166534 !important;
	background-color: #dcfce7 !important;
	border-color: #166534 !important;
}

.cm-item--threaded {
	margin-top: 14px;
	margin-left: 0;
	padding: 12px 0 0 16px;
	border-left: 2px solid var(--theme-gray-border);
	border-top: none !important;
}
.cm-item--threaded .cm-item__pic {
	width: 32px;
	height: 32px;
}
.cm-item--threaded .cm-item__text {
	font-size: 13.5px;
}

@media (max-width: 520px) {
	.cm-item__pic {
		width: 32px;
		height: 32px;
	}
	.cm-item__text {
		font-size: 13.5px;
	}
	.cm-item--threaded .cm-item__pic {
		width: 28px;
		height: 28px;
	}
}

.site-bottom-footer {
	background: #ffffff;
	border-top: 1px solid var(--theme-gray-border);
	padding: 24px 0 20px;
	text-align: center;
	margin-top: 32px;
}
.site-bottom-footer__copyright {
	font-size: 12px;
	color: var(--theme-slate-muted);
	margin-bottom: 4px;
}
.site-bottom-footer__entity {
	font-size: 11px;
	color: var(--theme-slate-muted);
	opacity: 0.7;
	margin-bottom: 12px;
}
.site-bottom-footer__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.site-bottom-footer__nav a {
	color: var(--theme-slate-muted);
	font-size: 13px;
	transition: color 0.15s ease;
}
.site-bottom-footer__nav a:hover {
	color: var(--theme-amethyst-dark);
}
.site-bottom-footer__divider {
	color: #cbd5e1;
}

@supports (padding: max(0px)) {
	.site-bottom-footer {
		padding-bottom: max(20px, env(safe-area-inset-bottom));
	}
}

.special-deal-card {
	font-family: 'Manrope', sans-serif;
	max-width: 900px;
	margin: 30px auto;
	padding: 32px;
	box-sizing: border-box;
}

.special-deal-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	align-items: center;
	justify-content: center;
}

.special-deal-media-col {
	flex: 1 1 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: space-around;
}

.special-deal-tag {
	display: inline-block;
	padding: 6px 14px;
	background: #111827;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.product-image-anchor {
	display: block;
	width: 100%;
	text-decoration: none;
}

.product-showcase-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.08));
	transition: transform 0.4s ease;
}

.product-showcase-img:hover {
	transform: scale(1.05);
}

.special-deal-heading {
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 900;
	color: #111827;
	margin: 0 0 8px 0;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.text-accent-mark {
	color: #166534;
}

.special-deal-subheading {
	font-size: 15px;
	color: #6b7280;
	margin: 0 0 20px 0;
	font-weight: 400;
}

.feature-bullet-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.feature-bullet-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
}

.feature-bullet-icon {
	width: 20px;
	height: 20px;
	background: #dcfce7;
	color: #166534;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	flex-shrink: 0;
}

.cta-button-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 24px;
	background: #15803d;
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(21, 128, 61, 0.3);
	transition: background-color 0.2s ease, transform 0.2s ease;
	box-sizing: border-box;
	text-align: center;
	margin: 0 auto;
}

.cta-button-primary:hover {
	background: #166534;
	transform: translateY(-1px);
}

.cta-button-primary svg {
	transition: transform 0.2s ease;
}

.cta-button-primary:hover svg {
	transform: translateX(4px);
}

.checkout-security-note {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	color: #9ca3af;
	font-weight: 600;
}

.guarantee-info-block {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #f3f4f6;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.guarantee-info-badge {
	width: 56px;
	height: 56px;
	background: #fff5f5;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	flex-shrink: 0;
}

.guarantee-info-text h3 {
	font-size: 16px;
	font-weight: 800;
	color: #111827;
	margin: 0 0 4px 0;
}

.guarantee-info-text p {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 600px) {
	.special-deal-card {
		padding: 20px;
	}

	.special-deal-grid {
		flex-direction: column;
		gap: 20px;
	}

	.guarantee-info-block {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

.cm-add-box,
.sw-add-comment {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 28px;
}

.cm-add-box__avatar,
.sw-add-comment__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background-color: #e5e7eb;
}

#cm-input-form,
.sw-comment-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cm-field-container,
.sw-comment-form__field-wrap {
	position: relative;
	width: 100%;
}

#cm-field-text,
.sw-comment-form__textarea {
	width: 100%;
	padding: 4px 0 6px 0;
	border: none;
	border-bottom: 1px solid #d1d5db;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	color: #0f0f0f;
	outline: none;
	resize: none;
	min-height: 24px;
	line-height: 1.4;
	box-sizing: border-box;
	display: block;
	overflow: hidden;
}

.cm-focus-indicator-line,
.sw-comment-form__line {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #0f0f0f;
	transition: width 0.2s ease, left 0.2s ease;
}

#cm-field-text:focus ~ .cm-focus-indicator-line,
.sw-comment-form__textarea:focus ~ .sw-comment-form__line {
	width: 100%;
	left: 0;
}

#cm-control-bar,
.sw-comment-form__actions-bar {
	display: none;
	justify-content: flex-end;
	margin-top: 8px;
}

#cm-control-bar.is-visible,
.sw-comment-form__actions-bar.active {
	display: flex;
}

.cm-buttons-group,
.sw-comment-form__buttons {
	display: flex;
	align-items: center;
	gap: 8px;
}

#cm-action-cancel,
.sw-btn-cancel {
	background: transparent;
	border: none;
	color: #2b2b2b;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

#cm-action-cancel:hover,
.sw-btn-cancel:hover {
	background-color: rgba(0, 0, 0, 0.12);
}

#cm-action-submit,
.sw-btn-submit {
	background-color: #2b2b2b;
	color: #ffffff;
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

#cm-action-submit:hover:not(:disabled),
.sw-btn-submit:hover:not(:disabled) {
	background-color: #1c1c1c;
}

#cm-action-submit:disabled,
.sw-btn-submit:disabled {
	background-color: #f2f2f2;
	color: #909090;
	cursor: not-allowed;
}

.legal-document-policy {
	padding: 16px;
	list-style-type: none;
}

.legal-document-policy h1 {
	padding: 0;
	font-size: 32px;
}

.legal-document-policy article {
	padding: 16px 0 0 0;
}

.legal-document-policy li {
	list-style-type: none;
}
