#product #content {
	max-width: 100%;
}
@media screen and (min-width: 768px) {
    #product #content {
        max-width: 600px;
        margin-left: 0;
    }
}

/* - product-cover - */
#product .product-cover .layer {
	display: none !important;
}

/* - product-images - */
#product .product-images > li.thumb-container {
	display: inline-block;
	width: 25%;
}
#product .product-images > li.thumb-container .thumb {
	margin-right: 1rem;
	margin-bottom: 1rem;
	width: calc(100% - 1rem);
}

/* - product-title - */
#product .product-container > div > h1 {
	font-size: 1.33rem;
	text-align: left;
	line-height: 1.3;
	margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
	#product .product-container > div > h1 {
		font-size: 1.5rem;
	}
}

/* product-prices */
.product-prices {
	margin-top: 2.5rem;
	margin-bottom: 1.5rem;
    display: flex;
	align-items: flex-end;
	gap: 0;
}
@media screen and (min-width: 992px) {
	.product-prices {
		margin-top: 3rem;
		margin-bottom: 2rem;
	}
}
.product-prices .product-price {
	margin: 0;
}
.product-prices .current-price {
	display: flex;
	align-items: flex-end;
	line-height: 1;
	font-size: 1.5rem;
	font-weight: 700;
	margin-right: 0.5rem;
	color: var(--theme-color-secondary);
}
.product-discount .regular-price {
	text-decoration: line-through;
	margin-right: 0.25rem;
	font-size: 1rem;
	font-weight: 400;
	margin-right: 0.75rem;
	color: var(--theme-color-grey-medium);
}
.product-prices .has-discount .discount {
	position: relative;
	bottom: 3px;
	font-size: 0.825rem;
	font-weight: 400;
	line-height: 1;
	margin-left: 0.5rem;
	margin-right: 0.75rem;
	padding: 5px 0.25rem 3px;
	background-color: var(--theme-color-danger-dark);
	color: var(--theme-color-white);
	display: none !important;
}
.product-prices .tax-shipping-delivery-label {
	display: inline-block;
	font-size: 0.725rem;
	letter-spacing: 0.05rem;
	color: var(--theme-color-grey);
}

.product-unit-price {
	width: 100%;
	font-size: 0.925rem;
	margin-top: 0.25rem;
	margin-bottom: 0;
	color: var(--theme-color-black);
}

/* product quantity & add-to-cart */
.product-actions .product-add-to-cart .control-label {
	display: none;
}
.product-add-to-cart .product-quantity .qty {
	padding-bottom: 0;
	margin-right: 0.75rem;
}

#product-availability {
	display: block;
	margin-top: 1rem;
	line-height: 1;
}

.product-information {
	font-size: .875rem;
}
#product-details .label {
	font-size: 90%;
}

/* - .tabs - */
#product .tabs {
	padding: 1rem;
	margin-top: 2rem;
	background: var(--theme-color-white);
}
#product .tabs .nav-tabs {
	display: flex;
	justify-content: center;
}
#product .tabs .nav-tabs .nav-link {
	padding: .5em;
	font-size: 0.875rem;
}