@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

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

:root {
	--site-core-dark: #0f0f0f;
	--site-neutral-shade: #272727;
	--site-solid-black: #000000;
	--site-slate-deep: #0f0f0f;
	--site-canvas-bg: #fdfdfd;
	--site-panel-bg: #ffffff;
	--site-body-text: #0f0f0f;
	--site-subtle-text: #606060;
	--site-border-subtle: #e5e5e5;
	--site-cta-green: #2e7d32;
	--site-cta-green-hover: #1b5e20;
	--site-vote-up-active: #2e7d32;
	--site-vote-up-bg: #e8f5e9;
	--site-vote-down-active: #d32f2f;
	--site-vote-down-bg: #ffebee;
}

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

body {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	background: var(--site-canvas-bg);
	color: var(--site-body-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;
}

.viewport-constrain-wrapper {
	max-width: 880px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.site-masthead-navigation {
	background: #ffffff;
	border-bottom: 1px solid var(--site-border-subtle);
	padding: 12px 0;
}

.site-masthead-navigation__flex {
	display: flex;
	align-items: center;
}

.identity-brand-block {
	display: flex;
	align-items: center;
	gap: 8px;
}

.identity-brand-block__icon {
	width: 30px;
	height: 30px;
	background: var(--site-core-dark);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.identity-brand-block__icon svg {
	width: 18px;
	height: 18px;
	fill: #ffffff;
}

.identity-brand-block__text {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--site-slate-deep);
	letter-spacing: -0.3px;
}

.primary-content-viewport {
	padding: 0 0 40px;
}

.media-embed-frame-box {
	margin: 0 -20px 18px;
}

.media-embed-frame-box #player-media-runtime-node {
	border-radius: 0;
	overflow: hidden;
}

@media (max-width: 640px) {
	.primary-content-viewport {
		padding: 0 0 32px;
	}
	.viewport-constrain-wrapper {
		padding-left: 0;
		padding-right: 0;
	}
	.featured-headline-title,
	.creator-metadata-panel,
	.deal-spotlight-wrapper,
	#promo-reveal-container,
	#community-discussion-section,
	.site-compliance-footer .viewport-constrain-wrapper {
		padding-left: 16px;
		padding-right: 16px;
	}
	.media-embed-frame-box {
		margin: 0 0 14px;
	}
}

@media (min-width: 641px) {
	.featured-headline-title {
		margin-top: 16px;
	}
}

.featured-headline-title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--site-slate-deep);
	margin-bottom: 16px;
	letter-spacing: -0.3px;
}

.creator-metadata-panel {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--site-border-subtle);
}

.creator-metadata-panel__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.creator-metadata-panel__details {
	flex: 1;
	min-width: 0;
}

.creator-metadata-panel__name {
	font-size: 15px;
	font-weight: 600;
	color: var(--site-slate-deep);
	line-height: 1.2;
}

.creator-metadata-panel__timestamp {
	font-size: 13px;
	color: var(--site-subtle-text);
	margin-top: 2px;
}

.interactive-control-strip {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.media-pill-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	background: #f2f2f2;
	color: var(--site-slate-deep);
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease;
}

.media-pill-action-btn:hover {
	background: #e5e5e5;
}

.media-pill-action-btn svg {
	fill: currentColor;
}

@media (max-width: 640px) {
	.interactive-control-strip .media-pill-action-btn span {
		display: none;
	}
	.media-pill-action-btn {
		padding: 8px 10px;
	}
}

@media (max-width: 420px) {
	.creator-metadata-panel__timestamp {
		font-size: 12px;
	}
}

#promo-reveal-container {
	display: none;
	text-align: center;
	margin: 0 0 12px;
}

#promo-reveal-container.promo-reveal-slide-anim {
	animation: promo-reveal-slide-anim 0.6s ease-out both;
}

@keyframes promo-reveal-slide-anim {
	0% {
		opacity: 0;
		transform: translateY(-12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.deal-spotlight-wrapper__tagline {
	font-size: 12px;
	font-weight: 700;
	color: var(--site-solid-black);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.primary-conversion-trigger-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--site-cta-green);
	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(46, 125, 50, 0.4);
	animation: conversion-btn-pulse-effect 1.8s ease-in-out infinite;
	transition: transform 0.15s ease, background 0.15s ease;
}

.primary-conversion-trigger-btn:hover {
	background: var(--site-cta-green-hover);
	animation: none;
	transform: translateY(-2px);
}

.primary-conversion-trigger-btn:active {
	transform: translateY(0);
}

.primary-conversion-trigger-btn svg {
	stroke: currentColor;
	flex-shrink: 0;
}

@keyframes conversion-btn-pulse-effect {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 6px 22px rgba(46, 125, 50, 0.4);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 10px 32px rgba(46, 125, 50, 0.55);
	}
}

.deal-spotlight-wrapper__meta-info {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--site-subtle-text);
}

.deal-spotlight-wrapper__guarantee-icon,
.deal-spotlight-wrapper__delivery-icon {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	color: var(--site-solid-black);
}

.deal-spotlight-wrapper__guarantee-icon svg,
.deal-spotlight-wrapper__delivery-icon svg {
	stroke: currentColor;
}

@media (max-width: 520px) {
	.deal-spotlight-wrapper {
		padding: 22px 18px;
		border-radius: 10px;
	}
	.primary-conversion-trigger-btn {
		font-size: 15px;
		padding: 14px 18px;
		gap: 8px;
		letter-spacing: 0.3px;
		width: 80%;
		max-width: 320px;
	}
	.deal-spotlight-wrapper__meta-info {
		font-size: 12px;
		gap: 12px;
	}
}

#community-discussion-section {
	margin-top: 28px;
	padding-top: 4px;
}

#community-discussion-section .discussion-segment-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--site-slate-deep);
	font-weight: 600;
	font-size: 15px;
}

#community-discussion-section .discussion-segment-header svg {
	fill: var(--site-slate-deep);
}

#community-discussion-section .discussion-sort-trigger {
	margin-left: auto;
	font-size: 13px;
	color: var(--site-subtle-text);
	font-weight: 500;
}

.community-review-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
}

.community-review-item + .community-review-item {
	border-top: 1px solid var(--site-border-subtle);
}

.community-review-item__avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.community-review-item__body {
	flex: 1;
	min-width: 0;
}

.community-review-item__meta {
	font-size: 13px;
	color: var(--site-subtle-text);
	margin-bottom: 4px;
}

.community-review-item__meta b {
	color: var(--site-slate-deep);
	font-weight: 600;
	margin-right: 8px;
}

.community-review-item__text {
	font-size: 14px;
	color: var(--site-body-text);
	line-height: 1.55;
	margin-bottom: 8px;
	word-break: break-word;
}

.community-review-item__actions {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: -8px;
}

.community-review-item__actions button,
.media-pill-action-btn,
.vote-up-interactive-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	border-radius: 50px;
	color: var(--site-subtle-text);
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.community-review-item__actions button:hover {
	background: #f2f2f2;
	color: var(--site-slate-deep);
}

.community-review-item__actions button svg {
	fill: currentColor;
}

.community-review-item__actions button.vote-positive-active,
.media-pill-action-btn.vote-positive-active,
.vote-up-interactive-btn.vote-positive-active {
	color: var(--site-vote-up-active) !important;
	background-color: var(--site-vote-up-bg) !important;
}

.community-review-item__actions button.vote-negative-active {
	color: var(--site-vote-down-active) !important;
	background-color: var(--site-vote-down-bg) !important;
}

.community-review-item--nested {
	margin-top: 14px;
	margin-left: 0;
	padding: 12px 0 0 16px;
	border-left: 2px solid var(--site-border-subtle);
	border-top: none !important;
}

.community-review-item--nested .community-review-item__avatar {
	width: 32px;
	height: 32px;
}

.community-review-item--nested .community-review-item__text {
	font-size: 13.5px;
}

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

.site-compliance-footer {
	background: #ffffff;
	border-top: 1px solid var(--site-border-subtle);
	padding: 24px 0 20px;
	text-align: center;
	margin-top: 32px;
}

.site-compliance-footer__copyright {
	font-size: 12px;
	color: var(--site-subtle-text);
	margin-bottom: 4px;
}

.site-compliance-footer__company-id {
	font-size: 11px;
	color: var(--site-subtle-text);
	opacity: 0.7;
	margin-bottom: 12px;
}

.site-compliance-footer__nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.site-compliance-footer__nav-links a {
	color: var(--site-subtle-text);
	font-size: 13px;
	transition: color 0.15s ease;
}

.site-compliance-footer__nav-links a:hover {
	color: var(--site-slate-deep);
}

.site-compliance-footer__separator {
	color: #cccccc;
}

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

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

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

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

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

.item-anchor-container {
	display: block;
	width: 100%;
	text-decoration: none;
}

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

.showcase-primary-heading {
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 900;
	color: var(--site-slate-deep);
	margin: 0 0 8px 0;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.text-accent-highlight-token {
	color: var(--site-core-dark);
}

.showcase-secondary-heading {
	font-size: 15px;
	color: var(--site-subtle-text);
	margin: 0 0 20px 0;
	font-weight: 400;
}

.product-bullet-spec-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.product-bullet-spec-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--site-body-text);
}

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

.security-verification-badge {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	color: var(--site-subtle-text);
	font-weight: 600;
}

.warranty-assurance-container {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--site-border-subtle);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

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

.warranty-assurance-container__content h3 {
	font-size: 16px;
	font-weight: 800;
	color: var(--site-slate-deep);
	margin: 0 0 4px 0;
}

.warranty-assurance-container__content p {
	font-size: 13px;
	color: var(--site-subtle-text);
	line-height: 1.5;
	margin: 0;
}

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

	.showcase-feature-layout-grid {
		flex-direction: column;
		gap: 20px;
	}

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

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

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

#entry-composer-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.entry-input-enclosure {
	position: relative;
	width: 100%;
}

#entry-input-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(--site-slate-deep);
	outline: none;
	resize: none;
	min-height: 24px;
	line-height: 1.4;
	box-sizing: border-box;
	display: block;
	overflow: hidden;
}

.entry-input-focus-line {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--site-core-dark);
	transition: width 0.2s ease, left 0.2s ease;
}

#entry-input-field:focus ~ .entry-input-focus-line {
	width: 100%;
	left: 0;
}

#entry-control-toolbar {
	display: none;
	justify-content: flex-end;
	margin-top: 8px;
}

#entry-control-toolbar.toolbar-visible-state {
	display: flex;
}

.entry-button-action-strip {
	display: flex;
	align-items: center;
	gap: 8px;
}

#entry-discard-trigger {
	background: transparent;
	border: none;
	color: #606060;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

#entry-discard-trigger:hover {
	background-color: #272727;
	color: #ffffff;
}

#entry-publish-trigger {
	background-color: #272727;
	color: #ffffff;
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

#entry-publish-trigger:hover:not(:disabled) {
	background-color: #0f0f0f;
}

#entry-publish-trigger:disabled {
	background-color: #f2f2f2;
	color: #909090;
	cursor: not-allowed;
}

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

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

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

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