/*TABS*/
.co-tabs {
	margin: 40px 0;
}

.co-tabs-nav {
	display: flex;
    flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
	font-size:.9em;
}

.co-tab-button {
    background-color: var(--wp--custom--light--3);
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 1px solid var(--wp--custom--light--1);
	transition: all 300ms ease-in-out;

}

.co-tab-button:hover{
	border-bottom-color:var(--wp--custom--dark--1);
}

.co-tab-button.active {
	background-color: var(--wp--custom--light--1);
	border-bottom-color:var(--wp--custom--dark--1);
}

.co-tab-panel {
	display: none;
}

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

/*co-product-top-layout*/
.co-product-top-layout{
	gap:var(--wp--custom--spacer--md);
}

/*product-img-gallery*/
.product-img-gallery{
	display:flex;
	gap:15px;
	flex-wrap:wrap;
    margin-bottom: 30px;
}

.product-img-gallery .wp-block-image{
	width: calc(33.33% - 15px);
}


@media screen and (max-width:600px){
	.product-img-gallery .wp-block-image{
		width: calc(50% - 15px);
	}	
}

.product-img-gallery .wp-block-image img{
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.single-product .co-tech-table{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.single-product table{
	width:100%;
	 min-width: 900px;
}

.single-product table td,
.single-product table th {
    padding: 5px;
}

.single-product table tr td:first-child,
.single-product table tr th:first-child {
    font-weight: bold;
    width: 300px;
    background-color: var(--wp--custom--light--3);
}

.single-product .co-prod-sku{
	font-size:.9em;
}