.short-videos {
	width: 100%;
}

.short-videos__grid {
	display: flex;
	gap: 16px;
	align-items: stretch;
}

.short-videos__left {
	flex: 0 0 65%;
	min-width: 0;
	position: relative;
}

.short-videos__right {
	min-width: 0;
}

.short-videos__swiper-main {
	height: 620px;
	border-radius: 10px;
	overflow: hidden;
	background: #0b0b0b;
}

.short-videos__nav {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 5;
	pointer-events: none;
}

.short-videos__nav-btn {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(17, 24, 39, 0.55);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.short-videos__nav-btn:hover {
	background: rgba(17, 24, 39, 0.75);
	border-color: rgba(255, 255, 255, 0.55);
	transform: translateY(-1px);
}

.short-videos__nav-btn:active {
	transform: translateY(0);
}

.short-videos__nav-btn:focus-visible {
	outline: 2px solid rgba(245, 158, 11, 0.9);
	outline-offset: 2px;
}

.short-videos__video-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.short-videos__video,
.short-videos__iframe {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #000;
}

.short-videos__iframe {
	border: 0;
}

.short-videos__iframe--empty {
	background: #111;
}

.short-videos__tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 0px;
}

.short-videos__tab {
	border: 1px solid #e5e7eb;
	background: #fff;
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 13px;
	line-height: 1;
	cursor: pointer;
}

.short-videos__tab.is-active {
	border-color: #f59e0b;
	background: #fff7ed;
	color: #9a3412;
}

.short-videos__detail {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px;
}

.short-videos__detail-header {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 14px;
	align-items: center;
}

.short-videos__detail-thumb {
	width: 84px;
	height: 84px;
	border-radius: 999px;
	border: 2px solid #f59e0b;
	object-fit: cover;
	background: #f3f4f6;
}

.short-videos__detail-row {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	font-size: 13px;
	color: #6b7280;
}

.short-videos__detail-row--top {
	color: #111827;
	flex-wrap: nowrap;
}

.short-videos__detail-row--sub {
	margin-top: 6px;
}

.short-videos__detail-level {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 12px;
	border-radius: 999px;
	background: linear-gradient(90deg, #94a3b8 0%, #cbd5e1 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.short-videos__detail-level-text {
	min-width: 10px;
	text-align: center;
}

.short-videos__detail-brand {
	font-weight: 700;
	font-size: 19px;
	line-height: 1.1;
	color: #1f2937;
}

.short-videos__detail-views-wrap,
.short-videos__detail-time-wrap {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #6b7280;
	font-size: 14px;
}

.short-videos__detail-title {
	margin-top: 12px;
	font-weight: 500;
	font-size: 18px;
	color: #111827;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.short-videos__thumbs-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	margin-bottom: 8px;
	color: #1f2937;
}

.short-videos__thumbs-header-icon {
	color: #f59e0b;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.short-videos__thumbs-header-text {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.short-videos__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid #e5e7eb;
}

.short-videos__actions-left {
	display: inline-flex;
	align-items: center;
	gap: 18px;
}

.short-videos__actions-right {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.short-videos__action-btn {
	border: 0;
	background: transparent;
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6b7280;
	cursor: pointer;
}

.short-videos__action-btn.is-liked {
	color: #ef4444;
}

.short-videos__action-bubble {
	border-radius: 999px;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	min-height: unset;
}

.short-videos__action-bubble--likes {
	color: #ef4444;
	margin: 0;
}

.short-videos__action-bubble--comments {
	color: #2563eb;
	margin: 0;
}

.short-videos__modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.short-videos__modal.is-open {
	display: block;
}

.short-videos__modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.short-videos__modal-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(520px, calc(100vw - 32px));
	max-height: min(640px, calc(100vh - 64px));
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}

.short-videos__modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid #e5e7eb;
}

.short-videos__modal-title {
	font-weight: 700;
	color: #111827;
}

.short-videos__modal-close {
	border: 0;
	background: transparent;
	cursor: pointer;
	color: #6b7280;
	font-size: 18px;
	padding: 0;
	margin: 0;
	min-height: unset;
}

.short-videos__modal-subtitle {
	padding: 10px 16px 0 16px;
	font-size: 12px;
	color: #6b7280;
}

.short-videos__modal-body {
	padding: 12px 16px 16px 16px;
	overflow: auto;
	max-height: 520px;
}

.short-videos__modal-row {
	display: grid;
	grid-template-columns: 40px 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #f3f4f6;
}

.short-videos__modal-avatar {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	object-fit: cover;
	background: #f3f4f6;
}

.short-videos__modal-row-name {
	font-weight: 700;
	color: #111827;
	font-size: 13px;
}

.short-videos__modal-row-content {
	font-size: 13px;
	color: #374151;
	margin-top: 2px;
}

.short-videos__modal-row-time {
	font-size: 12px;
	color: #9ca3af;
	margin-top: 4px;
}

.short-videos__modal-row-icon {
	margin-top: 6px;
}

.short-videos__modal-row-icon--comment {
	color: #60a5fa;
}

.short-videos__modal-row-icon--heart {
	color: #ef4444;
}

.short-videos__modal-row-icons {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.short-videos__comments {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid #e5e7eb;
}

.short-videos__comments-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-weight: 700;
	color: #1f2937;
}

.short-videos__comments-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-height: 260px;
	overflow-y: auto;
}

.short-videos__comment-item {
	display: grid;
	grid-template-columns: 36px 1fr;
	gap: 10px;
}

.short-videos__comment-avatar {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	object-fit: cover;
	background: #f3f4f6;
}

.short-videos__comment-author {
	font-size: 13px;
	font-weight: 700;
	color: #111827;
}

.short-videos__comment-content {
	font-size: 13px;
	color: #374151;
	margin-top: 2px;
}

.short-videos__comment-time {
	font-size: 12px;
	color: #9ca3af;
	margin-top: 4px;
}

.short-videos__comments-empty {
	font-size: 13px;
	color: #9ca3af;
}

.short-videos__comment-form {
	margin-top: 14px;
}

.short-videos__comment-input {
	width: 100%;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 10px 12px;
	resize: vertical;
	min-height: 72px;
}

.short-videos__comment-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.short-videos__comment-login-hint {
	font-size: 12px;
	color: #9ca3af;
}

.short-videos__comment-submit {
	border: 0;
    border-radius: 20px;
    background: #f59e0b;
    color: #fff;
    padding: 0px 30px;
    cursor: pointer;
    margin: 0;
    text-transform: capitalize;
}

.short-videos__thumbs {
	margin-top: 12px;
	position: relative;
	padding: 0;
}

.short-videos__thumb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid #d1d5db;
	background: #f8fafc;
	color: #374151;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	transition: background 120ms ease, transform 120ms ease;
	margin: 0;
}

.short-videos__thumb-nav--prev {
	left: 0;
}

.short-videos__thumb-nav--next {
	right: 0;
}

.short-videos__thumb-nav:hover {
	background: #eef2ff;
	transform: translateY(-50%) scale(1.03);
}

.short-videos__thumb-btn {
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	width: 100%;
}

.short-videos__thumb-img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
	background: #f3f4f6;
	display: block;
}

.short-videos__thumb-img--placeholder {
	display: block;
}

.short-videos__loading,
.short-videos__empty {
	margin-top: 10px;
	font-size: 13px;
	color: #6b7280;
}

@media (max-width: 991px) {
	.short-videos__grid {
		flex-direction: column;
	}
	.short-videos__left,
	.short-videos__right {
		flex: 1 1 auto;
	}
	.short-videos__swiper-main {
		height: 520px;
	}
	.short-videos__detail-header {
		grid-template-columns: 64px 1fr;
		gap: 10px;
	}
	.short-videos__detail-thumb {
		width: 64px;
		height: 64px;
	}
	.short-videos__detail-brand {
		font-size: 17px;
	}
	.short-videos__detail-views-wrap,
	.short-videos__detail-time-wrap {
		font-size: 13px;
	}
	.short-videos__detail-title {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.short-videos__swiper-main {
		height: 350px;
	}
}

