/* ==========================================================================
   NukiVibe – Landing Page Styles (SWELL compatible)
   Reference-inspired layout with original branding
   ========================================================================== */

:root {
	--nv-pink: #ff1493;
	--nv-pink-light: #ff6bce;
	--nv-pink-soft: #fce7f3;
	--nv-bg: #f7f2f8;
	--nv-bg-card: #ffffff;
	--nv-header-bg: #18181b;
	--nv-text: #1a1a1a;
	--nv-text-muted: #6b7280;
	--nv-text-light: #a1a1aa;
	--nv-border: rgba(0, 0, 0, 0.06);
	--nv-radius: 14px;
	--nv-radius-sm: 10px;
	--nv-radius-lg: 20px;
	--nv-shadow: 0 4px 24px rgba(255, 20, 147, 0.08);
	--nv-gradient-video: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #a855f7 100%);
	--nv-gradient-manga: linear-gradient(135deg, #881337 0%, #be123c 50%, #e11d48 100%);
	--nv-font: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--nv-max-width: 1200px;
	--nv-header-height: 64px;
	--nv-bottom-nav-height: 72px;
}

/* Reset SWELL interference on LP pages */
.nv-app,
.nv-app * {
	box-sizing: border-box;
}

.nv-app {
	font-family: var(--nv-font);
	color: var(--nv-text);
	background: var(--nv-bg);
	min-height: 100vh;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.nv-app img {
	max-width: 100%;
	height: auto;
	display: block;
}

.nv-app a {
	color: inherit;
	text-decoration: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.nv-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--nv-header-bg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nv-header__inner {
	max-width: var(--nv-max-width);
	margin: 0 auto;
	padding: 0 20px;
	height: var(--nv-header-height);
	display: flex;
	align-items: center;
	gap: 16px;
}

.nv-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.nv-logo__text {
	font-size: 1.35rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--nv-pink-light), var(--nv-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.02em;
}

.nv-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1;
	justify-content: center;
}

.nv-nav__btn,
.nv-nav__link {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border: none;
	background: transparent;
	color: var(--nv-text-light);
	font-size: 0.8125rem;
	font-family: inherit;
	cursor: pointer;
	border-radius: var(--nv-radius-sm);
	transition: color 0.2s, background 0.2s;
	white-space: nowrap;
}

.nv-nav__btn:hover,
.nv-nav__link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
}

.nv-nav__arrow {
	font-size: 0.65rem;
	opacity: 0.6;
}

.nv-nav__icon {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.1);
	position: relative;
	flex-shrink: 0;
}

.nv-nav__icon--video::after {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 7px;
	border-color: transparent transparent transparent var(--nv-pink-light);
}

.nv-nav__icon--manga::after {
	content: '';
	position: absolute;
	inset: 3px;
	border: 2px solid var(--nv-pink-light);
	border-radius: 2px;
}

.nv-nav__icon--gravure::after {
	content: '★';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: var(--nv-pink-light);
}

.nv-nav__icon--blog::after {
	content: '';
	position: absolute;
	inset: 4px;
	border-top: 2px solid var(--nv-pink-light);
	box-shadow: 0 4px 0 var(--nv-pink-light), 0 8px 0 var(--nv-pink-light);
}

.nv-nav__icon--search::after {
	content: '';
	position: absolute;
	inset: 3px;
	border: 2px solid var(--nv-pink-light);
	border-radius: 50%;
}

.nv-nav__icon--random::after {
	content: '⇄';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: var(--nv-pink-light);
}

.nv-nav__item {
	position: relative;
}

.nv-nav__dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 180px;
	background: #27272a;
	border-radius: var(--nv-radius-sm);
	padding: 8px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
	z-index: 100;
}

.nv-nav__item.is-open .nv-nav__dropdown {
	display: block;
}

.nv-nav__dropdown a {
	display: block;
	padding: 10px 14px;
	color: var(--nv-text-light);
	font-size: 0.8125rem;
	border-radius: 6px;
	transition: background 0.15s, color 0.15s;
}

.nv-nav__dropdown a:hover {
	background: rgba(255, 20, 147, 0.15);
	color: var(--nv-pink-light);
}

.nv-login-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #fff;
	color: var(--nv-header-bg);
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 999px;
	flex-shrink: 0;
	transition: transform 0.2s, box-shadow 0.2s;
}

.nv-login-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.nv-login-btn__arrow {
	font-size: 1rem;
}

.nv-mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.nv-mobile-menu-btn span {
	display: block;
	height: 2px;
	background: #fff;
	border-radius: 2px;
}

/* ==========================================================================
   Main layout
   ========================================================================== */

.nv-main {
	max-width: var(--nv-max-width);
	margin: 0 auto;
	padding: 24px 20px calc(var(--nv-bottom-nav-height) + 32px);
}

.nv-section {
	margin-bottom: 36px;
}

.nv-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.nv-section__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--nv-pink);
	margin: 0;
}

.nv-section__title-icon {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: var(--nv-pink-soft);
	position: relative;
	flex-shrink: 0;
}

.nv-section__title-icon--gravure::after {
	content: '★';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--nv-pink);
}

.nv-section__title-icon--news::after {
	content: '📰';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.nv-section__title-icon--manga::after,
.nv-section__title-icon--recommend::after {
	content: '';
	position: absolute;
	inset: 6px;
	border: 2px solid var(--nv-pink);
	border-radius: 2px;
}

.nv-section__title-icon--video::after {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent var(--nv-pink);
}

.nv-section__title-icon--ranking::after {
	content: '🏆';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.nv-section__title-icon--campaign::after {
	content: '🎁';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.nv-section__title-icon--hot::after {
	content: '🔥';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.nv-section__more {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--nv-pink);
	transition: opacity 0.2s;
}

.nv-section__more:hover {
	opacity: 0.7;
}

/* ==========================================================================
   Horizontal slider
   ========================================================================== */

.nv-slider__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.nv-slider__track::-webkit-scrollbar {
	display: none;
}

.nv-slider__item {
	flex: 0 0 auto;
	width: 140px;
	scroll-snap-align: start;
}

.nv-slider__thumb {
	position: relative;
	border-radius: var(--nv-radius);
	overflow: hidden;
	aspect-ratio: 9 / 16;
	background: #e5e7eb;
	box-shadow: var(--nv-shadow);
}

.nv-slider__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nv-slider__play {
	position: absolute;
	bottom: 8px;
	right: 8px;
	width: 28px;
	height: 28px;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--nv-pink-light);
}

.nv-slider__scrollbar {
	height: 4px;
	background: rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	margin-top: 12px;
	overflow: hidden;
}

.nv-slider__scrollbar-thumb {
	display: block;
	height: 100%;
	background: var(--nv-pink);
	border-radius: 4px;
	width: 30%;
	transition: transform 0.1s;
}

/* ==========================================================================
   Category cards
   ========================================================================== */

.nv-category-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.nv-category-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	border-radius: var(--nv-radius-lg);
	color: #fff;
	min-height: 100px;
	transition: transform 0.2s, box-shadow 0.2s;
}

.nv-category-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.nv-category-card--video {
	background: var(--nv-gradient-video);
}

.nv-category-card--manga {
	background: var(--nv-gradient-manga);
}

.nv-category-card__title {
	display: block;
	font-size: 1.25rem;
	font-weight: 800;
}

.nv-category-card__sub {
	display: block;
	font-size: 0.8125rem;
	opacity: 0.85;
	margin-top: 2px;
}

/* ==========================================================================
   Promo banner
   ========================================================================== */

.nv-promo-banner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: var(--nv-radius-lg);
	overflow: hidden;
	background: linear-gradient(135deg, #ff1493 0%, #ff6bce 100%);
	color: #fff;
	min-height: 180px;
	transition: transform 0.2s;
}

.nv-promo-banner:hover {
	transform: scale(1.005);
}

.nv-promo-banner__content {
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nv-promo-banner__label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.9;
	margin: 0 0 8px;
}

.nv-promo-banner__title {
	font-size: 1.75rem;
	font-weight: 900;
	line-height: 1.3;
	margin: 0 0 16px;
}

.nv-promo-banner__cta {
	display: inline-flex;
	align-self: flex-start;
	padding: 10px 20px;
	background: #18181b;
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 700;
}

.nv-promo-banner__visual {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	position: relative;
}

.nv-promo-banner__visual-inner {
	position: absolute;
	inset: 20px;
	border-radius: var(--nv-radius);
	background:
		radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.2) 0%, transparent 40%);
}

/* ==========================================================================
   News
   ========================================================================== */

.nv-news-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nv-news-card {
	background: var(--nv-bg-card);
	border-radius: var(--nv-radius);
	border: 1px solid var(--nv-border);
	overflow: hidden;
	transition: box-shadow 0.2s;
}

.nv-news-card:hover {
	box-shadow: var(--nv-shadow);
}

.nv-news-card__link {
	display: block;
	padding: 20px;
}

.nv-news-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.nv-news-card__category {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--nv-pink);
	background: var(--nv-pink-soft);
	padding: 4px 10px;
	border-radius: 999px;
}

.nv-news-card__date {
	font-size: 0.75rem;
	color: var(--nv-text-muted);
}

.nv-news-card__title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 8px;
	line-height: 1.5;
}

.nv-news-card__excerpt {
	font-size: 0.875rem;
	color: var(--nv-text-muted);
	margin: 0 0 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nv-news-card__readmore {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--nv-pink);
}

/* ==========================================================================
   Content grid
   ========================================================================== */

.nv-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.nv-card {
	background: var(--nv-bg-card);
	border-radius: var(--nv-radius);
	overflow: hidden;
	border: 1px solid var(--nv-border);
	transition: transform 0.2s, box-shadow 0.2s;
}

.nv-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--nv-shadow);
}

.nv-card__link {
	display: block;
}

.nv-card__thumb {
	position: relative;
	aspect-ratio: 3 / 4;
	background: #e5e7eb;
	overflow: hidden;
}

.nv-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nv-card__play {
	position: absolute;
	bottom: 8px;
	right: 8px;
	width: 24px;
	height: 24px;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--nv-pink-light);
}

.nv-card__title {
	font-size: 0.8125rem;
	font-weight: 600;
	margin: 0;
	padding: 10px 12px 4px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nv-card__action {
	display: block;
	padding: 0 12px 12px;
	font-size: 0.75rem;
	color: var(--nv-pink);
	font-weight: 600;
}

/* ==========================================================================
   Campaigns
   ========================================================================== */

.nv-campaigns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.nv-campaign {
	border-radius: var(--nv-radius-lg);
	padding: 28px;
	color: #fff;
	min-height: 120px;
	display: flex;
	align-items: center;
	transition: transform 0.2s;
}

.nv-campaign:hover {
	transform: translateY(-2px);
}

.nv-campaign--purple {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.nv-campaign--pink {
	background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.nv-campaign__title {
	font-size: 1.125rem;
	font-weight: 800;
	margin: 0 0 4px;
}

.nv-campaign__subtitle {
	font-size: 0.875rem;
	margin: 0;
	opacity: 0.9;
}

/* ==========================================================================
   Ranking
   ========================================================================== */

.nv-ranking {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nv-ranking__item {
	display: flex;
	align-items: stretch;
	gap: 12px;
	background: var(--nv-bg-card);
	border-radius: var(--nv-radius);
	border: 1px solid var(--nv-border);
	overflow: hidden;
	transition: box-shadow 0.2s;
}

.nv-ranking__item:hover {
	box-shadow: var(--nv-shadow);
}

.nv-ranking__rank {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	flex-shrink: 0;
	font-size: 1.25rem;
	font-weight: 900;
	color: var(--nv-pink);
	background: var(--nv-pink-soft);
}

.nv-ranking__item:nth-child(1) .nv-ranking__rank {
	background: linear-gradient(135deg, #ffd700, #ffb800);
	color: #fff;
}

.nv-ranking__item:nth-child(2) .nv-ranking__rank {
	background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
	color: #fff;
}

.nv-ranking__item:nth-child(3) .nv-ranking__rank {
	background: linear-gradient(135deg, #cd7f32, #b87333);
	color: #fff;
}

.nv-ranking__link {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
	padding: 12px 16px 12px 0;
}

.nv-ranking__thumb {
	position: relative;
	width: 72px;
	flex-shrink: 0;
	border-radius: var(--nv-radius-sm);
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background: #e5e7eb;
}

.nv-ranking__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nv-ranking__play {
	position: absolute;
	bottom: 4px;
	right: 4px;
	width: 20px;
	height: 20px;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--nv-pink-light);
}

.nv-ranking__title {
	font-size: 0.875rem;
	font-weight: 600;
	margin: 0 0 4px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nv-ranking__action {
	font-size: 0.75rem;
	color: var(--nv-pink);
	font-weight: 600;
}

/* ==========================================================================
   Bottom navigation (mobile)
   ========================================================================== */

.nv-bottom-nav {
	display: none;
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 32px);
	max-width: 480px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 999px;
	padding: 8px 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	z-index: 999;
	justify-content: space-around;
}

.nv-bottom-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 6px 10px;
	color: var(--nv-text-muted);
	font-size: 0.625rem;
	font-weight: 600;
	border-radius: 999px;
	transition: color 0.2s;
}

.nv-bottom-nav__item--active {
	color: var(--nv-pink);
}

.nv-bottom-nav__icon {
	width: 22px;
	height: 22px;
	position: relative;
}

.nv-bottom-nav__icon--home::after {
	content: '⌂';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.nv-bottom-nav__icon--video::after {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent currentColor;
}

.nv-bottom-nav__icon--manga::after {
	content: '';
	position: absolute;
	inset: 3px;
	border: 2px solid currentColor;
	border-radius: 2px;
}

.nv-bottom-nav__icon--gravure::after {
	content: '★';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.nv-bottom-nav__icon--mypage::after {
	content: '👤';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

/* ==========================================================================
   Single / Archive pages
   ========================================================================== */

.nv-page-header {
	margin-bottom: 24px;
}

.nv-page-header__title {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--nv-pink);
	margin: 0 0 4px;
}

.nv-page-header__desc {
	font-size: 0.875rem;
	color: var(--nv-text-muted);
	margin: 0;
}

.nv-single {
	background: var(--nv-bg-card);
	border-radius: var(--nv-radius-lg);
	overflow: hidden;
	border: 1px solid var(--nv-border);
}

.nv-single__hero {
	aspect-ratio: 16 / 9;
	background: #e5e7eb;
}

.nv-single__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nv-single__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--nv-gradient-video);
	color: #fff;
	font-weight: 700;
}

.nv-single__placeholder--manga {
	background: var(--nv-gradient-manga);
}

.nv-single__content {
	padding: 24px;
}

.nv-single__title {
	font-size: 1.375rem;
	font-weight: 800;
	margin: 0 0 12px;
}

.nv-badge {
	display: inline-block;
	padding: 4px 12px;
	background: var(--nv-pink-soft);
	color: var(--nv-pink);
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 999px;
}

.nv-single__body {
	margin: 16px 0 24px;
	color: var(--nv-text-muted);
	font-size: 0.9375rem;
}

.nv-single__cta {
	display: inline-flex;
	padding: 14px 28px;
	background: var(--nv-pink);
	color: #fff;
	font-weight: 700;
	border-radius: 999px;
	opacity: 0.6;
	pointer-events: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.nv-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 768px) {
	.nv-nav {
		display: none;
		position: fixed;
		top: var(--nv-header-height);
		left: 0;
		right: 0;
		bottom: 0;
		flex-direction: column;
		background: var(--nv-header-bg);
		padding: 20px;
		overflow-y: auto;
		z-index: 999;
	}

	.nv-nav.is-open {
		display: flex;
	}

	.nv-nav__item--dropdown .nv-nav__dropdown {
		position: static;
		transform: none;
		display: none;
		background: rgba(255, 255, 255, 0.05);
		margin-top: 4px;
	}

	.nv-nav__item.is-open .nv-nav__dropdown {
		display: block;
	}

	.nv-mobile-menu-btn {
		display: flex;
		margin-left: auto;
	}

	.nv-login-btn span:first-child {
		display: none;
	}

	.nv-login-btn {
		padding: 10px 14px;
	}

	.nv-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.nv-category-cards,
	.nv-campaigns,
	.nv-promo-banner {
		grid-template-columns: 1fr;
	}

	.nv-promo-banner__visual {
		min-height: 120px;
	}

	.nv-bottom-nav {
		display: flex;
	}

	.nv-main {
		padding-bottom: calc(var(--nv-bottom-nav-height) + 48px);
	}

	.nv-slider__item {
		width: 120px;
	}
}

@media (max-width: 480px) {
	.nv-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nv-header__inner {
		padding: 0 12px;
	}

	.nv-main {
		padding: 16px 12px calc(var(--nv-bottom-nav-height) + 40px);
	}

	.nv-promo-banner__title {
		font-size: 1.375rem;
	}

	.nv-promo-banner__content {
		padding: 24px;
	}
}

/* HOT badge on recommend section */
#recommend .nv-section__title::after {
	content: 'HOT';
	margin-left: 8px;
	font-size: 0.625rem;
	font-weight: 800;
	background: linear-gradient(135deg, #ff6b00, #ff1493);
	color: #fff;
	padding: 3px 8px;
	border-radius: 999px;
	vertical-align: middle;
}
