/* Tabs */
.product-tabs {
	border-bottom: unset;
	clear: both;
	margin-bottom: 70px;
}

.product-tab + .product-tab{
	margin-top: 50px;
}

.product-tab__label span {
	font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-family-headline);
}

.product-tab__content {
	padding-top: 10px;
}

.product-tab__content img {
	width: 100%;
}

/* Product description */
.product-tab:nth-of-type(1).product-tab__content {
	display: flex;
	flex-direction: column;
}

/* Product attributes  */
.woocommerce table.shop_attributes{
	border-top: unset;
	border-collapse: collapse;
}

.woocommerce table.shop_attributes th{
	width: auto;
    text-align: left;
    color: var(--color-headline);
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td{
	border-bottom: var(--border);
}

.woocommerce table.shop_attributes.woocommerce-product-attributes-item:last-child th,
.woocommerce table.shop_attributes.woocommerce-product-attributes-item:last-child td{
	border-bottom: unset;
}

.woocommerce table.shop_attributes td{
	text-align: right;
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
	background: transparent;
}


@media screen and (max-width: 767px) {
	.product-tabs{
		margin-bottom: 0;
	}
	.product-tab__label{
		cursor: pointer;
	}
	.product-tab__label:after{
		content: '';
		display: block;
		position: relative;
		width: 15px;
		height: 15px;
		opacity: 1;
		bottom: unset;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		background-color: transparent;
		background-image: url("../../../icons/chevron-down-outline.svg");
		-webkit-transition: var(--transition);
		transition: var(--transition);
	}
	.product-tab{
		margin-inline: -15px;
		border-top: var(--border);
	}
	.product-tab__label{
		display: flex;
		align-items: center;
		color: var(--color-headline);
		cursor: pointer;
		transition: var(--transition);
		width: 100%;
		border-radius: unset;
		padding: 15px;
		font-weight: 500;
		justify-content: space-between;
		position: relative;
		border-inline: unset;
		background-color: transparent;
		pointer-events: all;
	}
	.product-tab__label span{
		font-size: 1.2rem;
		line-height: 1.5rem;
	}
	.product-tab.open .product-tab__label:after{
		transform: rotate(180deg);
	}
	.product-tab__content{
		padding: 0 20px;
		display: grid;
  		grid-template-rows: 0fr;
  		transition: grid-template-rows 0.5s ease-in-out;
	}
	.product-tab.open .product-tab__content{
		grid-template-rows: 1fr;
	}
	.product-tab__content > div{
		overflow: hidden;
	}
	.product-tab + .product-tab{
		margin-top: 0;
	}
	
}

@media screen and (max-width: 480px){
	.woocommerce table.shop_attributes th{
		padding-left: 0;
	}
}