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

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

:root {
	--nv4-dark-accent: #0f0f0f;
	--nv4-sub-accent: #272727;
	--nv4-surface-base: #fdfdfd;
	--nv4-panel-bg: #ffffff;
	--nv4-primary-text: #0f0f0f;
	--nv4-muted-text: #606060;
	--nv4-divider-color: #e5e5e5;
	--nv4-cta-green: #2e7d32;
	--nv4-cta-hover: #1b5e20;
}

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

body {
	font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	background: var(--nv4-surface-base);
	color: var(--nv4-primary-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;
}

.nv4-site-view-container {
	max-width: 880px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.nv4-top-nav-bar {
	background: #ffffff;
	border-bottom: 1px solid var(--nv4-divider-color);
	padding: 12px 0;
}
.nv4-top-nav-bar__flex {
	display: flex;
	align-items: center;
}
.nv4-channel-identity-box {
	display: flex;
	align-items: center;
	gap: 8px;
}
.nv4-channel-identity-box__icon {
	width: 30px;
	height: 30px;
	background: var(--nv4-dark-accent);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nv4-channel-identity-box__icon svg {
	width: 18px;
	height: 18px;
	fill: #ffffff;
}
.nv4-channel-identity-box__label {
	font-family: 'Sora', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--nv4-primary-text);
	letter-spacing: -0.3px;
}

.nv4-main-stage-block {
	padding: 0 0 40px;
}

.nv4-video-screen-hold {
	margin: 0 -20px 18px;
}
.nv4-video-screen-hold #nv4-player-mount-port {
	border-radius: 12px;
	overflow: hidden;
}
@media (max-width: 640px) {
	.nv4-main-stage-block {
		padding: 0 0 32px;
	}
	.nv4-site-view-container {
		padding-left: 0;
		padding-right: 0;
	}
	.nv4-media-headline-txt,
	.nv4-creator-meta-bar,
	.nv4-promo-spotlight-pane,
	#nv4-promo-spotlight-pane,
	#nv4-forum-discussion-wrapper,
	.nv4-footer-legal-shell .nv4-site-view-container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.nv4-video-screen-hold {
		margin: 0 0 14px;
	}
}
@media (min-width: 641px) {
	.nv4-media-headline-txt {
		margin-top: 16px;
	}
}

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

.nv4-creator-meta-bar {
	display: flex;
	align-items: center;
	gap: 12px;
}
.nv4-creator-meta-bar__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.nv4-creator-meta-bar__meta {
	flex: 1;
	min-width: 0;
}
.nv4-creator-meta-bar__author {
	font-size: 15px;
	font-weight: 600;
	color: var(--nv4-primary-text);
	line-height: 1.2;
}
.nv4-creator-meta-bar__pub-date {
	font-size: 13px;
	color: var(--nv4-muted-text);
	margin-top: 2px;
}
.nv4-media-action-tray {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.nv4-media-action-tray button,
.nv4-player-react-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 50px;
	background: #f2f2f2;
	color: var(--nv4-primary-text);
	font-size: 13px;
	font-weight: 600;
	transition: background 0.15s ease;
}
.nv4-media-action-tray button:hover,
.nv4-player-react-trigger:hover {
	background: #e5e5e5;
}
.nv4-media-action-tray button svg,
.nv4-player-react-trigger svg {
	fill: currentColor;
}
@media (max-width: 640px) {
	.nv4-media-action-tray button span,
	.nv4-player-react-trigger span {
		display: none;
	}
	.nv4-media-action-tray button,
	.nv4-player-react-trigger {
		padding: 8px 10px;
	}
}
@media (max-width: 420px) {
	.nv4-creator-meta-bar__pub-date {
		font-size: 12px;
	}
}

#nv4-promo-spotlight-pane {
	display: none;
	text-align: center;
	margin: 0 0 12px;
}
#nv4-promo-spotlight-pane.nv4-popup-mount-anim {
	animation: nv4-popup-mount-anim 0.6s ease-out both;
}
@keyframes nv4-popup-mount-anim {
	0% {
		opacity: 0;
		transform: translateY(-12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.nv4-promo-spotlight-pane__header {
	font-size: 12px;
	font-weight: 700;
	color: var(--nv4-dark-accent);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.nv4-lead-checkout-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--nv4-cta-green);
	color: #ffffff;
	font-family: 'Sora', 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(46, 125, 50, 0.35);
	animation: nv4-lead-checkout-button-pulse 1.8s ease-in-out infinite;
	transition: transform 0.15s ease, background 0.15s ease;
}
.nv4-lead-checkout-button:hover {
	background: var(--nv4-cta-hover);
	animation: none;
	transform: translateY(-2px);
}
.nv4-lead-checkout-button:active {
	transform: translateY(0);
}
.nv4-lead-checkout-button svg {
	stroke: currentColor;
	flex-shrink: 0;
}

@keyframes nv4-lead-checkout-button-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 6px 22px rgba(46, 125, 50, 0.35);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 10px 32px rgba(46, 125, 50, 0.5);
	}
}

.nv4-promo-spotlight-pane__foot {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--nv4-muted-text);
}
.nv4-promo-spotlight-pane__badge,
.nv4-promo-spotlight-pane__shipping {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	color: var(--nv4-dark-accent);
}
.nv4-promo-spotlight-pane__badge svg,
.nv4-promo-spotlight-pane__shipping svg {
	stroke: currentColor;
}

@media (max-width: 520px) {
	.nv4-promo-spotlight-pane {
		padding: 22px 18px;
		border-radius: 10px;
	}
	.nv4-lead-checkout-button {
		font-size: 15px;
		padding: 14px 18px;
		gap: 8px;
		letter-spacing: 0.3px;
		width: 80%;
		max-width: 320px;
	}
	.nv4-promo-spotlight-pane__foot {
		font-size: 12px;
		gap: 12px;
	}
}

#nv4-forum-discussion-wrapper {
	margin-top: 28px;
	padding-top: 4px;
}
.nv4-forum-discussion-wrapper__title-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--nv4-primary-text);
	font-weight: 600;
	font-size: 15px;
}
.nv4-forum-discussion-wrapper__title-bar svg {
	fill: var(--nv4-primary-text);
}
.nv4-forum-discussion-wrapper__sorting {
	margin-left: auto;
	font-size: 13px;
	color: var(--nv4-muted-text);
	font-weight: 500;
}

.nv4-feedback-card-unit {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
}
.nv4-feedback-card-unit + .nv4-feedback-card-unit {
	border-top: 1px solid var(--nv4-divider-color);
}
.nv4-feedback-card-unit__photo {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.nv4-feedback-card-unit__content {
	flex: 1;
	min-width: 0;
}
.nv4-feedback-card-unit__header {
	font-size: 13px;
	color: var(--nv4-muted-text);
	margin-bottom: 4px;
}
.nv4-feedback-card-unit__header b {
	color: var(--nv4-primary-text);
	font-weight: 600;
	margin-right: 8px;
}
.nv4-feedback-card-unit__message {
	font-size: 14px;
	color: var(--nv4-primary-text);
	line-height: 1.55;
	margin-bottom: 8px;
	word-break: break-word;
}
.nv4-feedback-card-unit__toolbar {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: -8px;
}
.nv4-feedback-card-unit__toolbar button {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	border-radius: 50px;
	color: var(--nv4-muted-text);
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.nv4-feedback-card-unit__toolbar button:hover {
	background: #f2f2f2;
	color: var(--nv4-primary-text);
}
.nv4-feedback-card-unit__toolbar button svg {
	fill: currentColor;
}

.nv4-feedback-card-unit__toolbar button.nv4-flag-thumb-active,
.nv4-player-react-trigger.nv4-flag-thumb-active,
.nv4-media-action-tray button.nv4-flag-thumb-active {
	color: #2e7d32 !important;
	background-color: #e8f5e9 !important;
}

.nv4-feedback-card-unit__toolbar button.nv4-flag-thumb-down {
	color: #d32f2f !important;
	background-color: #ffebee !important;
}

.nv4-feedback-card-unit--reply {
	margin-top: 14px;
	margin-left: 0;
	padding: 12px 0 0 16px;
	border-left: 2px solid var(--nv4-divider-color);
	border-top: none !important;
}
.nv4-feedback-card-unit--reply .nv4-feedback-card-unit__photo {
	width: 32px;
	height: 32px;
}
.nv4-feedback-card-unit--reply .nv4-feedback-card-unit__message {
	font-size: 13.5px;
}

@media (max-width: 520px) {
	.nv4-feedback-card-unit__photo {
		width: 32px;
		height: 32px;
	}
	.nv4-feedback-card-unit__message {
		font-size: 13.5px;
	}
	.nv4-feedback-card-unit--reply .nv4-feedback-card-unit__photo {
		width: 28px;
		height: 28px;
	}
}

.nv4-footer-legal-shell {
	background: #ffffff;
	border-top: 1px solid var(--nv4-divider-color);
	padding: 24px 0 20px;
	text-align: center;
	margin-top: 32px;
}
.nv4-footer-legal-shell__notice {
	font-size: 12px;
	color: var(--nv4-muted-text);
	margin-bottom: 4px;
}
.nv4-footer-legal-shell__entity {
	font-size: 11px;
	color: var(--nv4-muted-text);
	opacity: 0.7;
	margin-bottom: 12px;
}
.nv4-footer-legal-shell__links-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.nv4-footer-legal-shell__links-row a {
	color: var(--nv4-muted-text);
	font-size: 13px;
	transition: color 0.15s ease;
}
.nv4-footer-legal-shell__links-row a:hover {
	color: var(--nv4-primary-text);
}
.nv4-footer-legal-shell__spacer {
	color: #cccccc;
}

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

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

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

.nv4-merch-visual-col {
	flex: 1 1 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: space-around;
}

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

.nv4-goods-hyperlink-wrap {
	display: block;
	width: 100%;
	text-decoration: none;
}

.nv4-product-featured-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;
}

.nv4-product-featured-img:hover {
	transform: scale(1.05);
}

.nv4-product-display-showcase__title {
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 700;
	color: var(--nv4-primary-text);
	margin: 0 0 8px 0;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.nv4-accent-brand-txt {
	color: var(--nv4-dark-accent);
}

.nv4-product-display-showcase__subtitle {
	font-size: 15px;
	color: var(--nv4-muted-text);
	margin: 0 0 20px 0;
	font-weight: 400;
}

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

.nv4-spec-bullet-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #0f0f0f;
}

.nv4-spec-bullet-row__icon {
	width: 20px;
	height: 20px;
	background: #f2f2f2;
	color: var(--nv4-dark-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

.nv4-security-badge-caption {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	color: #606060;
	font-weight: 600;
}

.nv4-guarantee-shield-panel {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--nv4-divider-color);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

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

.nv4-guarantee-shield-panel__content h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--nv4-primary-text);
	margin: 0 0 4px 0;
}

.nv4-guarantee-shield-panel__content p {
	font-size: 13px;
	color: var(--nv4-muted-text);
	line-height: 1.5;
	margin: 0;
}

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

	.nv4-product-display-showcase__grid {
		flex-direction: column;
		gap: 20px;
	}

	.nv4-guarantee-shield-panel {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

.nv4-post-draft-wrapper {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 28px;
}

.nv4-post-draft-wrapper__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background-color: var(--nv4-divider-color);
}

.nv4-post-create-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.nv4-post-create-form__field-group {
	position: relative;
	width: 100%;
}

.nv4-post-message-input {
	width: 100%;
	padding: 4px 0 6px 0;
	border: none;
	border-bottom: 1px solid #cccccc;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	color: var(--nv4-primary-text);
	outline: none;
	resize: none;
	min-height: 24px;
	line-height: 1.4;
	box-sizing: border-box;
	display: block;
	overflow: hidden;
}

.nv4-post-create-form__active-bar {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #0f0f0f;
	transition: width 0.2s ease, left 0.2s ease;
}

.nv4-post-message-input:focus ~ .nv4-post-create-form__active-bar {
	width: 100%;
	left: 0;
}

.nv4-post-actions-panel {
	display: none;
	justify-content: flex-end;
	margin-top: 8px;
}

.nv4-post-actions-panel.nv4-status-controls-active {
	display: flex;
}

.nv4-post-actions-panel__buttons {
	display: flex;
	align-items: center;
	gap: 8px;
}

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

.nv4-post-cancel-btn:hover {
	background-color: #606060;
	color: #ffffff;
}

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

.nv4-post-publish-btn:hover:not(:disabled) {
	background-color: #0f0f0f;
}

.nv4-post-publish-btn:disabled {
	background-color: #f2f2f2;
	color: #909090;
	cursor: not-allowed;
}

.nv4-policy-terms-layout {
	padding: 16px;
	list-style-type: none;
}

.nv4-policy-terms-layout h1 {
	padding: 0;
	font-size: 32px;
}

.nv4-policy-terms-layout article {
	padding: 16px 0 0 0;
}

.nv4-policy-terms-layout li {
	list-style-type: none;
}
