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

:root {
	--eucalyptus-main: #1c3b2b;
	--eucalyptus-vibrant: #2d5a43;
	--eucalyptus-deep: #0e2217;
	--eucalyptus-pale: #e4ece7;
	--eucalyptus-dark-blue: #09131a;
	--eucalyptus-bg-white: #fafcfb;
	--eucalyptus-card-bg: #ffffff;
	--eucalyptus-txt-primary: #121c17;
	--eucalyptus-txt-secondary: #516358;
	--eucalyptus-line-border: #dbe4df;
}

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

body {
	font-family: 'Readex Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	background: var(--eucalyptus-bg-white);
	color: var(--eucalyptus-txt-primary);
	-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-outer-holder {
	max-width: 880px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.site-header-shell {
	background: #ffffff;
	border-bottom: 1px solid var(--eucalyptus-line-border);
	padding: 12px 0;
}
.site-header-shell__inner {
	display: flex;
	align-items: center;
}
.site-logo-group {
	display: flex;
	align-items: center;
	gap: 8px;
}
.site-logo-group__symbol {
	width: 30px;
	height: 30px;
	background: var(--eucalyptus-main);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.site-logo-group__symbol svg {
	width: 18px;
	height: 18px;
	fill: #ffffff;
}
.site-logo-group__name {
	font-family: 'Readex Pro', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--eucalyptus-dark-blue);
	letter-spacing: -0.3px;
}

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

.video-player-frame {
	margin: 0 -20px 18px;
}
.video-player-frame #eco-player {
	border-radius: 0;
	overflow: hidden;
}
@media (max-width: 640px) {
	.page-content-wrapper {
		padding: 0 0 32px;
	}
	.site-outer-holder {
		padding-left: 0;
		padding-right: 0;
	}
	.article-title-text,
	.author-profile-block,
	.action-cta-box,
	#promo-stage-wrapper,
	#cmt-main-container,
	.site-footer-shell .site-outer-holder {
		padding-left: 16px;
		padding-right: 16px;
	}
	.video-player-frame {
		margin: 0 0 14px;
	}
}
@media (min-width: 641px) {
	.article-title-text {
		margin-top: 16px;
	}
}

.article-title-text {
	font-family: 'Readex Pro', sans-serif;
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--eucalyptus-dark-blue);
	margin-bottom: 16px;
	letter-spacing: -0.3px;
}

.author-profile-block {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--eucalyptus-line-border);
}
.author-profile-block__pic {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.author-profile-block__details {
	flex: 1;
	min-width: 0;
}
.author-profile-block__author {
	font-size: 15px;
	font-weight: 600;
	color: var(--eucalyptus-dark-blue);
	line-height: 1.2;
}
.author-profile-block__date {
	font-size: 13px;
	color: var(--eucalyptus-txt-secondary);
	margin-top: 2px;
}
.social-actions-group {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.social-actions-group__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	background: #eaefec;
	color: var(--eucalyptus-dark-blue);
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease;
}
.social-actions-group__item:hover {
	background: #dce4e0;
}
.social-actions-group__item svg {
	fill: currentColor;
}
@media (max-width: 640px) {
	.social-actions-group .social-actions-group__item span {
		display: none;
	}
	.social-actions-group__item {
		padding: 8px 10px;
	}
}
@media (max-width: 420px) {
	.author-profile-block__date {
		font-size: 12px;
	}
}

#promo-stage-wrapper {
	display: none;
	text-align: center;
	margin: 0 0 12px;
}
#promo-stage-wrapper.action-cta-appear {
	animation: action-cta-appear 0.6s ease-out both;
}
@keyframes action-cta-appear {
	0% {
		opacity: 0;
		transform: translateY(-12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.action-cta-box__subtitle {
	font-size: 12px;
	font-weight: 700;
	color: var(--eucalyptus-deep);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.action-btn-main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--eucalyptus-main);
	color: #ffffff;
	font-family: 'Readex 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(28, 59, 43, 0.4);
	animation: action-cta-beat 1.8s ease-in-out infinite;
	transition: transform 0.15s ease, background 0.15s ease;
}
.action-btn-main:hover {
	background: var(--eucalyptus-deep);
	animation: none;
	transform: translateY(-2px);
}
.action-btn-main:active {
	transform: translateY(0);
}
.action-btn-main svg {
	stroke: currentColor;
	flex-shrink: 0;
}

@keyframes action-cta-beat {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 6px 22px rgba(28, 59, 43, 0.4);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 10px 32px rgba(28, 59, 43, 0.55);
	}
}

.action-cta-box__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--eucalyptus-txt-secondary);
}
.action-cta-box__warranty,
.action-cta-box__delivery {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	color: var(--eucalyptus-deep);
}
.action-cta-box__warranty svg,
.action-cta-box__delivery svg {
	stroke: currentColor;
}

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

#cmt-main-container {
	margin-top: 28px;
	padding-top: 4px;
}
.cmt-wrapper-block__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--eucalyptus-dark-blue);
	font-weight: 600;
	font-size: 15px;
}
.cmt-wrapper-block__header svg {
	fill: var(--eucalyptus-dark-blue);
}
.cmt-wrapper-block__filter {
	margin-left: auto;
	font-size: 13px;
	color: var(--eucalyptus-txt-secondary);
	font-weight: 500;
}

.cmt-entry-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
}
.cmt-entry-card + .cmt-entry-card {
	border-top: 1px solid var(--eucalyptus-line-border);
}
.cmt-entry-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.cmt-entry-body {
	flex: 1;
	min-width: 0;
}
.cmt-entry-head {
	font-size: 13px;
	color: var(--eucalyptus-txt-secondary);
	margin-bottom: 4px;
}
.cmt-entry-head b {
	color: var(--eucalyptus-dark-blue);
	font-weight: 600;
	margin-right: 8px;
}
.cmt-entry-text {
	font-size: 14px;
	color: var(--eucalyptus-txt-primary);
	line-height: 1.55;
	margin-bottom: 8px;
	word-break: break-word;
}
.cmt-entry-actions {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: -8px;
}
.cmt-entry-actions button {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	border-radius: 50px;
	color: var(--eucalyptus-txt-secondary);
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.cmt-entry-actions button:hover {
	background: #eaefec;
	color: var(--eucalyptus-dark-blue);
}
.cmt-entry-actions button svg {
	fill: currentColor;
}

.cmt-entry-actions button.cmt-btn-like.is-liked,
.cmt-entry-actions button.is-liked {
	color: #1c3b2b !important;
	background-color: #e4ece7 !important;
}

.cmt-entry-actions button.cmt-btn-dislike.is-disliked,
.cmt-entry-actions button.is-disliked {
	color: #dc2626 !important;
	background-color: #fef2f2 !important;
}

#btn-reaction-trigger {
	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-reaction-trigger.is-liked {
	color: #1c3b2b !important;
	background-color: #e4ece7 !important;
	border-color: #1c3b2b !important;
}

.cmt-entry-card--nested {
	margin-top: 14px;
	margin-left: 0;
	padding: 12px 0 0 16px;
	border-left: 2px solid var(--eucalyptus-line-border);
	border-top: none !important;
}
.cmt-entry-card--nested .cmt-entry-avatar {
	width: 32px;
	height: 32px;
}
.cmt-entry-card--nested .cmt-entry-text {
	font-size: 13.5px;
}

@media (max-width: 520px) {
	.cmt-entry-avatar {
		width: 32px;
		height: 32px;
	}
	.cmt-entry-text {
		font-size: 13.5px;
	}
	.cmt-entry-card--nested .cmt-entry-avatar {
		width: 28px;
		height: 28px;
	}
}

.site-footer-shell {
	background: #ffffff;
	border-top: 1px solid var(--eucalyptus-line-border);
	padding: 24px 0 20px;
	text-align: center;
	margin-top: 32px;
}
.site-footer-shell__copyright {
	font-size: 12px;
	color: var(--eucalyptus-txt-secondary);
	margin-bottom: 4px;
}
.site-footer-shell__details {
	font-size: 11px;
	color: var(--eucalyptus-txt-secondary);
	opacity: 0.7;
	margin-bottom: 12px;
}
.site-footer-shell__navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.site-footer-shell__navigation a {
	color: var(--eucalyptus-txt-secondary);
	font-size: 13px;
	transition: color 0.15s ease;
}
.site-footer-shell__navigation a:hover {
	color: var(--eucalyptus-dark-blue);
}
.site-footer-shell__divider {
	color: #cbd5e1;
}

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

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

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

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

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

.deal-anchor-media {
	display: block;
	width: 100%;
	text-decoration: none;
}

.deal-product-preview {
	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;
}

.deal-product-preview:hover {
	transform: scale(1.05);
}

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

.malachite-accent-text {
	color: #1c3b2b;
}

.deal-subheadline-text {
	font-size: 15px;
	color: #516358;
	margin: 0 0 20px 0;
	font-weight: 400;
}

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

.deal-benefit-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #121c17;
}

.deal-benefit-icon {
	width: 20px;
	height: 20px;
	background: #e4ece7;
	color: #1c3b2b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	flex-shrink: 0;
}

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

.action-btn-main:hover {
	background: #0e2217;
	transform: translateY(-1px);
}

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

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

.deal-trust-footer {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	color: #828e9c;
	font-weight: 600;
}

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

.deal-assurance-icon {
	width: 56px;
	height: 56px;
	background: #f0fdf4;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	flex-shrink: 0;
}

.deal-assurance-content h3 {
	font-size: 16px;
	font-weight: 800;
	color: #09131a;
	margin: 0 0 4px 0;
}

.deal-assurance-content p {
	font-size: 13px;
	color: #516358;
	line-height: 1.5;
	margin: 0;
}

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

	.product-hero-grid {
		flex-direction: column;
		gap: 20px;
	}

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

.cmt-input-wrapper {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 28px;
}

.cmt-input-wrapper__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background-color: #dbe4df;
}

#cmt-submit-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cmt-post-form__field-wrapper {
	position: relative;
	width: 100%;
}

#cmt-text-area {
	width: 100%;
	padding: 4px 0 6px 0;
	border: none;
	border-bottom: 1px solid #cbd5e1;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	color: #09131a;
	outline: none;
	resize: none;
	min-height: 24px;
	line-height: 1.4;
	box-sizing: border-box;
	display: block;
	overflow: hidden;
}

.cmt-post-form__active-border {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #1c3b2b;
	transition: width 0.2s ease, left 0.2s ease;
}

#cmt-text-area:focus ~ .cmt-post-form__active-border {
	width: 100%;
	left: 0;
}

#cmt-actions-row {
	display: none;
	justify-content: flex-end;
	margin-top: 8px;
}

#cmt-actions-row.is-active-panel {
	display: flex;
}

.cmt-control-panel__group {
	display: flex;
	align-items: center;
	gap: 8px;
}

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

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

#cmt-btn-post {
	background-color: #334155;
	color: #ffffff;
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

#cmt-btn-post:hover:not(:disabled) {
	background-color: #1e293b;
}

#cmt-btn-post:disabled {
	background-color: #f1f5f9;
	color: #94a3b8;
	cursor: not-allowed;
}

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

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

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

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