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

:root {
	--malachite-main: #0b5d34;
	--malachite-bright: #10b981;
	--malachite-deep: #042f1a;
	--dark-slate: #0c1911;
	--theme-bg-light: #f2f7f4;
	--theme-surface: #ffffff;
	--theme-text-dark: #122118;
	--theme-text-muted: #5c6e64;
	--theme-border-line: #e1e9e4;
}

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

body {
	font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	background: var(--theme-bg-light);
	color: var(--theme-text-dark);
	-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;
}

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

.header-bar {
	background: #fff;
	border-bottom: 1px solid var(--theme-border-line);
	padding: 12px 0;
}
.header-bar__wrapper {
	display: flex;
	align-items: center;
}
.brand-identity {
	display: flex;
	align-items: center;
	gap: 8px;
}
.brand-identity__symbol {
	width: 30px;
	height: 30px;
	background: var(--malachite-main);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.brand-identity__symbol svg {
	width: 18px;
	height: 18px;
	fill: #fff;
}
.brand-identity__title {
	font-family: 'Be Vietnam Pro', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-slate);
	letter-spacing: -0.3px;
}

.page-wrapper {
	padding: 0 0 40px;
}

.media-container {
	margin: 0 -20px 18px;
}
.media-container #eco-player {
	border-radius: 0;
	overflow: hidden;
}
@media (max-width: 640px) {
	.page-wrapper {
		padding: 0 0 32px;
	}
	.layout-container {
		padding-left: 0;
		padding-right: 0;
	}
	.main-heading,
	.author-strip,
	.cta-banner,
	#promo-block-main,
	.app-discussion-area,
	.site-footer .layout-container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.media-container {
		margin: 0 0 14px;
	}
}
@media (min-width: 641px) {
	.main-heading {
		margin-top: 16px;
	}
}

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

.author-strip {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--theme-border-line);
}
.author-strip__photo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.author-strip__details {
	flex: 1;
	min-width: 0;
}
.author-strip__author-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--dark-slate);
	line-height: 1.2;
}
.author-strip__publish-date {
	font-size: 13px;
	color: var(--theme-text-muted);
	margin-top: 2px;
}
.social-panel {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.social-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	background: #e8efeb;
	color: var(--dark-slate);
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease;
}
.social-action-btn:hover {
	background: #d9e5de;
}
.social-action-btn svg {
	fill: currentColor;
}
@media (max-width: 640px) {
	.social-panel .social-action-btn span {
		display: none;
	}
	.social-action-btn {
		padding: 8px 10px;
	}
}
@media (max-width: 420px) {
	.author-strip__publish-date {
		font-size: 12px;
	}
}

#promo-block-main {
	display: none;
	text-align: center;
	margin: 0 0 12px;
}
#promo-block-main.cta-anim-fade {
	animation: cta-anim-fade 0.6s ease-out both;
}
@keyframes cta-anim-fade {
	0% {
		opacity: 0;
		transform: translateY(-12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.cta-banner__label {
	font-size: 12px;
	font-weight: 700;
	color: var(--malachite-deep);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.action-trigger-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--malachite-main);
	color: #fff;
	font-family: 'Be Vietnam Pro', 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(11, 93, 52, 0.45);
	animation: cta-glow-pulse 1.8s ease-in-out infinite;
	transition: transform 0.15s ease, background 0.15s ease;
}
.action-trigger-btn:hover {
	background: var(--malachite-deep);
	animation: none;
	transform: translateY(-2px);
}
.action-trigger-btn:active {
	transform: translateY(0);
}
.action-trigger-btn svg {
	stroke: currentColor;
	flex-shrink: 0;
}

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

.cta-banner__meta-info {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--theme-text-muted);
}
.cta-banner__badge-security,
.cta-banner__badge-delivery {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	color: var(--malachite-deep);
}
.cta-banner__badge-security svg,
.cta-banner__badge-delivery svg {
	stroke: currentColor;
}

@media (max-width: 520px) {
	.cta-banner {
		padding: 22px 18px;
		border-radius: 10px;
	}
	.action-trigger-btn {
		font-size: 15px;
		padding: 14px 18px;
		gap: 8px;
		letter-spacing: 0.3px;
		width: 80%;
		max-width: 320px;
	}
	.cta-banner__meta-info {
		font-size: 12px;
		gap: 12px;
	}
}

.app-discussion-area {
	margin-top: 28px;
	padding-top: 4px;
}
.discussion-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--dark-slate);
	font-weight: 600;
	font-size: 15px;
}
.discussion-header svg {
	fill: var(--dark-slate);
}
.discussion-filter {
	margin-left: auto;
	font-size: 13px;
	color: var(--theme-text-muted);
	font-weight: 500;
}

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

.app-entry-item__toolbar button.state-voted {
	color: #0b5d34 !important;
	background-color: #e2f0e8 !important;
}

.app-entry-item__toolbar button.state-disliked {
	color: #dc2626 !important;
	background-color: #fef2f2 !important;
}

.app-entry-item__toolbar button {
	transition: color 0.2s ease, background-color 0.2s ease;
}

.social-action-btn {
	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;
}

.social-action-btn.state-voted {
	color: #0b5d34 !important;
	background-color: #e2f0e8 !important;
	border-color: #0b5d34 !important;
}

.app-entry-item--nested {
	margin-top: 14px;
	margin-left: 0;
	padding: 12px 0 0 16px;
	border-left: 2px solid var(--theme-border-line);
	border-top: none !important;
}
.app-entry-item--nested .app-entry-item__userpic {
	width: 32px;
	height: 32px;
}
.app-entry-item--nested .app-entry-item__text {
	font-size: 13.5px;
}

@media (max-width: 520px) {
	.app-entry-item__userpic {
		width: 32px;
		height: 32px;
	}
	.app-entry-item__text {
		font-size: 13.5px;
	}
	.app-entry-item--nested .app-entry-item__userpic {
		width: 28px;
		height: 28px;
	}
}

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

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

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

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

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

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

.product-link-wrapper {
	display: block;
	width: 100%;
	text-decoration: none;
}

.product-visual {
	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-visual:hover {
	transform: scale(1.05);
}

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

.text-accent-color {
	color: #0b5d34;
}

.deal-sub-title {
	font-size: 15px;
	color: #5c6e64;
	margin: 0 0 20px 0;
	font-weight: 400;
}

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

.feature-list__item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #23332a;
}

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

.action-trigger-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 24px;
	background: #0b5d34;
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(11, 93, 52, 0.3);
	transition: background-color 0.2s ease, transform 0.2s ease;
	box-sizing: border-box;
	text-align: center;
	margin: 0 auto;
}

.action-trigger-btn:hover {
	background: #042f1a;
	transform: translateY(-1px);
}

.action-trigger-btn svg {
	transition: transform 0.2s ease;
}

.action-trigger-btn:hover svg {
	transform: translateX(4px);
}

.checkout-trust-label {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	color: #718378;
	font-weight: 600;
}

.warranty-box {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #e1e9e4;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.warranty-box__icon-wrap {
	width: 56px;
	height: 56px;
	background: #ebf5f0;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	flex-shrink: 0;
}

.warranty-box__details h3 {
	font-size: 16px;
	font-weight: 800;
	color: #0c1911;
	margin: 0 0 4px 0;
}

.warranty-box__details p {
	font-size: 13px;
	color: #5c6e64;
	line-height: 1.5;
	margin: 0;
}

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

	.product-deal-layout {
		flex-direction: column;
		gap: 20px;
	}

	.warranty-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

.app-post-box {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 28px;
}

.app-post-box__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background-color: #e5e7eb;
}

.comment-input-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.comment-input-form__wrapper {
	position: relative;
	width: 100%;
}

.comment-input-form__control {
	width: 100%;
	padding: 4px 0 6px 0;
	border: none;
	border-bottom: 1px solid #cbd5e1;
	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;
}

.comment-input-form__indicator {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #0b5d34;
	transition: width 0.2s ease, left 0.2s ease;
}

.comment-input-form__control:focus ~ .comment-input-form__indicator {
	width: 100%;
	left: 0;
}

.app-panel-controls {
	display: none;
	justify-content: flex-end;
	margin-top: 8px;
}

.app-panel-controls.visible {
	display: flex;
}

.app-panel-controls__group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.app-btn-reset {
	background: transparent;
	border: none;
	color: #0f0f0f;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

.app-btn-reset:hover {
	background-color: rgba(0, 0, 0, 0.08);
}

.app-btn-publish {
	background-color: #0b5d34;
	color: #ffffff;
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

.app-btn-publish:hover:not(:disabled) {
	background-color: #042f1a;
}

.app-btn-publish:disabled {
	background-color: #f2f2f2;
	color: #909090;
	cursor: not-allowed;
}

.policy-content-block {
	padding: 16px;
	list-style-type: none;
}

.policy-content-block h1 {
	padding: 0;
	font-size: 32px;
}

.policy-content-block article {
	padding: 16px 0 0 0;
}

.policy-content-block li {
	list-style-type: none;
}
