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

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

:root {
	--sapphire-brand: #1e3a8a;
	--sapphire-deep-shade: #1e293b;
	--sapphire-subtle-accent: #f0fdf4;
	--sapphire-dark-text: #0f172a;
	--app-canvas-light: #fafafa;
	--app-card-surface: #ffffff;
	--sapphire-muted-text: #64748b;
	--sapphire-border-line: #cbd5e1;
}

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

body {
	font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	background: var(--app-canvas-light);
	color: var(--sapphire-dark-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-wrapper {
	max-width: 880px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.top-navigation-bar {
	background: #ffffff;
	border-bottom: 1px solid var(--sapphire-border-line);
	padding: 12px 0;
}
.top-navigation-bar__inner {
	display: flex;
	align-items: center;
}
.site-brand-badge {
	display: flex;
	align-items: center;
	gap: 8px;
}
.site-brand-badge__icon {
	width: 30px;
	height: 30px;
	background: var(--sapphire-brand);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.site-brand-badge__icon svg {
	width: 18px;
	height: 18px;
	fill: #ffffff;
}
.site-brand-badge__title {
	font-family: 'Urbanist', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--sapphire-dark-text);
	letter-spacing: -0.3px;
}

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

.video-screen-wrapper {
	margin: 0 -20px 18px;
}
.video-screen-wrapper #eco-player {
	border-radius: 0;
	overflow: hidden;
}
@media (max-width: 640px) {
	.primary-content-layout {
		padding: 0 0 32px;
	}
	.layout-shell-wrapper {
		padding-left: 0;
		padding-right: 0;
	}
	.primary-heading-text,
	.author-profile-card,
	.promo-banner-wrapper,
	#featured-deal-container,
	#feedback-section-holder,
	.bottom-footer-panel .layout-shell-wrapper {
		padding-left: 16px;
		padding-right: 16px;
	}
	.video-screen-wrapper {
		margin: 0 0 14px;
	}
}
@media (min-width: 641px) {
	.primary-heading-text {
		margin-top: 16px;
	}
}

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

.author-profile-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--sapphire-border-line);
}
.author-profile-card__pic {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.author-profile-card__details {
	flex: 1;
	min-width: 0;
}
.author-profile-card__author {
	font-size: 15px;
	font-weight: 600;
	color: var(--sapphire-dark-text);
	line-height: 1.2;
}
.author-profile-card__date {
	font-size: 13px;
	color: var(--sapphire-muted-text);
	margin-top: 2px;
}
.engagement-action-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.media-interaction-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	background: #e2e8f0;
	color: var(--sapphire-dark-text);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.media-interaction-button:hover {
	background: #cbd5e1;
}
.media-interaction-button svg {
	fill: currentColor;
}
.media-interaction-button.active-liked {
	color: #15803d !important;
	background-color: #dcfce7 !important;
}

@media (max-width: 640px) {
	.engagement-action-bar .media-interaction-button span {
		display: none;
	}
	.media-interaction-button {
		padding: 8px 10px;
	}
}
@media (max-width: 420px) {
	.author-profile-card__date {
		font-size: 12px;
	}
}

#featured-deal-container {
	display: none;
	text-align: center;
	margin: 0 0 12px;
}
#featured-deal-container.cta-display-animation {
	animation: cta-display-animation 0.6s ease-out both;
}
@keyframes cta-display-animation {
	0% {
		opacity: 0;
		transform: translateY(-12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.promo-banner-wrapper__subtitle {
	font-size: 12px;
	font-weight: 700;
	color: #15803d;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.primary-convert-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #15803d;
	color: #ffffff;
	font-family: 'Urbanist', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 18px 32px;
	border-radius: 12px;
	width: 100%;
	max-width: 440px;
	box-shadow: 0 6px 22px rgba(21, 128, 61, 0.35);
	animation: convert-button-pulse 1.8s ease-in-out infinite;
	transition: transform 0.15s ease, background 0.15s ease;
}
.primary-convert-button:hover {
	background: #166534;
	animation: none;
	transform: translateY(-2px);
}
.primary-convert-button:active {
	transform: translateY(0);
}
.primary-convert-button svg {
	stroke: currentColor;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}
.primary-convert-button:hover svg {
	transform: translateX(4px);
}

@keyframes convert-button-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 6px 22px rgba(21, 128, 61, 0.35);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 10px 32px rgba(21, 128, 61, 0.5);
	}
}

.promo-banner-wrapper__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--sapphire-muted-text);
}
.promo-banner-wrapper__warranty,
.promo-banner-wrapper__delivery {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	color: var(--sapphire-brand);
}
.promo-banner-wrapper__warranty svg,
.promo-banner-wrapper__delivery svg {
	stroke: currentColor;
}

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

#feedback-section-holder {
	margin-top: 28px;
	padding-top: 4px;
}
.feedback-hub-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--sapphire-dark-text);
	font-weight: 600;
	font-size: 15px;
}
.feedback-hub-header svg {
	fill: var(--sapphire-dark-text);
}
.feedback-hub-header__filter {
	margin-left: auto;
	font-size: 13px;
	color: var(--sapphire-muted-text);
	font-weight: 500;
}

.user-feedback-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
}
.user-feedback-card + .user-feedback-card {
	border-top: 1px solid var(--sapphire-border-line);
}
.user-feedback-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.user-feedback-body {
	flex: 1;
	min-width: 0;
}
.user-feedback-meta {
	font-size: 13px;
	color: var(--sapphire-muted-text);
	margin-bottom: 4px;
}
.user-feedback-meta b {
	color: var(--sapphire-dark-text);
	font-weight: 600;
	margin-right: 8px;
}
.user-feedback-text {
	font-size: 14px;
	color: var(--sapphire-dark-text);
	line-height: 1.55;
	margin-bottom: 8px;
	word-break: break-word;
}
.user-feedback-actions {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: -8px;
}

.upvote-action-btn,
.downvote-action-btn,
.respond-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	border-radius: 50px;
	color: var(--sapphire-muted-text);
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.upvote-action-btn:hover,
.downvote-action-btn:hover,
.respond-action-btn:hover {
	background: #e2e8f0;
	color: var(--sapphire-dark-text);
}

.upvote-action-btn svg,
.downvote-action-btn svg {
	fill: currentColor;
}

.upvote-action-btn.active-liked {
	color: #15803d !important;
	background-color: #dcfce7 !important;
}

.downvote-action-btn.active-disliked {
	color: #dc2626 !important;
	background-color: #fee2e2 !important;
}

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

@media (max-width: 520px) {
	.user-feedback-avatar {
		width: 32px;
		height: 32px;
	}
	.user-feedback-text {
		font-size: 13.5px;
	}
	.user-feedback-card--reply .user-feedback-avatar {
		width: 28px;
		height: 28px;
	}
}

.bottom-footer-panel {
	background: #ffffff;
	border-top: 1px solid var(--sapphire-border-line);
	padding: 24px 0 20px;
	text-align: center;
	margin-top: 32px;
}
.bottom-footer-panel__copyright {
	font-size: 12px;
	color: var(--sapphire-muted-text);
	margin-bottom: 4px;
}
.bottom-footer-panel__details {
	font-size: 11px;
	color: var(--sapphire-muted-text);
	opacity: 0.7;
	margin-bottom: 12px;
}
.bottom-footer-panel__navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.bottom-footer-panel__navigation a {
	color: var(--sapphire-muted-text);
	font-size: 13px;
	transition: color 0.15s ease;
}
.bottom-footer-panel__navigation a:hover {
	color: var(--sapphire-dark-text);
}
.bottom-footer-panel__divider {
	color: #cbd5e1;
}

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

.offer-display-card {
	font-family: 'Urbanist', 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;
}

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

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

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

.offer-item-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;
}

.offer-item-preview:hover {
	transform: scale(1.05);
}

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

.sapphire-brand-highlight {
	color: var(--sapphire-brand);
}

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

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

.offer-perk-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--sapphire-dark-text);
}

.offer-perk-icon {
	width: 20px;
	height: 20px;
	background: var(--sapphire-subtle-accent);
	color: #15803d;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

.offer-guarantee-bar {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	color: var(--sapphire-muted-text);
	font-weight: 600;
}

.offer-security-block {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--sapphire-border-line);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.offer-security-icon {
	width: 56px;
	height: 56px;
	background: var(--sapphire-subtle-accent);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	flex-shrink: 0;
}

.offer-security-content h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--sapphire-dark-text);
	margin: 0 0 4px 0;
}

.offer-security-content p {
	font-size: 13px;
	color: var(--sapphire-muted-text);
	line-height: 1.5;
	margin: 0;
}

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

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

	.offer-security-block {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

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

.response-input-shell__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background-color: var(--sapphire-border-line);
}

#user-response-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.user-response-form__field-wrapper {
	position: relative;
	width: 100%;
}

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

.user-response-form__active-border {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--sapphire-brand);
	transition: width 0.2s ease, left 0.2s ease;
}

#user-response-field:focus ~ .user-response-form__active-border {
	width: 100%;
	left: 0;
}

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

#user-response-toolbar.toolbar-active-state {
	display: flex;
}

.user-response-toolbar__group {
	display: flex;
	align-items: center;
	gap: 8px;
}

#user-response-cancel {
	background: transparent;
	border: none;
	color: #475569;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

#user-response-cancel:hover {
	background-color: rgba(0, 0, 0, 0.08);
}

#user-response-send {
	background-color: #475569;
	color: #ffffff;
	border: none;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 18px;
	cursor: pointer;
}

#user-response-send:hover:not(:disabled) {
	background-color: #1e293b;
}

#user-response-send:disabled {
	background-color: #e2e8f0;
	color: #94a3b8;
	cursor: not-allowed;
}

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

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

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

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