/* Product Tabs widget — structural styles. Colors/typography/spacing come
   from the widget's style controls (compiled per-instance), so only layout +
   transitions live here. */
.ractro-ptabs {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	overflow: hidden;
}

.ractro-ptabs--vertical {
	display: flex;
	align-items: stretch;
}

.ractro-ptabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: rgba(0, 0, 0, 0.03);
}

.ractro-ptabs--vertical .ractro-ptabs__nav {
	flex-direction: column;
	flex: 0 0 220px;
	flex-wrap: nowrap;
}

.ractro-ptabs__nav-item {
	margin: 0;
}

.ractro-ptabs__nav-link {
	display: block;
	text-decoration: none;
	cursor: pointer;
	padding: 12px 18px;
	font-weight: 600;
	border-bottom: 3px solid transparent;
	transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
	opacity: 0.7;
}

.ractro-ptabs--vertical .ractro-ptabs__nav-link {
	border-bottom: 0;
	border-right: 3px solid transparent;
}

.ractro-ptabs__nav-link.is-active {
	opacity: 1;
	color: #4f46e5;
	border-color: #4f46e5;
}

.ractro-ptabs__panels {
	flex: 1;
	min-width: 0;
}

.ractro-ptabs__panel {
	padding: 24px;
}

.ractro-ptabs__panel[hidden] {
	display: none;
}

.ractro-ptabs__panel table.shop_attributes {
	width: 100%;
	border-collapse: collapse;
}

.ractro-ptabs__panel table.shop_attributes th,
.ractro-ptabs__panel table.shop_attributes td {
	padding: 8px 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	text-align: left;
}

.ractro-ptabs--notice {
	padding: 18px;
	border: 1px dashed #cbd5e1;
	border-radius: 10px;
	color: #94a3b8;
	font-size: 13px;
	text-align: center;
}
