@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;500;600;700;800&display=swap');

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

:root {
	--theme-brand: #0f0f0f;
	--theme-accent: #272727;
	--theme-shade: #000000;
	--theme-dark-navy: #0f0f0f;
	--page-bg: #ffffff;
	--card-bg: #ffffff;
	--text-primary: #0f0f0f;
	--text-subdued: #606060;
	--border-subtle: #e5e5e5;
}

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

body {
	font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial,
		sans-serif;
	background: var(--page-bg);
	color: var(--text-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-viewport-container {
	max-width: 880px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.top-navbar-block {
	background: #ffffff;
	border-bottom: 1px solid var(--border-subtle);
	padding: 12px 0;
}
.top-navbar-block__inner {
	display: flex;
	align-items: center;
}
.brand-identity-box {
	display: flex;
	align-items: center;
	gap: 8px;
}
.brand-identity-box__symbol {
	width: 30px;
	height: 30px;
	background: var(--theme-brand);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.brand-identity-box__symbol svg {
	width: 18px;
	height: 18px;
	fill: #ffffff;
}
.brand-identity-box__label {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--theme-dark-navy);
	letter-spacing: -0.3px;
}

.primary-view-section {
	padding: 0 0 40px;
}

.player-embed-holder {
	margin: 0 -20px 18px;
}
.player-embed-holder #eco-player {
	border-radius: 0;
	overflow: hidden;
}
@media (max-width: 640px) {
	.primary-view-section {
		padding: 0 0 32px;
	}
	.site-viewport-container {
		padding-left: 0;
		padding-right: 0;
	}
	.main-article-heading,
	.author-meta-card,
	.promo-banner-wrapper,
	#promo-banner-wrapper,
	.site-comments-block,
	.footer-legal-bar .site-viewport-container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.player-embed-holder {
		margin: 0 0 14px;
	}
}
@media (min-width: 641px) {
	.main-article-heading {
		margin-top: 16px;
	}
}

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

.author-meta-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--border-subtle);
}
.author-meta-card__user-pic {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.author-meta-card__info {
	flex: 1;
	min-width: 0;
}
.author-meta-card__author-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--theme-dark-navy);
	line-height: 1.2;
}
.author-meta-card__post-date {
	font-size: 13px;
	color: var(--text-subdued);
	margin-top: 2px;
}
.interactive-toolbar-box {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.btn-video-interaction {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	background: #f2f2f2;
	color: var(--theme-dark-navy);
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease;
}
.btn-video-interaction:hover {
	background: #e5e5e5;
}
.btn-video-interaction svg {
	fill: currentColor;
}
@media (max-width: 640px) {
	.interactive-toolbar-box .btn-video-interaction span {
		display: none;
	}
	.btn-video-interaction {
		padding: 8px 10px;
	}
}
@media (max-width: 420px) {
	.author-meta-card__post-date {
		font-size: 12px;
	}
}

#promo-banner-wrapper {
	display: none;
	text-align: center;
	margin: 0 0 12px;
}
#promo-banner-wrapper.promo-card-appear {
	animation: promo-card-appear 0.6s ease-out both;
}
@keyframes promo-card-appear {
	0% {
		opacity: 0;
		transform: translateY(-12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.promo-banner-wrapper__subtitle {
	font-size: 12px;
	font-weight: 700;
	color: var(--theme-shade);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.cta-button-element {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #1e7e34;
	color: #ffffff;
	font-family: 'Bricolage Grotesque', 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(30, 126, 52, 0.4);
	animation: cta-button-element-pulse 1.8s ease-in-out infinite;
	transition: transform 0.15s ease, background 0.15s ease;
}
.cta-button-element:hover {
	background: #145a23;
	animation: none;
	transform: translateY(-2px);
}
.cta-button-element:active {
	transform: translateY(0);
}
.cta-button-element svg {
	stroke: currentColor;
	flex-shrink: 0;
}

@keyframes cta-button-element-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 6px 22px rgba(30, 126, 52, 0.4);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 10px 32px rgba(30, 126, 52, 0.55);
	}
}

.promo-banner-wrapper__footer-info {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--text-subdued);
}
.promo-banner-wrapper__guarantee-badge,
.promo-banner-wrapper__shipping-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	color: var(--theme-shade);
}
.promo-banner-wrapper__guarantee-badge svg,
.promo-banner-wrapper__shipping-badge svg {
	stroke: currentColor;
}

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

.site-comments-block {
	margin-top: 28px;
	padding-top: 4px;
}
.site-comments-block__top-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--theme-dark-navy);
	font-weight: 600;
	font-size: 15px;
}
.site-comments-block__top-bar svg {
	fill: var(--theme-dark-navy);
}
.site-comments-block__sorting {
	margin-left: auto;
	font-size: 13px;
	color: var(--text-subdued);
	font-weight: 500;
}

.user-review-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
}
.user-review-item + .user-review-item {
	border-top: 1px solid var(--border-subtle);
}
.user-review-item__avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.user-review-item__body {
	flex: 1;
	min-width: 0;
}
.user-review-item__meta {
	font-size: 13px;
	color: var(--text-subdued);
	margin-bottom: 4px;
}
.user-review-item__meta b {
	color: var(--theme-dark-navy);
	font-weight: 600;
	margin-right: 8px;
}
.user-review-item__text {
	font-size: 14px;
	color: var(--text-primary);
	line-height: 1.55;
	margin-bottom: 8px;
	word-break: break-word;
}
.user-review-item__actions {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: -8px;
}
.user-review-item__actions button,
.btn-video-interaction {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	border-radius: 50px;
	color: var(--text-subdued);
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.user-review-item__actions button:hover {
	background: #f2f2f2;
	color: var(--theme-dark-navy);
}
.user-review-item__actions button svg {
	fill: currentColor;
}

.user-review-item__actions button.has-user-liked,
.btn-video-interaction.has-user-liked {
	color: #1e7e34 !important;
	background-color: #e6f4ea !important;
}

.user-review-item__actions button.has-user-disliked {
	color: #d93025 !important;
	background-color: #fce8e6 !important;
}

.user-review-item--nested {
	margin-top: 14px;
	margin-left: 0;
	padding: 12px 0 0 16px;
	border-left: 2px solid var(--border-subtle);
	border-top: none !important;
}
.user-review-item--nested .user-review-item__avatar {
	width: 32px;
	height: 32px;
}
.user-review-item--nested .user-review-item__text {
	font-size: 13.5px;
}

@media (max-width: 520px) {
	.user-review-item__avatar {
		width: 32px;
		height: 32px;
	}
	.user-review-item__text {
		font-size: 13.5px;
	}
	.user-review-item--nested .user-review-item__avatar {
		width: 28px;
		height: 28px;
	}
}

.footer-legal-bar {
	background: #ffffff;
	border-top: 1px solid var(--border-subtle);
	padding: 24px 0 20px;
	text-align: center;
	margin-top: 32px;
}
.footer-legal-bar__copy-text {
	font-size: 12px;
	color: var(--text-subdued);
	margin-bottom: 4px;
}
.footer-legal-bar__entity-name {
	font-size: 11px;
	color: var(--text-subdued);
	opacity: 0.7;
	margin-bottom: 12px;
}
.footer-legal-bar__links-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.footer-legal-bar__links-wrap a {
	color: var(--text-subdued);
	font-size: 13px;
	transition: color 0.15s ease;
}
.footer-legal-bar__links-wrap a:hover {
	color: var(--theme-dark-navy);
}
.footer-legal-bar__dot {
	color: #cccccc;
}

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

.offer-display-card {
	font-family: 'Bricolage Grotesque', sans-serif;
	max-width: 900px;
	margin: 30px auto;
	padding: 32px;
	box-sizing: border-box;
}

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

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

.item-availability-pill {
	display: inline-block;
	padding: 6px 14px;
	background: var(--theme-dark-navy);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 20px;
	margin-bottom: 20px;
}

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

.item-hero-image {
	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;
}

.item-hero-image:hover {
	transform: scale(1.05);
}

.offer-display-title {
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 900;
	color: var(--theme-dark-navy);
	margin: 0 0 8px 0;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.colored-highlight-inline {
	color: var(--theme-brand);
}

.offer-display-subtitle {
	font-size: 15px;
	color: var(--text-subdued);
	margin: 0 0 20px 0;
	font-weight: 400;
}

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

.highlight-item-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
}

.item-check-bullet {
	width: 20px;
	height: 20px;
	background: #f2f2f2;
	color: var(--theme-shade);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	flex-shrink: 0;
}

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

.guarantee-box-section {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--border-subtle);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

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

.guarantee-box-section__content h3 {
	font-size: 16px;
	font-weight: 800;
	color: var(--theme-dark-navy);
	margin: 0 0 4px 0;
}

.guarantee-box-section__content p {
	font-size: 13px;
	color: var(--text-subdued);
	line-height: 1.5;
	margin: 0;
}

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

	.offer-display-grid {
		flex-direction: column;
		gap: 20px;
	}

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

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

.comment-entry-box__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background-color: var(--border-subtle);
}

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

.user-comment-form__field-group {
	position: relative;
	width: 100%;
}

.user-comment-field {
	width: 100%;
	padding: 4px 0 6px 0;
	border: none;
	border-bottom: 1px solid #ccc;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	color: var(--theme-dark-navy);
	outline: none;
	resize: none;
	min-height: 24px;
	line-height: 1.4;
	box-sizing: border-box;
	display: block;
	overflow: hidden;
}

.user-comment-form__focus-line {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--theme-brand);
	transition: width 0.2s ease, left 0.2s ease;
}

.user-comment-field:focus ~ .user-comment-form__focus-line {
	width: 100%;
	left: 0;
}

.comment-actions-bar {
	display: none;
	justify-content: flex-end;
	margin-top: 8px;
}

.comment-actions-bar.is-controls-visible {
	display: flex;
}

.comment-actions-bar__controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.comment-abort-btn {
	background: transparent;
	border: none;
	color: #606060;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

.comment-abort-btn:hover {
	background-color: #272727;
	color: #ffffff;
}

.comment-send-btn {
	background-color: #272727;
	color: #ffffff;
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

.comment-send-btn:hover:not(:disabled) {
	background-color: #0f0f0f;
}

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

.policy-page-container {
	padding: 16px;
	list-style-type: none;
}

.policy-page-container h1 {
	padding: 0;
	font-size: 32px;
}

.policy-page-container article {
	padding: 16px 0 0 0;
}

.policy-page-container li {
	list-style-type: none;
}
