/**
 * NTV Product Tabs Widget Styles
 *
 * @package NTV_Product_Tabs
 */

.ntv-product-tabs-wrapper {
	width: 100%;
}

/* Tabs Navigation */
.ntv-product-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
	border-bottom: none;
}

.ntv-product-tabs-nav button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	outline: none;
}

.ntv-product-tabs-nav button:hover {
	opacity: 0.8;
}

.ntv-product-tabs-nav button.active {
	font-weight: 600;
}

/* Tabs Content */
.ntv-product-tabs-content {
	position: relative;
}

.ntv-tab-panel {
	display: none;
	animation: fadeIn 0.3s ease-in-out;
}

.ntv-tab-panel.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Products Grid */
.ntv-product-tabs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 100%;
}

@media (max-width: 1024px) {
	.ntv-product-tabs-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.ntv-product-tabs-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}

@media (max-width: 480px) {
	.ntv-product-tabs-grid {
		grid-template-columns: 1fr;
	}
}

/* Product Card */
.ntv-product-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.ntv-product-card:hover {
	text-decoration: none;
	color: inherit;
	transform: translateY(-5px);
}

.ntv-product-card-image {
	width: 100%;
	overflow: hidden;
	background: #f5f5f5;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ntv-product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ntv-product-card-title {
	margin: 15px 15px 10px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: #333;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ntv-product-card-price {
	margin: 0 15px 15px;
	font-size: 18px;
	font-weight: 600;
	color: #000;
}

.ntv-product-card-price del {
	color: #999;
	font-weight: 400;
	margin-right: 8px;
}

.ntv-product-card-price ins {
	text-decoration: none;
}

/* Empty State */
.ntv-product-tabs-empty {
	text-align: center;
	padding: 60px 20px;
	color: #666;
	font-size: 16px;
}

/* Accessibility */
.ntv-product-tabs-nav button:focus-visible {
	outline: 2px solid #0073aa;
	outline-offset: 2px;
}

.ntv-product-card:focus-visible {
	outline: 2px solid #0073aa;
	outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

