/*==============
Single Product
===============*/

.woo-single-product {
}

/* .woo-single-product .product-top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
} */

.woo-single-product .product-top .product-imgs img {
	background-color: #fff;
	border-radius: 0.5rem !important;
	border-radius: 1rem;
	max-width: 100%;
	object-fit: contain;
}

.woo-single-product .product-top .flex-control-thumbs {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 0.5rem;
	flex-wrap: no-wrap;
	max-width: 100%;
	overflow-x: auto;
}

.woo-single-product .product-top .flex-control-thumbs img {
	border-radius: 4px;
}

..woo-single-product .product-top .product-imgs .flex-control-nav .flex-active {
	position: relative;
    width: 80px;
    border: 1px solid rgb(0, 111, 255);
    border-radius: 4px;
    overflow: hidden;
}

.woo-single-product .product-top .product_title {
	font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 0.85);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
}


.woo-single-product .product-top .product-small-desc {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	
	font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.65);
}

.woo-single-product .product-top .product-small-desc .product_meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.woo-single-product .product-top .product-meta-specs {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
	gap: 0.5rem;
	margin-top: 1rem;
}

.woo-single-product .product-top .product-meta-specs .product-attributes-wrapper {
	margin-top: 0.5rem;
}

.woo-single-product .product-top .product-meta-specs .woocommerce-product-attributes th {
	text-align: start;
	padding-right: 1rem;
}

.woo-single-product .product-info {
	margin-top: 2rem;
}

.woo-single-product .wc-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-block: 12px 40px;
	position: relative;
}

.woo-single-product .wc-tabs:after {
	content: "";
    background: rgba(33, 35, 39, 0.07);
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 1px;
}

.woo-single-product .wc-tabs li {
	display: flex;
	align-items: center;
	justify-content: center;
}

.woo-single-product .wc-tabs li a {
	cursor: pointer;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: -0.02em;
    background-color: transparent;
    border-radius: 0px;
    line-height: 20px;
    padding: 8px 12px;
    transition: border-color 0.2s, color 0.2s;
    font-weight: bold;
}

.woo-single-product .wc-tabs li.active a {
    border-bottom: 1px solid rgb(0, 111, 255);
    color: rgb(0, 111, 255);
}

.woocommerce-tabs .woocommerce-Tabs-panel h2 {
	display: none;
}

.woo-single-product .product-info table {
	border-collapse: separate; /* allows border-radius */
	overflow: hidden;
}

.woo-single-product .product-info .woocommerce-Tabs-panel--description th {
	color: rgb(33, 36, 39);
    font-size: 16px;
    line-height: 19.33px;
    font-weight: 700;
	text-align: start;
	padding: 16px 3px;
}

.woo-single-product .product-info td {
	padding: 12px 28px 12px 4px;
    font-size: 14px;
    line-height: 20px;
    color: rgb(33, 36, 39);
    white-space: pre-wrap;
}

.woocommerce-breadcrumb-wrapper{
	padding-top: 1.5rem;
}

@media only screen and (min-width: 768px) {
   .container {
      padding: 1rem 2rem;
   }

	.woo-single-product .product-top .product-imgs img {
		padding: 25px;
	}
	
	.woo-single-product .product-top ol.flex-control-nav img {
		padding: 8px;
		cursor: pointer;
	}
}

@media only screen and (min-width: 1024px) {
 	.woo-single-product .product-top {
		display: grid;
		grid-template-columns: 500px 1fr 1fr;
		gap: 4rem;
	}
	
	.woo-single-product .product-top .product-imgs .flex-active-slid img {
		padding: 50px;
	}

	.woo-single-product .product-info {
		margin-top: 4rem;
	}
	
	.woo-single-product .product-top .product-meta-specs {
		margin-top: 0;
	}
}

@media only screen and (min-width: 96rem) {
   .container {
      padding: 1.5rem 0;
   }
	
	.woo-single-product .product-top {
		display: grid;
		grid-template-columns: 500px 1fr 300px;
		gap: 4rem;
	}
	
	.product-small-desc {
		justify-self: center;
	}
	
	.product-meta-specs {
		justify-self: end;
	}
}