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

:root {
	--sw-amber: #c86414;
	--sw-amber-bright: #e07b28;
	--sw-amber-dark: #8c4108;
	--sw-navy: #1f1a17;
	--sw-bg: #f9f8f6;
	--sw-card: #fff;
	--sw-text: #2b2623;
	--sw-text-muted: #736b65;
	--sw-border: #e8e3de;
}

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

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

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

.site-top-header {
	background: #fff;
	border-bottom: 1px solid var(--sw-border);
	padding: 12px 0;
}
.site-top-header__container {
	display: flex;
	align-items: center;
}
.brand-identity {
	display: flex;
	align-items: center;
	gap: 8px;
}
.brand-identity__icon {
	width: 30px;
	height: 30px;
	background: var(--sw-amber);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.brand-identity__icon svg {
	width: 18px;
	height: 18px;
	fill: #fff;
}
.brand-identity__title {
	font-family: 'Cabinet Grotesk', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--sw-navy);
	letter-spacing: -0.3px;
}

.main-content-area {
	padding: 0 0 40px;
}

.media-player-wrapper {
	margin: 0 -20px 18px;
}
.media-player-wrapper #eco-player {
	border-radius: 0;
	overflow: hidden;
}
@media (max-width: 640px) {
	.main-content-area {
		padding: 0 0 32px;
	}
	.layout-shell {
		padding-left: 0;
		padding-right: 0;
	}
	.content-headline,
	.author-byline,
	.cta-action-box,
	#promo-view-block,
	.user-feed-section,
	.site-footer .layout-shell {
		padding-left: 16px;
		padding-right: 16px;
	}
	.media-player-wrapper {
		margin: 0 0 14px;
	}
}
@media (min-width: 641px) {
	.content-headline {
		margin-top: 16px;
	}
}

.content-headline {
	font-family: 'Cabinet Grotesk', sans-serif;
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--sw-navy);
	margin-bottom: 16px;
	letter-spacing: -0.3px;
}

.author-byline {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--sw-border);
}
.author-byline__avatar-img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.author-byline__details {
	flex: 1;
	min-width: 0;
}
.author-byline__publisher-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--sw-navy);
	line-height: 1.2;
}
.author-byline__timestamp-info {
	font-size: 13px;
	color: var(--sw-text-muted);
	margin-top: 2px;
}
.social-interaction-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.action-like-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	background: #f1ede8;
	color: var(--sw-navy);
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease;
}
.action-like-pill:hover {
	background: #e4ded7;
}
.action-like-pill svg {
	fill: currentColor;
}
@media (max-width: 640px) {
	.social-interaction-bar .action-like-pill span {
		display: none;
	}
	.action-like-pill {
		padding: 8px 10px;
	}
}
@media (max-width: 420px) {
	.author-byline__timestamp-info {
		font-size: 12px;
	}
}

#promo-view-block {
	display: none;
	text-align: center;
	margin: 0 0 12px;
}
#promo-view-block.cta-appear-anim {
	animation: cta-appear-anim 0.6s ease-out both;
}
@keyframes cta-appear-anim {
	0% {
		opacity: 0;
		transform: translateY(-12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.cta-action-box__label {
	font-size: 12px;
	font-weight: 700;
	color: var(--sw-amber-dark);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.main-order-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--sw-amber);
	color: #fff;
	font-family: 'Cabinet Grotesk', 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(200, 100, 20, 0.4);
	animation: promo-glow-pulse 1.8s ease-in-out infinite;
	transition: transform 0.15s ease, background 0.15s ease;
}
.main-order-trigger:hover {
	background: var(--sw-amber-dark);
	animation: none;
	transform: translateY(-2px);
}
.main-order-trigger:active {
	transform: translateY(0);
}
.main-order-trigger svg {
	stroke: currentColor;
	flex-shrink: 0;
}

@keyframes promo-glow-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 6px 22px rgba(200, 100, 20, 0.4);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 10px 32px rgba(200, 100, 20, 0.55);
	}
}

.cta-action-box__trust-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--sw-text-muted);
}
.cta-action-box__shield-tag,
.cta-action-box__delivery-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	color: var(--sw-amber-dark);
}
.cta-action-box__shield-tag svg,
.cta-action-box__delivery-tag svg {
	stroke: currentColor;
}

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

.user-feed-section {
	margin-top: 28px;
	padding-top: 4px;
}
.user-feed-section__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--sw-navy);
	font-weight: 600;
	font-size: 15px;
}
.user-feed-section__title svg {
	fill: var(--sw-navy);
}
.user-feed-section__order-select {
	margin-left: auto;
	font-size: 13px;
	color: var(--sw-text-muted);
	font-weight: 500;
}

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

.user-card-item__tools button.state-liked {
	color: #a34803 !important;
	background-color: #fceee3 !important;
}

.user-card-item__tools button.state-disliked {
	color: #dc2626 !important;
	background-color: #fef2f2 !important;
}

.user-card-item__tools button {
	transition: color 0.2s ease, background-color 0.2s ease;
}

.action-like-pill {
	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;
}

.action-like-pill.state-liked {
	color: #a34803 !important;
	background-color: #fceee3 !important;
	border-color: #a34803 !important;
}

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

@media (max-width: 520px) {
	.user-card-item__userpic {
		width: 32px;
		height: 32px;
	}
	.user-card-item__msg {
		font-size: 13.5px;
	}
	.user-card-item--nested .user-card-item__userpic {
		width: 28px;
		height: 28px;
	}
}

.site-footer {
	background: #fff;
	border-top: 1px solid var(--sw-border);
	padding: 24px 0 20px;
	text-align: center;
	margin-top: 32px;
}
.site-footer__copyright-note {
	font-size: 12px;
	color: var(--sw-text-muted);
	margin-bottom: 4px;
}
.site-footer__entity-info {
	font-size: 11px;
	color: var(--sw-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(--sw-text-muted);
	font-size: 13px;
	transition: color 0.15s ease;
}
.site-footer__navigation a:hover {
	color: var(--sw-navy);
}
.site-footer__divider-symbol {
	color: #cbd5e1;
}

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

.promo-product-container {
	font-family: 'Cabinet Grotesk', sans-serif;
	max-width: 900px;
	margin: 30px auto;
	padding: 32px;
	box-sizing: border-box;
}

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

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

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

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

.promo-main-photo {
	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;
}

.promo-main-photo:hover {
	transform: scale(1.05);
}

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

.accent-text-highlight {
	color: #a34803;
}

.promo-subhead-text {
	font-size: 15px;
	color: #736b65;
	margin: 0 0 20px 0;
	font-weight: 400;
}

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

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

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

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

.main-order-trigger:hover {
	background: #7a3501;
	transform: translateY(-1px);
}

.main-order-trigger svg {
	transition: transform 0.2s ease;
}

.main-order-trigger:hover svg {
	transform: translateX(4px);
}

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

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

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

.warranty-description h3 {
	font-size: 16px;
	font-weight: 800;
	color: #1f1a17;
	margin: 0 0 4px 0;
}

.warranty-description p {
	font-size: 13px;
	color: #736b65;
	line-height: 1.5;
	margin: 0;
}

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

	.promo-product-wrapper {
		flex-direction: column;
		gap: 20px;
	}

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

/* Контейнер формы */
.usr-post-box {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 28px;
}

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

.usr-entry-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.usr-entry-form__input-wrapper {
	position: relative;
	width: 100%;
}

.usr-entry-form__input-area {
	width: 100%;
	padding: 4px 0 6px 0;
	border: none;
	border-bottom: 1px solid #d1d5db;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	color: #1f1a17;
	outline: none;
	resize: none;
	min-height: 24px;
	line-height: 1.4;
	box-sizing: border-box;
	display: block;
	overflow: hidden;
}

.usr-entry-form__border-glow {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #1f1a17;
	transition: width 0.2s ease, left 0.2s ease;
}

.usr-entry-form__input-area:focus ~ .usr-entry-form__border-glow {
	width: 100%;
	left: 0;
}

/* Панель кнопок */
.usr-panel-controls {
	display: none;
	justify-content: flex-end;
	margin-top: 8px;
}

.usr-panel-controls.is-focused {
	display: flex;
}

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

.usr-act-reset {
	background: transparent;
	border: none;
	color: #1f1a17;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

.usr-act-reset:hover {
	background-color: rgba(31, 26, 23, 0.12);
}

.usr-act-send {
	background-color: #1f1a17;
	color: #ffffff;
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

.usr-act-send:hover:not(:disabled) {
	background-color: #3b332e;
}

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

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

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

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

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