/* === Tabs Video Plugin === */

.tabsvideo-wrap {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	font-family: inherit;
}

/* Tabs row */
.tabsvideo-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 16px;
	margin-bottom: 0;
	align-items: flex-end;
}

.tabsvideo-tab {
	position: relative;
	background: #ede8e1;
	border: 2px solid #d4cdc4;
	border-bottom: none;
	border-radius: 10px 10px 0 0;
	padding: 10px 22px 12px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #7a6e65;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, transform 0.15s;
	margin-bottom: -2px;
	top: 0;
	outline: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.tabsvideo-tab-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.tabsvideo-tab-icon svg {
	display: block;
}

.tabsvideo-tab:hover {
	background: #e0d8cf;
	color: var(--tv-color, #2d2926);
	transform: translateY(-2px);
}

.tabsvideo-tab.is-active {
	background: #fff;
	color: var(--tv-color, #2d2926);
	border-color: var(--tv-color, #d4cdc4);
	border-bottom-color: #fff;
	transform: translateY(0);
	z-index: 2;
	padding-bottom: 14px;
}

/* Панель вкладок — рамка вокруг контента */
.tabsvideo-panels {
	border: 2px solid #d4cdc4;
	border-radius: 0 12px 12px 12px;
	background: #fff;
	padding: 24px;
	position: relative;
	z-index: 1;
}

/* Panels */
.tabsvideo-panel {
	display: none;
}

.tabsvideo-panel.is-active {
	display: block;
}

/* Video — горизонтальное, aspect ratio через CSS-переменную */
.tabsvideo-video.is-horizontal {
	position: relative;
	width: 100%;
	padding-bottom: var(--tv-aspect, 56.25%);
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 24px;
	background: #1a1410;
}

/* Video — вертикальное 9:16 */
.tabsvideo-video.is-vertical {
	position: relative;
	width: 100%;
	max-width: 340px;
	padding-bottom: 177.78%;
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	margin: 0 auto 24px;
	background: #1a1410;
}

.tabsvideo-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 12px;
}

/* Content */
.tabsvideo-content {
	padding: 0 4px;
}

.tabsvideo-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #2d2926;
	margin: 0 0 12px;
}

.tabsvideo-text {
	font-size: 1rem;
	color: #5a504a;
	line-height: 1.7;
	margin: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.tabsvideo-tab {
		transition: none;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.tabsvideo-tab {
		padding: 10px 14px;
		font-size: 0.9rem;
	}
}
