/**
 * Page Products - Tabs styling
 * Pro šablonu page-products.php
 */

.woocommerce-tabs.wc-tabs-wrapper {
	margin: 30px 0;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
}

.content.full .tab-style-three .tabs:before
{
  background: rgba(0, 0, 0, 0.04);
  content: "";
  display: block;
  height: 68px;
  left: -100%;
  margin-top: -20px;
  position: absolute;
  right: 100%;
  width: 1000%;
  z-index: -1;
}

/* Tabs - Seznam záložek */
.woocommerce-tabs.wc-tabs-wrapper .wc-tabs {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: none;/*2px solid #e0e0e0;*/
	background: #f9f9f9;
	gap: 0;
}

.woocommerce-tabs.wc-tabs-wrapper .wc-tabs li {
    margin: 0;
	padding: 0;
	border-right: 1px solid #e0e0e0;
	flex: 0 1 auto;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tabs li.active
{
    border-bottom: 5px solid rgb(255, 118, 6);
}

.woocommerce-tabs.wc-tabs-wrapper .wc-tabs li:last-child {
	border-right: none;
}

.woocommerce-tabs.wc-tabs-wrapper .wc-tabs a {
	display: block;
	padding: 15px 20px;
	color: #666;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: background-color 0.3s ease, color 0.3s ease;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
}

.woocommerce-tabs.wc-tabs-wrapper .wc-tabs a:hover {
	color: #333;
	background: #f0f0f0;
	border-bottom-color: transparent;
}

/* Aktivní tab */
.woocommerce-tabs.wc-tabs-wrapper .wc-tabs li.active a {
	color: #000;
	/*border-bottom-color: #000;*/
	background: #fff;
	font-weight: 600;
}

/* Tab content - Obsah */
.woocommerce-tabs.wc-tabs-wrapper .wc-tab {
	display: none;
	padding: 30px;
	animation: fadeIn 0.3s ease-in;
}

.woocommerce-tabs.wc-tabs-wrapper .wc-tab.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Produkty v tabu */
.wc-category-products {
	width: 100%;
}

.wc-category-products ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wc-category-products .product {
	margin: 0;
}

/* Responsivní - mobilní */
@media (max-width: 768px) {
	.woocommerce-tabs.wc-tabs-wrapper .wc-tabs {
		flex-direction: column;
	}

	.woocommerce-tabs.wc-tabs-wrapper .wc-tabs li {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
	}

	.woocommerce-tabs.wc-tabs-wrapper .wc-tabs li:last-child {
		border-bottom: none;
	}

	.woocommerce-tabs.wc-tabs-wrapper .wc-tab {
		padding: 20px;
	}

	.wc-category-products ul.products {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 15px;
	}
}

@media (max-width: 480px) {
	.woocommerce-tabs.wc-tabs-wrapper .wc-tabs a {
		padding: 12px 15px;
		font-size: 13px;
	}

	.wc-category-products ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}
